/* ============================================
   Anahita Global — Premium Static Landing
   Design language: calm, spacious, trustworthy
   ============================================ */

:root {
  --navy: #16324f;
  --navy-deep: #0f2438;
  --navy-soft: #1e4063;
  --white: #ffffff;
  --slate: #5b6b7c;
  --slate-dark: #3d4a57;
  --soft-blue: #eaf4ff;
  --neutral: #f8fafc;
  --border: rgba(22, 50, 79, 0.08);
  --border-strong: rgba(22, 50, 79, 0.12);
  --emerald: #0d9488;
  --emerald-soft: #ccfbf1;
  --gold: #b8860b;
  --shadow: 0 4px 24px rgba(22, 50, 79, 0.06);
  --shadow-hover: 0 12px 40px rgba(22, 50, 79, 0.1);
  --shadow-lift: 0 16px 48px rgba(22, 50, 79, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --font-heading: "Manrope", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --container: 1120px;
  --header-h: 86px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--slate-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

::selection {
  background: rgba(13, 148, 136, 0.18);
  color: var(--navy);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 3px;
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 0%;
  z-index: 200;
  background: linear-gradient(90deg, var(--emerald) 0%, #2dd4bf 100%);
  transform-origin: left center;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(13, 148, 136, 0.35);
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.35rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--slate);
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 0.85rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease-out),
    background 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease);
  white-space: nowrap;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.14) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease-out);
  pointer-events: none;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(22, 50, 79, 0.2);
}

.btn-primary:hover {
  background: var(--navy-deep);
  box-shadow: 0 10px 28px rgba(22, 50, 79, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  background: var(--neutral);
  border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(22, 50, 79, 0.06);
}

.btn-ghost::after {
  display: none;
}

.btn-accent {
  background: var(--emerald);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
}

.btn-accent:hover {
  background: #0f766e;
  box-shadow: 0 10px 28px rgba(13, 148, 136, 0.38);
}

.btn-sm {
  padding: 0.65rem 1.15rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 32px rgba(22, 50, 79, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.25s var(--ease);
}

.logo:hover {
  opacity: 0.88;
}

.logo-img {
  display: block;
  height: 60px;
  width: auto;
  max-width: min(300px, 48vw);
  object-fit: contain;
}

.logo-img--footer {
  height: 68px;
  max-width: 320px;
  /* Soft white plate so the dark wordmark stays readable on the navy footer */
  background: #fff;
  border-radius: 10px;
  padding: 0.4rem 0.65rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-link {
  position: relative;
  padding: 0.5rem 0.85rem;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--slate);
  border-radius: 8px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-link:hover {
  color: var(--navy);
  background: var(--neutral);
}

.nav-link.active {
  color: var(--navy);
  background: var(--neutral);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--emerald);
  transform: translateX(-50%);
}

.header-cta {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2.75rem, 6vw, 5.25rem) 0 clamp(3rem, 6vw, 5.5rem);
  background: linear-gradient(180deg, var(--white) 0%, var(--neutral) 100%);
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}

.hero::before {
  width: min(52vw, 480px);
  height: min(52vw, 480px);
  top: -12%;
  right: -6%;
  background: rgba(234, 244, 255, 0.9);
  opacity: 0.9;
}

.hero::after {
  width: min(40vw, 360px);
  height: min(40vw, 360px);
  bottom: -8%;
  left: -8%;
  background: rgba(204, 251, 241, 0.55);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(2rem, 4.5vw, 3.75rem);
  align-items: center;
  position: relative;
}

.hero-content {
  max-width: 34rem;
}

.hero-content h1 {
  margin-bottom: 0.9rem;
  max-width: 17ch;
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  line-height: 1.15;
}

.hero-lead {
  font-size: 1.02rem;
  max-width: 42ch;
  margin-bottom: 1.35rem;
  line-height: 1.6;
}

.trust-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.trust-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
  color: var(--navy);
  font-size: 0.875rem;
  width: fit-content;
  padding: 0.4rem 0.75rem 0.4rem 0.45rem;
  border-radius: 999px;
  background: rgba(234, 244, 255, 0.65);
  border: 1px solid rgba(22, 50, 79, 0.06);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.trust-bullets li:hover {
  background: rgba(234, 244, 255, 0.95);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(22, 50, 79, 0.06);
}

.trust-bullets .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--emerald);
  stroke-linecap: round;
  stroke-linejoin: round;
  padding: 2px;
  border-radius: 50%;
  background: var(--emerald-soft);
  box-sizing: content-box;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero visual — full service graphic, no crop */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin-inline: auto 0;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #f4f9fc 0%, #eef6fb 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lift);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease);
}

