:root {
  --primary: #463fa0;
  --primary-deep: #322c75;
  --primary-light: #6c63cf;
  --accent: #f08a1e;
  --accent-hover: #db7b15;
  --accent-soft: #fce0c4;
  --sage: #1fb1c4;
  --sage-light: #e8f5f8;
  --cream: #f8f7fc;
  --cream-deep: #efedf9;
  --warm-white: #fcfcff;
  --ink: #2a2838;
  --muted: #65626f;
  --line: #e6e3f0;
  --line-dark: rgba(255,255,255,.12);
  --white: #fff;
  --dark: #211d44;
  --dark-2: #2a2550;
  --dark-warm: #241f4a;
  --shadow: 0 20px 60px rgba(42, 42, 46, .10);
  --shadow-hover: 0 28px 70px rgba(42, 42, 46, .15);
  --shadow-soft: 0 8px 30px rgba(42, 42, 46, .06);
  --radius: 24px;
  --radius-sm: 16px;
  --radius-xs: 12px;
  --container: 1180px;
  --gradient-brand: linear-gradient(135deg, var(--primary) 0%, var(--sage) 100%);
  --gradient-warm: linear-gradient(135deg, #f3f1fb, #e8f5f8);
  --gradient-accent: linear-gradient(135deg, var(--accent), #f6b24a);
}

* { box-sizing: border-box }
html { scroll-behavior: smooth }

body {
  margin: 0;
  font-family: 'DM Sans', Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--warm-white);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none }
img { max-width: 100%; display: block }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto }

/* ── Topbar ── */
.topbar { background: var(--dark); color: #d2d4ee; font-size: 13px }
.topbar-inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 18px }
.topbar nav { display: flex; gap: 18px }
.topbar a:hover, .main-nav a:hover, .footer a:hover { color: var(--accent) }

/* ── Sticky Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(254, 252, 249, .92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229, 223, 214, .7);
}

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand { display: flex; align-items: center; gap: 12px; min-width: max-content }
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--gradient-brand);
  color: #fff;
  font-weight: 900;
  font-size: 24px;
  box-shadow: 0 10px 28px rgba(70, 63, 160, .28);
}
.brand-text { display: grid; line-height: 1.05 }
.brand-text strong { font-size: 18px; letter-spacing: -.03em; color: var(--primary-deep) }
.brand-text small { font-size: 12px; color: var(--muted); font-weight: 700 }

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
  color: #4a4a4a;
}

.nav-cta { display: flex; align-items: center; gap: 14px }
.phone-link { font-weight: 800; color: var(--primary-deep) }

/* ── Buttons ── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--gradient-brand);
  color: #fff;
  font-weight: 800;
  padding: 16px 28px;
  box-shadow: 0 12px 32px rgba(70, 63, 160, .25);
  cursor: pointer;
  transition: .28s ease;
  font-size: 15px;
  letter-spacing: -.01em;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(70, 63, 160, .32);
}
.button-small { padding: 11px 18px; font-size: 14px }
.button-outline {
  background: rgba(255, 255, 255, .08);
  border: 1.5px solid rgba(255, 255, 255, .3);
  box-shadow: none;
  color: #fff;
}
.button-outline:hover {
  background: rgba(255, 255, 255, .15);
  box-shadow: 0 12px 30px rgba(255, 255, 255, .08);
}
.button-light {
  background: #fff;
  color: var(--primary-deep);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .15);
}
.button-accent {
  background: var(--gradient-accent);
  box-shadow: 0 12px 32px rgba(240, 138, 30, .25);
}
.button-accent:hover {
  box-shadow: 0 18px 42px rgba(240, 138, 30, .32);
}

.menu-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; border-radius: 14px }
.menu-toggle span { display: block; height: 2px; background: var(--ink); margin: 6px }

/* ── Section Foundations ── */
.section { padding: 110px 0 }

.section-alt {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 40%, var(--cream) 100%);
}

