:root {
  --blue: #0052ff;
  --blue-light: #3375ff;
  --blue-glow: rgba(0, 82, 255, 0.1);
  --green: #10b981;
  --green-light: rgba(16, 185, 129, 0.12);
  --red: #ef4444;
  --orange: #f59e0b;
  --dark: #0a0b10;
  --dark-2: #3d4050;
  --bg: #f8f9fa;
  --white: #ffffff;
  --border: rgba(0, 82, 255, 0.1);
  --shadow-soft: 0 4px 32px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-blue: 0 8px 40px rgba(0, 82, 255, 0.18);
  --r-sm: 12px;
  --r-lg: 24px;
}

/* ── URGENCY BAR ───────────────────── */
.urgency-bar {
  position: sticky;
  top: 69px;
  z-index: 100;
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: slideBarDown 0.5s ease both;
}

.urgency-bar strong {
  color: #fbbf24;
  font-weight: 700;
}

.urgency-bar .seats {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.35);
  color: #fbbf24;
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  animation: pulseYellow 2s ease infinite;
}
/* ── ANIMATIONS ────────────────────── */
@keyframes slideBarDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes pulseYellow {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.65;
  }
}
section.google-ads-hero {
  font-family: 'Bricolage Grotesque', sans-serif;
  background: var(--bg);
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: clamp(0px, 0vw, 0px) clamp(20px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}
section.google-ads-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
section.google-ads-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ======= LEFT ======= */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ── UPDATED PILL BADGE ── */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  position: relative;
  padding: 6px 16px 6px 6px;
  border-radius: 100px;
  background: linear-gradient(135deg, #0a0b10 0%, #1a1f35 100%);
  border: 1px solid rgba(0, 82, 255, 0.35);
  box-shadow:
    0 0 0 1px rgba(0, 82, 255, 0.08),
    0 4px 20px rgba(0, 82, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.pill-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 82, 255, 0.12) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: pillShimmer 3s linear infinite;
  border-radius: 100px;
}
@keyframes pillShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.pill-badge:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(0, 82, 255, 0.18),
    0 8px 32px rgba(0, 82, 255, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.pill-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #0052ff, #3375ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 82, 255, 0.5);
  position: relative;
  z-index: 1;
}
.pill-text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #e8eef8;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.pill-dot-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.9);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  animation: liveDot 2s ease-in-out infinite;
}
@keyframes liveDot {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.8);
  }
  50% {
    opacity: 0.5;
    box-shadow: 0 0 12px rgba(16, 185, 129, 1);
  }
}

.hero-heading {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--dark);
}
.accent-blue {
  color: var(--blue);
  position: relative;
  display: inline-block;
}
.accent-blue::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 2px;
  opacity: 0.35;
}

.hero-subtext {
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  font-weight: 400;
  line-height: 1.72;
  color: var(--dark-2);
  max-width: 480px;
}
.hero-subtext strong {
  color: var(--dark);
  font-weight: 600;
}

/* FOMO banner */
.fomo-banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.07), rgba(245, 158, 11, 0.05));
  border: 1.5px solid rgba(239, 68, 68, 0.18);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  animation: pulseBorder 2.5s ease-in-out infinite;
}
@keyframes pulseBorder {
  0%,
  100% {
    border-color: rgba(239, 68, 68, 0.18);
  }
  50% {
    border-color: rgba(239, 68, 68, 0.42);
  }
}
.fomo-dot {
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  animation: blink-red 1.4s ease-in-out infinite;
}
@keyframes blink-red {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.fomo-text {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
}
.fomo-text em {
  color: var(--red);
  font-style: normal;
  font-weight: 800;
}




.micro-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-2);
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ======= RIGHT ======= */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 8px;
  position: relative;
}

.mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  padding:0;
}

