/* =============================================================
   BUGURE DIGITAL — MAIN STYLESHEET
   ============================================================= */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--color-bg);
  color: var(--color-text-1);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Layout ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--section-pad) 0;
}

.section--surface {
  background: var(--color-surface);
}

.section--dark {
  background: var(--color-brand);
  color: var(--color-white);
}

/* ── Section header ── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-2);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--color-text-1);
}

.section-title em {
  font-style: italic;
  color: var(--color-text-2);
}

.section-title .hl {
  font-style: normal;
  background: var(--color-accent);
  color: var(--color-brand);
  padding: 0 8px;
}

.section-sub {
  font-size: 16px;
  color: var(--color-text-2);
  line-height: 1.75;
  max-width: 480px;
  margin-top: 20px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: 14px;
  border: none;
  border-radius: var(--radius-pill);
  transition: background var(--speed) var(--ease), color var(--speed) var(--ease), border-color var(--speed) var(--ease), transform var(--speed) var(--ease);
}

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

.btn-primary {
  background: var(--color-brand);
  color: var(--color-white);
}
.btn-primary:hover { background: #333; }

.btn-accent {
  background: var(--color-accent);
  color: var(--color-brand);
}
.btn-accent:hover { background: var(--color-accent-dk); }

.btn-ghost {
  background: transparent;
  color: var(--color-text-1);
  border: 1.5px solid var(--color-border);
}
.btn-ghost:hover { border-color: var(--color-text-2); }

.btn-ghost-light {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.7); }

.btn-sm { padding: 10px 20px; font-size: 13px; }


/* ====================================================
   NAVIGATION
   ==================================================== */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.nav-header.scrolled {
  background: var(--color-bg);
  box-shadow: 0 1px 0 var(--color-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--color-text-1);
  display: flex;
  align-items: center;
  gap: 4px;
  font-style: italic;
}

.logo-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-bottom: 10px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: var(--fw-semi);
  color: var(--color-text-2);
  transition: color var(--speed) var(--ease);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active { color: var(--color-text-1); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.nav-cta { margin-left: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-text-1);
  border-radius: 2px;
  transition: transform var(--speed) var(--ease), opacity var(--speed) var(--ease);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 100px var(--container-pad) 48px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(36px, 10vw, 52px);
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--color-text-1);
  border-top: 1px solid var(--color-border);
  padding: 16px 0;
  transition: color var(--speed) var(--ease);
}

.mobile-nav-links a:last-child { border-bottom: 1px solid var(--color-border); }
.mobile-nav-links a:hover { color: var(--color-text-2); }

.mobile-menu-footer {
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu-footer .btn { width: fit-content; }


/* ====================================================
   TICKER
   ==================================================== */
.ticker-wrap {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  padding: 12px 0;
  margin-top: 68px;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-track span {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-2);
  padding: 0 36px;
  white-space: nowrap;
}

.ticker-track span.ticker-hl { color: var(--color-accent-dk); }
.ticker-track span.ticker-sep { color: var(--color-border); padding: 0 6px; }


/* ====================================================
   HERO SECTION
   ==================================================== */
.hero {
  padding: 80px 0 0;
}

.hero-inner {
  border-top: 1px solid var(--color-border);
  padding-top: 64px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-eyebrow-line {
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--color-text-2);
  flex-shrink: 0;
}

.hero-eyebrow-text {
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-text-2);
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(60px, 8.5vw, 108px);
  line-height: 0.95;
  letter-spacing: -4px;
  margin-bottom: 32px;
}

.hero-h1 .line { display: block; }

.hero-h1 .line-italic {
  font-style: italic;
  color: var(--color-text-2);
  font-weight: 700;
}

.hero-h1 .hero-hl {
  font-style: normal;
  background: var(--color-accent);
  color: var(--color-brand);
  padding: 0 10px;
  line-height: 1.1;
  display: inline;
}

.hero-sub {
  font-size: 16px;
  color: var(--color-text-2);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* ── Hero right panel ── */
.hero-panel {
  padding-top: 8px;
}

.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: var(--fw-semi);
  color: var(--color-text-1);
  line-height: 1.4;
}

.check-mark {
  width: 20px; height: 20px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 10px;
  font-weight: var(--fw-black);
  color: var(--color-brand);
}