.hero-image-wrap:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.hero-image-wrap img,
.hero-banner-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 1432 / 1306;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 1s var(--ease-out);
}

.hero-visual:hover .hero-image-wrap img {
  transform: scale(1.015);
}

/* Metrics */
.metrics {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 2.75rem 0;
  position: relative;
  overflow: hidden;
}

.metrics::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 10% 50%, rgba(13, 148, 136, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 70% at 90% 40%, rgba(234, 244, 255, 0.06), transparent 50%);
  pointer-events: none;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
  position: relative;
}

.metric {
  position: relative;
  padding: 0.5rem 0.75rem;
}

.metric:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.metric strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
  font-variant-numeric: tabular-nums;
}

.metric span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Sections */
.section {
  padding: clamp(5rem, 10vw, 7.5rem) 0;
}

.section-soft {
  background: linear-gradient(180deg, var(--neutral) 0%, #f1f5f9 50%, var(--neutral) 100%);
}

.section-dark {
  background:
    radial-gradient(ellipse 60% 70% at 100% 0%, rgba(13, 148, 136, 0.14), transparent 50%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(30, 64, 99, 0.6), transparent 55%),
    var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-header {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-header.light h2,
.section-header.light .section-lead {
  color: var(--white);
}

.section-header.light .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.section-header.light .eyebrow {
  color: #5eead4;
}

.section-lead {
  margin-top: 1rem;
  font-size: 1.05rem;
  max-width: 52ch;
}

/* About */
.about .section-header {
  max-width: 720px;
}

.about-leadership {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--neutral);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.about-leadership-intro h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  margin: 0.35rem 0 1rem;
  color: var(--navy);
}

.about-leadership-intro p:not(.eyebrow) {
  margin: 0;
  max-width: 54ch;
  line-height: 1.7;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.leadership-card {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  padding: 1.25rem 1.35rem;
}

.leadership-avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.leadership-meta h4 {
  font-size: 1.05rem;
  margin: 0 0 0.2rem;
  color: var(--navy);
  line-height: 1.35;
}

.leadership-creds {
  font-size: 0.85rem;
  color: var(--slate);
  margin: 0 0 0.35rem;
}

.leadership-role {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--emerald);
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease),
    border-color 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(22, 50, 79, 0.1);
}

/* Services */
.services-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 2rem;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
  box-shadow: 0 2px 12px rgba(22, 50, 79, 0.04);
}

.service-tab {
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--slate);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.service-tab:hover {
  color: var(--navy);
  background: var(--neutral);
}

.service-tab.is-active {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(22, 50, 79, 0.2);
}

.service-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow);
  animation: panel-in 0.45s var(--ease-out);
}

.service-panel[hidden] {
  display: none;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-panel-intro {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.service-panel-intro h3 {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}

.service-panel-tagline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--emerald);
  margin-bottom: 0.5rem;
  max-width: 60ch;
}

.service-panel-intro p {
  max-width: 60ch;
}

.wellness-cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.25rem 0;
}

.wellness-cta-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 0;
}

.wellness-cta-card p {
  font-size: 0.98rem;
  max-width: 36ch;
}

