/* ============================================================
   AD GRANT LANDING PAGE — Prismatic
   Rhythmic Color System: Dark A → Dark B → Light (good-fella inspired)
   ============================================================ */

:root {
  /* ── Dark palette ── */
  --ag-dark-a: #151515;        /* --theme-color from site */
  --ag-dark-b: #121212;        /* service cards bg from site */
  --ag-dark-footer: #212121;   /* --bg-color from site */
  --ag-accent: #0000FF;        /* primary CTA blue from site */
  --ag-accent-hover: #0033cc;
  --ag-white: #ffffff;
  --ag-gray: #8e8e8e;          /* secondary text on dark bg */
  --ag-light-gray: #8e8e8e;    /* unified with --ag-gray for consistency */
  --ag-border: rgba(255, 255, 255, 0.1);     /* standard site border */
  --ag-border-light: rgba(255, 255, 255, 0.2); /* stronger site border */
  --ag-border-nav: rgba(255, 255, 255, 0.3);   /* nav pill border from site */
  --ag-highlight: #cc00cc;     /* magenta midpoint of prismatic gradient */
  --ag-shape: #cc00cc;         /* unified with brand magenta */
  --ag-danger: #cc00cc;        /* prismatic magenta for danger/warning */
  --ag-radius: 15px;
  --ag-radius-lg: 30px;        /* pill radius from site buttons */

  /* ── Light palette (good-fella inspired) ── */
  --ag-light-bg: #EEEEEE;
  --ag-light-bg-muted: #F7F7F7;
  --ag-light-text: #151515;
  --ag-light-text-muted: #696869;
  --ag-light-border: rgba(0, 0, 0, 0.12);
  --ag-light-border-muted: rgba(0, 0, 0, 0.06);
  --ag-light-surface: #D5D5D5;

  /* Prismatic signature gradient: Blue → Purple → Magenta → Pink → Red */
  --gag-gradient: linear-gradient(
    90deg,
    hsl(240, 100%, 50%),
    hsl(270, 100%, 50%),
    hsl(300, 100%, 50%),
    hsl(330, 100%, 50%),
    hsl(0, 100%, 50%)
  );
}

/* ── Cursor: dark dot on light sections, no blend inversion ── */
.cursor.cursor-light {
  background-color: #151515;
  mix-blend-mode: normal;
}

/* ── Prismatic Gradient Text (highlight amounts, stats, accents) ── */
.ag-gradient-text {
  background: linear-gradient(90deg, hsl(240, 100%, 50%), hsl(300, 100%, 50%), hsl(0, 100%, 50%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.sub-color {
    color: var(--ag-gray) !important;
}

.text-white {
    color: var(--ag-white) !important;
}
/* ── Global LP overrides ── */
.lp-adgrant {
  background: var(--ag-dark-a);
  color: var(--ag-white);
}

/* ── Rhythmic section backgrounds ── */
.sec-dark-a { background: var(--ag-dark-a); }
.sec-dark-b { background: var(--ag-dark-b); }
.sec-dark-footer { background: var(--ag-dark-footer); }
/* ── Light accent sections ── */
.sec-accent {
  background: var(--ag-light-bg);
  color: var(--ag-light-text);
}

.sec-accent h1,
.sec-accent h2,
.sec-accent h3,
.sec-accent h4,
.sec-accent h5,
.sec-accent h6,
.sec-accent strong {
  color: var(--ag-light-text);
}

.sec-accent p,
.sec-accent li {
  color: var(--ag-light-text-muted);
}

/* ── Hero ── */
/* Anti-title */
.gag-anti-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.gag-anti-title-bar {
  width: 3px;
  height: 16px;
  background: var(--gag-gradient);
  border-radius: 2px;
}

.gag-anti-title-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ag-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
}

.ag-hero .background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ag-hero .background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

.ag-hero .caption {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.ag-hero .caption .gag-anti-title {
  margin: 0 auto 8px;
}

.ag-hero .caption h1 {
  font-size: 64px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -3px;
  margin-bottom: 28px;
}

.ag-hero .caption h1 .highlight {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--ag-white);
}

.ag-hero .caption h1 .amount {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  background: linear-gradient(90deg, hsl(240, 100%, 50%), hsl(300, 100%, 50%), hsl(0, 100%, 50%), hsl(240, 100%, 50%));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* animation: gag-shimmer 15s linear infinite; */
  padding: 3px;
}

@keyframes gag-shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.ag-hero .caption .sub-text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ag-light-gray);
  max-width: 600px;
  margin: 0 auto 36px;
}

.ag-hero .caption .exclusive-tag {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--ag-border-light);
  border-radius: var(--ag-radius-lg);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ag-light-gray);
  margin-bottom: 30px;
}

.ag-hero .hero-stats {
  margin-top: 60px;
  padding-top: 40px;
  /* border-top: 1px solid var(--ag-border); */
}

.ag-hero .stat-item {
  text-align: center;
}

.ag-hero .stat-item .number {
  font-size: 48px;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  letter-spacing: -2px;
  color: var(--ag-white);
  line-height: 1;
}

.ag-hero .stat-item .number.green {
  background: linear-gradient(90deg, hsl(240, 100%, 50%), hsl(300, 100%, 50%), hsl(0, 100%, 50%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ag-hero .stat-item .label {
  font-size: 13px;
  color: var(--ag-gray);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Buttons ── */
.ag-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--ag-accent);
  color: var(--ag-white);
  border-radius: var(--ag-radius-lg);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid var(--ag-accent);
}

.ag-btn-primary:hover {
  background: var(--ag-accent-hover);
  color: var(--ag-white);
  /* transform: translateY(-2px); */
}

.ag-btn-primary .icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.ag-btn-primary:hover .icon {
  transform: translateX(3px);
}

.ag-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: transparent;
  color: var(--ag-white);
  border-radius: var(--ag-radius-lg);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--ag-border-light);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ag-btn-secondary .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.ag-btn-secondary:hover .icon {
  transform: translateX(3px);
}

.ag-btn-secondary:hover {
  background: var(--ag-white);
  color: #151515;
  border-color: var(--ag-white);
}

.ag-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--ag-accent);
  color: var(--ag-white);
  border-radius: var(--ag-radius-lg);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ag-btn-white:hover {
  background: var(--ag-accent-hover);
  color: var(--ag-white);
  transform: translateY(-2px);
}

.btn-sub-text {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--ag-gray);
  margin-top: 12px;
}
.ag-hero .btn-sub-text {
  text-align: center;
}
/* ── Social Proof Bar — centered stacked (dark) ── */
.ag-social-proof {
  padding: 48px 0;
  position: relative;
}

/* Gradient fade borders */
.ag-social-proof::before,
.ag-social-proof::after {
  content: '';
  position: absolute;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1) 30%, rgba(255,255,255,0.1) 70%, transparent);
}
.ag-social-proof::before { top: 0; }
.ag-social-proof::after { bottom: 0; }

/* Top row: label + stats inline, centered */
.ag-proof-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 36px;
}

.ag-proof-top .proof-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: var(--ag-gray);
}

.ag-proof-top .proof-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.ag-proof-top .proof-stat-number {
  font-size: 28px;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--ag-light-gray);
}

