:root {
  --bg: #fefefe;
  --bg-elevated: #ffffff;
  --bg-card: #f8f8f8;
  --bg-warm: #f2f4f7;
  --border: #e0e0e0;
  --border-light: #dfe0e1;
  --border-hover: #c0c4cc;
  --text: #272f3c;
  --text-secondary: #5a6474;
  --text-muted: #8b93a0;
  --accent: #20ac55;
  --accent-hover: #18923f;
  --accent-deep: #12783a;
  --accent-glow: rgba(32, 172, 85, 0.12);
  --accent-glow-strong: rgba(32, 172, 85, 0.28);
  --font-display: "Manrope", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-deep) #e0e0e0;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #f0f0f0;
}
::-webkit-scrollbar-thumb {
  background: var(--accent-deep);
  border-radius: 3px;
}

body {
  background-color: var(--bg);
  background-image:
    radial-gradient(rgba(39, 47, 60, 0.035) 1px, transparent 1px);
  background-size: 22px 22px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.reveal-fade.visible {
  opacity: 1;
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.97);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.stagger-children .reveal:nth-child(1) {
  transition-delay: 0s;
}
.stagger-children .reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.stagger-children .reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.stagger-children .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

/* ─── POPUP ─── */
#popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(39, 47, 60, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
#popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}
#popup-modal {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 90%;
  max-width: 540px;
  padding: 40px;
  position: relative;
  transform: scale(0.94) translateY(12px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 24px 80px rgba(39, 47, 60, 0.18);
}
#popup-overlay.active #popup-modal {
  transform: scale(1) translateY(0);
}
#popup-modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-glow-strong),
    transparent
  );
  border-radius: 2px;
}
#popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  transition: color 0.2s;
}
#popup-close:hover {
  color: var(--text);
}
#popup-modal h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
#popup-modal p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 18px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.4s,
    padding 0.3s,
    border-color 0.4s,
    box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(39, 47, 60, 0.06);
  padding: 14px 5%;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}
