/* =============================================
   БухГарант — стили лендинга
   ============================================= */

/* RESET & VARIABLES */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #3A2008;
  --navy-light: #5C3415;
  --teal: #C8602A;
  --teal-light: #E07B3F;
  --teal-pale: #EDE9E5;
  --accent: #E8A33D;
  --text: #18110A;
  --text-muted: #3D2E22;
  --bg: #F2F0EE;
  --white: #FFFFFF;
  --border: #D8D0C8;
  --shadow: 0 2px 16px rgba(40,20,8,0.09);
  --shadow-lg: 0 8px 40px rgba(40,20,8,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

h1,h2,h3,h4 {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

a { text-decoration: none; color: inherit; }

/* =============================================
   NAV
   ============================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(8px);
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.logo-icon {
  width: 36px; height: 36px;
  background: var(--teal);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}

.logo-icon svg { width: 20px; height: 20px; fill: white; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--teal); }

.nav-cta {
  background: var(--teal);
  color: white !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--teal-light) !important; }

/* =============================================
   HERO
   ============================================= */
.hero {
  padding-top: 64px;
  background:
    linear-gradient(135deg, rgba(58,38,18,0.88) 0%, rgba(74,46,20,0.82) 55%, rgba(120,68,28,0.7) 100%),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: white;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(200,96,42,0.12);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 30%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(232,163,61,0.08);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,96,42,0.2);
  border: 1px solid rgba(200,96,42,0.4);
  color: #F5C16C;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 span { color: #F5C16C; }

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}

.stat-item { border-left: 2px solid var(--teal); padding-left: 12px; }

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: white;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  margin-top: 2px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* HERO WHY-RIGHT (glass cards over office photo) */
.hero-why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-why-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  padding: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s, transform 0.2s;
}

.hero-why-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

.hero-why-card-icon {
  width: 40px; height: 40px;
  background: rgba(232,163,61,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}

.hero-why-card-icon svg { width: 20px; height: 20px; stroke: #F5C16C; fill: none; stroke-width: 1.8; }

.hero-why-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.hero-why-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
  margin: 0;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  background: var(--teal);
  color: white;
  padding: 15px 32px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.1s;
  display: inline-flex; align-items: center; gap: 8px;
}

.btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: white;
  padding: 15px 32px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.07); }

.btn-white {
  background: white;
  color: var(--teal);
  padding: 15px 36px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

.btn-outline-white {
  background: transparent;
  color: white;
  padding: 15px 36px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all 0.2s;
}

.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* =============================================
   HERO CARD & FORMS
   ============================================= */
.hero-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  color: var(--text);
  box-shadow: var(--shadow-lg);
}

.hero-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--navy);
}

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group select,
.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}

.form-group select:focus,
.form-group input:focus { border-color: var(--teal); background: white; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6A7A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-submit {
  width: 100%;
  background: var(--teal);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s;
}

.form-submit:hover { background: var(--teal-light); }

.form-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

.trust-icon {
  width: 32px; height: 32px;
  background: var(--teal-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg { width: 16px; height: 16px; stroke: var(--teal); fill: none; stroke-width: 2; }

/* =============================================
   SECTIONS — общие стили
   ============================================= */
section { padding: 80px 40px; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
}

/* =============================================
   SERVICES
   ============================================= */
.services { background: var(--white); }

.services-header { margin-bottom: 48px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  background: white;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  opacity: 0;
  transition: opacity 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,96,42,0.3);
  transform: translateY(-3px);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px; height: 48px;
  background: var(--teal-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

.service-icon svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 1.8; }

.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-tag {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-right: 4px;
  margin-bottom: 4px;
}

/* =============================================
   PRICING
   ============================================= */
.pricing { background: var(--bg); }

.pricing-header { margin-bottom: 12px; }

.pricing-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  background: white;
  padding: 4px;
  border-radius: 10px;
  border: 1px solid var(--border);
  width: fit-content;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 8px;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active {
  background: var(--teal);
  color: white;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}

.price-card.featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(200,96,42,0.08), var(--shadow);
}

.price-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.price-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.price-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1;
}

.price-period {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.price-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 20px;
}

.price-features { list-style: none; margin-bottom: 28px; }

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid var(--bg);
}

.check-icon {
  width: 18px; height: 18px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon svg { width: 10px; height: 10px; stroke: var(--teal); fill: none; stroke-width: 2.5; }

.price-btn {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid var(--teal);
  background: transparent;
  color: var(--teal);
}

.price-btn.featured-btn {
  background: var(--teal);
  color: white;
}

.price-btn:hover {
  background: var(--teal);
  color: white;
}

/* =============================================
   WHY US
   ============================================= */
.why-us { background: var(--navy); color: white; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-left .section-title { color: white; }
.why-left .section-label { color: #F5C16C; }

.why-left p {
  color: rgba(255,255,255,0.92);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.why-items { display: flex; flex-direction: column; gap: 20px; }

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--teal-light);
  line-height: 1;
  min-width: 60px;
}

.why-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 6px;
}

.why-text p { font-size: 14px; color: rgba(255,255,255,0.88); margin: 0; }

.why-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 24px;
}

.why-card-icon {
  width: 40px; height: 40px;
  background: rgba(200,96,42,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}

.why-card-icon svg { width: 20px; height: 20px; stroke: #F5C16C; fill: none; stroke-width: 1.8; }

.why-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.why-card p { font-size: 13px; color: rgba(255,255,255,0.82); line-height: 1.5; margin: 0; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.how { background: var(--bg); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal) 0, var(--teal) 8px, transparent 8px, transparent 16px);
}

.how-step { text-align: center; padding: 0 20px; position: relative; }

.step-circle {
  width: 56px; height: 56px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: white;
  position: relative;
  z-index: 1;
}

.how-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.how-step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   REVIEWS
   ============================================= */
.reviews { background: white; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: var(--bg);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--border);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.review-stars svg { width: 16px; height: 16px; fill: var(--accent); }

.review-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.author-role { font-size: 12px; color: var(--text-muted); }

/* =============================================
   FAQ
   ============================================= */
.faq { background: var(--bg); }

.faq-list { margin-top: 40px; max-width: 780px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  background: white;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--teal); }

.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}

.faq-icon svg { width: 12px; height: 12px; stroke: var(--teal); fill: none; stroke-width: 2.5; }

.faq-item.open .faq-icon { transform: rotate(180deg); background: var(--teal-pale); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  padding: 0 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, #A8501F 100%);
  padding: 80px 40px;
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.88);
  padding: 60px 40px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo { color: white; font-size: 20px; font-weight: 800; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; font-family: 'Montserrat', sans-serif; }

.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }

.footer-contact { display: flex; flex-direction: column; gap: 8px; }

.footer-contact a {
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-contact a:hover { color: #F5C16C; }

.footer-col h4 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a { font-size: 14px; color: rgba(255,255,255,0.85); transition: color 0.2s; }

.footer-col a:hover { color: #F5C16C; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(40,24,10,0.6);
  z-index: 200;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-overlay.open { display: flex; }

.modal {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 480px;
  width: 90%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}

.modal h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.modal p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 8px;
  border: none;
  background: var(--bg);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--text-muted);
  transition: background 0.2s;
}

.modal-close:hover { background: var(--border); }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  z-index: 99;
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

.wa-float svg { width: 28px; height: 28px; fill: white; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-why-right { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .how-steps::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  section { padding: 60px 20px; }
  .hero h1 { font-size: 32px; }
}