.ag-proof-top .proof-stat-label {
  font-size: 13px;
  color: var(--ag-gray);
}

.ag-proof-top .proof-stat-divider {
  width: 1px;
  flex-shrink: 0;
  height: 24px;
  background: rgba(255,255,255,0.12);
}

/* Right column — Logo Marquee */
.ag-logos-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.ag-logos-track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: scrollLogos 35s linear infinite;
}

.ag-logos-track:hover {
  animation-play-state: paused;
}

/* Uniform gray logos — any color → white silhouette → #818081 via opacity */
.ag-logo-img {
  flex: 0 0 auto;
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0) invert(1);
  opacity: 0.45;
  transition: opacity 0.4s ease;
}

.ag-logo-img:hover {
  opacity: 0.75;
}

/* Keep original colors for specific logos */
.ag-logo-color {
  filter: none;
  opacity: 0.8;
}

.ag-logo-color:hover {
  opacity: 1;
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Social Proof — Responsive ── */
@media (max-width: 767px) {
  .ag-social-proof {
    padding: 36px 0;
  }
  .ag-proof-top {
    flex-wrap: wrap;
    gap: 16px;
  }
  .ag-proof-top .proof-stat-number {
    font-size: 22px;
  }
  .ag-logos-track {
    gap: 32px;
    animation-duration: 22s;
  }
  .ag-logo-img {
    height: 22px;
  }
}

/* ── Pain Section ── */
.ag-pain .intro-text {
  font-size: 20px;
  line-height: 1.6;
  color: var(--ag-light-gray);
  margin-bottom: 20px;
}

/* Scenario Cards — grid pattern style (startup_agency inspired) */
.ag-pain .scenario-card {
  position: relative;
  padding: 48px 40px 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  height: 100%;
  overflow: hidden;
  background: var(--ag-dark-footer);
  transition: all 0.4s ease;
}

/* Grid pattern overlay */
.ag-pain .scenario-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../imgs/adgrant/grid-pattern.png);
  background-size: contain;
  background-repeat: repeat;
  opacity: 0.06;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

/* Bottom accent line — gradient, visible on hover */
.ag-pain .scenario-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ag-accent), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.ag-pain .scenario-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.ag-pain .scenario-card:hover::before {
  opacity: 0.1;
}

.ag-pain .scenario-card:hover::after {
  opacity: 1;
}

/* Big background number */
.ag-pain .scenario-number {
  position: absolute;
  top: -10px;
  right: 24px;
  font-size: 120px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  user-select: none;
  transition: color 0.5s ease;
}

.ag-pain .scenario-card:hover .scenario-number {
  color: rgba(255, 255, 255, 0.06);
}

.ag-pain .scenario-content {
  position: relative;
  z-index: 1;
}

.ag-pain .scenario-card h4 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.ag-pain .scenario-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ag-gray);
  margin-bottom: 24px;
}

/* Bottom tag pill */
.ag-pain .scenario-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ag-radius-lg);
  transition: all 0.4s ease;
}

.ag-pain .scenario-card:hover .scenario-tag {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Pain question — dramatic treatment */
.ag-pain .pain-question {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.3;
  margin-top: 80px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* Decorative line above the question */
.ag-pain .pain-question::before {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ag-accent), transparent);
  margin: 0 auto 40px;
}

.ag-pain .pain-question .amount {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  background: linear-gradient(90deg, hsl(240, 100%, 50%), hsl(300, 100%, 50%), hsl(0, 100%, 50%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════
   SOLUTION SECTION — story chapter 2
   ══════════════════════════════════════════ */
.ag-solution .sec-title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1.15;
  margin-bottom: 30px;
}

/* Narrative block — centered prose */
.ag-solution .solution-narrative {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.ag-solution .narrative-lead {
  font-size: 20px;
  line-height: 1.7;
  color: var(--ag-light-gray);
  margin-bottom: 20px;
}

.ag-solution .narrative-lead strong {
  color: var(--ag-white);
}

.ag-solution .narrative-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ag-gray);
}

/* Grant steps — 3-column escalating cards */
.ag-solution .grant-steps {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

.ag-solution .grant-step {
  flex: 1;
  max-width: 425px;
}

.ag-solution .grant-step-inner {
  position: relative;
  padding: 40px 30px;
  background: var(--ag-dark-b);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Grid pattern on step cards */
.ag-solution .grant-step-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url(../imgs/adgrant/grid-pattern.png);
  background-size: contain;
  background-repeat: repeat;
  opacity: 0.04;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.ag-solution .grant-step-inner:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.ag-solution .grant-step-inner:hover::before {
  opacity: 0.08;
}

.ag-solution .grant-step-number {
  position: absolute;
  top: -8px;
  right: 16px;
  font-size: 80px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.ag-solution .grant-step-value {
  font-size: 48px;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--ag-white);
  position: relative;
  z-index: 1;
}

.ag-solution .grant-step-unit {
  font-size: 13px;
  color: var(--ag-gray);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 1;
}

/* Main step (yearly) — bigger, gradient text */
.ag-solution .grant-step-main .grant-step-inner {
  padding: 56px 30px;
}

.ag-solution .grant-step-main .grant-step-value {
  font-size: 64px;
  background: linear-gradient(90deg, hsl(240, 100%, 50%), hsl(300, 100%, 50%), hsl(0, 100%, 50%));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* animation: gag-shimmer 4s linear infinite; */
}

/* Bottom accent line on main card */
.ag-solution .grant-step-main .grant-step-inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ag-accent), transparent);
}

.ag-solution .grant-note {
  text-align: center;
  font-size: 14px;
  color: var(--ag-gray);
  margin-top: 40px;
}

/* ══════════════════════════════════════════
   USE CASES — Stacking Cards (dhero "Transforming ideas" style)
   ══════════════════════════════════════════ */

/* ── Card container ── */
.usecase-cards {
  display: flex;
  flex-direction: column;
}

/* ── Individual card — sticky stacking ── */
.usecase-card {
  position: sticky;
  top: 80px;
  background: var(--ag-dark-b);
  border-radius: 20px;
  overflow: hidden;
  will-change: transform;
}
.usecase-card:nth-child(1) { z-index: 1; }
.usecase-card:nth-child(2) { z-index: 2; }
.usecase-card:nth-child(3) { z-index: 3; }
.usecase-card:nth-child(4) { z-index: 4; }

/* ── Inner 2-column layout ── */
.usecase-card__inner {
  display: flex;
  align-items: stretch;
  min-height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background: var(--ag-dark-footer);
}

/* ── Left: content ── */
.usecase-card__content {
  flex: 1;
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.usecase-card__content h3 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin: 0 0 28px;
  color: var(--ag-white);
}

/* ── Tags list ── */
.usecase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.usecase-tags span {
  font-size: 14px;
  font-weight: 400;
  color: var(--ag-gray);
  padding: 6px 16px;
  border: 1px solid var(--ag-border);
  border-radius: 100px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.usecase-card:hover .usecase-tags span {
  border-color: var(--ag-border-light);
  color: var(--ag-light-gray);
}

/* ── Description ── */
.usecase-card__content p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ag-gray);
  margin: 0;
  max-width: 540px;
}