.hero-quote {
  background: var(--color-surface);
  border-left: 3px solid var(--color-accent);
  padding: 16px 18px;
  font-size: 13px;
  font-style: italic;
  color: var(--color-text-2);
  line-height: 1.65;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── Stat strip ── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 32px 0;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-item + .stat-item {
  border-left: 1px solid var(--color-border);
}

.stat-num {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-num .stat-suffix { color: var(--color-accent-dk); }

.stat-label {
  font-size: 12px;
  font-weight: var(--fw-semi);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-2);
}


/* ====================================================
   CLIENT LOGOS — MARQUEE
   ==================================================== */
.logos-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--color-border);
}

.logos-label {
  text-align: center;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-2);
  margin-bottom: 40px;
}

.logos-marquee {
  overflow: hidden;
  position: relative;
}

.logos-marquee::before,
.logos-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.logos-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}

.logos-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg), transparent);
}

.logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logos-scroll 55s linear infinite;
  margin-bottom: 18px;
}

.logos-track:last-child { margin-bottom: 0; }

.logos-track:hover { animation-play-state: paused; }

.logos-item {
  padding: 0 33px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logos-item img {
  height: 138px;
  width: auto;
  max-width: 225px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.35s ease, opacity 0.35s ease;
}

.logos-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.logos-item--simply img {
  height: 72px;
  max-width: 160px;
}

.logos-track--reverse {
  animation-name: logos-scroll-reverse;
  animation-duration: 60s;
}

@keyframes logos-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes logos-scroll-reverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}


/* ====================================================
   PROBLEM SECTION
   ==================================================== */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ── Flip card container ── */
.problem-card {
  height: 90px;
  perspective: 1000px;
  cursor: pointer;
}

.problem-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card:hover .problem-card-inner {
  transform: rotateY(180deg);
}

.problem-card-front,
.problem-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-white);
}

.problem-card-back {
  transform: rotateY(180deg);
  background: var(--color-brand);
  border-color: var(--color-brand);
}

.problem-num {
  font-size: 11px;
  font-weight: var(--fw-black);
  color: var(--color-border);
  letter-spacing: 1px;
  flex-shrink: 0;
}

.problem-card-back .problem-num {
  color: var(--color-accent);
}

.problem-headline {
  font-size: 15px;
  font-weight: var(--fw-semi);
  color: var(--color-text-1);
  line-height: 1.4;
}

.problem-desc {
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--color-white);
  line-height: 1.5;
}

/* ── Right column ── */
.problem-answer {
  position: sticky;
  top: 100px;
}

.problem-answer-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  color: var(--color-brand);
  font-size: 12px;
  font-weight: var(--fw-black);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.problem-answer h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.problem-answer p {
  font-size: 15px;
  color: var(--color-text-2);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ── How We Fix It strip ── */
.problem-fix {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--color-border);
}

.problem-fix > .section-label {
  display: block;
  margin-bottom: 32px;
}

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

.problem-fix-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.problem-fix-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.problem-fix-num {
  font-size: 11px;
  font-weight: var(--fw-black);
  color: var(--color-accent);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.problem-fix-title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 17px;
  color: var(--color-text-1);
  line-height: 1.25;
  margin-bottom: 10px;
}

.problem-fix-desc {
  font-size: 14px;
  color: var(--color-text-2);
  line-height: 1.7;
  margin: 0;
}


/* ====================================================
   FULL-FUNNEL FRAMEWORK
   ==================================================== */
.funnel-sec-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 56px;
}

.funnel-sec-header .section-sub {
  max-width: none;
  margin: 20px auto 0;
}

/* Make the italic headline line use the brand accent green */
.funnel-sec-header .section-title em {
  color: var(--color-accent);
  font-style: italic;
}

/* ── Full-width funnel image + absolutely-positioned annotations ──
   The 1920×1080 image displays at full container width (~1080px usable),
   giving ~607px of height. Each of the 4 tiers occupies roughly 25% of
   the funnel body. The funnel body sits from ~8% to ~92% of image height,
   so tier centres land at:  ~20%, ~40%, ~61%, ~81%                       */
.funnel-visual {
  position: relative;
  margin-top: 0;
}

.funnel-visual > img {
  width: 100%;
  display: block;
}

/* Annotation blocks */
.funnel-annot {
  position: absolute;
  width: 230px;
}

