/* =============================================================
   BHULEGA NAHI CONSULTING — style.css
   Theme: Sky Blue & White, Premium Insurance
   ============================================================= */

/* ---------- CSS Variables ---------- */
:root {
  --sky-light:   #e0f2fe;
  --sky-mid:     #7dd3fc;
  --sky:         #38bdf8;
  --sky-dark:    #0ea5e9;
  --blue:        #0369a1;
  --blue-deep:   #0c4a6e;
  --navy:        #0c2340;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --gray-light:  #f1f5f9;
  --gray:        #94a3b8;
  --gray-dark:   #64748b;
  --text:        #1e293b;
  --text-soft:   #475569;
  --green:       #22c55e;
  --amber:       #f59e0b;
  --red:         #ef4444;

  --font-head:   'Plus Jakarta Sans', sans-serif;
  --font-body:   'Sora', sans-serif;

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
  --shadow:      0 4px 20px rgba(14,165,233,0.10);
  --shadow-lg:   0 8px 40px rgba(14,165,233,0.15);
  --shadow-xl:   0 20px 60px rgba(14,165,233,0.18);

  --transition:  0.25s cubic-bezier(0.4,0,0.2,1);
  --nav-h:       70px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ---------- Utility ---------- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.w-full { width: 100%; }
.gradient-text {
  background: linear-gradient(135deg, var(--sky-dark), var(--blue-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  background: var(--sky-light);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  font-family: var(--font-head);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-desc {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(3,105,161,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(3,105,161,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-pay {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(3,105,161,0.3);
  margin-top: 20px;
}
.btn-pay:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(3,105,161,0.4);
}
.featured-btn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 4px 16px rgba(245,158,11,0.35);
}
.featured-btn:hover {
  box-shadow: 0 8px 24px rgba(245,158,11,0.45);
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(3,105,161,0.1);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  flex-shrink: 0;
}
.logo-shield { font-size: 1.3rem; }
.logo-accent { color: var(--blue); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--blue);
  background: var(--sky-light);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  font-family: var(--font-head);
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(3,105,161,0.3);
  flex-shrink: 0;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(3,105,161,0.4);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f0f9ff 0%, #e0f2fe 40%, #f8fafc 100%);
  padding-top: var(--nav-h);
}
.hero-bg-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}
.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #7dd3fc, #38bdf8);
  top: -100px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #bae6fd, #e0f2fe);
  bottom: 0; left: -80px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
.blob-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, #e0f2fe, #f0f9ff);
  top: 40%; left: 40%;
  animation: blobFloat 12s ease-in-out infinite;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(20px,-20px) scale(1.05); }
  66%       { transform: translate(-15px,15px) scale(0.95); }
}
.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--sky-mid);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  font-family: var(--font-head);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.3); opacity: 0.7; }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
  max-width: 700px;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--gray-dark);
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--sky-mid);
  opacity: 0.5;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--sky-mid), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ═══════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════ */
.trust-bar {
  background: linear-gradient(135deg, var(--blue-deep), var(--navy));
  padding: 16px 0;
}
.trust-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.trust-item {
  color: var(--sky-mid);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}
.trust-sep {
  color: rgba(125,211,252,0.3);
  font-size: 1.2rem;
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--off-white);
  border: 1.5px solid var(--sky-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky-dark), var(--blue));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: var(--sky);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.how-it-works {
  background: linear-gradient(160deg, #f0f9ff, #f8fafc);
}
.steps-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.step-card {
  background: var(--white);
  border: 1.5px solid var(--sky-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  border-color: var(--sky);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.step-num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gray);
  margin-bottom: 12px;
}
.step-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.step-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1rem;
}
.step-card p {
  color: var(--text-soft);
  font-size: 0.83rem;
  line-height: 1.5;
}
.step-arrow {
  font-size: 1.5rem;
  color: var(--sky);
  font-weight: 900;
  flex-shrink: 0;
}


/* ── Claim Selector ── */
.claim-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 10px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.required-star {
  color: #ef4444;
  margin-left: 2px;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1.5px solid var(--sky-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  user-select: none;
}
.checkbox-item:hover {
  border-color: var(--sky-dark);
  background: var(--sky-light);
}
.checkbox-item input[type="checkbox"] {
  display: none; /* hide native checkbox */
}
.checkbox-box {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.checkbox-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-soft);
  font-family: var(--font-head);
  line-height: 1.2;
}

/* Checked state */
.checkbox-item:has(input:checked) {
  border-color: var(--blue);
  background: var(--sky-light);
  box-shadow: 0 0 0 2px rgba(3,105,161,0.15);
}
.checkbox-item:has(input:checked) .checkbox-text {
  color: var(--blue);
  font-weight: 700;
}
.checkbox-item:has(input:checked) .checkbox-box::after {
  content: " ✓";
  font-size: 0.75rem;
  color: var(--blue);
  font-weight: 900;
}