.section-dark {
  background:
    radial-gradient(ellipse at 10% 20%, rgba(70, 63, 160, .4), transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(31, 177, 196, .25), transparent 50%),
    linear-gradient(135deg, #211d44 0%, #262150 50%, #2a2358 100%);
  color: #fff;
  position: relative;
}

.section-dark-soft {
  background: linear-gradient(135deg, #211d44, #262150);
  color: #fff;
}

.section-warm {
  background: linear-gradient(180deg, var(--sage-light), #f0f7f3 50%, var(--cream));
}

/* ── Hero ── */
.hero { padding: 100px 0 96px; overflow: hidden }

.hero-bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  opacity: .3;
}
.hero-orb-one { width: 430px; height: 430px; right: -130px; top: 120px; background: #1fb1c4 }
.hero-orb-two { width: 320px; height: 320px; left: -110px; bottom: -120px; background: #f08a1e }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: #bcb6ee;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
}
.eyebrow.dark { color: var(--primary) }

h1, h2, h3, p { margin-top: 0 }

h1 {
  font-size: clamp(46px, 7vw, 82px);
  line-height: .96;
  letter-spacing: -.06em;
  margin-bottom: 28px;
}
h1 span { color: #cac4f4 }

h2 {
  font-size: clamp(34px, 4.3vw, 54px);
  line-height: 1.06;
  letter-spacing: -.05em;
  margin-bottom: 22px;
  color: var(--ink);
}

.section-dark h2, .section-dark-soft h2 { color: #fff }

h3 {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}

.lead {
  font-size: 19px;
  color: #d2d4ee;
  max-width: 680px;
  margin-bottom: 34px;
  line-height: 1.7;
}

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

.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px }
.hero-tags span, .footer-badges span {
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .1);
  padding: 9px 14px;
  border-radius: 999px;
  color: #e1e3f6;
  font-size: 13px;
  font-weight: 800;
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(24px);
  border-radius: 32px;
  padding: 20px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, .2);
}

.hero-card-top, .hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-card-top div, .hero-stats div {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 18px;
}

.hero-card strong { display: block; font-size: 22px }
.hero-card span { display: block; color: #c5c8e8; font-size: 13px; font-weight: 700 }

.approach-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 34px;
  margin: 16px 0;
  box-shadow: var(--shadow);
}
.approach-card small { color: var(--primary); font-weight: 900; text-transform: uppercase; letter-spacing: .12em }
.approach-card h3 { font-size: 34px }
.approach-card p { color: var(--muted) }
.approach-card ul { padding: 0; margin: 22px 0 0; list-style: none; display: grid; gap: 12px }
.approach-card li { padding-left: 32px; position: relative; font-weight: 800 }
.approach-card li:before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  background: var(--primary);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 13px;
}

/* ── Snapshot ── */
.snapshot { padding: 40px 0; background: var(--warm-white); border-bottom: 1px solid var(--line) }

.snapshot-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.snapshot h2 { font-size: 29px; line-height: 1.25; margin: 0 }

.mini-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px }
.mini-stats div {
  background: var(--gradient-warm);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  text-align: center;
  transition: .25s ease;
}
.mini-stats div:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(70, 63, 160, .08);
}
.mini-stats strong { display: block; font-size: 25px; color: var(--primary-deep) }
.mini-stats span { font-size: 12px; color: var(--muted); font-weight: 800 }

/* ── Two-column Layouts ── */
.two-col { display: grid; grid-template-columns: .86fr 1.14fr; gap: 60px; align-items: center }
.align-start { align-items: start }

.section-copy p, .section-head p, .choose-grid p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

/* ── About / Feature Grid ── */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px }

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: .3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-brand);
  opacity: 0;
  transition: .3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(70, 63, 160, .15);
}
.feature-card:hover::after { opacity: 1 }
.feature-card span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--sage-light);
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 18px;
  font-size: 18px;
}
.feature-card h3 { font-size: 20px }
.feature-card p, .coverage-grid p, .team-card p, .resource-card p, .testimonial p, .step p {
  color: var(--muted);
  line-height: 1.65;
}