/* ── Right: mockup visual ── */
.usecase-card__shape {
  width: 40%;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

/* ═══════════════════════════════════════
   USE CASE MOCKUPS — Shared base
═══════════════════════════════════════ */
.uc-mockup {
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0a;
  overflow: hidden;
  font-family: inherit;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.usecase-card:hover .uc-mockup {
  transform: translateY(-4px);
}

/* Browser bar */
.uc-mockup__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.uc-mockup__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.uc-mockup__dot:first-child { background: rgba(255, 80, 80, 0.45); }
.uc-mockup__dot:nth-child(2) { background: rgba(255, 200, 60, 0.45); }
.uc-mockup__dot:nth-child(3) { background: rgba(80, 200, 80, 0.45); }

.uc-mockup__url {
  margin-left: auto;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.25);
  font-family: monospace;
  letter-spacing: 0.5px;
}

.uc-mockup__screen {
  padding: 16px;
}

/* ═══ Mockup 1: Google Search Results ═══ */
.uc-search__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.uc-search__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.3);
}

.uc-search__result {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.uc-search__result:last-child {
  border-bottom: none;
}

.uc-search__ad-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  color: var(--ag-accent);
  background: rgba(0, 0, 255, 0.1);
  padding: 2px 6px;
  border-radius: 3px;
  margin-bottom: 4px;
  letter-spacing: 0.3px;
  animation: badge-pulse 2.5s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; background: rgba(0, 0, 255, 0.18); }
}

.uc-search__title {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(130, 170, 255, 0.9);
  margin-bottom: 2px;
  line-height: 1.4;
}

.uc-search__title--organic {
  width: 75%;
  height: 10px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 6px;
}

.uc-search__url-text {
  display: block;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 4px;
}

.uc-search__desc {
  display: block;
  width: 90%;
  height: 6px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.05);
  margin-top: 4px;
}

.uc-search__desc--short {
  width: 60%;
}

/* ═══ Mockup 2: Google Ads Campaign ═══ */
.uc-ads__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.uc-ads__campaign-name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.uc-ads__status {
  font-size: 9px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  letter-spacing: 0.3px;
}

.uc-ads__status--active {
  color: rgba(80, 200, 80, 0.9);
  background: rgba(80, 200, 80, 0.1);
  border: 1px solid rgba(80, 200, 80, 0.2);
}

.uc-ads__metrics {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.uc-ads__metric {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.uc-ads__metric-val {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.5px;
}

.uc-ads__metric-val--free {
  color: rgba(80, 200, 80, 0.95);
}

.uc-ads__metric-label {
  display: block;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 2px;
}

.uc-ads__keywords {
  padding-top: 4px;
}

.uc-ads__kw-title {
  display: block;
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.uc-ads__kw-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.uc-ads__kw-row:last-child {
  border-bottom: none;
}

.uc-ads__kw-ctr {
  font-weight: 600;
  color: rgba(80, 200, 80, 0.8);
  font-size: 10px;
}

/* ═══ Mockup 3: Impressions Dashboard ═══ */
.uc-dash__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.uc-dash__period {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.3);
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.uc-dash__big-number {
  text-align: center;
  margin-bottom: 20px;
}

.uc-dash__val {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -2px;
  line-height: 1;
}

.uc-dash__label {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

.uc-dash__change {
  display: inline-block;
  font-size: 10px;
  color: rgba(80, 200, 80, 0.8);
  margin-top: 6px;
  font-weight: 600;
}

.uc-dash__chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.uc-dash__bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, rgba(0, 0, 255, 0.15), rgba(0, 0, 255, 0.4));
  min-height: 4px;
  transition: opacity 0.3s;
}

.usecase-card:hover .uc-dash__bar {
  background: linear-gradient(to top, rgba(0, 0, 255, 0.2), rgba(0, 0, 255, 0.55));
}

/* ═══ Mockup 4: Analytics Table ═══ */
.uc-analytics__header {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.uc-analytics__table {
  display: flex;
  flex-direction: column;
}

.uc-analytics__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  padding: 7px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  align-items: center;
  border-radius: 4px;
  transition: background 0.2s;
}

.uc-analytics__row:not(.uc-analytics__row--head):hover {
  background: rgba(255, 255, 255, 0.04);
}

.uc-analytics__row:last-child {
  border-bottom: none;
}

.uc-analytics__row--head {
  font-size: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}

.uc-analytics__row span:nth-child(2),
.uc-analytics__row span:nth-child(3) {
  text-align: right;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  font-variant-numeric: tabular-nums;
}

.uc-analytics__row--head span:nth-child(2),
.uc-analytics__row--head span:nth-child(3) {
  color: rgba(255, 255, 255, 0.3);
}

/* ═══ Use Case Mockups — Responsive ═══ */

/* ── Use Cases — Tablet ── */
@media (max-width: 991px) {
  .usecase-card {
    top: 60px;
  }
  .usecase-card__inner {
    flex-direction: column;
    min-height: auto;
  }
  .usecase-card__content {
    padding: 40px 32px;
  }
  .usecase-card__content h3 {
    font-size: 32px;
  }
  .usecase-card__shape {
    width: 100%;
    min-width: 0;
    padding: 20px 32px 40px;
  }
  .uc-mockup {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ── Use Cases — Mobile ── */
@media (max-width: 767px) {
  .usecase-card {
    top: 50px;
    border-radius: 16px;
  }
  .usecase-card__inner {
    border-radius: 16px;
  }
  .usecase-card__content {
    padding: 28px 22px 20px;
  }
  .usecase-card__content h3 {
    font-size: 24px;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }
  .usecase-card__content p {
    font-size: 14px;
    line-height: 1.7;
  }
  .usecase-tags {
    gap: 6px;
    margin-bottom: 16px;
  }
  .usecase-tags span {
    font-size: 11px;
    padding: 4px 10px;
  }
  .usecase-card__shape {
    padding: 12px 22px 28px;
  }
  .uc-mockup {
    max-width: 100%;
  }
  .uc-dash__val {
    font-size: 28px;
  }
  .uc-ads__metric-val {
    font-size: 13px;
  }
}

/* ── Obstacles Section ── */

/* Grid: 2 left + 1 right (full height) */
.obstacles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}

.obstacles-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.obstacles-right {
  display: flex;
}

/* ── Base card ── */
.obstacle-card {
  position: relative;
  padding: 40px 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background: var(--ag-dark-b);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.obstacle-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

/* Number */
.obstacle-card__num {
  font-size: 13px;
  font-weight: 600;
  color: var(--ag-gray);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.obstacle-card h4 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--ag-white);
}

.obstacle-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ag-gray);
  margin: 0;
}

/* Icon — subtle top-right */
.obstacle-card__icon {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.1);
}

/* ── Danger card (card 3) — monochrome ── */
.obstacle-card--danger {
  border-color: rgba(255, 255, 255, 0.15);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, var(--ag-dark-b) 50%);
  flex: 1;
  justify-content: center;
}

.obstacle-card--danger:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.obstacle-card--danger h4 {
  font-size: 30px;
  letter-spacing: -1px;
  color: var(--ag-white);
}

/* Danger badge */
.obstacle-card__danger-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
  width: fit-content;
}