.nav-logo img {
  height: 64px;
  width: auto;
  display: block;
}
.nav-logo.footer-logo img {
  height: 30px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-links a:hover {
  color: var(--text);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 400px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  transition:
    background 0.2s,
    box-shadow 0.3s,
    transform 0.2s;
}
.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--text);
  display: block;
  transition: 0.3s;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 5% 80px;
  position: relative;
  overflow: hidden;
}
/* Line mesh — first fold only */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      -54deg,
      transparent 0px,
      transparent 38px,
      rgba(32, 172, 85, 0.09) 38px,
      rgba(32, 172, 85, 0.09) 39px
    ),
    repeating-linear-gradient(
      36deg,
      transparent 0px,
      transparent 76px,
      rgba(32, 172, 85, 0.055) 76px,
      rgba(32, 172, 85, 0.055) 77px
    );
}
/* Ambient green glows — first fold only */
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 1100px 900px at -6% 8%,
      rgba(32, 172, 85, 0.16) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 900px 700px at 108% 92%,
      rgba(32, 172, 85, 0.14) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 600px 500px at 55% 45%,
      rgba(32, 172, 85, 0.07) 0%,
      transparent 65%
    );
}
/* Decorative green orbs */
.hero-glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-glow-1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(
    circle,
    rgba(32, 172, 85, 0.08) 0%,
    transparent 70%
  );
  top: -120px;
  right: -120px;
}
.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(32, 172, 85, 0.06) 0%,
    transparent 70%
  );
  bottom: -80px;
  left: -80px;
}
.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(32, 172, 85, 0.08);
  border: 1px solid rgba(32, 172, 85, 0.22);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 9px 20px;
  border-radius: 400px;
  margin-bottom: 28px;
  animation: heroEnter 0.7s 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.hero-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.5vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  max-width: 820px;
  color: var(--text);
}
.hero-headline .word {
  display: inline-block;
  animation: heroWordEnter 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.hero-headline .word:nth-child(1) {
  animation-delay: 0.15s;
}
.hero-headline .word:nth-child(2) {
  animation-delay: 0.22s;
}
.hero-headline .word:nth-child(3) {
  animation-delay: 0.29s;
}
.hero-headline .word:nth-child(4) {
  animation-delay: 0.36s;
}
.hero-headline .word:nth-child(5) {
  animation-delay: 0.43s;
}
.hero-headline .word:nth-child(6) {
  animation-delay: 0.5s;
}
.hero-headline em {
  font-style: italic;
  font-weight: 800;
  color: var(--accent);
}
.hero-sub {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 auto 44px;
  font-weight: 400;
  animation: heroEnter 0.7s 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 80px;
  animation: heroEnter 0.7s 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroWordEnter {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 15px 32px;
  border-radius: 400px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  transition:
    background 0.2s,
    box-shadow 0.3s,
    transform 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--accent-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-hover);
  padding: 15px 32px;
  border-radius: 400px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Trusted logos */
.trusted-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: heroEnter 0.7s 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.trusted-logos {
  display: flex;
  gap: 44px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 80px;
  animation: heroEnter 0.7s 0.95s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.logo-mark {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  opacity: 0.22;
  transition: opacity 0.3s;
}
.logo-mark:hover {
  opacity: 0.5;
}
.logo-mark.serif {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
}
.logo-mark.wide {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
}
.logo-mark.light {
  font-weight: 300;
  font-size: 17px;
  letter-spacing: -0.02em;
}

/* Hero values */
.hero-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  animation: heroEnter 0.7s 1.05s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.hero-value {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: left;
  box-shadow: 0 2px 20px rgba(39, 47, 60, 0.05);
  transition:
    box-shadow 0.3s,
    transform 0.3s,
    border-color 0.3s;
}
.hero-value:hover {
  box-shadow: 0 8px 32px rgba(39, 47, 60, 0.09);
  transform: translateY(-3px);
  border-color: var(--border-hover);
}
.hero-value h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.hero-value h3::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 2px;
  background: var(--accent);
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 2px;
}
.hero-value p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
  font-weight: 400;
}

/* ─── SHOWCASE / MARQUEE ─── */
#showcase {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-card);
}
.showcase-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-weight: 500;
}
.marquee-wrapper {
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
}
.marquee-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  width: max-content;
}
.marquee-row.row1 {
  animation: marquee-left 50s linear infinite;
}
.marquee-row.row2 {
  animation: marquee-right 45s linear infinite;
}
.marquee-wrapper:hover .marquee-row {
  animation-play-state: paused;
}
@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.email-card {
  width: 220px;
  height: 420px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(39, 47, 60, 0.06);
  transition:
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s;
}
.email-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 16px 48px rgba(39, 47, 60, 0.12);
}
.email-card-header {
  padding: 12px 14px 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.email-card-dots {
  display: flex;
  gap: 4px;
}
.email-card-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
}
.email-card-title {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ─── PROCESS — card grid ─── */
#process {
  padding: 120px 5%;
  max-width: 1100px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.process-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 16px;
  color: var(--text);
}
/* ─── PROCESS SECTION ─── */
#process {
  padding: 100px 5% 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-header {
  margin-bottom: 64px;
  text-align: left;
}

.process-header .section-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
}

.process-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.process-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 0;
  font-weight: 400;
}

/* Main grid container */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Individual cards */
.process-card {
  position: relative;
  padding: 44px 36px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-elevated);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(39, 47, 60, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Lift on hover */
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 38px rgba(39, 47, 60, 0.12);
  border-color: var(--border-hover);
}

/* Animated top-bar accent */
.process-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(32, 172, 85, 0.2));
}

/* Ghost background number */
.process-num-bg {
  position: absolute;
  top: 22px;
  right: 22px;
  transform: none;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(32, 172, 85, 0.25);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

/* Content wrapper */
.process-content {
  position: relative;
  z-index: 1;
}

/* Step label */
.process-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

/* Step title */
.process-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 12px;
}

/* Body copy */
.process-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 400;
  margin: 0;
}

/* ─── RESPONSIVE ─── */
/* Tablet: 2 columns */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile: 1 column */
@media (max-width: 640px) {
  #process {
    padding: 80px 5% 100px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    padding: 32px 22px;
  }

  .process-heading {
    font-size: clamp(24px, 6vw, 32px);
  }

  .process-sub {
    font-size: 14px;
  }

  .process-num-bg {
    width: 32px;
    height: 32px;
    font-size: 11px;
    top: 18px;
    right: 18px;
  }

  .process-title {
    font-size: 18px;
  }

  .process-body {
    font-size: 14px;
  }
}