/* Vertical anchors — top% = the HEADING row of each annotation,
   anchored to the centre of its funnel tier. No translateY so content
   flows downward from the heading (matching the reference layout).    */
.funnel-annot[data-stage="awareness"] { top: 16%; }
.funnel-annot[data-stage="interest"]  { top: 38%; }
.funnel-annot[data-stage="desire"]    { top: 63%; }
.funnel-annot[data-stage="buy"]       { top: 80%; }

/* Horizontal placement */
.funnel-annot[data-side="left"]  { left: 0;  }
.funnel-annot[data-side="right"] { right: 0; }

/* Connector line — fires from the heading row (top ~10px of div) */
.funnel-annot::before {
  content: '';
  position: absolute;
  top: 10px;
  transform: translateY(-50%);
  height: 1.5px;
  width: 44px;
}

/* Dot at funnel edge */
.funnel-annot::after {
  content: '';
  position: absolute;
  top: 10px;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.funnel-annot[data-side="left"]::before  { left:  calc(100% + 2px); }
.funnel-annot[data-side="left"]::after   { left:  calc(100% + 46px); }
.funnel-annot[data-side="right"]::before { right: calc(100% + 2px); }
.funnel-annot[data-side="right"]::after  { right: calc(100% + 46px); }

/* Tier colours */
.funnel-annot[data-stage="awareness"]::before,
.funnel-annot[data-stage="awareness"]::after { background: #1B4332; }
.funnel-annot[data-stage="interest"]::before,
.funnel-annot[data-stage="interest"]::after  { background: #2D9A4A; }
.funnel-annot[data-stage="desire"]::before,
.funnel-annot[data-stage="desire"]::after    { background: #82C99A; }
.funnel-annot[data-stage="buy"]::before,
.funnel-annot[data-stage="buy"]::after       { background: #00E87A; }

/* Annotation typography */
.funnel-annot-heading {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: 13.5px;
  color: var(--color-text-1);
  margin-bottom: 6px;
  line-height: 1.4;
}

.funnel-annot-heading span {
  font-weight: var(--fw-medium);
  color: var(--color-text-2);
}

.funnel-annot-desc {
  font-size: 12px;
  color: var(--color-text-2);
  line-height: 1.6;
  margin-bottom: 7px;
}

.funnel-annot-quote {
  font-size: 11.5px;
  color: var(--color-text-2);
  line-height: 1.5;
  margin-bottom: 9px;
}

.funnel-annot-quote em {
  font-style: italic;
  color: var(--color-text-1);
}

.funnel-annot-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.funnel-annot-channels span {
  font-size: 10px;
  font-weight: var(--fw-bold);
  color: var(--color-text-2);
  border: 1px solid var(--color-border);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
}


/* ====================================================
   SERVICES SECTION
   ==================================================== */
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 48px;
}

.service-list {
  border-top: 1px solid var(--color-border);
}

.service-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 26px 8px;
  border-bottom: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: background var(--speed) var(--ease), padding var(--speed) var(--ease);
  cursor: pointer;
}

.service-item:hover {
  background: var(--color-surface);
  padding-left: 20px;
  padding-right: 20px;
}

.service-item-num {
  font-size: 11px;
  font-weight: var(--fw-black);
  letter-spacing: 2px;
  color: var(--color-text-2);
}

.service-item-name {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(20px, 2.5vw, 26px);
  letter-spacing: -0.5px;
}

.service-item-desc {
  font-size: 13px;
  color: var(--color-text-2);
  margin-top: 4px;
  font-weight: var(--fw-medium);
}

.service-item-arrow {
  font-size: 20px;
  color: var(--color-text-2);
  transition: transform var(--speed) var(--ease), color var(--speed) var(--ease);
  flex-shrink: 0;
}

.service-item:hover .service-item-arrow {
  transform: translateX(4px);
  color: var(--color-accent-dk);
}


/* ====================================================
   STRATEGY SECTION
   ==================================================== */
.strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.strategy-points {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.strategy-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.strategy-point-icon {
  width: 44px; height: 44px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: var(--fw-black);
  font-family: var(--font-display);
  color: var(--color-text-2);
}

.strategy-point-body h4 {
  font-size: 16px;
  font-weight: var(--fw-bold);
  margin-bottom: 6px;
}

.strategy-point-body p {
  font-size: 14px;
  color: var(--color-text-2);
  line-height: 1.65;
}

.strategy-visual {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px 36px;
}

.strategy-visual-label {
  font-size: 11px;
  font-weight: var(--fw-black);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-2);
  margin-bottom: 32px;
}

.strategy-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.strategy-flow-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.strategy-flow-item:last-child { border-bottom: none; }

.flow-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  flex-shrink: 0;
  margin-top: 6px;
}

.flow-dot.active { background: var(--color-accent); }

.flow-text {
  font-size: 14px;
  font-weight: var(--fw-semi);
  color: var(--color-text-1);
  line-height: 1.4;
}

.flow-sub {
  font-size: 12px;
  color: var(--color-text-2);
  margin-top: 2px;
}


/* ====================================================
   NUMBERS / RESULTS SECTION
   ==================================================== */
.results-section {
  background: var(--color-brand);
  color: var(--color-white);
}

.results-header {
  text-align: center;
  margin-bottom: 72px;
}

.results-header .section-label { color: rgba(255,255,255,0.4); }

.results-header .section-title { color: var(--color-white); }

.results-header .section-title em { color: rgba(255,255,255,0.4); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.result-item {
  padding: 48px 36px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.result-item:last-child { border-right: none; }

.result-num {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(48px, 5vw, 72px);
  letter-spacing: -3px;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: 8px;
}

.result-num .result-suffix { color: var(--color-accent); }

.result-label {
  font-size: 13px;
  font-weight: var(--fw-semi);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.results-footnote {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}


/* ====================================================
   AI-POWERED SECTION
   ==================================================== */
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ai-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.ai-feature {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: border-color var(--speed) var(--ease);
}

.ai-feature:hover { border-color: var(--color-accent-dk); }

.ai-feature-num {
  font-size: 11px;
  font-weight: var(--fw-black);
  letter-spacing: 2px;
  color: var(--color-accent-dk);
  margin-bottom: 10px;
}

.ai-feature h4 {
  font-size: 15px;
  font-weight: var(--fw-bold);
  margin-bottom: 6px;
  line-height: 1.3;
}

.ai-feature p {
  font-size: 13px;
  color: var(--color-text-2);
  line-height: 1.6;
}

.ai-visual {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px;
}

.ai-visual-label {
  font-size: 11px;
  font-weight: var(--fw-black);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-2);
  margin-bottom: 28px;
}

.ai-metrics {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ai-metric-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ai-metric-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: var(--fw-semi);
}

.ai-metric-label span:last-child { color: var(--color-accent-dk); font-weight: var(--fw-black); }

.ai-metric-bar {
  height: 6px;
  background: var(--color-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.ai-metric-fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: var(--radius-pill);
  transition: width 1.2s var(--ease-out);
}


/* ====================================================
   INDUSTRIES SECTION
   ==================================================== */
.industries-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 48px;
}

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

.industry-tile {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: background var(--speed) var(--ease), border-color var(--speed) var(--ease);
  cursor: default;
}

.industry-tile:hover {
  background: var(--color-surface);
  border-color: var(--color-text-2);
}

.industry-tile-name {
  font-size: 15px;
  font-weight: var(--fw-bold);
  margin-bottom: 4px;
  line-height: 1.3;
}

.industry-tile-sub {
  font-size: 12px;
  color: var(--color-text-2);
}


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

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.testimonial-card:hover {
  border-color: var(--color-text-2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: var(--fw-black);
  line-height: 0.7;
  color: var(--color-surface);
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-1);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.author-avatar {
  width: 44px; height: 44px;
  background: var(--color-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: var(--fw-black);
  color: var(--color-text-2);
  flex-shrink: 0;
  font-family: var(--font-display);
  border: 1px solid var(--color-border);
}

.author-name {
  font-size: 14px;
  font-weight: var(--fw-bold);
}

.author-title {
  font-size: 12px;
  color: var(--color-text-2);
  margin-top: 2px;
}


/* ====================================================
   PROCESS SECTION
   ==================================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 1px;
  background: var(--color-border);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 0 16px;
}

.process-step-num {
  width: 56px; height: 56px;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: 18px;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
  transition: background var(--speed) var(--ease), border-color var(--speed) var(--ease);
}

.process-step:hover .process-step-num {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-brand);
}

.process-step h4 {
  font-size: 15px;
  font-weight: var(--fw-bold);
  margin-bottom: 6px;
}

.process-step p {
  font-size: 13px;
  color: var(--color-text-2);
  line-height: 1.6;
}


/* ====================================================
   CTA SECTION
   ==================================================== */
.cta-section {
  background: var(--color-brand);
  color: var(--color-white);
  text-align: center;
  padding: var(--section-pad) 0;
}

.cta-label {
  font-size: 11px;
  font-weight: var(--fw-black);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(36px, 5vw, 68px);
  letter-spacing: -2.5px;
  line-height: 1.0;
  margin-bottom: 20px;
  color: var(--color-white);
}

.cta-title em {
  font-style: italic;
  color: var(--color-accent);
}

.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ====================================================
   FAQ SECTION
   ==================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  margin-top: 56px;
}

.faq-sidebar h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.faq-sidebar h3 em {
  font-style: italic;
  color: var(--color-text-2);
}

.faq-sidebar p {
  font-size: 14px;
  color: var(--color-text-2);
  line-height: 1.7;
  margin-bottom: 28px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--color-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: var(--fw-bold);
  color: var(--color-text-1);
  cursor: pointer;
  transition: color var(--speed) var(--ease);
}

.faq-question:hover { color: var(--color-text-2); }

.faq-icon {
  width: 24px; height: 24px;
  border: 1.5px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--color-text-2);
  transition: background var(--speed) var(--ease), border-color var(--speed) var(--ease), transform var(--speed) var(--ease);
}

.faq-item.open .faq-icon {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-brand);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out), padding 0.35s var(--ease-out);
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding-bottom: 22px;
  font-size: 14px;
  color: var(--color-text-2);
  line-height: 1.75;
}


/* ====================================================
   FOOTER
   ==================================================== */
footer {
  background: var(--color-brand);
  color: rgba(255,255,255,0.6);
  padding: 72px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-brand .logo {
  color: var(--color-white);
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 240px;
  margin-bottom: 24px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: var(--fw-black);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--speed) var(--ease);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.3);
  transition: color var(--speed) var(--ease);
}

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


/* ====================================================
   RESPONSIVE — TABLET (max 1024px)
   ==================================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-answer { position: static; }
  .problem-fix-cards { grid-template-columns: 1fr; }
  .funnel-annot { width: 190px; }
  .funnel-annot::before { width: 32px; }
  .funnel-annot[data-side="left"]::after  { left:  calc(100% + 34px); }
  .funnel-annot[data-side="right"]::after { right: calc(100% + 34px); }
  .services-header { grid-template-columns: 1fr; }
  .strategy-grid { grid-template-columns: 1fr; gap: 48px; }
  .ai-grid { grid-template-columns: 1fr; gap: 48px; }
  .industries-header { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
}


/* ====================================================
   RESPONSIVE — MOBILE (max 768px)
   ==================================================== */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-h1 { letter-spacing: -2.5px; }
  .hero-stats { flex-wrap: wrap; gap: 0; }
  .hero-stats .stat-item { flex: 1 1 50%; border-top: 1px solid var(--color-border); }
  .hero-stats .stat-item:nth-child(2n) { border-left: 1px solid var(--color-border); }
  .hero-stats .stat-item:nth-child(-n+2) { border-top: none; }

  /* On mobile: stack the funnel image then cards in order */
  .funnel-visual > img { width: 80%; margin: 0 auto 32px; display: block; }
  .funnel-annot {
    position: static;
    transform: none;
    width: 100%;
    padding: 14px 16px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
  }
  .funnel-annot[data-stage="awareness"] { border-left: 4px solid #1B4332; }
  .funnel-annot[data-stage="interest"]  { border-left: 4px solid #2D9A4A; }
  .funnel-annot[data-stage="desire"]    { border-left: 4px solid #82C99A; }
  .funnel-annot[data-stage="buy"]       { border-left: 4px solid #00E87A; }
  .funnel-annot::before,
  .funnel-annot::after { display: none; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .result-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .result-item:nth-child(2n) { border-left: 1px solid rgba(255,255,255,0.1); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .ai-features { grid-template-columns: 1fr; }
}
