/* =============================================
   SubscriptionSites — Main Stylesheet
   Based on the SpaceWorks template
   Accent: light blue (swapped from green)
   ============================================= */

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

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --gray-100: #f0f0ef;
  --gray-200: #e2e2e0;
  --gray-400: #a8a8a4;
  --gray-600: #6a6a66;
  --gray-800: #2e2c2a;

  /* Light blue accent (swapped from green) */
  --accent: #38bdf8;
  --accent-dark: #0284c7;
  --accent-light: #e0f2fe;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-card: 0 2px 12px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-elevated: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);

  --max-w: 1120px;
  --nav-h: 68px;
}

html {
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  font-size: 16px;
}

/* Clip horizontal overflow at the wrapper level instead of body,
   so the browser can still hand scrolling to the GPU compositor */
.marquee-wrap,
.services-tags-wrap,
.services-gallery,
.nav__mobile {
  overflow: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

p, li, .hero__sub, .value-card__desc, .step__desc,
.why-feature__desc, .mission-content p, .testimonial-text,
.pricing-card__desc, .faq-answer p, .cta-banner p {
  text-wrap: pretty;
}

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

.section { padding: 100px 0; }
.section--alt { background: var(--off-white); }
.section--dark {
  background: var(--black);
  color: var(--white);
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  will-change: background;
  transform: translateZ(0);
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--gray-200);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 33px;
  width: auto;
  display: block;
}

.nav__wordmark-img {
  height: 28px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
}
.nav__links a:hover { color: var(--black); }

.nav__cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
}
.nav__cta:hover {
  background: var(--accent-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* Burger → X */
.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.nav__mobile.open { opacity: 1; pointer-events: all; }
.nav__mobile a {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--black);
}
.nav__mobile .nav__cta {
  font-size: 1rem !important;
  font-weight: 600 !important;
  padding: 14px 36px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 0;
  text-align: center;
  overflow: hidden;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title { max-width: 800px; margin: 0 auto 20px; }

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero__reassure {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin: 0 auto 64px;
  letter-spacing: 0.01em;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}
.btn:hover { opacity: 0.88; }

.btn--primary {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.btn--primary:hover {
  opacity: 1;
  background: var(--accent-dark);
  box-shadow: 0 6px 24px rgba(2,132,199,0.28);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--gray-200);
}
.btn--outline:hover {
  opacity: 1;
  border-color: var(--gray-400);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* =============================================
   MARQUEE — 1:1 aspect ratio, 3 visible, slow
   ============================================= */
.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 60s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.marquee-track img {
  width: clamp(240px, 28vw, 360px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

/* =============================================
   VALUE PROPS
   ============================================= */
.value-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.value-intro p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-top: 16px;
}

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

.value-card {
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.value-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.value-card__desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.value-card--stat .stat-number {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--black);
  line-height: 1;
  margin-top: 12px;
}

.chat-bubble-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.chat-bubble {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.chat-bubble--out { flex-direction: row-reverse; }

.chat-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.chat-text {
  background: var(--white);
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 0.82rem;
  line-height: 1.4;
  max-width: 80%;
  box-shadow: var(--shadow-card);
}
.chat-bubble--out .chat-text {
  background: var(--accent);
  color: white;
}

.task-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.task-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  font-size: 0.83rem;
  font-weight: 600;
}
.task-time { font-size: 0.75rem; color: var(--gray-400); font-weight: 400; }
.task-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

/* =============================================
   HOW IT WORKS — video centred + steps horizontal below
   ============================================= */
.how-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.how-video-wrap {
  max-width: 840px;
  margin: 0 auto 56px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  aspect-ratio: 16 / 9;
  background: var(--gray-200);
}
.how-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Steps horizontal */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.step {
  padding: 28px 32px;
  border-right: 1px solid var(--gray-200);
  position: relative;
}
.step:last-child { border-right: none; }

.step__num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-dark);
  background: var(--accent-light);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
}

.step__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray-400);
  margin-bottom: 6px;
}
.step__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step__desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* =============================================
   WHY CHOOSE US — no eyebrow, features horizontal
   ============================================= */
.why-section { padding: 100px 0; }

.why-header {
  margin-bottom: 56px;
}
.why-header h2 { margin-bottom: 10px; }
.why-header p { font-size: 1.05rem; color: var(--gray-600); max-width: 500px; }

.why-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.why-feature {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.why-feature__icon {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.why-feature__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.why-feature__desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* =============================================
   MISSION / ABOUT — founder image alongside
   ============================================= */
.mission-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}

.mission-content h2 { margin-bottom: 20px; }
.mission-content p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 18px;
}