/* ─── FAQ ─── */
#faq {
  padding: 100px 5% 120px;
  max-width: 680px;
  margin: 0 auto;
}
.faq-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  text-align: center;
  color: var(--text);
}
.faq-sub {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 48px;
  font-weight: 400;
}
.faq-grid {
  display: flex;
  flex-direction: column;
  margin-bottom: 56px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-item summary {
  padding: 22px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  color: var(--text);
  transition: color 0.2s;
}
.faq-item summary:hover {
  color: var(--accent);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  transition: all 0.35s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}
.faq-content {
  padding: 0 0 22px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
}
.faq-bottom-cta {
  text-align: center;
  padding: 44px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 2px 20px rgba(39, 47, 60, 0.05);
}
.faq-bottom-cta h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.faq-bottom-cta p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-weight: 400;
}
.faq-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── TESTIMONIALS — slider ─── */
#testimonials {
  padding: 120px 5%;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

/* Floating decorative accents */
.testi-decor {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}
.testi-decor-1 {
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(32, 172, 85, 0.1) 0%,
    transparent 70%
  );
  top: -30px;
  right: -100px;
}
.testi-decor-2 {
  width: 130px;
  height: 130px;
  border: 1.5px dashed rgba(32, 172, 85, 0.18);
  bottom: 20px;
  left: -70px;
}
.testi-decor-3 {
  width: 10px;
  height: 10px;
  background: var(--accent);
  opacity: 0.3;
  top: 100px;
  left: 10px;
}

.testi-header {
  margin-bottom: 48px;
}
.testi-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: var(--text);
}
.testi-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto;
  font-weight: 400;
}

/* Slider */
.testi-track {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  margin-bottom: 32px;
}
.testi-slide {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.testi-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Card */
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 52px 48px;
  text-align: left;
  position: relative;
  box-shadow: 0 4px 40px rgba(39, 47, 60, 0.06);
  overflow: hidden;
}

/* Large deco quote mark */
.testi-quote-mark {
  font-family: Georgia, serif;
  font-size: 140px;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.12;
  position: absolute;
  top: 24px;
  right: 36px;
  user-select: none;
}

/* Company pill */
.testi-company-badge {
  display: inline-flex;
  background: rgba(32, 172, 85, 0.08);
  border: 1px solid rgba(32, 172, 85, 0.22);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-display);
  padding: 6px 16px;
  border-radius: 400px;
  margin-bottom: 20px;
}

/* Stars */
.testi-stars {
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

/* Quote text */
.testi-quote {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.65;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  position: relative;
}

/* Green divider */
.testi-divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* Author row */
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-author-initial {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1.5px solid rgba(32, 172, 85, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.testi-author-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.testi-author-role {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
}

/* Navigation */
.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.testi-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border-hover);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 17px;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(39, 47, 60, 0.06);
}
.testi-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}
.testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--border-hover);
  cursor: pointer;
  transition: all 0.3s;
}
.testi-dot.active {
  width: 26px;
  border-radius: 4px;
  background: var(--accent);
}

@media (max-width: 600px) {
  .testi-card {
    padding: 36px 28px;
  }
  .testi-decor-1,
  .testi-decor-2 {
    display: none;
  }
}

/* ─── RESULTS ─── */
#results {
  padding: 120px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
#results::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(32, 172, 85, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.results-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 28px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.results-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.results-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 680px;
  margin: 0 auto 24px;
  position: relative;
  color: var(--text);
}
.results-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto 44px;
  font-weight: 400;
  position: relative;
}
.results-cta {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 15px 34px;
  border-radius: 400px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  transition:
    background 0.2s,
    box-shadow 0.3s,
    transform 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.results-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--accent-glow);
}

/* ─── CASE STUDIES — editorial slider ─── */
#casestudies {
  padding: 120px 5%;
  max-width: 1100px;
  margin: 0 auto;
}
.cases-header {
  margin-bottom: 52px;
}
.cases-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0;
  color: var(--text);
}

/* Slider track — grid stacking so slides overlap */
.cases-track {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  margin-bottom: 28px;
}
.case-slide {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.case-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Card shell */
.case-slide-inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(39, 47, 60, 0.07);
  min-height: 380px;
}

/* Vertical rule */
.case-vr {
  background: var(--border);
}