.obstacle-card__danger-badge svg {
  width: 16px;
  height: 16px;
}

.obstacle-card__danger-badge span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Risk list */
.risk-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.risk-list li {
  font-size: 15px;
  color: var(--ag-gray);
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.risk-list li:last-child {
  border-bottom: none;
}

.risk-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.risk-list li strong {
  color: var(--ag-white);
}

/* Subtle glow on danger card */
.obstacle-card__glow {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04), transparent 70%);
  pointer-events: none;
}

/* ── Obstacles Responsive ── */
@media (max-width: 991px) {
  .obstacles-grid {
    grid-template-columns: 1fr;
  }
  .obstacle-card--danger h4 {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .obstacle-card {
    padding: 28px 24px;
    border-radius: 16px;
  }
  .obstacle-card h4 {
    font-size: 20px;
  }
  .obstacle-card p {
    font-size: 14px;
  }
  .obstacle-card--danger h4 {
    font-size: 22px;
  }
  .obstacle-card__icon {
    width: 36px;
    height: 36px;
    top: 24px;
    right: 24px;
  }
  .risk-list li {
    font-size: 14px;
    padding-left: 22px;
  }
}

.ag-obstacles .agency-intro {
  padding: 56px 48px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background: var(--ag-dark-b);
  margin-top: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle accent glow top-center */
.ag-obstacles .agency-intro::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 0, 204, 0.08), transparent 70%);
  pointer-events: none;
}

.ag-obstacles .agency-intro p {
  font-size: 19px;
  line-height: 1.75;
  color: var(--ag-gray);
  max-width: 680px;
  margin: 0 auto;
}

.ag-obstacles .agency-intro strong {
  color: var(--ag-white);
}

/* ── Offer / Promise Section ── */
/* ── Premium Offer Section ── */
.ag-offer.sec-accent {
  background: linear-gradient(180deg, #f2f2f2 0%, #e6e6e6 50%, #eaeaea 100%);
  position: relative;
  overflow: hidden;
}

/* Dual ornaments for dimensional depth */
.offer-bg-ornament {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 0, 204, 0.06), transparent 60%);
  pointer-events: none;
}

.offer-bg-ornament--bottom {
  top: auto;
  right: auto;
  bottom: -250px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 0, 255, 0.04), transparent 60%);
}

/* Eyebrow */
.offer-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--ag-highlight);
  margin-bottom: 20px;
}

.ag-offer .offer-title {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -2px;
  color: var(--ag-light-text);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Prismatic shimmer on $120,000 — matches hero amount treatment */
.offer-amount,
.offer-amount .word-wrap {
  padding: 0px 2px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  background: linear-gradient(90deg, hsl(240, 100%, 50%), hsl(300, 100%, 50%), hsl(0, 100%, 50%), hsl(240, 100%, 50%));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* animation: gag-shimmer 4s linear infinite; */
}

.ag-offer .offer-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ag-light-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* Steps container */
.offer-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

/* Divider arrow between cards */
.offer-steps__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.offer-steps__line {
  flex: 1;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--ag-light-border), transparent);
}

.offer-steps__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(204, 0, 204, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0;
  background: var(--ag-white);
  box-shadow: 0 0 20px rgba(204, 0, 204, 0.08);
  animation: offer-arrow-pulse 2.5s ease-in-out infinite;
}

@keyframes offer-arrow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(204, 0, 204, 0.08); }
  50%      { box-shadow: 0 0 30px rgba(204, 0, 204, 0.16); }
}

.offer-steps__arrow svg {
  width: 18px;
  height: 18px;
  color: var(--ag-highlight);
}

/* Step card — premium treatment */
.step-card {
  padding: 44px 40px;
  background: var(--ag-white);
  border: 1px solid var(--ag-light-border-muted);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Gradient accent line — hidden until hover */
.step-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ag-accent), var(--ag-highlight), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-card:hover {
  border-color: var(--ag-light-border);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.step-card:hover::after {
  opacity: 1;
}

/* Large watermark number */
.step-card__watermark {
  position: absolute;
  top: -15px;
  right: 24px;
  font-size: 140px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: rgba(0, 0, 0, 0.025);
  line-height: 1;
  pointer-events: none;
  transition: color 0.5s ease;
}

.step-card:hover .step-card__watermark {
  color: rgba(0, 0, 0, 0.05);
}

/* Featured card watermark in magenta */
.step-card--featured .step-card__watermark {
  color: rgba(204, 0, 204, 0.03);
}

.step-card--featured:hover .step-card__watermark {
  color: rgba(204, 0, 204, 0.06);
}

/* Featured card (paso 2) — premium glow */
.step-card--featured {
  border-color: rgba(204, 0, 204, 0.15);
  background: linear-gradient(165deg, rgba(204, 0, 204, 0.04) 0%, var(--ag-white) 45%);
}

.step-card--featured:hover {
  border-color: rgba(204, 0, 204, 0.3);
  box-shadow: 0 12px 48px rgba(204, 0, 204, 0.1);
}

.step-card--featured::after {
  background: linear-gradient(90deg, transparent, var(--ag-highlight), hsl(0, 100%, 50%), transparent);
}

/* Radial glow inside featured card */
.step-card__glow {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(204, 0, 204, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.5s ease;
}

.step-card--featured:hover .step-card__glow {
  opacity: 1.5;
}

/* Card header */
.step-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.step-card .step-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ag-light-text-muted);
}

.step-card .step-label--accent {
  color: var(--ag-highlight);
}

.step-card__price {
  font-size: 32px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  color: var(--ag-light-text);
}


.step-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: var(--ag-light-text);
  position: relative;
  z-index: 1;
}

.step-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ag-light-text-muted);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Guarantee badge — elevated treatment */
.step-card__guarantee {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(204, 0, 204, 0.05), rgba(0, 0, 255, 0.03));
  border: 1px solid rgba(204, 0, 204, 0.12);
  position: relative;
  z-index: 1;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.step-card:hover .step-card__guarantee {
  border-color: rgba(204, 0, 204, 0.2);
  background: linear-gradient(135deg, rgba(204, 0, 204, 0.07), rgba(0, 0, 255, 0.04));
}

.step-card__guarantee svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--ag-highlight);
  margin-top: 1px;
}

.step-card__guarantee span {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ag-light-text-muted);
  font-weight: 500;
}

.step-card__guarantee strong {
  color: var(--ag-highlight);
  font-weight: 700;
}

/* Check items */
.step-card__checks {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--ag-light-border-muted);
  position: relative;
  z-index: 1;
}