/* Programs We Offer */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.program-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.5rem 1.4rem;
  height: 100%;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease),
    border-color 0.25s var(--ease);
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(13, 148, 136, 0.2);
}

.program-card h3 {
  font-size: 1.05rem;
  line-height: 1.35;
}

.program-card p {
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--soft-blue);
  color: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-spring), background 0.3s var(--ease), color 0.3s var(--ease);
}

.service-card:hover .service-icon,
.choose-card:hover .service-icon {
  transform: scale(1.08);
  background: var(--navy);
  color: var(--white);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon.sm {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.service-icon.sm svg {
  width: 22px;
  height: 22px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.two-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 1rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--slate);
  font-size: 0.98rem;
  line-height: 1.55;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
}

.feature-list strong {
  color: var(--navy);
  font-weight: 600;
}

.accent-card {
  background: var(--soft-blue);
  border-color: transparent;
  box-shadow: none;
}

.accent-card:hover {
  transform: none;
  box-shadow: none;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d9488' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
  text-decoration: none;
}

.service-card h3 {
  font-size: 1.1rem;
}

.service-card p {
  font-size: 0.925rem;
  flex: 1;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-top: 0.5rem;
  transition: color 0.25s var(--ease), transform 0.3s var(--ease-out);
}

.service-card:hover .link-arrow,
.know-card:hover .link-arrow {
  color: var(--emerald);
  transform: translateX(4px);
}

/* Why India */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.why-card:hover .service-icon {
  transform: scale(1.08);
  background: rgba(94, 234, 212, 0.18);
  color: #5eead4;
}

.why-card .service-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #5eead4;
}

.why-card h3 {
  color: var(--white);
  margin: 0.25rem 0 0.5rem;
}

.why-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.925rem;
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: none;
}

.timeline-step {
  position: relative;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease),
    border-color 0.3s var(--ease);
}

.timeline-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), rgba(13, 148, 136, 0.2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}

.timeline-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(13, 148, 136, 0.2);
}

.timeline-step:hover::before {
  transform: scaleX(1);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 1.75rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--emerald);
  background: var(--emerald-soft);
  margin-bottom: 0.9rem;
}

.timeline-step h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.timeline-step p {
  font-size: 0.925rem;
}

/* Why choose us */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.choose-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
}

.choose-card h3 {
  font-size: 1.1rem;
}

.choose-card p {
  font-size: 0.925rem;
}

/* Know more */
.know-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.know-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 100%;
  text-decoration: none;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.know-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 244, 255, 0.9), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.know-card:hover::after {
  opacity: 1;
}

.know-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--emerald);
}

.know-card h3 {
  font-size: 1.25rem;
}

.know-card p {
  font-size: 0.95rem;
  flex: 1;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.faq-intro h2 {
  margin-bottom: 0.85rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 1.25rem;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.faq-item:hover {
  border-color: rgba(22, 50, 79, 0.14);
}

.faq-item[open] {
  box-shadow: var(--shadow);
  border-color: rgba(13, 148, 136, 0.25);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 0;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background:
    linear-gradient(var(--slate), var(--slate)) center / 10px 1.5px no-repeat,
    linear-gradient(var(--slate), var(--slate)) center / 1.5px 10px no-repeat,
    var(--neutral);
  transition: transform 0.3s var(--ease-out), background-color 0.25s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  background:
    linear-gradient(var(--navy), var(--navy)) center / 10px 1.5px no-repeat,
    linear-gradient(var(--navy), var(--navy)) center / 1.5px 10px no-repeat,
    var(--soft-blue);
}

.faq-item p {
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  max-width: 58ch;
  animation: faq-open 0.35s var(--ease-out);
}

@keyframes faq-open {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 0.85rem;
}

.contact-details {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--soft-blue);
  color: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring), background 0.25s var(--ease), color 0.25s var(--ease);
}