/* Float badges */
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 100px;
  padding: 7px 14px 7px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Bricolage Grotesque', sans-serif;
  color: var(--dark);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.1),
    0 1px 4px rgba(0, 0, 0, 0.06);
  white-space: nowrap;
  z-index: 10;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.float-badge.b1 {
  top: -4px;
  right: -10px;
  animation: floatIt 3s ease-in-out infinite;
}
.float-badge.b2 {
  bottom: 210px;
  right: -14px;
  animation: floatIt 3s ease-in-out infinite;
  animation-delay: 1.1s;
}
.float-badge.b3 {
  bottom: -23px;
  left: -20px;
  animation: floatIt 3s ease-in-out infinite;
  animation-delay: 2.2s;
}
@keyframes floatIt {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.bdot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}
.bdot.g {
  background: var(--green-light);
}
.bdot.b {
  background: var(--blue-glow);
}
.bdot.o {
  background: rgba(245, 158, 11, 0.12);
}

/* Mockup card */
.google-mockup-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 30px;
  box-shadow:
    0 20px 80px rgba(0, 0, 0, 0.09),
    0 4px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition:
    transform 0.4s,
    box-shadow 0.4s;
}
.google-mockup-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.12);
}

.g-logo {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-family: 'Bricolage Grotesque', sans-serif;
  margin-bottom: 14px;
}
.g-logo span:nth-child(1) {
  color: #4285f4;
}
.g-logo span:nth-child(2) {
  color: #ea4335;
}
.g-logo span:nth-child(3) {
  color: #fbbc05;
}
.g-logo span:nth-child(4) {
  color: #4285f4;
}
.g-logo span:nth-child(5) {
  color: #34a853;
}
.g-logo span:nth-child(6) {
  color: #ea4335;
}

.g-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #dadce0;
  border-radius: 100px;
  padding: 10px 16px;
  margin-bottom: 14px;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}
.g-search-bar:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  border-color: #adb5bd;
}
.g-si {
  color: #9aa0a6;
  font-size: 15px;
  flex-shrink: 0;
}
.g-sq {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  flex: 1;
}
.g-cursor {
  width: 1.5px;
  height: 14px;
  background: var(--blue);
  display: inline-block;
  margin-left: 1px;
  vertical-align: middle;
  animation: blink 1.1s step-end infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.g-sbtn {
  background: var(--blue);
  border: none;
  border-radius: 100px;
  padding: 6px 12px;
  color: white;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.g-sbtn:hover {
  background: #0040dd;
}

.g-rlabel {
  font-size: 11px;
  font-weight: 500;
  color: #70757a;
  margin-bottom: 8px;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.g-ad {
  border: 1.5px solid rgba(0, 82, 255, 0.2);
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.025), rgba(0, 82, 255, 0.005));
  border-radius: var(--r-sm);
  padding: 12px 14px;
  position: relative;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
  cursor: pointer;
}
.g-ad:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(0, 82, 255, 0.12);
  transform: translateY(-1px);
}