.step-card .check-item {
  font-size: 14px;
  padding: 8px 0;
  color: var(--ag-light-text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-card .check-item::before {
  content: '✓';
  color: var(--ag-highlight);
  font-weight: 700;
  font-size: 15px;
}

/* ── Offer Responsive ── */
@media (max-width: 991px) {
  .ag-offer .offer-title {
    font-size: 36px;
  }
  .offer-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .offer-steps__divider {
    flex-direction: row;
    padding: 0;
  }
  .offer-steps__line {
    width: auto;
    height: 1px;
    flex: 1;
  }
  .offer-steps__arrow {
    margin: 0 12px;
  }
  .offer-steps__arrow svg {
    transform: rotate(90deg);
  }
}

@media (max-width: 767px) {
  .ag-offer .offer-title {
    font-size: 28px;
    letter-spacing: -1px;
  }
  .step-card {
    padding: 32px 24px;
    border-radius: 16px;
  }
  .step-card__price {
    font-size: 26px;
  }
  .step-card h4 {
    font-size: 20px;
  }
  .step-card__watermark {
    font-size: 100px;
  }
}

/* ── ROI Section ── */
/* ROI grid */
.roi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.ag-roi .roi-card {
  padding: 44px 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background: var(--ag-dark-b);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.ag-roi .roi-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

/* Icon */
.roi-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
}

.roi-card__icon svg {
  width: 100%;
  height: 100%;
}

/* Label */
.ag-roi .roi-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ag-shape);
  margin-bottom: 16px;
}

/* Title */
.ag-roi .roi-card h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  line-height: 1.3;
  color: var(--ag-white);
}

/* Metric highlight */
.roi-card__highlight {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 20px 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 24px;
}

.roi-card__metric {
  font-size: 36px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--ag-white);
  line-height: 1;
}

.roi-card__metric-sub {
  font-size: 14px;
  color: var(--ag-gray);
  line-height: 1.4;
}

/* Body text */
.ag-roi .roi-card p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ag-gray);
  margin: 0;
}

/* ── ROI Responsive ── */
@media (max-width: 991px) {
  .roi-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .ag-roi .roi-card {
    padding: 32px 24px;
    border-radius: 16px;
  }
  .ag-roi .roi-card h4 {
    font-size: 20px;
  }
  .roi-card__metric {
    font-size: 28px;
  }
  .roi-card__highlight {
    flex-direction: column;
    gap: 6px;
  }
}

/* ── Offer Chapter 2 — Financial sense ── */
.offer-chapter-2 {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid var(--ag-light-border);
}

.offer-chapter-title {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -1.5px;
  line-height: 1.2;
  color: var(--ag-light-text);
  margin-bottom: 50px;
}

.offer-chapter-title .italic {
  font-family: 'Playfair Display', serif;
}

/* Scenario split — editorial two-column */
.scenario-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 860px;
  margin: 0 auto;
}

.scenario-split__item {
  position: relative;
}

.scenario-split__heading {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--ag-light-text);
  margin-bottom: 0;
  line-height: 1.3;
}

.scenario-split__line {
  width: 40px;
  height: 2px;
  background: var(--ag-accent);
  margin: 16px 0;
  border-radius: 1px;
}

.scenario-split__content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ag-light-text-muted);
  margin: 0;
}

.scenario-split__content p strong {
  color: var(--ag-light-text);
  font-weight: 600;
}

/* Premium CTA button */
.offer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ag-white);
  background: var(--ag-accent);
  border-radius: 60px;
  text-decoration: none;
  letter-spacing: -0.2px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px rgba(0, 0, 255, 0.25);
}

.offer-cta-btn:hover {
  background: var(--ag-accent-hover);
  color: var(--ag-white);
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 255, 0.3);
  transform: translateY(-2px);
}

.offer-cta-btn svg {
  transition: transform 0.3s ease;
}

.offer-cta-btn:hover svg {
  transform: translateX(3px);
}

/* Text link CTA — elegant, not a button */
.ag-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ag-accent);
  text-decoration: none;
  letter-spacing: -0.2px;
  transition: gap 0.3s ease;
}

.ag-link-arrow:hover {
  gap: 14px;
  color: var(--ag-accent-hover);
}

.ag-link-arrow svg {
  transition: transform 0.3s ease;
}

/* Scenario + Chapter responsive */
@media (max-width: 991px) {
  .offer-chapter-title {
    font-size: 30px;
    letter-spacing: -1px;
  }
}

@media (max-width: 767px) {
  .offer-chapter-2 {
    margin-top: 50px;
    padding-top: 50px;
  }
  .offer-chapter-title {
    font-size: 24px;
  }
  .scenario-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ── Testimonials Section ── */
.ag-testimonials .testim-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.ag-testimonials .testim-layout__left {
  position: sticky;
  top: 120px;
}

.ag-testimonials .testim-layout__left .ag-sec-head {
  margin-bottom: 40px;
}

.ag-testimonials .testim-layout__right {
  position: relative;
}

/* Vertical marquee container */
.ag-testimonials .testim-vmarquee {
  overflow: hidden;
  max-height: 700px;
  position: relative;
}

/* Blur edges top and bottom */
.ag-testimonials .testim-vmarquee::before,
.ag-testimonials .testim-vmarquee::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 2;
  pointer-events: none;
}

.ag-testimonials .testim-vmarquee::before {
  top: 0;
  background: linear-gradient(to bottom, var(--ag-dark-a), transparent);
}

.ag-testimonials .testim-vmarquee::after {
  bottom: 0;
  background: linear-gradient(to top, var(--ag-dark-a), transparent);
}

.ag-testimonials .testim-vmarquee__track {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card styling */
.ag-testimonials .testim-card {
  padding: 32px 28px;
  border: 1px solid var(--ag-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.4s ease;
}

.ag-testimonials .testim-card:hover {
  border-color: var(--ag-border-light);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-3px);
}

.ag-testimonials .testim-card .quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ag-light-gray);
  margin-bottom: 24px;
}

.ag-testimonials .testim-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ag-testimonials .testim-author .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ag-accent), var(--ag-highlight));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--ag-white);
  flex-shrink: 0;
}

/* Avatar color variations per card */
.testim-card:nth-child(2) .avatar {
  background: linear-gradient(135deg, var(--ag-highlight), hsl(0, 100%, 50%));
}
.testim-card:nth-child(3) .avatar {
  background: linear-gradient(135deg, hsl(270, 100%, 50%), var(--ag-accent));
}
.testim-card:nth-child(4) .avatar {
  background: linear-gradient(135deg, hsl(330, 100%, 50%), hsl(270, 100%, 50%));
}

.ag-testimonials .testim-author .name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ag-white);
}

.ag-testimonials .testim-author .role {
  font-size: 12px;
  color: var(--ag-gray);
  margin-top: 2px;
}

/* ── Process Section — Timeline Stepper ── */
.process-cta-wrap {
  padding: 60px 0 80px;
}

.ag-process .process-scroll-area {
  min-height: 320vh;
  position: relative;
  padding: 80px 0 128px;
}

.ag-process .process-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 40px;
  box-sizing: border-box;
}

.ag-process .process-sticky > .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