/* Left column */
.case-slide-left {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.case-index {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.case-tag {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(32, 172, 85, 0.08);
  border: 1px solid rgba(32, 172, 85, 0.22);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 400px;
}
.case-headline {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text);
}
.case-accent {
  font-style: normal;
  color: var(--accent);
  font-weight: 800;
}
.case-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 400;
  flex: 1;
}
.case-client-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.case-client-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.case-link-sm {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition:
    color 0.2s,
    letter-spacing 0.2s;
}
.case-link-sm:hover {
  color: var(--accent-hover);
  letter-spacing: 0.01em;
}

/* Per-slide CTA button */
.case-study-cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid rgba(32, 172, 85, 0.35);
  padding: 9px 20px;
  border-radius: 400px;
  background: rgba(32, 172, 85, 0.05);
  transition:
    background 0.2s,
    border-color 0.2s,
    gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.case-study-cta:hover {
  background: rgba(32, 172, 85, 0.12);
  border-color: var(--accent);
  gap: 10px;
}

/* Section-level footer CTA */
.cases-footer-cta {
  text-align: center;
  margin-top: 24px;
}

/* Right column */
.case-slide-right {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.case-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.case-metric-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cmb-val {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.cmb-val em {
  font-style: normal;
  color: var(--accent);
}
.cmb-arrow {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 15px;
}
.cmb-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Proof panel */
.case-proof-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cpp-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.cpp-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.cpp-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cpp-bar-name {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  width: 64px;
  flex-shrink: 0;
}
.cpp-bar-track {
  flex: 1;
  height: 7px;
  background: rgba(39, 47, 60, 0.07);
  border-radius: 4px;
  overflow: hidden;
}
.cpp-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
}
.cpp-bar-fill.cpp-bar-muted {
  background: rgba(39, 47, 60, 0.18);
}
.cpp-bar-pct {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  width: 34px;
  text-align: right;
  flex-shrink: 0;
}
.cpp-note {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 14px;
}

/* Navigation */
.cases-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.cases-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border-hover);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 17px;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(39, 47, 60, 0.06);
}
.cases-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}
.cases-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.cases-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--border-hover);
  cursor: pointer;
  transition: all 0.3s;
}
.cases-dot.active {
  width: 26px;
  border-radius: 4px;
  background: var(--accent);
}