/* ── Why Choose Us ── */
.choose-section { background: var(--warm-white) }

.choose-grid {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 56px;
}

.why-list { display: grid; gap: 20px; margin-top: 36px }
.why-list div {
  border-left: 4px solid var(--primary);
  padding: 12px 0 12px 24px;
  transition: .25s ease;
  background: rgba(70, 63, 160, .02);
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
}
.why-list div:hover {
  border-left-color: var(--accent);
  padding-left: 28px;
  background: rgba(70, 63, 160, .04);
}
.why-list h3 { font-size: 19px; margin-bottom: 6px }

.language-card {
  border-radius: 28px;
  padding: 36px;
  background: var(--gradient-warm);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: sticky;
  top: 110px;
}

.pill-grid, .area-tags { display: flex; flex-wrap: wrap; gap: 10px }
.pill-grid span, .area-tags span, .service-card span, .resource-card > span {
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  color: var(--primary-deep);
}

.language-card hr { border: 0; border-top: 1px solid var(--line); margin: 30px 0 }

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

.service-delivery-note {
  display: inline-block;
  background: var(--sage-light);
  border: 1px solid rgba(70, 63, 160, .15);
  color: var(--primary-deep);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 999px;
  margin-top: 4px;
}

.service-card {
  position: relative;
  min-height: 340px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: .3s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: .3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.service-card:hover::before { opacity: 1 }

.service-number {
  font-size: 14px;
  font-weight: 900;
  color: var(--white);
  background: var(--gradient-brand);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-xs);
  margin-bottom: 24px;
}

.service-card h3 { font-size: 25px; line-height: 1.15 }

.service-card div:last-of-type {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.service-card a {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-deep);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  transition: .25s ease;
}
.service-card:hover a {
  background: var(--gradient-brand);
  transform: scale(1.08);
}

/* ── Coverage ── */
.coverage-section { background: var(--warm-white) }

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.coverage-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: .25s ease;
}
.coverage-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(42, 42, 46, .1);
}

.coverage-note {
  margin-top: 34px;
  border: 1px solid rgba(70, 63, 160, .15);
  background: var(--sage-light);
  color: var(--primary-deep);
  border-radius: 20px;
  padding: 22px;
  text-align: center;
  font-weight: 800;
}
.coverage-note a, .inline-note a { color: var(--primary) }

/* ── Eligibility ── */
.eligibility-section {
  background:
    radial-gradient(ellipse at 10% 30%, rgba(70, 63, 160, .3), transparent 50%),
    linear-gradient(135deg, #211d44, #262150);
}

.eligibility-grid {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: 60px;
  align-items: start;
}

.eligibility-card {
  background: #fff;
  color: var(--ink);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .2);
}
.eligibility-card ul { margin: 0 0 30px; padding: 0; list-style: none; display: grid; gap: 14px }
.eligibility-card li { position: relative; padding-left: 32px; color: var(--muted); font-weight: 650 }
.eligibility-card li:before { content: '\2713'; position: absolute; left: 0; color: var(--primary); font-weight: 900 }

.inline-note {
  background: var(--sage-light);
  border-radius: 18px;
  padding: 20px;
  margin: 0;
  color: var(--primary-deep);
  font-weight: 800;
}

/* ── Process / Timeline ── */
.process-section { background: var(--cream) }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.timeline:before {
  content: '';
  position: absolute;
  top: 43px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: .3;
}

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: .3s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(42, 42, 46, .1);
}
.step div {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--gradient-brand);
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

/* ── Testimonials ── */
.stories-section { background: var(--warm-white) }

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

.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: .3s ease;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 64px;
  line-height: 1;
  color: var(--sage-light);
  font-weight: 900;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.stars { color: var(--accent); font-size: 18px; letter-spacing: 2px; margin-bottom: 18px }