/* Left column: header + counter */
.ag-process .process-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ag-process .process-label {
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  color: var(--ag-gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.ag-process .process-header h2 {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 40px;
}

/* Step counter — large, dramatic */
.ag-process .process-counter {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.ag-process .process-counter__current {
  font-size: 88px;
  font-weight: 300;
  font-family: 'Playfair Display', serif;
  letter-spacing: -4px;
  line-height: 1;
  /* background: linear-gradient(180deg, #fff 40%, rgba(255,255,255,0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  background-clip: text;
  transition: all 0.4s ease;
}

.ag-process .process-counter__sep {
  font-size: 28px;
  font-family: 'Playfair Display', serif;
  margin: 0 6px;
 color: rgb(255 255 255 / 60%);
}

.ag-process .process-counter__total {
  font-size: 28px;
  font-family: 'Playfair Display', serif;
      color: rgb(255 255 255 / 60%);
}

/* Right column: timeline + items */
.ag-process .process-list {
  position: relative;
  padding-left: 40px;
}

/* Vertical timeline line */
.ag-process .process-timeline {
  position: absolute;
  left: 7px;
  top: 28px;
  bottom: 32px;
  width: 2px;
}

.ag-process .process-timeline__track {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
}

/* Fill — clean white */
.ag-process .process-timeline__fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0%;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1px;
  transition: height 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

/* Node circles — centered on the 2px timeline line
   --tl-center: timeline left + 1px (half of 2px line)
   --list-pad:  process-list padding-left
   --node-size: node width
   left = tl-center - list-pad - node-size/2 */
.ag-process .process-node {
  position: absolute;
  top: 16px;
  --tl-center: 8px;   /* desktop: left 7px + 1px */
  --list-pad: 40px;
  --node-size: 16px;
  width: var(--node-size);
  height: var(--node-size);
  left: calc(var(--tl-center) - var(--list-pad) - var(--node-size) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ag-process .process-node__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.ag-process .process-item.is-active .process-node__dot {
  width: 8px;
  height: 8px;
  background: #fff;
}

.ag-process .process-item.is-completed .process-node__dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
}

/* Each process item */
.ag-process .process-item {
  position: relative;
  padding: 16px 20px 20px;
  border-radius: 12px;
  opacity: 0.3;
  background: transparent;
  border: 1px solid transparent;
  transition: background 0.5s ease, border-color 0.5s ease;
}

.ag-process .process-item.is-active {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

/* Body */
.ag-process .process-item__body {
  flex: 1;
}

.ag-process .process-item__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.ag-process .process-item.is-active .process-item__badge {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.ag-process .process-item__badge--success {
  color: #4ade80 !important;
  background: rgba(74, 222, 128, 0.06) !important;
  border-color: rgba(74, 222, 128, 0.12) !important;
}

.ag-process .process-item__title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 6px;
}

.ag-process .process-item__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ag-gray);
}

/* ── Mission / Aliados — Manifesto + Bento ── */

/* Manifesto block */
.mission-manifesto {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}

.mission-manifesto__label {
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  color: var(--ag-gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 28px;
}

.mission-manifesto__quote {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1.15;
  margin: 0 0 24px;
}

.mission-manifesto__sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ag-gray);
  max-width: 540px;
  margin: 0 auto;
}

/* Bento grid: 1 large + 2 small */
.mission-bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.mission-bento__main {
  grid-row: 1 / 3;
  padding: 44px 40px;
  border: 1px solid var(--ag-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  transition: border-color 0.4s ease, background 0.4s ease;
  overflow: hidden;
}

.mission-bento__main:hover {
  border-color: var(--ag-border-light);
  background: rgba(255, 255, 255, 0.04);
}

.mission-bento__content h3 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.mission-bento__content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ag-gray);
}

/* ── Browser Mockup (internet-zero.com style) ── */
.mission-browser {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0a;
  overflow: hidden;
}

.mission-browser__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.mission-browser__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.mission-browser__dot:first-child { background: rgba(255, 80, 80, 0.5); }
.mission-browser__dot:nth-child(2) { background: rgba(255, 200, 60, 0.5); }
.mission-browser__dot:nth-child(3) { background: rgba(80, 200, 80, 0.5); }

.mission-browser__url {
  margin-left: auto;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  font-family: 'Inter', monospace;
  letter-spacing: 0.5px;
}

.mission-browser__screen {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Nav */
.mission-browser__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mission-browser__logo {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.mission-browser__nav-links {
  display: flex;
  gap: 8px;
}

.mission-browser__nav-item {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
}

/* Hero — centered headline + input */
.mission-browser__iz-hero {
  text-align: center;
  padding: 28px 10px 20px;
}

.mission-browser__iz-heading {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}

.mission-browser__iz-input {
  display: flex;
  align-items: center;
  max-width: 200px;
  margin: 0 auto 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.mission-browser__iz-placeholder {
  flex: 1;
  padding: 7px 10px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.25);
  font-family: 'Inter', sans-serif;
}

.mission-browser__iz-btn {
  padding: 7px 12px;
  font-size: 9px;
  font-weight: 600;
  color: #fff;
  background: var(--ag-accent);
  letter-spacing: 0.3px;
}

.mission-browser__iz-sub {
  display: block;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.3px;
}

/* Stats row */
.mission-browser__iz-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 14px 4px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mission-browser__iz-stat {
  text-align: center;
  padding: 8px 4px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mission-browser__iz-stat-num {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.mission-browser__iz-stat-txt {
  display: block;
  font-size: 7px;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 3px;
}

/* ── Side cards ── */
.mission-bento__side {
  padding: 32px 28px;
  border: 1px solid var(--ag-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.4s ease, background 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mission-bento__side:hover {
  border-color: var(--ag-border-light);
  background: rgba(255, 255, 255, 0.04);
}

.mission-bento__side h4 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.mission-bento__side p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ag-gray);
}

/* ── Climate card visual ── */
.mission-climate-visual {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  pointer-events: none;
}

.mission-climate__globe {
  width: 100%;
  height: 100%;
  animation: climateRotate 30s linear infinite;
}

@keyframes climateRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── Values card quotation mark ── */
.mission-values__mark {
  position: absolute;
  top: -8px;
  right: 20px;
  font-size: 120px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

/* Shared tag style */
.mission-bento__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

/* Link */
.ag-mission .mission-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.ag-mission .mission-link:hover {
  gap: 12px;
}

/* Mission responsive */
@media (max-width: 991px) {
  .mission-manifesto__quote {
    font-size: 32px;
  }
  .mission-bento {
    grid-template-columns: 1fr;
  }
  .mission-bento__main {
    grid-row: auto;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .mission-browser {
    max-width: 380px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .mission-manifesto {
    margin-bottom: 48px;
  }
  .mission-manifesto__quote {
    font-size: 26px;
    letter-spacing: -1px;
  }
  .mission-manifesto__sub {
    font-size: 15px;
  }
  .mission-bento {
    gap: 16px;
  }
  .mission-bento__main {
    padding: 32px 24px;
    gap: 24px;
  }
  .mission-bento__content h3 {
    font-size: 22px;
  }
  .mission-bento__side {
    padding: 24px 20px;
  }
  .mission-bento__side h4 {
    font-size: 18px;
  }
  .mission-browser__iz-hero {
    padding: 20px 6px 14px;
  }
  .mission-browser__iz-heading {
    font-size: 11px;
  }
  .mission-browser__iz-stat-num {
    font-size: 11px;
  }
  .mission-browser__iz-stats {
    gap: 5px;
  }
  .mission-climate-visual {
    width: 90px;
    height: 90px;
    top: -10px;
    right: -10px;
  }
  .mission-values__mark {
    font-size: 80px;
  }
}

/* ── Services Upsell Section ── */
/* ── Services Bento Grid ── */
.services-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.service-card--wide:nth-child(1) { grid-column: span 3; }
.service-card--wide:nth-child(2) { grid-column: span 3; }
.service-card:nth-child(3) { grid-column: span 2; }
.service-card:nth-child(4) { grid-column: span 2; }
.service-card:nth-child(5) { grid-column: span 2; }

.service-card {
  position: relative;
  padding: 36px 32px;
  border: 1px solid var(--ag-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s ease;
}

.service-card:hover {
  border-color: var(--ag-border-light);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-3px);
}

/* Icon */
.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--ag-border);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.4s ease, border-color 0.4s ease;
}

.service-card:hover .service-card__icon {
  color: rgba(255, 255, 255, 0.8);
  border-color: var(--ag-border-light);
}

/* Body */
.service-card__body h5 {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.service-card__body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ag-gray);
}

/* Wide cards get horizontal layout */
.service-card--wide {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 24px;
  align-items: start;
}

.service-card--wide .service-card__icon {
  grid-row: 2;
  margin-bottom: 0;
  margin-top: 4px;
}

.service-card--wide .service-card__body {
  grid-row: 2;
}

/* Featured card — AI */
.service-card--featured {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(0, 0, 255, 0.04), rgba(167, 139, 250, 0.04));
}

.service-card--featured:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(0, 0, 255, 0.06), rgba(167, 139, 250, 0.06));
}

.service-card--featured .service-card__icon {
  border-color: rgba(167, 139, 250, 0.2);
  color: var(--ag-shape);
}

.service-card--featured:hover .service-card__icon {
  border-color: rgba(167, 139, 250, 0.35);
}

/* Services responsive */
@media (max-width: 991px) {
  .services-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card--wide:nth-child(1),
  .service-card--wide:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    grid-column: span 1;
  }
  .service-card:nth-child(5) {
    grid-column: span 2;
  }
  .service-card--wide {
    display: block;
  }
  .service-card--wide .service-card__icon {
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .services-bento {
    grid-template-columns: 1fr;
  }
  .service-card--wide:nth-child(1),
  .service-card--wide:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 1;
  }
  .service-card {
    padding: 28px 24px;
  }
  .service-card__body h5 {
    font-size: 17px;
  }
}

/* ── FAQ Section ── */
/* Safeguard: ensure collapsed accordion bodies stay hidden */
.ag-faq .accordion-collapse.collapse:not(.show) {
  display: none !important;
  overflow: hidden !important;
  height: 0 !important;
}

.ag-faq .faq-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ag-gray);
  margin-top: 20px;
}