.contact-row:hover .contact-icon {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.05);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-row h3 {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--slate);
  font-weight: 600;
}

.contact-row p {
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.55;
}

.contact-row a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(22, 50, 79, 0.25);
}

.contact-row a:hover {
  text-decoration-color: var(--emerald);
  color: var(--emerald);
}

.contact-form {
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-hover);
}

.contact-form:hover {
  transform: none;
  box-shadow: var(--shadow-lift);
}

.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.form-note {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.form-row {
  margin-bottom: 1.1rem;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-family: var(--font-heading);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: var(--neutral);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), transform 0.2s var(--ease);
  outline: none;
}

.form-row input:hover,
.form-row select:hover,
.form-row textarea:hover {
  border-color: rgba(22, 50, 79, 0.22);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--emerald);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
}

.form-row textarea {
  resize: vertical;
  min-height: 110px;
}

.form-success {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: var(--emerald-soft);
  color: #115e59;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Final CTA */
.final-cta {
  background:
    radial-gradient(ellipse 70% 80% at 50% 120%, rgba(13, 148, 136, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 60% at 80% 0%, rgba(30, 64, 99, 0.5), transparent 50%),
    var(--navy-deep);
  padding: clamp(4.5rem, 9vw, 6.5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-inner {
  max-width: 640px;
  position: relative;
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 32ch;
  line-height: 1.6;
}

.footer-col h3 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col a {
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* Policy dialog — centered (universal margin:0 reset otherwise pins native <dialog> to top-left) */
.policy-dialog {
  position: fixed;
  inset: 0;
  margin: auto;
  border: none;
  border-radius: var(--radius);
  padding: 0;
  width: min(560px, calc(100vw - 2rem));
  max-width: min(560px, calc(100vw - 2rem));
  max-height: min(80vh, 640px);
  height: fit-content;
  box-shadow: 0 24px 64px rgba(15, 36, 56, 0.3);
}

.policy-dialog::backdrop {
  background: rgba(15, 36, 56, 0.45);
  backdrop-filter: blur(4px);
}

.policy-dialog-inner {
  padding: 2rem;
  position: relative;
  max-height: min(80vh, 640px);
  overflow-y: auto;
}

.policy-dialog h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  padding-right: 2rem;
}

.policy-dialog h3 {
  font-size: 1rem;
  margin: 1.15rem 0 0.4rem;
  color: var(--navy);
}

.policy-dialog p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.policy-dialog a {
  color: var(--emerald);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-dialog a:hover {
  color: var(--navy);
}

.policy-close {
  position: absolute;
  top: 1rem;
  right: 1.15rem;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--slate);
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.policy-close:hover {
  background: var(--neutral);
  color: var(--navy);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(2px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out),
    filter 0.75s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-up {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .btn:hover,
  .card:hover,
  .timeline-step:hover,
  .trust-bullets li:hover {
    transform: none;
  }

  .btn::after,
  .hero-image-wrap,
  .service-panel {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .scroll-progress {
    display: none;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid,
  .about-leadership,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-content {
    max-width: none;
  }

  .hero-content h1 {
    max-width: 18ch;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-image-wrap {
    max-width: 480px;
    margin-inline: auto;
  }

  .leadership-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-cards,
  .why-grid,
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .two-col {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .metric:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 52px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-hover);
    gap: 0.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    padding: 0.85rem 1rem;
  }

  .services-nav {
    border-radius: var(--radius-sm);
    width: 100%;
  }

  .service-tab {
    flex: 1 1 auto;
    text-align: center;
    font-size: 0.8rem;
    padding: 0.55rem 0.7rem;
  }

  .service-cards,
  .why-grid,
  .choose-grid,
  .know-grid,
  .programs-grid,
  .leadership-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .service-panel-intro {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metric::after {
    display: none;
  }

  .nav-link.active::after {
    display: none;
  }
}