.g-ad-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.g-sp-tag {
  font-size: 10px;
  font-weight: 600;
  color: #70757a;
  border: 1px solid #dadce0;
  border-radius: 4px;
  padding: 1px 5px;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.g-ad-right {
  display: flex;
  gap: 5px;
  align-items: center;
}
.g-sp-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  background: var(--green);
  padding: 2px 8px;
  border-radius: 100px;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.g-pos-badge {
  font-size: 10px;
  font-weight: 800;
  color: var(--white);
  background: var(--blue);
  padding: 2px 8px;
  border-radius: 100px;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.g-ad-url {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 3px;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.g-ad-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
  line-height: 1.3;
  font-family: 'Bricolage Grotesque', sans-serif;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.g-ad-desc {
  font-size: 11.5px;
  color: #4d5156;
  line-height: 1.5;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.g-divider {
  height: 1px;
  background: #e8eaed;
  margin: 10px 0;
}

.g-org {
  opacity: 0.45;
}
.g-org-url {
  font-size: 10px;
  color: #70757a;
  margin-bottom: 2px;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.g-org-title {
  font-size: 13px;
  color: #1a0dab;
  font-weight: 600;
  margin-bottom: 2px;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.g-org-desc {
  font-size: 11px;
  color: #4d5156;
  line-height: 1.45;
  font-family: 'Bricolage Grotesque', sans-serif;
}
 .g-sponsor-box {
      margin-bottom: 18px;
    }
    .g-sp-header {
      display: flex;
      align-items: center;
      margin-bottom: 8px;
    }

    .g-sp-right {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .g-sp-label {
      font-size: 13px;
      color: #70757a;
    }
    .g-pos-badge {
      background: #e8f0fe;
      color: #1a73e8;
      font-size: 11px;
      font-weight: 800;
      padding: 2px 6px;
      border-radius: 12px;
    }
    .g-sp-url {
      font-size: 13px;
      color: #202124;
      margin-bottom: 4px;
    }
    .g-sp-title {
      font-size: 20px;
      color: #1a0dab;
      font-weight: 500;
      line-height: 1.3;
      margin-bottom: 4px;
      cursor: pointer;
    }
    .g-sp-title:hover {
      text-decoration: underline;
    }
    .g-sp-desc {
      font-size: 14px;
      color: #4d5156;
      line-height: 1.58;
    }
    .g-divider-light {
      height: 1px;
      background: #ebebeb;
      margin: 16px 0;
    }
    .g-rich-rating {
      display: flex;
      align-items: center;
      font-size: 13px;
      color: #70757a;
      margin: 6px 0;
      line-height: 1.2;
      flex-wrap: wrap;
      gap: 4px;
    }
    .g-price {
      font-weight: 600;
      color: #202124;
    }
    .g-dot {
      margin: 0 2px;
      color: #70757a;
    }
    .g-stars {
      color: #fbbc04;
      font-size: 14px;
      letter-spacing: 1px;
    }
    .g-review-count {
      color: #70757a;
    }
    
    /* Sitelinks (Reklamın altındaki ek linkler - Yüksekliği doldurur) */
    .g-sitelinks {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 14px;
      padding-left: 14px;
      border-left: 2px solid #e2e8f0;
    }
    .g-sl-item {
      font-size: 13px;
    }
    .g-sl-title {
      color: #1a0dab;
      text-decoration: none;
      font-weight: 500;
      margin-bottom: 2px;
      display: block;
    }
    .g-sl-title:hover {
      text-decoration: underline;
    }
    .g-sl-desc {
      color: #4d5156;
      font-size: 12px;
      line-height: 1.3;
    }

/* Stats */
.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 12px;
}
.stat-chip {
  background: var(--bg);
  border-radius: var(--r-sm);
  padding: 9px 8px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.stat-chip:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.stat-value {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.1;
  transition: all 0.32s ease;
}
.stat-value.green {
  color: var(--green);
}
.stat-value.blue {
  color: var(--blue);
}
.stat-label {
  font-size: 9.5px;
  font-weight: 500;
  color: var(--dark-2);
  margin-top: 2px;
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.3;
}

/* ======= HOT SECTORS — below mockup ======= */
.hot-box {
  width: 100%;
  max-width: 600px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-soft);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hot-box-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hot-box-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.hot-box-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.01em;
}
.hot-box-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--dark-2);
}

.hot-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sector-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dark-2);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Bricolage Grotesque', sans-serif;
  position: relative;
  user-select: none;
}
.sector-chip:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-glow);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 82, 255, 0.1);
}
.sector-chip.active {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  box-shadow: 0 6px 20px rgba(0, 82, 255, 0.25);
  transform: translateY(-2px);
}
.sector-chip.active .chip-arrow {
  opacity: 1;
  transform: translateX(0);
}
.chip-emoji {
  font-size: 14px;
}
.chip-arrow {
  font-size: 11px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s;
  color: rgba(255, 255, 255, 0.8);
}

.hot-hint {
  font-size: 11px;
  font-weight: 500;
  color: var(--dark-2);
  display: flex;
  align-items: center;
  gap: 5px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 10px;
}

/* Fade */
.fadeable {
  transition: opacity 0.32s ease;
}
.fade-out {
  opacity: 0 !important;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-right {
    order: -1;
  }
}
@media (max-width: 500px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary,
  .btn-secondary {
    justify-content: center;
  }
  .float-badge {
    display: none;
  }
  .hot-chips {
    gap: 6px;
  }
}

section.google-arsenal-bento {
  background: #080910;
  padding: clamp(64px, 8vw, 100px) clamp(20px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}

.ab-noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: 0.4;
}

.ab-glow-top {
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 82, 255, 0.1) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.ab-glow-br {
  position: absolute;
  bottom: -140px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ab-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(44px, 6vw, 68px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.ab-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 82, 255, 0.1);
  border: 1px solid rgba(0, 82, 255, 0.28);
  border-radius: 100px;
  padding: 5px 14px;
}