.ag-faq .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ag-border);
}

.ag-faq .accordion-item:first-child {
  border-top: 1px solid var(--ag-border);
}

.ag-faq .accordion-button {
  background: transparent;
  color: #818081;
  font-size: 17px;
  font-weight: 400;
  padding: 24px 0;
  box-shadow: none;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
  gap:50px;
}

.ag-faq .accordion-button:hover {
  color: white;
}

.ag-faq .accordion-button:focus {
  box-shadow: none;
}

.ag-faq .accordion-button::after {
  filter: invert(1);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.ag-faq .accordion-button:hover::after {
  opacity: 1;
}

.ag-faq .accordion-button:not(.collapsed) {
  background: transparent;
  color: white;
}

.ag-faq .accordion-body {
  padding: 0 0 24px 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ag-gray);
}

/* ── Trust Logo Bar (before final CTA) ── */
.ag-trust-bar {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ag-trust-bar__label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0 28px;
}

.ag-trust-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.ag-trust-bar__logos img {
    flex: 0 0 auto;
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.45;
    transition: opacity 0.4s ease;
}

.ag-trust-bar__logos img:hover {
  opacity: 0.7;
}

/* Google Partner — same grayscale treatment, just brighter to compensate dark source image */
.ag-trust-bar__logo--color {
filter: none !important;
 opacity: 0.8 !important;
}

.ag-trust-bar__logo--color:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .ag-trust-bar {
    padding: 36px 0;
  }
  .ag-trust-bar__logos {
    gap: 24px;
  }
  .ag-trust-bar__logos img {
    height: 30px;
  }
}

/* ── Final CTA Section ── */
/* ── Final CTA — Light accent (coherent with offer section) ── */
.ag-final-cta {
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f2f2f2 0%, #e8e8e8 100%);
}

/* Wrapper */
.ag-final-cta .final-cta__wrapper {
  position: relative;
  z-index: 2;
}

/* Eyebrow — matches offer-eyebrow */
.final-cta__eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ag-light-text-muted);
  margin-bottom: 20px;
}

/* Headline */
.ag-final-cta h2 {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--ag-light-text);
}

.final-cta__amount,
.final-cta__amount .word-wrap {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -2px;
  background: linear-gradient(90deg, hsl(240, 100%, 50%), hsl(300, 100%, 50%), hsl(0, 100%, 50%), hsl(240, 100%, 50%));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* animation: gag-shimmer 4s linear infinite; */
}

/* Urgency text */
.ag-final-cta .urgency-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ag-light-text-muted);
  max-width: 600px;
  margin: 0 auto 44px;
}

/* CTA Button */
.final-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 44px;
  background: var(--ag-accent);
  color: var(--ag-white);
  border-radius: var(--ag-radius-lg);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.3px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.final-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 255, 0.2);
  color: white;
}

/* Trust pills */
.ag-final-cta .final-cta__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.final-cta__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border: 1px solid var(--ag-light-border-muted);
  border-radius: 100px;
  font-size: 13px;
  color: var(--ag-light-text-muted);
  background: var(--ag-white);
}

.final-cta__pill svg {
  color: var(--ag-accent);
}

/* ── Section Headers (reusable) ── */
.ag-sec-head {
  margin-bottom: 60px;
}

.ag-sec-head .sec-label {
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  color: var(--ag-gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.ag-sec-head h2 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1.15;
}

.ag-sec-head h2 .italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.ag-sec-head p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ag-gray);
  margin-top: 20px;
  /* max-width: 600px; */
}

/* ── Google Partner badge ── */
/* ── Google Partner Badge — reusable ── */
.gp-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  border: 1px solid var(--ag-border);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.gp-badge:hover {
  border-color: var(--ag-border-light);
  background: rgba(255, 255, 255, 0.06);
}

.gp-badge img {
  height: 35px;
  width: auto;
  object-fit: contain;
}

