:root {
    --brand-orange: #d7692a;
    --brand-navy:   #0A1628;
    --text-muted-c: #8a9bbf;
    --text-muted:   #8a9bbf;
    --card-bg:      rgba(255,255,255,.04);
    --card-border:  rgba(255,255,255,.08);
  }
  /* ── Nav ── */
  .site-nav {
    background: rgba(10,22,40,.97);
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  /* ── Hero bg glow ── */
  .hero-section {
    background: var(--brand-navy);
    min-height: calc(100vh - 65px);
    position: relative;
    overflow: hidden;
  }
  .hero-section::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(ellipse 60% 55% at 75% 50%, rgba(124,58,237,.18) 0%, transparent 65%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(26,58,143,.35) 0%, transparent 60%);
  }

  /* ── Badge ── */
  .badge-agency {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,92,0,.12);
    border: 1px solid rgba(255,92,0,.3);
    color: var(--brand-orange);
    font-size: .68rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 20px;
  }
  .badge-agency::before { content: '★'; font-size: .6rem; }

  /* ── Heading ── */
  .hero-h1 { font-weight: 800; line-height: 1.2; color: #fff; font-size: clamp(1.6rem, 3vw, 2.6rem); }
  .hero-h1 .line-orange { color: var(--brand-orange); }
  .hero-desc { color: var(--text-muted-c); font-size: 15px; line-height: 1.75; }

  /* ── Buttons ── */
  .btn-orange {
    background: #e36c1e; color: #fff; font-weight: 700;
    border: none; border-radius: 6px; padding: 11px 22px;
    font-family: inherit; font-size: .875rem; text-decoration: none;
    transition: background .2s;
  }
  .btn-orange:hover { background: #c55913; color: #fff; }
  .btn-ghost {
    background: transparent; color: #fff; font-weight: 600;
    border: 1px solid rgba(255,255,255,.2); border-radius: 6px;
    padding: 11px 22px; font-family: inherit; font-size: .875rem;
    text-decoration: none; transition: border-color .2s;
  }
  .btn-ghost:hover { border-color: var(--brand-orange); color: #fff; }

  /* ── Stat cards ── */
  .stat-item {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 8px;
  }
  .stat-icon {
    width: 30px; height: 30px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; flex-shrink: 0;
  }
  .stat-icon.orange { background: rgba(255,92,0,.15); }
  .stat-icon.blue   { background: rgba(59,130,246,.15); }
  .stat-icon.green  { background: rgba(34,197,94,.15); }
  .stat-icon.purple { background: rgba(124,58,237,.15); }
  .stat-num { font-size: .9rem; font-weight: 800; color: #fff; }
  .stat-lbl { font-size: .68rem; color: var(--text-muted-c); }

  /* ── Hero image blob ── */
  .glow-circle {
    position: absolute; width: 360px; height: 360px; border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,.3) 0%, rgba(26,58,143,.15) 55%, transparent 75%);
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    pointer-events: none;
  }
  .hero-img-wrap {
    width: 300px; height: 380px;
    border-radius: 50% 50% 48% 52% / 55% 55% 45% 45%;
    overflow: hidden;
    border: 3px solid rgba(215,105,42,.4);
    box-shadow: 0 0 60px rgba(215,105,42,.2), 0 0 100px rgba(26,58,143,.15);
    background: linear-gradient(160deg,#1e2d5a,#0a1628);
  }
  .hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

  /* ── Float cards ── */
  .float-card {
    position: absolute;
    background: rgba(10,22,40,.92); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.1); border-radius: 12px;
    padding: 10px 14px; box-shadow: 0 8px 32px rgba(0,0,0,.4);
    animation: floatY 4s ease-in-out infinite;
  }
  .float-card.mentions { top: 6%;  right: -6%; animation-delay: 0s; }
  .float-card.powered  { top: 42%; left: -8%; animation-delay: 1.5s; z-index: 5; }
  @keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

  .float-icon {
    width: 34px; height: 34px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; font-size: .9rem;
  }
  .float-icon.v { background: linear-gradient(135deg,#d97135,#d7692a); }
  .float-icon.o { background: rgba(255,92,0,.2); color: var(--brand-orange); font-size: .68rem; font-weight: 700; }
  .float-num { font-size: 1.1rem; font-weight: 800; color: #fff; }
  .float-sub { font-size: .62rem; color: var(--text-muted-c); }

  /* ── AI Strip ── */
  .ai-strip {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,.3);
  }
  .ai-strip-label { font-size: .65rem; font-weight: 700; color: var(--text-muted-c); letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
  .ai-logo {
    width: 28px; height: 28px; border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    font-size: .58rem; font-weight: 900; flex-shrink: 0;
    transition: transform .2s;
  }
  .ai-logo:hover { transform: translateY(-2px); }
  .ai-g   { background: #fff; color: #333; font-size: .78rem; }
  .ai-gpt { background: #1a1a1a; color: #a8f0c6; }
  .ai-gm  { background: linear-gradient(135deg,#4285f4,#34a853); color: #fff; }
  .ai-px  { background: #2d1b69; color: #c4b5fd; }
  .ai-ms  { background: #1c1c1c; color: #00adef; }
  .ai-cl  { background: #1a1228; color: #d97735; }
  .ai-plus {
    width: 20px; height: 20px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; color: var(--text-muted-c);
  }

  /* ── Sticky CTA ── */
  .sticky-proposal-btn {
    position: fixed; right: -45px; top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: #e36c1e; color: #fff; text-decoration: none;
    padding: 12px 25px; font-weight: 600; border-radius: 8px 8px 0 0;
    z-index: 9999; font-family: inherit; font-size: .875rem;
    transition: background .2s;
  }
  .sticky-proposal-btn:hover { background: #c55913; color: #fff; }

  .ai-seo-section {
    background: #1d2731;
    position: relative;
    overflow: hidden;
  }
  .ai-seo-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 55% 50% at 90% 20%, rgba(124,58,237,.14) 0%, transparent 65%),
      radial-gradient(ellipse 40% 40% at 10% 80%, rgba(26,58,143,.3) 0%, transparent 60%);
    pointer-events: none;
  }

  /* Badge */
  .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,92,0,.12);
    border: 1px solid rgba(255,92,0,.3);
    color: var(--brand-orange);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 20px;
  }
  .section-badge::before { content: '★'; font-size: .6rem; }

  /* Heading */
  .section-title { color: #fff; font-weight: 800; line-height: 1.2; }
  .section-title span { color: var(--brand-orange); }
  .section-desc { color: var(--text-muted); font-size: 14px; line-height: 1.8; }

  /* Note pill */
  .seo-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59,130,246,.08);
    border: 1px solid rgba(59,130,246,.2);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: .75rem;
    color: #93c5fd;
  }
  .seo-note strong { color: #bfdbfe; }

  /* Feature cards */
  .feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    transition: border-color .25s, transform .25s;
  }
  .feature-card:hover {
    border-color: rgba(215,105,42,.4);
    transform: translateY(-4px);
  }
  .feature-icon {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
  }
  .feature-icon.orange { background: rgba(255,92,0,.15); }
  .feature-icon.blue   { background: rgba(59,130,246,.15); }
  .feature-icon.green  { background: rgba(34,197,94,.15); }
  .feature-icon.purple { background: rgba(124,58,237,.15); }

  .feature-card h6 { color: #fff; font-weight: 700; font-size: .9rem; margin-bottom: 4px; }
  .feature-card p  { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin: 0; }

  /* CTA buttons */
  .btn-orange {
    background: var(--brand-orange);
    color: #fff;
    font-weight: 700;
    font-size: .875rem;
    border: none;
    border-radius: 7px;
    padding: 11px 22px;
    font-family: 'Manrope', sans-serif;
    transition: background .2s;
    text-decoration: none;
  }
  .btn-orange:hover { background: #b85a20; color: #fff; }

  .btn-outline-light-custom {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: .875rem;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 7px;
    padding: 11px 22px;
    font-family: 'Manrope', sans-serif;
    transition: border-color .2s;
    text-decoration: none;
  }
  .btn-outline-light-custom:hover { border-color: var(--brand-orange); color: #fff; }

  /* Divider line */
  .orange-line {
    width: 48px; height: 3px;
    background: var(--brand-orange);
    border-radius: 2px;
  }
  /* ── Visibility Section ── */
.visibility-section {
  background: #18212b;
  position: relative;
  overflow: hidden;
}
.visibility-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 45% at 15% 30%, rgba(26,58,143,.3) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 85% 70%, rgba(124,58,237,.12) 0%, transparent 60%);
  pointer-events: none;
}
.value-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.value-card:hover {
  border-color: rgba(215,105,42,.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
}
.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.value-icon.orange { background: rgba(255,92,0,.15); }
.value-icon.blue   { background: rgba(59,130,246,.15); }
.value-icon.purple { background: rgba(124,58,237,.2); }
.value-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.orange-tag { background: rgba(255,92,0,.15);    color: #fb923c; }
.purple-tag { background: rgba(124,58,237,.2);   color: #c4b5fd; }
.blue-tag   { background: rgba(59,130,246,.15);  color: #93c5fd; }
.value-title {
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
}

  /* ── Mobile tweaks ── */
  @media (max-width: 576px) {
    .hero-img-wrap  { width: 200px; height: 260px; }
    .glow-circle    { width: 240px; height: 240px; }
    .float-card.mentions { right: 0; }
    .float-card.powered  { left: 0; }
    .ai-logo { width: 24px; height: 24px; }
  }