.ab-pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4d8fff;
  animation: abPulse 2s ease-in-out infinite;
  box-shadow: 0 0 6px #4d8fff;
}

@keyframes abPulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

.ab-pill span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #6fa3ff;
}

.ab-h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #eef0f6;
}

.ab-h2 em {
  color: #0052ff;
  font-style: normal;
}

.ab-sub {
  font-size: clamp(0.9rem, 1.1vw, 0.98rem);
  font-weight: 400;
  line-height: 1.7;
  color: #565b72;
  max-width: 500px;
}

.ab-grid {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.ab-c1 {
  grid-column: 1;
  grid-row: 1 / 3;
}

.ab-c2 {
  grid-column: 2;
  grid-row: 1;
}

.ab-c3 {
  grid-column: 3;
  grid-row: 1;
}

.ab-c4 {
  grid-column: 2 / 4;
  grid-row: 2;
}

.ab-card {
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 20px;
  padding: clamp(20px, 2.4vw, 28px);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.32s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.32s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.32s ease,
    background 0.32s ease;
}

.ab-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.ab-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.048);
  border-color: rgba(0, 82, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(0, 82, 255, 0.09),
    0 20px 56px rgba(0, 0, 0, 0.55),
    0 0 64px rgba(0, 82, 255, 0.07);
}

.ab-card:hover::before {
  opacity: 1;
}

.ab-card::before {
  background: radial-gradient(ellipse at 50% -10%, rgba(0, 82, 255, 0.08) 0%, transparent 65%);
}

.ab-card.v-green:hover {
  border-color: rgba(16, 185, 129, 0.22);
  box-shadow:
    0 0 0 1px rgba(16, 185, 129, 0.09),
    0 20px 56px rgba(0, 0, 0, 0.55),
    0 0 64px rgba(16, 185, 129, 0.06);
}

.ab-card.v-green::before {
  background: radial-gradient(ellipse at 50% -10%, rgba(16, 185, 129, 0.07) 0%, transparent 65%);
}

.ab-card-in {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ab-num {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
  margin-bottom: 14px;
}

.ab-icon-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.ab-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.ab-icon.blue {
  background: rgba(0, 82, 255, 0.14);
  border: 1px solid rgba(0, 82, 255, 0.2);
}

.ab-icon.green {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.18);
}

.ab-icon.red {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.16);
}

.ab-icon.amber {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.16);
}

.ab-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
}

.ab-tag.blue {
  color: #6fa3ff;
  background: rgba(0, 82, 255, 0.12);
  border: 1px solid rgba(0, 82, 255, 0.18);
}

.ab-tag.green {
  color: #34d399;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.16);
}

.ab-title {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.22;
  color: #eef0f6;
  margin-bottom: 10px;
}

.ab-title .t-blue {
  color: #0052ff;
}

.ab-title .t-green {
  color: #10b981;
}

.ab-body {
  font-size: clamp(0.82rem, 0.95vw, 0.88rem);
  font-weight: 400;
  line-height: 1.68;
  color: #565b72;
}

.ab-body strong {
  color: #9aa0b8;
  font-weight: 600;
}

.ab-c1 .ab-title {
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
}

.ab-c1 .ab-body {
  font-size: clamp(0.85rem, 1vw, 0.92rem);
}

.radar-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  margin-top: 18px;
  position: relative;
}

.r-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 82, 255, 0.22);
  animation: rExpand 3s ease-out infinite;
}

.r-ring:nth-child(1) {
  width: 90px;
  height: 90px;
  animation-delay: 0s;
}

.r-ring:nth-child(2) {
  width: 60px;
  height: 60px;
  animation-delay: 0.8s;
  border-color: rgba(0, 82, 255, 0.35);
}

.r-ring:nth-child(3) {
  width: 32px;
  height: 32px;
  animation-delay: 1.6s;
  border-color: rgba(0, 82, 255, 0.6);
}

.r-cross-h {
  position: absolute;
  left: -52px;
  right: -52px;
  height: 1px;
  background: rgba(0, 82, 255, 0.12);
}

.r-cross-v {
  position: absolute;
  top: -52px;
  bottom: -52px;
  width: 1px;
  background: rgba(0, 82, 255, 0.12);
  left: 50%;
}