.gp-badge span {
  font-size: 12px;
  font-weight: 500;
  color: var(--ag-gray);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Variant: hero (larger) */
.gp-badge--hero {
  margin: 24px auto 0;
  padding: 12px 26px;
}

.gp-badge--hero img {
  height: 35px;
}

.gp-badge--hero span {
  font-size: 13px;
}

/* Variant: inside obstacles agency-intro */
.ag-partner-badge {
  margin-top: 30px;
}

/* Variant: on light sections */
.sec-accent .gp-badge,
.sec-light .gp-badge {
  border-color: var(--ag-light-border);
  background: rgba(0, 0, 0, 0.03);
}

.sec-accent .gp-badge:hover,
.sec-light .gp-badge:hover {
  border-color: var(--ag-light-border);
  background: rgba(0, 0, 0, 0.06);
}

.sec-accent .gp-badge span,
.sec-light .gp-badge span {
  color: var(--ag-light-text-muted);
}

/* ── Footer ── */
.ag-footer {
  padding: 60px 0 40px;
}

.ag-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ag-footer__top .logo img {
  height: 22px;
  width: auto;
}

.ag-footer__links {
  display: flex;
  gap: 28px;
}

.ag-footer__links a {
  font-size: 14px;
  color: var(--ag-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.ag-footer__links a:hover {
  color: var(--ag-white);
}

.ag-footer__divider {
  height: 1px;
  background: var(--ag-border);
  margin: 32px 0;
}

.ag-footer__copy {
  font-size: 13px;
  color: var(--ag-gray);
  text-align: center;
}

@media (max-width: 767px) {
  .ag-footer__top {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .ag-footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .ag-final-cta h2 {
    font-size: 36px;
    letter-spacing: -1.5px;
  }
  .ag-final-cta .urgency-text {
    font-size: 15px;
  }
  .ag-final-cta .final-cta__trust {
    flex-direction: column;
    gap: 8px;
  }
  .final-cta__btn {
    padding: 16px 36px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }
}

/* ── Divider ── */
.ag-divider {
  height: 1px;
  background: var(--ag-border);
}

/* ── Nav override for LP ── */
.lp-adgrant .navbar {
background: #151515;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
    /* border-bottom: 1px solid #eeeeee2b; */
}




.lp-adgrant .navbar .navbar-nav {
  border: 1px solid var(--ag-border-nav);
  border-radius: var(--ag-radius-lg);
  padding: 2px;
}

.lp-adgrant .navbar .nav-link {
  font-size: 14px;
  padding: 5px 20px;
  border-radius: var(--ag-radius-lg);
  color: var(--ag-white);
  transition: background 0.3s ease, color 0.3s ease;
}

.lp-adgrant .navbar .nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.lp-adgrant .navbar .nav-link.active {
  background: rgba(255, 255, 255, 0.1);
}



/* ── Unified Animation System ── */

/* Fade-up for generic elements */
.ag-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ag-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Title reveal — unified: words start hidden, GSAP animates them */
.ag-reveal {
  visibility: hidden;
}

/* Each word container created by SplitText */
.ag-reveal .word-wrap {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

/* Counter animation */
.ag-counter {
  display: inline-block;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .ag-hero .caption h1 {
    font-size: 42px;
    letter-spacing: -2px;
  }

  .ag-hero .stat-item .number {
    font-size: 36px;
  }

  .ag-sec-head h2,
  .ag-offer .offer-title,
  .ag-final-cta h2,
  .ag-solution .sec-title {
    font-size: 36px;
    letter-spacing: -1.5px;
  }

  .ag-solution .grant-step-value {
    font-size: 36px;
  }

  .ag-solution .grant-step-main .grant-step-value {
    font-size: 48px;
  }



  .ag-process .process-sticky > .container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ag-process .process-sticky {
    padding: 70px 0 30px;
  }

  .ag-process .process-scroll-area {
    min-height: 300vh;
  }

  .ag-process .process-header {
    margin-bottom: 40px;
  }

  .ag-process .process-header h2 {
    font-size: 32px;
    margin-bottom: 0;
  }

  .ag-process .process-counter__current {
    font-size: 40px;
  }

  .ag-process .process-counter__sep {
    font-size: 20px;
    margin: 0 4px;
  }

  .ag-process .process-counter__total {
    font-size: 20px;
  }

  .ag-testimonials .testim-layout {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .ag-testimonials .testim-layout__left {
    position: static;
  }

  .ag-testimonials .testim-vmarquee {
    max-height: 500px;
  }

  .ag-pain .pain-question {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .ag-hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .ag-hero .caption h1 {
    font-size: 32px;
    letter-spacing: -1.5px;
  }

  .ag-hero .hero-stats {
    margin-top: 40px;
    padding-top: 30px;
  }

  .ag-hero .stat-item .number {
    font-size: 28px;
  }

  .ag-sec-head h2,
  .ag-offer .offer-title,
  .ag-final-cta h2,
  .ag-solution .sec-title {
    font-size: 28px;
    letter-spacing: -1px;
  }

  .ag-sec-head {
    margin-bottom: 40px;
  }

  .section-padding {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .ag-solution .grant-steps {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .ag-solution .grant-step {
    max-width: 100%;
    width: 100%;
  }

  .ag-solution .grant-step-value {
    font-size: 32px;
  }

  .ag-solution .grant-step-main .grant-step-value {
    font-size: 40px;
  }

  .ag-solution .grant-step-main .grant-step-inner {
    padding: 40px 30px;
  }

  .ag-testimonials .testim-card {
    padding: 24px 20px;
  }

  .ag-testimonials .testim-vmarquee {
    max-height: 450px;
  }

  .ag-process .process-scroll-area {
    min-height: 280vh;
    padding: 40px 0 60px;
  }

  .ag-process .process-sticky {
    padding: 60px 0 20px;
  }

  .ag-process .process-header {
    margin-bottom: 40px;
  }

  .ag-process .process-header h2 {
    font-size: 24px;
    letter-spacing: -1px;
    margin-bottom: 0;
  }

  .ag-process .process-counter__current {
    font-size: 28px;
    letter-spacing: -2px;
  }

  .ag-process .process-counter__sep {
    font-size: 16px;
    margin: 0 3px;
  }

  .ag-process .process-counter__total {
    font-size: 16px;
  }

  .ag-process .process-list {
    padding-left: 28px;
  }

  .ag-process .process-item {
    padding: 12px 14px 14px;
    border-radius: 10px;
  }

  .ag-process .process-item__title {
    font-size: 17px;
    margin-bottom: 4px;
  }

  .ag-process .process-item__desc {
    font-size: 13px;
    line-height: 1.5;
  }

  .ag-process .process-item__badge {
    font-size: 9px;
    padding: 2px 8px;
    margin-bottom: 8px;
    letter-spacing: 1px;
  }

  .ag-process .process-node {
    --tl-center: 3px;
    --list-pad: 28px;
    --node-size: 14px;
    top: 14px;
  }

  .ag-process .process-node__dot {
    width: 5px;
    height: 5px;
  }

  .ag-process .process-item.is-active .process-node__dot {
    width: 6px;
    height: 6px;
  }

  .ag-process .process-timeline {
    left: 4px;
    top: 24px;
    bottom: 28px;
  }

  .ag-pain .scenario-card {
    padding: 32px 28px 28px;
  }
  .ag-pain .scenario-number {
    font-size: 80px;
    right: 16px;
  }
  .ag-pain .pain-question {
    margin-top: 50px;
    font-size: 20px;
  }

  .ag-offer .step-card {
    padding: 30px;
  }

  .ag-btn-primary,
  .ag-btn-secondary,
  .ag-btn-white {
    padding: 10px;
    font-size: 15px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ag-hero .caption h1 {
    font-size: 26px;
  }

  .ag-sec-head h2,
  .ag-offer .offer-title,
  .ag-final-cta h2,
  .ag-solution .sec-title {
    font-size: 24px;
  }

  .ag-testimonials .testim-card {
    padding: 22px 18px;
  }
}