.person {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 12px;
  align-items: center;
  margin-top: 26px;
}
.person span {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--gradient-brand);
  color: #fff;
  font-weight: 900;
  display: grid;
  place-items: center;
}
.person small { grid-column: 2; color: var(--muted) }

/* ── Team ── */
.team-section { background: var(--cream) }

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

.team-card {
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: .3s ease;
  position: relative;
  overflow: hidden;
}
.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-brand);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--gradient-brand);
  color: #fff;
  font-weight: 900;
  font-size: 24px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}
.team-card small { display: block; color: var(--primary); font-weight: 900; margin-bottom: 10px }

/* ── Resources ── */
.resources-section { background: var(--cream) }

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

.resource-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: .3s ease;
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.resource-card > span { display: inline-flex; background: var(--sage-light); color: var(--primary); margin-bottom: 22px }
.resource-card a { font-weight: 900; color: var(--primary) }
.resource-card a:hover { color: var(--accent) }

/* ── FAQ ── */
.faq-section { background: var(--warm-white) }

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 56px;
  align-items: start;
}

.accordion { display: grid; gap: 14px }

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0 24px;
  box-shadow: var(--shadow-soft);
  transition: .25s ease;
}
details[open] {
  border-color: rgba(70, 63, 160, .2);
  box-shadow: 0 16px 40px rgba(42, 42, 46, .08);
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
summary::-webkit-details-marker { display: none }
summary:after {
  content: '+';
  font-size: 22px;
  color: var(--white);
  background: var(--primary);
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: .2s ease;
}
details[open] summary:after {
  content: '\2013';
  background: var(--accent);
}
details p { color: var(--muted); margin: 0 0 22px; line-height: 1.7 }

/* ── CTA Band ── */
.cta-band {
  padding: 90px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(240, 138, 30, .15), transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(70, 63, 160, .3), transparent 50%),
    linear-gradient(135deg, #211d44 0%, #262150 50%, #2a2358 100%);
  color: #fff;
}
.cta-inner { max-width: 760px }
.cta-inner h2 { font-size: 52px; color: #fff }
.cta-inner p { color: #d2d4ee; font-size: 18px; margin-bottom: 32px; line-height: 1.7 }

/* ── Contact ── */
.contact-section { background: var(--cream) }

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.contact-info { margin-top: 36px; display: grid; gap: 20px }
.contact-info div:not(.hours) { border-top: 1px solid var(--line); padding-top: 18px }
.contact-info strong { display: block; color: var(--primary-deep); margin-bottom: 6px }
.contact-info a { color: var(--primary); font-weight: 800 }
.contact-info a:hover { color: var(--accent) }

.hours {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  background: var(--gradient-warm);
  border-radius: 18px;
  padding: 20px;
  color: var(--muted);
}
.hours b { color: var(--ink) }

/* ── Intake Form ── */
.intake-form {
  display: grid;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.intake-form h3 { font-size: 32px; margin: 0 }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
label { display: grid; gap: 8px; font-weight: 800; color: var(--primary-deep) }

input, select, textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-xs);
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: var(--warm-white);
  outline: none;
  transition: .2s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(70, 63, 160, .1);
}

.submit-button { width: max-content }
.hidden { display: none }
.success-message { display: none; color: var(--primary); font-weight: 900 }

/* ── Footer ── */
.footer { padding: 80px 0 28px }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr .9fr;
  gap: 42px;
}
.footer p { color: #c4c6dd; line-height: 1.65 }
.footer h4 { margin: 0 0 14px; color: var(--accent-soft) }
.footer a { display: block; color: #d2d4ee; margin: 9px 0; transition: .2s ease }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom p { margin: 0 }
.footer-bottom a { display: inline; color: #d2d4ee }

.footer-brand .brand-text strong { color: #fff }
.footer-brand .brand-text small { color: #c4c6dd }

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .8s cubic-bezier(.22, 1, .36, 1) forwards;
}
.delay-1 { animation-delay: .15s }
.delay-2 { animation-delay: .3s }
.delay-3 { animation-delay: .45s }

@keyframes fadeUp {
  to { opacity: 1; transform: none }
}

/* ── Responsive: Tablet ── */
@media (max-width: 1040px) {
  .topbar nav, .nav-cta, .phone-link { display: none }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav.open { display: flex }
  .menu-toggle { display: block }

  .hero-grid, .two-col, .choose-grid, .eligibility-grid, .faq-grid, .contact-grid, .snapshot-grid {
    grid-template-columns: 1fr;
  }

  .services-grid, .testimonial-grid, .team-grid, .resource-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline { grid-template-columns: 1fr 1fr }
  .timeline:before { display: none }

  .language-card { position: static }

  .footer-grid { grid-template-columns: 1fr 1fr }

  .section { padding: 80px 0 }
}

/* ── Responsive: Mobile ── */
@media (max-width: 700px) {
  .container { width: min(100% - 28px, var(--container)) }
  .topbar-inner { justify-content: center; text-align: center }
  .topbar-inner span { display: none }

  .nav-wrap { height: 72px }
  .brand-text strong { font-size: 16px }
  .brand-mark { width: 42px; height: 42px; border-radius: 14px }
  .main-nav { top: 72px }

  .hero { padding: 68px 0 }
  .hero-grid { gap: 38px }
  h1 { font-size: 46px }
  .lead { font-size: 17px }

  .hero-card-top, .hero-stats, .feature-grid, .coverage-grid, .mini-stats,
  .services-grid, .testimonial-grid, .team-grid, .resource-grid,
  .timeline, .form-row, .footer-grid {
    grid-template-columns: 1fr;
  }

  .section { padding: 64px 0 }
  .section-head { margin-bottom: 40px }
  .snapshot h2 { font-size: 24px }
  .cta-inner h2 { font-size: 38px }
  .footer-bottom { flex-direction: column }
  .hero-actions .button { width: 100% }
  .submit-button { width: 100% }

  .service-card { min-height: auto; padding: 28px }
  .service-card h3 { font-size: 22px }

  .service-delivery-note {
    font-size: 14px;
    padding: 10px 20px;
  }

  .why-list div:hover { padding-left: 24px }
}

/* ── Brand logo image ── */
.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-brand .brand-logo {
  width: 44px;
  height: 44px;
  background: #fff;
  padding: 4px;
}

/* ── Hero photo background ── */
.hero { position: relative }
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 15% 25%, rgba(70, 63, 160, .85), transparent 55%),
    linear-gradient(115deg, rgba(33, 29, 68, .94) 0%, rgba(38, 33, 80, .82) 48%, rgba(42, 35, 88, .62) 100%);
}
.hero .hero-bg { z-index: 1 }
.hero-grid { z-index: 2 }

/* ── About: slideshow ── */
.about-section .two-col { align-items: center }
.about-features { margin-top: 56px }

.slideshow {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--cream-deep);
}
.slides {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  pointer-events: none;
}
.slide.is-active { opacity: 1; pointer-events: auto }
.slide img { width: 100%; height: 100%; object-fit: cover }

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: var(--primary-deep);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
  transition: .2s ease;
  z-index: 3;
}
.slide-nav:hover { background: #fff; transform: translateY(-50%) scale(1.06) }
.slide-nav.prev { left: 14px }
.slide-nav.next { right: 14px }

.slide-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}
.slide-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
  transition: .2s ease;
}
.slide-dots button.is-active { background: #fff; width: 24px }

/* ── Google Map ── */
.map-block { margin-top: 48px }
.map-heading {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--primary-deep);
}
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 7;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 700px) {
  .slides { aspect-ratio: 4 / 3 }
  .map-frame { aspect-ratio: 4 / 3 }
  .map-heading { font-size: 21px }
}

@media (prefers-reduced-motion: reduce) {
  .slide { transition: none }
}