.r-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0052ff;
  z-index: 2;
  box-shadow:
    0 0 12px rgba(0, 82, 255, 1),
    0 0 28px rgba(0, 82, 255, 0.5);
  animation: dotGlow 1.8s ease-in-out infinite;
}

@keyframes rExpand {
  0% {
    opacity: 0.8;
    transform: scale(0.7);
  }

  60% {
    opacity: 0.25;
  }

  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

@keyframes dotGlow {
  0%,
  100% {
    box-shadow:
      0 0 10px rgba(0, 82, 255, 0.9),
      0 0 22px rgba(0, 82, 255, 0.4);
  }

  50% {
    box-shadow:
      0 0 18px rgba(0, 82, 255, 1),
      0 0 40px rgba(0, 82, 255, 0.7);
  }
}

.ab-bars {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ab-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ab-bar-lbl {
  font-size: 10px;
  color: #484d60;
  font-weight: 600;
  width: 76px;
  flex-shrink: 0;
}

.ab-bar-track {
  flex: 1;
  height: 5px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.ab-bar-fill {
  height: 100%;
  border-radius: 100px;
}

.ab-bar-fill.pass {
  background: linear-gradient(90deg, #0052ff, #10b981);
  width: 90%;
}

.ab-bar-fill.block {
  background: rgba(239, 68, 68, 0.35);
  width: 14%;
}

.ab-bar-ic {
  font-size: 11px;
}

.lp-wrap {
  margin-top: auto;
  padding-top: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.lp-b {
  height: 5px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
}

.lp-b.s {
  width: 50%;
}

.lp-b.m {
  width: 72%;
}

.lp-b.f {
  width: 100%;
}

.lp-cta {
  background: #0052ff;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  border:0;
  cursor:pointer;
  text-align: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  box-shadow: 0 3px 14px rgba(0, 82, 255, 0.45);
  animation: ctaGlow 2.4s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%,
  100% {
    box-shadow: 0 3px 12px rgba(0, 82, 255, 0.4);
  }

  50% {
    box-shadow: 0 4px 24px rgba(0, 82, 255, 0.75);
  }
}

.ab-c4 .ab-card-in {
  flex-direction: row;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
}

.c4-left {
  flex: 1;
  min-width: 0;
}

.c4-right {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  flex-shrink: 0;
  width: 55%;
}

.metric-tile {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 14px 12px;
  transition:
    background 0.22s,
    border-color 0.22s;
}

.metric-tile:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 82, 255, 0.18);
}

.mt-val {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-family: 'Bricolage Grotesque', sans-serif;
  margin-bottom: 4px;
}

.mt-val.blue {
  color: #0052ff;
}

.mt-val.green {
  color: #10b981;
}

.mt-val.white {
  color: #eef0f6;
}

.mt-lbl {
  font-size: 10px;
  font-weight: 500;
  color: #484d60;
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.4;
}

.c1-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 12px 16px;
  margin: 16px 0;
}

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

.c1-stat-val {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0052ff;
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.1;
  margin-bottom: 3px;
}

.c1-stat-lbl {
  display: block;
  font-size: 9.5px;
  font-weight: 500;
  color: #484d60;
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.3;
}

.c1-stat-div {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.c1-fomo {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.13);
  border-radius: 12px;
  padding: 10px 13px;
  margin-bottom: 14px;
}

.c1-fomo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 0 7px rgba(16, 185, 129, 0.8);
  animation: fomoGlow 2.2s ease-in-out infinite;
}

@keyframes fomoGlow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(16, 185, 129, 0.6);
    opacity: 1;
  }

  50% {
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.9);
    opacity: 0.7;
  }
}

.c1-fomo-text {
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.55;
  color: #5a6070;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.c1-fomo-text strong {
  color: #34d399;
  font-weight: 700;
}

.c1-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0052ff;
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 13px 20px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 82, 255, 0.35);
  transition:
    background 0.22s,
    transform 0.22s,
    box-shadow 0.22s;
  position: relative;
  overflow: hidden;
}

.c1-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.c1-cta:hover::after {
  transform: translateX(100%);
}

.c1-cta:hover {
  background: #0040dd;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0, 82, 255, 0.45);
}

