/* =========================================================
   AKZ MEDICAL TRAVELS — Stylesheet
   Refined editorial aesthetic. Serif headlines, generous space,
   African landmark imagery as quiet hero, restrained motion.
   ========================================================= */

:root {
  /* Brand palette */
  --ink: #0F1F2C;
  --ink-soft: #1B3242;
  --ink-mid: #2E4456;
  --teal: #2BB3B6;
  --teal-bright: #5DD5D8;
  --orange: #F58220;
  --orange-deep: #D96A11;
  --cream: #F8F4ED;
  --cream-warm: #F2EBDB;
  --paper: #FFFFFF;
  --line: rgba(15, 31, 44, 0.10);
  --muted: #5A6470;

  /* Ghana flag */
  --gh-red: #CE1126;
  --gh-yellow: #FCD116;
  --gh-green: #006B3F;

  /* Type */
  --serif: 'Fraunces', 'Georgia', 'Times New Roman', serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Sizing */
  --container: 1240px;
  --gutter: 32px;
  --section-y: clamp(80px, 10vw, 140px);
  --radius: 14px;
  --radius-sm: 6px;

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s var(--ease), padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav.scrolled {
  background: rgba(15, 31, 44, 0.96);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 8px 28px rgba(0,0,0,0.30);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.nav-logo {
  height: 38px;
  width: auto;
  transition: transform 0.4s var(--ease);
}
.nav-brand:hover .nav-logo { transform: rotate(-6deg) scale(1.05); }

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.nav-brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: white;
}
.nav-brand-tag {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--teal-bright);
  transition: width 0.3s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a:hover { color: white; }

.nav-cta {
  background: var(--orange);
  color: white !important;
  padding: 10px 18px !important;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav-cta:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 32px;
  height: 32px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(43,179,182,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(245,130,32,0.10) 0%, transparent 50%),
    linear-gradient(160deg, #0F1F2C 0%, #142A3D 50%, #0F1F2C 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-landmark {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 50%;
  object-fit: cover;
  object-position: bottom center;
  opacity: 0.22;
  mask-image: linear-gradient(to top, black 30%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, black 30%, transparent 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.92 0 0 0 0 0.85 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px 8px 8px;
  border-radius: 100px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s var(--ease) both;
}

.flag-emoji {
  font-size: 18px;
  line-height: 1;
}

.eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.hero-headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 32px;
  color: white;
  font-variation-settings: "opsz" 144;
}
.hero-headline .line-1,
.hero-headline .line-2,
.hero-headline .line-3 {
  display: block;
  animation: fadeUp 0.8s var(--ease) both;
}
.hero-headline .line-1 { animation-delay: 0.1s; }
.hero-headline .line-2 { animation-delay: 0.25s; }
.hero-headline .line-3 { animation-delay: 0.4s; }
.hero-headline em {
  font-style: italic;
  color: var(--teal-bright);
  font-weight: 400;
}

.hero-sub {
  max-width: 600px;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0 0 40px;
  animation: fadeUp 0.8s var(--ease) 0.55s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 80px;
  animation: fadeUp 0.8s var(--ease) 0.7s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  border: 0;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.btn span {
  display: inline-block;
  transition: transform 0.25s var(--ease);
}
.btn:hover span { transform: translateX(4px); }

.btn-primary {
  background: var(--orange);
  color: white;
}
.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245,130,32,0.30);
}

.btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.5);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
  max-width: 800px;
  animation: fadeUp 0.8s var(--ease) 0.85s both;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  color: var(--teal-bright);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  animation: fadeUp 1s var(--ease) 1.1s both;
}
.scroll-text {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollHint 2.2s ease-in-out infinite;
}

@keyframes scrollHint {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(0.4); transform-origin: bottom; opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   SECTION COMMONS
   ========================================================= */
section { padding: var(--section-y) 0; }

.section-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 40px;
  font-family: var(--sans);
}
.section-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--orange);
  letter-spacing: 0.05em;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--ink);
  max-width: 18ch;
}
.section-title em {
  font-style: italic;
  color: var(--teal);
  font-weight: 400;
}
.section-title-light { color: white; }
.section-title-light em { color: var(--teal-bright); }

.lede {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--ink-mid);
  max-width: 60ch;
  margin: 0 0 24px;
  font-weight: 400;
}
.lede-light { color: rgba(255,255,255,0.78); }

.section-intro {
  margin-bottom: 64px;
  max-width: 800px;
}