.mission-image-wrap { position: relative; }
.mission-image-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.mission-caption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-top: 14px;
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-200);
  margin-top: 64px;
}

.mission-stat {
  padding: 36px 0;
  border-right: 1px solid var(--gray-200);
  padding-right: 32px;
  padding-left: 32px;
}
.mission-stat:first-child { padding-left: 0; }
.mission-stat:last-child { border-right: none; }

.mission-stat__num {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}
.mission-stat__desc { font-size: 0.88rem; color: var(--gray-600); line-height: 1.5; }

/* =============================================
   SERVICES — dark bg, scrolling tags, image grid
   ============================================= */
.services-section {
  background: var(--black);
  color: var(--white);
  padding: 100px 0;
}

.services-header {
  text-align: center;
  margin-bottom: 48px;
}
.services-header h2 { color: var(--white); margin-bottom: 12px; }
.services-header p { color: rgba(255,255,255,0.55); font-size: 1rem; max-width: 480px; margin: 0 auto; }

.services-tags-wrap {
  overflow: hidden;
  margin-bottom: 48px;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.services-tags-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: marquee 50s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  background: rgba(255,255,255,0.05);
  flex-shrink: 0;
}

.services-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  height: 600px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  isolation: isolate;
}

.services-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.services-col--1 { animation: tickerUp 32s linear infinite; }
.services-col--2 { animation: tickerUp 40s linear infinite; animation-delay: -12s; }
.services-col--3 { animation: tickerUp 36s linear infinite; animation-delay: -6s; }

.services-gallery:not(.ticker-ready) .services-col {
  animation-play-state: paused;
}

@keyframes tickerUp {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(0, -50%, 0); }
}

.services-col img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  flex-shrink: 0;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 1px; }
.testimonial-text { font-size: 0.95rem; line-height: 1.7; color: var(--gray-800); flex: 1; }
.testimonial-name { font-size: 0.88rem; font-weight: 700; }
.testimonial-role { font-size: 0.8rem; color: var(--gray-400); margin-top: 2px; }

/* =============================================
   PRICING — dark bento layout
   ============================================= */
.pricing-section {
  background: var(--black);
  color: var(--white);
  padding: 100px 0;
}

.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}
.pricing-header h2 { color: var(--white); margin-bottom: 10px; }
.pricing-header p { color: rgba(255,255,255,0.5); font-size: 1rem; }

.pricing-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

/* Single-plan layout — one centred card */
.pricing-bento--single {
  display: flex;
  justify-content: center;
}
.pricing-bento--single .pricing-card {
  width: 100%;
  max-width: 440px;
}

.pricing-card {
  background: #161616;
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.07);
}
.pricing-card:hover {
  opacity: 0.9;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* Featured — subtle blue accent */
.pricing-card--agency {
  background: #0c1a26;
  border-color: rgba(56,189,248,0.22);
}

.pricing-card__tier {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.pricing-card__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
  margin-bottom: 20px;
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin-bottom: 20px;
}
.pricing-price__amount {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--white);
}
.pricing-price__period {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  padding-bottom: 5px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-features li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.pricing-card__btn {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: auto;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
}
.pricing-card__btn:hover {
  opacity: 0.8;
}

.pricing-card--agency .pricing-card__btn {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}
.pricing-card--agency .pricing-card__btn:hover {
  opacity: 0.85;
}

.pricing-card--trial .pricing-price__amount {
  color: var(--white);
}

/* =============================================
   FAQ — centred header, left-aligned accordion
   ============================================= */
.faq-section { padding: 100px 0; background: var(--off-white); }

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}
.faq-header .section-eyebrow { color: var(--accent-dark); }
.faq-header h2 { margin-bottom: 12px; }
.faq-header p {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}
.faq-header p a { color: var(--accent-dark); font-weight: 600; }

.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:first-child { border-top: 1px solid var(--gray-200); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  gap: 16px;
}
.faq-question:hover { color: var(--accent-dark); }

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 400;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: white;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding-bottom: 22px;
  font-size: 0.93rem;
  color: var(--gray-600);
  line-height: 1.7;
  text-align: left;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* =============================================
   SECTION EYEBROW
   ============================================= */
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

/* =============================================
   CTA BANNER — black + blue pulse
   ============================================= */
.cta-banner {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 100px 24px;
}

.cta-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56,189,248,0.14);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(56,189,248,0.28);
}

.cta-banner__dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.cta-banner h2 { color: var(--white); max-width: 520px; margin: 0 auto 14px; }
.cta-banner p { color: rgba(255,255,255,0.55); max-width: 600px; margin: 0 auto 40px; font-size: 1rem; }