.c1-cta-sub {
  font-size: 10.5px;
  font-weight: 500;
  color: #3a3f52;
  font-family: 'Bricolage Grotesque', sans-serif;
  text-align: center;
  margin-top: 7px;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .ab-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }

  .ab-c1 {
    grid-column: 1/3;
    grid-row: 1;
  }

  .ab-c2 {
    grid-column: 1;
    grid-row: 2;
  }

  .ab-c3 {
    grid-column: 2;
    grid-row: 2;
  }

  .ab-c4 {
    grid-column: 1/3;
    grid-row: 3;
  }

  .ab-c4 .ab-card-in {
    flex-direction: column;
  }

  .c4-right {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
  }

  .radar-wrap {
    min-height: 80px;
  }
}

@media (max-width: 560px) {
  .ab-grid {
    grid-template-columns: 1fr;
  }

  .ab-c1,
  .ab-c2,
  .ab-c3,
  .ab-c4 {
    grid-column: 1;
    grid-row: auto;
  }

  .c4-right {
    grid-template-columns: 1fr 1fr;
  }
}

section.google-competitor-vs {
  font-family: 'Bricolage Grotesque', sans-serif;
  background: #ffffff;
  padding: clamp(72px, 9vw, 110px) clamp(20px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}

section.google-competitor-vs::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 82, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 255, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

section.google-competitor-vs::after {
  content: '';
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 380px;
  background: radial-gradient(ellipse, rgba(0, 82, 255, 0.055) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.cv-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(44px, 6vw, 68px);
}

.cv-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 660px;
}

.cv-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 82, 255, 0.07);
  border: 1px solid rgba(0, 82, 255, 0.18);
  border-radius: 100px;
  padding: 5px 15px;
}

.cv-pill-icon {
  font-size: 12px;
}

.cv-pill span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #0052ff;
}

.cv-h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -0.03em;
  color: #0a0b10;
}

.cv-h2 em {
  color: #0052ff;
  font-style: normal;
}

.cv-sub {
  font-size: clamp(0.9rem, 1.1vw, 0.98rem);
  font-weight: 400;
  line-height: 1.7;
  color: #8891a4;
}

.cv-board {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

.cv-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(14px, 2vw, 28px);
  gap: 10px;
  flex-shrink: 0;
}

.cv-vs-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.cv-vs-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0a0b10;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-family: 'Bricolage Grotesque', sans-serif;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.cv-left {
  background: #f8f9fa;
  border: 1px solid #e8eaef;
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.cv-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e8eaef, #cbd0da, #e8eaef);
}

.cv-left-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cv-left-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #adb5c4;
}

.cv-left-title {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #6b7385;
  line-height: 1.2;
}

.cv-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.cv-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 13px;
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.025);
  border: 1px solid transparent;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.cv-item:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.06);
}

.cv-item-ic {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.cv-item-text {
  font-size: clamp(0.82rem, 0.95vw, 0.88rem);
  font-weight: 500;
  line-height: 1.5;
  color: #8891a4;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.cv-left-chart {
  margin-top: auto;
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.1);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cv-chart-bars-down {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
  flex-shrink: 0;
}

.cbd {
  border-radius: 3px 3px 0 0;
  background: rgba(239, 68, 68, 0.25);
  width: 9px;
}

.cbd:nth-child(1) {
  height: 100%;
}

.cbd:nth-child(2) {
  height: 76%;
}

.cbd:nth-child(3) {
  height: 55%;
}

.cbd:nth-child(4) {
  height: 38%;
}

.cbd:nth-child(5) {
  height: 22%;
}

.cv-chart-label-down {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #ef4444;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.arrow-down {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.12);
  font-size: 13px;
  line-height: 1;
  animation: arrowDrop 2s ease-in-out infinite;
}

@keyframes arrowDrop {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(3px);
  }
}

.cv-right {
  background: #ffffff;
  border: 1.5px solid rgba(0, 82, 255, 0.2);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 82, 255, 0.06),
    0 12px 40px rgba(0, 82, 255, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

.cv-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0052ff, #3375ff, #0052ff);
  background-size: 200% 100%;
  animation: shimmerBar 3s linear infinite;
}