.subsection-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 80px 0 12px;
  color: var(--ink);
}
.subsection-sub {
  color: var(--muted);
  font-size: 15px;
  max-width: 58ch;
  margin: 0 0 32px;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: var(--paper); }

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text p { margin: 0 0 18px; color: var(--ink-mid); }

.about-card {
  background: var(--cream);
  padding: 36px 32px;
  border-radius: var(--radius);
  position: sticky;
  top: 120px;
}
.card-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.vm-block { margin-bottom: 24px; }
.vm-block:last-child { margin-bottom: 0; }
.vm-block h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 24px;
  margin: 0 0 8px;
  color: var(--ink);
}
.vm-block p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-mid); }
.vm-mission { padding-top: 24px; border-top: 1px solid var(--line); }

/* =========================================================
   PROBLEM (dark)
   ========================================================= */
.problem {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(43,179,182,0.10) 0%, transparent 60%),
    linear-gradient(170deg, #0F1F2C 0%, #142A3D 100%);
  color: white;
  position: relative;
}
.problem::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}
.problem .container { position: relative; z-index: 1; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 48px 0 48px;
}

.problem-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  transition: all 0.3s var(--ease);
}
.problem-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(93,213,216,0.30);
  transform: translateY(-3px);
}
.problem-tag {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--orange);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.problem-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}

.problem-conclusion {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
  color: white;
  max-width: 50ch;
  margin: 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.problem-conclusion em { color: var(--teal-bright); font-style: italic; }

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

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

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  position: relative;
  transition: all 0.3s var(--ease);
}
.service-card::before {
  content: attr(data-num);
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--muted);
  opacity: 0.5;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -12px rgba(15,31,44,0.18);
  border-color: rgba(43,179,182,0.30);
}
.service-card:hover .service-icon {
  background: var(--teal);
  color: white;
  transform: rotate(-6deg);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal-bright);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s var(--ease);
}
.service-icon svg { width: 22px; height: 22px; }

.service-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
}
.service-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-mid);
}

/* =========================================================
   HUBS
   ========================================================= */
.hubs { background: var(--paper); }

.hubs-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.hub {
  padding: 44px 40px 40px;
  border-radius: var(--radius);
  color: white;
  position: relative;
  overflow: hidden;
}
.hub-ghana {
  background: linear-gradient(135deg, #006B3F 0%, #1B3242 50%, #CE1126 100%);
}
.hub-sa {
  background: linear-gradient(135deg, #007749 0%, #1B3242 50%, #002395 100%);
}
.hub::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08), transparent 70%);
  pointer-events: none;
}

.hub-flag-emoji {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 20px;
}

.hub-tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.hub h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: white;
}
.hub p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 38ch;
}
.hub-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.hub-meta span:first-child {
  font-weight: 700;
  color: white;
  font-size: 14px;
}

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

.landmark {
  margin: 0;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}
.landmark:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px -12px rgba(15,31,44,0.16);
}
.landmark img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.landmark figcaption {
  padding: 22px 24px 24px;
}
.landmark .loc {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.landmark strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.15;
  margin-bottom: 6px;
  color: var(--ink);
}
.landmark p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}

/* =========================================================
   JOURNEY
   ========================================================= */
.journey { background: var(--cream); }

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
  counter-reset: step;
}

.steps li {
  display: flex;
  gap: 24px;
  background: var(--paper);
  padding: 24px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  align-items: flex-start;
  transition: all 0.3s var(--ease);
  position: relative;
}
.steps li:hover {
  transform: translateX(4px);
  border-color: rgba(43,179,182,0.30);
}

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--teal-bright);
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps li:nth-child(even) .step-num { background: var(--teal); color: white; }

.step-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  margin: 6px 0 4px;
  color: var(--ink);
}
.step-body p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-mid);
  line-height: 1.55;
}

/* =========================================================
   SPECIALTIES
   ========================================================= */
.specialties { background: var(--paper); }

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

.specialty {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: all 0.3s var(--ease);
}
.specialty:hover {
  background: var(--ink);
  border-color: var(--ink);
}
.specialty:hover strong,
.specialty:hover p {
  color: white;
}
.specialty strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: var(--ink);
}
.specialty p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.5;
}