/* Responsive */
@media (max-width: 860px) {
  .case-slide-inner {
    grid-template-columns: 1fr;
  }
  .case-vr {
    display: none;
  }
  .case-slide-left {
    padding: 36px 28px 20px;
  }
  .case-slide-right {
    padding: 0 28px 36px;
  }
  .case-metrics-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .case-metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── BOOKING — full-bleed green bar ─── */
#booking {
  padding: 80px 5% 120px;
}
.booking-banner {
  background: var(--accent);
  border-radius: 24px;
  padding: 64px 80px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 8px 48px rgba(32, 172, 85, 0.25);
}
.booking-banner-copy {
  flex: 1;
}
.booking-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: #fff;
}
.booking-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 400px;
  line-height: 1.7;
  font-weight: 400;
}
.btn-book {
  background: #fff;
  color: var(--accent);
  border: none;
  padding: 16px 36px;
  border-radius: 400px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s,
    box-shadow 0.3s,
    transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-book:hover {
  background: #f0fff5;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

/* ─── CONTACT ─── */
#contact {
  padding: 40px 5% 120px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-container {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 2px 32px rgba(39, 47, 60, 0.06);
}
.contact-container h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.contact-container > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 15px;
  font-weight: 400;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-input {
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  padding: 13px 16px;
  border-radius: 12px;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  font-size: 14px;
}
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-input::placeholder {
  color: var(--text-muted);
}
textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

/* ─── FOOTER ─── */
footer {
  background: #272f3c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 56px 5% 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin-top: 12px;
  max-width: 280px;
  font-weight: 400;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: var(--accent);
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.social-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.25s;
}
.social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.nav-logo.footer-logo {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}
.footer-bottom span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 400;
}

/* ─── MOBILE DRAWER ─── */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 300px;
  height: 100vh;
  background: #fff;
  border-left: 1px solid var(--border);
  z-index: 600;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 80px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: -4px 0 40px rgba(39, 47, 60, 0.12);
}
.mobile-drawer.open {
  right: 0;
}
.mobile-drawer a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  transition: color 0.2s;
}
.mobile-drawer a:hover {
  color: var(--accent);
}
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(39, 47, 60, 0.35);
  z-index: 590;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.drawer-overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .hero-values {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-small-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testi-rotated-label {
    display: none;
  }
  .case-featured {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .case-list {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .booking-banner {
    flex-direction: column;
    padding: 40px 36px;
    text-align: center;
  }
  .booking-sub {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .contact-container {
    padding: 32px 24px;
  }
  .faq-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .booking-banner {
    padding: 32px 24px;
  }
}

/* ─── SUBPAGE HEADER ─── */
.page-header {
  padding: 160px 5% 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.page-header .section-eyebrow {
  margin-bottom: 16px;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text);
}
.page-header p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
  font-weight: 400;
}

/* ─── PAGE CTA BLOCK ─── */
.page-cta-section {
  padding: 60px 5% 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.page-cta-section .booking-banner {
  max-width: 100%;
}

/* ─── ACTIVE NAV STATE ─── */
.nav-links a.active {
  color: var(--accent);
}
.nav-links a.active::after {
  width: 100%;
}

/* ─── RESULTS PAGE — Testimonials (editorial layout) ─── */
.testi-rotated-label {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: rotate(-90deg) translateX(-50%);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.testi-rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 48px;
}
.testi-pull-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 640px;
  margin: 0 auto 24px;
  position: relative;
}
.testi-pull-quote::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: -8px;
  left: -28px;
}
.testi-attribution {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 64px;
}
.testi-attribution strong {
  font-weight: 700;
  color: var(--text);
}
.testi-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}
.testi-small-quote {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  text-align: left;
  box-shadow: 0 2px 20px rgba(39, 47, 60, 0.05);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.testi-small-quote:hover {
  box-shadow: 0 8px 36px rgba(39, 47, 60, 0.1);
  transform: translateY(-3px);
}
.testi-small-quote p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-small-attr {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar-initial {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1.5px solid rgba(32, 172, 85, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.testi-small-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.testi-small-role {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
}

/* ─── RESULTS PAGE — Stats bar ─── */
.results-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto 80px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg-elevated);
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(39, 47, 60, 0.06);
}
.results-stat {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
}
.results-stat:last-child {
  border-right: none;
}
.results-stat:hover {
  background: var(--bg-card);
}
.results-stat-val {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.results-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
@media (max-width: 700px) {
  .results-stats {
    grid-template-columns: 1fr 1fr;
  }
  .results-stat:nth-child(2) {
    border-right: none;
  }
  .results-stat:nth-child(1),
  .results-stat:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
}
@media (max-width: 400px) {
  .results-stats {
    grid-template-columns: 1fr;
  }
  .results-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .results-stat:last-child {
    border-bottom: none;
  }
}

/* ─── WORK PAGE — Featured case study ─── */
.case-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 4px 40px rgba(39, 47, 60, 0.07);
  transition: box-shadow 0.3s;
}
.case-featured:hover {
  box-shadow: 0 12px 48px rgba(39, 47, 60, 0.12);
}
.case-featured-img {
  height: 100%;
  min-height: 320px;
  background: linear-gradient(
    135deg,
    var(--accent-glow) 0%,
    var(--bg-warm) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.case-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-featured-content {
  padding: 48px 48px 48px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.case-category {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(32, 172, 85, 0.08);
  border: 1px solid rgba(32, 172, 85, 0.22);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 400px;
  font-family: var(--font-display);
}
.case-featured-content h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--text);
}
.case-featured-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 400;
}
.case-link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: letter-spacing 0.2s;
}
.case-link:hover {
  letter-spacing: 0.02em;
}

/* Case study list */
.case-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.case-list-item {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 2px 20px rgba(39, 47, 60, 0.05);
  transition:
    box-shadow 0.3s,
    transform 0.3s,
    border-color 0.3s;
}
.case-list-item:hover {
  box-shadow: 0 8px 36px rgba(39, 47, 60, 0.1);
  transform: translateY(-4px);
  border-color: var(--border-hover);
}
.case-list-item .case-category {
  margin-bottom: 12px;
}
.case-list-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.case-list-item p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  font-weight: 400;
}

/* ─── HOW WE WORK PAGE — Detail grid ─── */
.hww-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.hww-detail-block h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text);
}
.hww-detail-block p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 16px;
}
.hww-detail-block p:last-child {
  margin-bottom: 0;
}
.hww-tool-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.hww-tool-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.hww-tool-pill:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}
@media (max-width: 900px) {
  .hww-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(32, 172, 85, 0.3);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
  z-index: 400;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(32, 172, 85, 0.4);
}