/* Error message */
.claim-error {
  display: none;
  color: #ef4444;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 4px;
  font-family: var(--font-head);
}
.claim-error.visible {
  display: block;
}

/* Error border on grid */
.checkbox-grid.error .checkbox-item {
  border-color: #fca5a5;
  background: #fff5f5;
}



/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
.pricing {
  background: var(--white);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--off-white);
  border: 2px solid var(--sky-light);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover {
  border-color: var(--sky);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pricing-card.featured {
  background: linear-gradient(160deg, #f0f9ff, #e0f2fe);
  border-color: var(--sky-dark);
  box-shadow: var(--shadow-xl);
  transform: scale(1.03);
  z-index: 1;
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(245,158,11,0.35);
}
.plan-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 12px;
  font-family: var(--font-head);
}
.plan-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.plan-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 4px;
}
.currency {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: 6px;
}
.amount {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.plan-duration {
  font-size: 0.82rem;
  color: var(--gray-dark);
  margin-bottom: 24px;
}
.plan-features {
  margin-bottom: 24px;
}
.plan-features li {
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--text-soft);
  border-bottom: 1px solid var(--sky-light);
}
.plan-features li:last-child { border-bottom: none; }
.claim-selector {
  margin-bottom: 4px;
}
.claim-selector label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 6px;
  font-family: var(--font-head);
}
.claim-selector select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--sky-light);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font-size: 0.88rem;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230369a1' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.claim-selector select:focus { border-color: var(--sky-dark); }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials { background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--sky-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--sky);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.testimonial-card.featured-review {
  border-color: var(--sky-dark);
  box-shadow: var(--shadow);
}
.stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-card p {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 0.78rem;
  font-family: var(--font-head);
  flex-shrink: 0;
}
.reviewer strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.88rem;
  color: var(--navy);
}
.reviewer span {
  font-size: 0.78rem;
  color: var(--gray-dark);
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact {
  background: linear-gradient(160deg, #f0f9ff, var(--white));
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-info p {
  color: var(--text-soft);
  margin: 16px 0 32px;
  font-size: 1rem;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border: 1.5px solid var(--sky-light);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-method:hover {
  border-color: var(--sky-dark);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.method-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.contact-method strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}
.contact-method span {
  font-size: 0.85rem;
  color: var(--text-soft);
}
.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--sky-light);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 6px;
  font-family: var(--font-head);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--sky-light);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--off-white);
  outline: none;
  transition: var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sky-dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: linear-gradient(135deg, var(--navy), var(--blue-deep));
  padding: 48px 0 24px;
}
.footer-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.footer-brand .logo-text { color: var(--white); font-size: 1.1rem; }
.footer-brand .logo-accent { color: var(--sky-mid); }
.footer-brand p {
  width: 100%;
  color: var(--sky-mid);
  font-size: 0.85rem;
  opacity: 0.8;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-links a {
  color: var(--sky-mid);
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.8;
  transition: var(--transition);
}
.footer-links a:hover { opacity: 1; color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(125,211,252,0.2);
  padding-top: 20px;
}
.footer-bottom p {
  color: var(--sky-mid);
  font-size: 0.78rem;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════
   MODALS
═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12,35,64,0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(12,35,64,0.3);
  transform: translateY(20px);
  transition: transform 0.25s ease;
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-large { max-width: 760px; }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gray-light);
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-soft);
  transition: var(--transition);
}
.modal-close:hover { background: var(--sky-light); color: var(--blue); }
.modal-header {
  text-align: center;
  margin-bottom: 28px;
}
.modal-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.modal-header h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.modal-header p {
  font-size: 0.88rem;
  color: var(--gray-dark);
}

/* Success modal */
.success-content { text-align: center; }
.success-icon { font-size: 4rem; margin-bottom: 16px; }
.success-content h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.success-content p {
  color: var(--text-soft);
  margin-bottom: 24px;
  font-size: 0.92rem;
}
.success-details {
  background: var(--off-white);
  border: 1.5px solid var(--sky-light);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
  text-align: left;
}
.success-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--sky-light);
  font-size: 0.85rem;
  gap: 12px;
}
.success-detail-row:last-child { border-bottom: none; }
.success-detail-row span { color: var(--gray-dark); flex-shrink: 0; }
.success-detail-row strong { color: var(--navy); text-align: right; }

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid       { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .testimonials-grid  { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .contact-grid       { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    gap: 4px;
    border-bottom: 1px solid var(--sky-light);
  }
  .nav-links.open a {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 1rem;
  }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .navbar.scrolled { background: var(--white); }

  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.4rem; }

  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; align-items: stretch; }
  .step-card { max-width: 100%; }
  .step-arrow { transform: rotate(90deg); text-align: center; }

  .modal { padding: 28px 20px; }
  .modal-large { padding: 24px 16px; }

  .trust-container { justify-content: flex-start; overflow-x: auto; }
  .footer-links { gap: 16px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .section-title { font-size: 1.7rem; }
}