.specialties-note {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

/* =========================================================
   PARTNERS
   ========================================================= */
.partners { background: var(--cream); }

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.partner-card {
  padding: 44px 40px 40px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.partner-corporate {
  background: var(--paper);
  border: 1px solid var(--line);
}
.partner-government {
  background: linear-gradient(170deg, #0F1F2C 0%, #1B3242 100%);
  color: white;
}

.partner-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.partner-corporate .partner-tag {
  background: var(--orange);
  color: white;
}
.partner-government .partner-tag {
  background: rgba(93,213,216,0.15);
  color: var(--teal-bright);
}

.partner-card h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.partner-corporate h2 { color: var(--ink); }
.partner-government h2 { color: white; }

.partner-card > p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.55;
}
.partner-corporate > p { color: var(--ink-mid); }
.partner-government > p { color: rgba(255,255,255,0.82); }

.partner-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 8px;
}
.partner-card li {
  font-size: 14px;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.partner-corporate li { color: var(--ink-mid); }
.partner-government li { color: rgba(255,255,255,0.82); }
.partner-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.partner-government li::before { color: var(--teal-bright); }

.partner-sectors {
  font-size: 13.5px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin: 0;
}
.partner-corporate .partner-sectors {
  background: var(--cream);
  color: var(--ink-mid);
}
.partner-government .partner-sectors {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.82);
}

/* Tiers */
.tiers { margin-top: 60px; }
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tier {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  position: relative;
  transition: all 0.3s var(--ease);
}
.tier:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px -10px rgba(15,31,44,0.14);
}
.tier-featured {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
.tier-ribbon {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

.tier-head { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.tier-featured .tier-head { border-bottom-color: rgba(255,255,255,0.15); }
.tier-name {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.tier-featured .tier-name { color: var(--teal-bright); }
.tier-sub {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.tier-featured .tier-sub { color: rgba(255,255,255,0.6); }

.tier ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.tier li {
  font-size: 14px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
  color: var(--ink-mid);
}
.tier-featured li { color: rgba(255,255,255,0.85); }
.tier li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.tier-featured li::before { color: var(--teal-bright); }

/* =========================================================
   WHY
   ========================================================= */
.why {
  background: linear-gradient(170deg, #0F1F2C 0%, #142A3D 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(43,179,182,0.12), transparent 70%);
  pointer-events: none;
}
.why .section-num { color: var(--orange); }
.why .section-label { color: rgba(255,255,255,0.6); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  transition: all 0.3s var(--ease);
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(93,213,216,0.4);
  transform: translateY(-3px);
}
.why-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  color: var(--teal-bright);
  margin-bottom: 14px;
}
.why-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: white;
}
.why-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(245,130,32,0.10) 0%, transparent 50%),
    linear-gradient(170deg, #0F1F2C 0%, #1B3242 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.contact .section-num { color: var(--orange); }
.contact .section-label { color: rgba(255,255,255,0.6); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: start;
}

.contact-intro .section-title em {
  font-style: italic;
  color: var(--teal-bright);
}

/* Form */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form label > span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-bright);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  font-size: 14px;
  color: white;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--teal-bright);
  background: rgba(255,255,255,0.09);
}
.contact-form select option {
  background: var(--ink);
  color: white;
}
.contact-form textarea {
  resize: vertical;
  min-height: 90px;
  font-family: inherit;
}
.contact-form .btn-block { margin-top: 4px; }
.form-note {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin: 0;
}

/* Offices */
.offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.office {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
}
.office-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 16px;
}
.office-phones {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}
.office-phones a {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  color: white;
  transition: color 0.2s var(--ease);
  letter-spacing: -0.01em;
}
.office-phones a:hover { color: var(--teal-bright); }
.office p {
  margin: 0 0 8px;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}
.office-note {
  font-size: 12px !important;
  color: rgba(255,255,255,0.55) !important;
  font-style: italic;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #0A1722;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo { height: 40px; width: auto; }
.footer-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  color: white;
  letter-spacing: -0.01em;
}
.footer-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s var(--ease);
}
.footer-links a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { margin: 0; }

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .landmarks { grid-template-columns: repeat(2, 1fr); }
  .specialties-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-card { position: static; }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 78%;
    max-width: 320px;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 32px 32px;
    gap: 18px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,0.4);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 16px; }
  .nav-brand-tag { display: none; }

  .hero { padding: 120px 0 80px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero-scroll { display: none; }

  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hubs-banner { grid-template-columns: 1fr; }
  .landmarks { grid-template-columns: 1fr; }
  .specialties-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .offices { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