@keyframes shimmerBar {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.cv-right::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.cv-right-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.cv-right-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0052ff;
}

.cv-right-title {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #0a0b10;
  line-height: 1.2;
}

.cv-right .cv-list {
  position: relative;
  z-index: 1;
}

.cv-right .cv-item {
  background: rgba(0, 82, 255, 0.04);
  border-color: rgba(0, 82, 255, 0.08);
}

.cv-right .cv-item:hover {
  background: rgba(0, 82, 255, 0.08);
  border-color: rgba(0, 82, 255, 0.15);
}

.cv-right .cv-item-text {
  color: #3d4050;
}

.cv-right-chart {
  margin-top: auto;
  position: relative;
  z-index: 1;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cv-chart-bars-up {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
  flex-shrink: 0;
}

.cbu {
  border-radius: 3px 3px 0 0;
  width: 9px;
  background: linear-gradient(to top, rgba(0, 82, 255, 0.5), rgba(16, 185, 129, 0.8));
}

.cbu:nth-child(1) {
  height: 22%;
}

.cbu:nth-child(2) {
  height: 40%;
}

.cbu:nth-child(3) {
  height: 58%;
}

.cbu:nth-child(4) {
  height: 80%;
}

.cbu:nth-child(5) {
  height: 100%;
  animation: lastBarPulse 2s ease-in-out infinite;
}

@keyframes lastBarPulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.65;
  }
}

.cv-chart-label-up {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cv-chart-big {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #10b981;
  font-family: 'Bricolage Grotesque', sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
  filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.4));
}

.arrow-up {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  font-size: 13px;
  animation: arrowRise 2s ease-in-out infinite;
}

@keyframes arrowRise {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.cv-chart-small {
  font-size: 10.5px;
  font-weight: 500;
  color: #8891a4;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.cv-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.cv-bottom-text {
  font-size: clamp(0.88rem, 1.1vw, 0.96rem);
  font-weight: 500;
  line-height: 1.65;
  color: #8891a4;
  max-width: 520px;
}

.cv-bottom-text strong {
  color: #0a0b10;
  font-weight: 700;
}

.cv-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #0a0b10;
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.22);
  transition:
    background 0.22s,
    transform 0.22s,
    box-shadow 0.22s;
  position: relative;
  overflow: hidden;
}

.cv-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.cv-cta:hover::after {
  transform: translateX(100%);
}

.cv-cta:hover {
  background: #0052ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 82, 255, 0.3);
}

.cv-cta-note {
  font-size: 11px;
  font-weight: 500;
  color: #c2c8d4;
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: 0.01em;
}

@media (max-width: 780px) {
  .cv-board {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0;
  }

  .cv-vs {
    flex-direction: row;
    padding: clamp(12px, 3vw, 20px) 0;
    justify-content: center;
  }

  .cv-vs-line {
    width: auto;
    height: 1px;
    flex: 1;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
  }
}

@media (max-width: 480px) {
  .cv-left,
  .cv-right {
    padding: 20px;
  }
}

section.google-ads-steps {
  font-family: 'Bricolage Grotesque', sans-serif;
  background: #0a0b10;
  padding: clamp(64px, 8vw, 96px) clamp(20px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}

.gs-bg-glow {
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 360px;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.gs-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(36px, 4vw, 48px);
}

/* ── HEADER ── */
.gs-header {
  text-align: center;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.gs-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(16, 185, 129, 0.09);
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 100px;
  padding: 5px 14px;
}

.gs-pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.9);
  animation: gsDot 2s ease-in-out infinite;
}

@keyframes gsDot {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.gs-pill span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #34d399;
}

.gs-h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.03em;
  color: #eef0f6;
}

.gs-h2 em {
  color: #10b981;
  font-style: normal;
}

.gs-sub {
  font-size: clamp(0.88rem, 1.05vw, 0.95rem);
  font-weight: 400;
  line-height: 1.7;
  color: #454a60;
}

/* ── HORIZONTAL STEPS GRID ── */
.gs-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
}

/* Connecting line between cards */
.gs-grid::before {
  content: '';
  position: absolute;
  top: -25px;
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 82, 255, 0.25) 15%, rgba(0, 82, 255, 0.25) 85%, transparent);
  z-index: 0;
  pointer-events: none;
}