.cta-banner .btn--primary {
  background: var(--white);
  color: var(--black);
}
.cta-banner .btn--primary:hover {
  background: var(--accent);
  color: var(--white);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}
.footer__brand { max-width: 280px; }
.footer__wordmark-img {
  height: 26px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}
.footer__brand p { font-size: 0.85rem; line-height: 1.6; }
.footer__col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
  font-weight: 700;
}
.footer__col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  max-width: var(--max-w);
  margin: 40px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-hero {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 16px;
  text-align: center;
}
.contact-hero .hero__badge { margin-bottom: 24px; }
.contact-hero h1 { max-width: 720px; margin: 0 auto 16px; }
.contact-hero p {
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.contact-section { padding: 56px 0 100px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.contact-form {
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.contact-form h3 { font-size: 1.3rem; margin-bottom: 6px; }
.contact-form > p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 28px;
}

.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--gray-800);
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  padding: 13px 15px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--black);
  transition: border-color 0.2s ease;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 6px; }

/* Booking card — dark */
.booking-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.booking-card .hero__badge {
  background: rgba(56,189,248,0.14);
  color: var(--accent);
  border: 1px solid rgba(56,189,248,0.28);
  margin-bottom: 22px;
}
.booking-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 8px; }
.booking-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 24px;
}
.booking-card ul {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.booking-card li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 10px;
}
.booking-card li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.booking-card .btn--primary {
  width: 100%;
  justify-content: center;
  background: var(--accent);
  color: var(--black);
}
.booking-card .btn--primary:hover {
  background: var(--white);
  opacity: 1;
}
.booking-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
  margin-bottom: 0;
}

/* Offset anchor targets so fixed nav doesn't overlap */
#how-it-works,
#our-mission,
#why-us,
#pricing,
#faq {
  scroll-margin-top: calc(var(--nav-h) + 16px);
}
.reveal { opacity: 1; }
.reveal.visible { opacity: 1; }
.reveal-delay-1, .reveal-delay-2, .reveal-delay-3 {}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .pricing-bento {
    grid-template-columns: 1fr 1fr;
  }
  .services-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .mission-inner { grid-template-columns: 1fr; gap: 40px; }
  .mission-stats { grid-template-columns: 1fr; border-top: none; }
  .mission-stat { border-right: none; border-top: 1px solid var(--gray-200); padding: 24px 0; }
  .mission-stat:first-child { padding-left: 0; }
  .why-features { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .step:last-child { border-bottom: none; }
  .why-header p { max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .booking-card { position: static; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .section { padding: 56px 0; }
  .section--alt { padding: 56px 0; }
  .why-section { padding: 56px 0; }
  .services-section { padding: 56px 0; }
  .pricing-section { padding: 56px 0; }
  .faq-section { padding: 56px 0; }
  .cta-banner { padding: 72px 24px; }

  .container { padding: 0 20px; }

  .hero { padding-top: calc(var(--nav-h) + 52px); }
  .hero__title { margin-bottom: 16px; }
  .hero__sub { margin-bottom: 28px; }
  .hero__actions { margin-bottom: 16px; }
  .hero__reassure { margin-bottom: 40px; }

  .value-intro { margin-bottom: 40px; }
  .how-intro { margin-bottom: 32px; }
  .how-video-wrap { margin-bottom: 40px; }
  .section-header { margin-bottom: 36px; }
  .why-header { margin-bottom: 36px; }
  .services-header { margin-bottom: 32px; }
  .pricing-header { margin-bottom: 40px; }
  .faq-header { margin-bottom: 40px; }
  .mission-stats { margin-top: 40px; }

  .services-gallery { grid-template-columns: 1fr 1fr; height: 440px; }
  .services-gallery .services-col--3 { display: none; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }

  .pricing-bento { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-price__amount { font-size: 2rem; }
  .value-card--stat .stat-number { font-size: 2.8rem; }

  .why-section { padding: 40px 0 32px; }

  .step { padding: 24px 20px; }
  .value-card { padding: 28px 22px; }
  .testimonial-card { padding: 24px; }
  .pricing-card { padding: 28px 24px; }

  .contact-form, .booking-card { padding: 28px 24px; }
  .footer__inner { flex-direction: column; gap: 28px; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .services-gallery { grid-template-columns: 1fr; height: 380px; }
  .services-gallery .services-col--2,
  .services-gallery .services-col--3 { display: none; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.55rem; }
  .contact-form { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, .reveal, .marquee-track, .services-tags-track, .services-col { animation: none !important; transition: none !important; }
}