/* ── SINGLE STEP CARD ── */
.gs-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
  z-index: 1;
}

.gs-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 82, 255, 0.08) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.gs-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 82, 255, 0.25);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 82, 255, 0.08),
    0 0 52px rgba(0, 82, 255, 0.08);
}

.gs-card:hover::before {
  opacity: 1;
}

/* Green accent for step 1 */
.gs-card.s1:hover {
  border-color: rgba(16, 185, 129, 0.28);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(16, 185, 129, 0.08),
    0 0 52px rgba(16, 185, 129, 0.07);
}

.gs-card.s1::before {
  background: radial-gradient(ellipse at 50% 0%, rgba(16, 185, 129, 0.08) 0%, transparent 65%);
}

.gs-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.gs-step-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-family: 'Bricolage Grotesque', sans-serif;
  background: rgba(0, 82, 255, 0.15);
  border: 1px solid rgba(0, 82, 255, 0.3);
  color: #6fa3ff;
  transition:
    background 0.28s,
    border-color 0.28s,
    color 0.28s,
    box-shadow 0.28s;
}

.gs-card.s1 .gs-step-num {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.28);
  color: #34d399;
}

.gs-card:hover .gs-step-num {
  background: rgba(0, 82, 255, 0.12);
  border-color: rgba(0, 82, 255, 0.32);
  color: #6fa3ff;
  box-shadow: 0 0 16px rgba(0, 82, 255, 0.18);
}

.gs-card.s1:hover .gs-step-num {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  color: #34d399;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.15);
}

.gs-step-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6fa3ff;
  transition: color 0.28s;
}

.gs-card.s1 .gs-step-tag {
  color: #34d399;
}

.gs-step-title {
  font-size: clamp(0.9rem, 1.15vw, 1.02rem);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.26;
  color: #eef0f6;
  transition: color 0.28s;
  position: relative;
  z-index: 1;
}

.gs-card:hover .gs-step-title {
  color: #ffffff;
}

.gs-step-desc {
  font-size: clamp(0.78rem, 0.85vw, 0.83rem);
  font-weight: 400;
  line-height: 1.65;
  color: #8891a4;
  position: relative;
  z-index: 1;
  transition: color 0.28s;
}

.gs-card:hover .gs-step-desc {
  color: #a0a8bc;
}

.gs-step-desc strong {
  color: #c8ccd8;
  font-weight: 600;
}

.gs-card:hover .gs-step-desc strong {
  color: #dde1ec;
}

.gs-step-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}

.gs-step-chip {
  font-size: 9.5px;
  font-weight: 600;
  color: #7c85a0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 3px 9px;
  font-family: 'Bricolage Grotesque', sans-serif;
  transition:
    color 0.28s,
    border-color 0.28s,
    background 0.28s;
}

.gs-card:hover .gs-step-chip {
  color: #6fa3ff;
  border-color: rgba(0, 82, 255, 0.25);
  background: rgba(0, 82, 255, 0.1);
}

.gs-card.s1 .gs-step-chip {
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.08);
}

.gs-card.s1:hover .gs-step-chip {
  color: #4de8a8;
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.12);
}

/* ── CTA ── */
.gs-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
}

.gs-cta-label {
  font-size: clamp(0.85rem, 1vw, 0.92rem);
  font-weight: 500;
  color: #3d4258;
  line-height: 1.6;
}

.gs-cta-label strong {
  color: #7c8299;
  font-weight: 700;
}

.gs-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #10b981;
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 13px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(16, 185, 129, 0.3);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.22s,
    box-shadow 0.22s,
    background 0.22s;
  animation: btnBreathe 3s ease-in-out infinite;
}

@keyframes btnBreathe {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.28);
  }

  50% {
    box-shadow: 0 6px 36px rgba(16, 185, 129, 0.5);
  }
}

.gs-cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.gs-cta-btn:hover::after {
  transform: translateX(100%);
}

.gs-cta-btn:hover {
  background: #0ea572;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.45);
}

.gs-cta-note {
  font-size: 10.5px;
  color: #282d3e;
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: 0.01em;
}

@media (max-width: 860px) {
  .gs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gs-grid::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .gs-grid {
    grid-template-columns: 1fr;
  }
}
