  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
  }

  :root {
    --ink: #09090f;
    --ink2: #0f1018;
    --ink3: #161820;
    --ink4: #1d2030;
    --blue: #2688e8;
    --blue-v: #3399ff;
    --blue-glow: rgba(38, 136, 232, .22);
    --blue-soft: rgba(38, 136, 232, .08);
    --sky: #e8f4ff;
    --white: #ffffff;
    --off: #f6f8fc;
    --muted: #7a8499;
    --muted2: #a0aabb;
    --border-d: rgba(255, 255, 255, .06);
    --border-b: rgba(38, 136, 232, .2);
    --border-l: rgba(9, 9, 15, .07);
  }

  html {
    scroll-behavior: smooth
  }

  body {
    background: var(--ink);
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    cursor: none
  }

  /* ── CURSOR ── */
  .c-dot {
    position: fixed;
    width: 7px;
    height: 7px;
    background: var(--blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .15s, height .15s, background .2s
  }

  .c-ring {
    position: fixed;
    width: 26px;
    height: 26px;
    border: 1.5px solid var(--blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: .3;
    transition: width .28s, height .28s, opacity .25s
  }

  /* ── NOISE ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 7000;
    opacity: .3;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E")
  }

  /* ══════════ NAV ══════════ */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 600;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 52px;
    transition: background .35s, border-color .35s;
    background: rgba(9, 9, 15, .01);
    border-bottom: 1px solid transparent
  }

  nav.scrolled {
    background: rgba(9, 9, 15, .92);
    backdrop-filter: blur(20px);
    border-color: var(--border-d)
  }

  /* Logo replicating the actual logo style */
  .logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    cursor: none
  }

  .logo-section {
    width: 100%;
    overflow: hidden;
  }

  /* =========================
   DESKTOP HORIZONTAL SCROLL
========================= */

  .desktop-scroll {
    overflow: hidden;
    width: 100%;
  }

  .track {
    display: flex;
    width: max-content;
    animation: scrollLeft 18s linear infinite;
    gap: 30px;
    align-items: center;
  }

  .track img {
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
  }

  @keyframes scrollLeft {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  /* =========================
   MOBILE VERTICAL COLUMNS
========================= */

  .mobile-columns {
    display: none;
  }

  .row-mark {
    overflow: hidden;
    width: 90%;
    margin: 0 auto 10px;
    /* center + bottom margin */
  }

  .track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
  }

  .track img {
    height: 60px;
    margin-right: 30px;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  .logo-estgo {
    font-family: 'Manrope', sans-serif;
    font-size: 21px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.5px
  }

  .logo-max-pill {
    background: var(--blue);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 800;
    padding: 3px 9px 3px 8px;
    border-radius: 7px;
    margin-left: 2px;
    letter-spacing: .8px;
    line-height: 1
  }

  .logo-sub {
    font-size: 8.5px;
    letter-spacing: 2.8px;
    color: var(--muted);
    text-transform: uppercase;
    margin-left: 11px;
    font-weight: 600;
    padding-top: 1px
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px
  }

  .nav-links a {
    text-decoration: none;
    color: var(--muted2);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: -.1px;
    transition: color .2s;
    cursor: none
  }

  .nav-links a:hover {
    color: var(--white)
  }

  .nav-cta {
    background: var(--blue) !important;
    color: #fff !important;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: .1px !important;
    transition: transform .2s, box-shadow .2s !important;
    box-shadow: 0 0 0 0 var(--blue-glow)
  }

  .nav-cta:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 20px var(--blue-glow) !important
  }

  .hamburger {
    font-size: 22px;
    color: var(--white);
    cursor: pointer;
    margin-left: auto;
    display: none;
    /* hidden on desktop */
  }

  /* ══════════ HERO ══════════ */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 52px 80px;
    position: relative;
    overflow: hidden
  }

  /* Deep layered background */
  .hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none
  }

  /* Rich dark-to-deep gradient */
  .hero-bg-base {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #050710 0%, #080c1a 40%, #060912 100%)
  }

  /* Blue aurora top-right */
  .hero-aurora {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 40% 40%, rgba(38, 136, 232, .18) 0%, rgba(20, 80, 160, .08) 35%, transparent 70%);
    filter: blur(60px);
    animation: auroraFloat 14s ease-in-out infinite
  }

  /* Secondary glow bottom-left */
  .hero-aurora2 {
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(38, 136, 232, .07) 0%, transparent 65%);
    filter: blur(80px);
    animation: auroraFloat 18s ease-in-out infinite reverse
  }

  @keyframes auroraFloat {

    0%,
    100% {
      transform: translate(0, 0) scale(1)
    }

    33% {
      transform: translate(30px, -20px) scale(1.04)
    }

    66% {
      transform: translate(-15px, 25px) scale(.97)
    }
  }

  /* Dot grid */
  .hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent)
  }

  /* Horizontal scan lines */
  .hero-lines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(38, 136, 232, .03) 80px)
  }

  /* Floating AI badge */
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-b);
    background: rgba(38, 136, 232, .07);
    backdrop-filter: blur(8px);
    color: var(--blue-v);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .3px;
    margin-bottom: 32px;
    width: fit-content;
    opacity: 0;
    animation: slideUp .6s .1s ease forwards
  }

  .badge-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    animation: pulseGlow 2s ease infinite
  }

  @keyframes pulseGlow {

    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(38, 136, 232, .6);
      opacity: 1
    }

    50% {
      box-shadow: 0 0 0 5px rgba(38, 136, 232, 0);
      opacity: .7
    }
  }

  /* HERO TITLE — massive editorial */
  .hero-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(56px, 7.2vw, 108px);
    font-weight: 700;
    line-height: .95;
    letter-spacing: -3px;
    margin-bottom: 12px;
    opacity: 0;
    animation: slideUp .75s .25s ease forwards;
    max-width: 860px
  }

  .hero-title .line1 {
    color: var(--white);
    display: block
  }

  .hero-title .line2 {
    color: var(--white);
    display: block
  }

  /* Animated rotating phrase */
  .hero-title .rotating-wrap {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 1.05em;
    vertical-align: bottom;
    min-width: 4px
  }

  .hero-title .rotating-word {
    display: block;
    color: var(--blue);
    font-style: italic;
    animation: wordRotate 8s steps(1) infinite
  }

  @keyframes wordRotate {
    0% {
      content: '';
      transform: translateY(0)
    }

    0% {
      opacity: 0;
      transform: translateY(60px)
    }

    5% {
      opacity: 1;
      transform: translateY(0)
    }

    28% {
      opacity: 1;
      transform: translateY(0)
    }

    33% {
      opacity: 0;
      transform: translateY(-60px)
    }

    34% {
      opacity: 0;
      transform: translateY(60px)
    }

    39% {
      opacity: 1;
      transform: translateY(0)
    }

    61% {
      opacity: 1;
      transform: translateY(0)
    }

    66% {
      opacity: 0;
      transform: translateY(-60px)
    }

    67% {
      opacity: 0;
      transform: translateY(60px)
    }

    72% {
      opacity: 1;
      transform: translateY(0)
    }

    95% {
      opacity: 1;
      transform: translateY(0)
    }

    100% {
      opacity: 0;
      transform: translateY(-60px)
    }
  }

  .w2,
  .w3 {
    position: absolute;
    top: 0;
    left: 0;
    animation: wordRotate2 8s steps(1) infinite, wordRotate 8s steps(1) infinite
  }

  .w2 {
    animation-delay: -2.67s
  }

  .w3 {
    animation-delay: -5.33s
  }

  .hero-subline {
    font-family: 'Fraunces', serif;
    font-size: clamp(56px, 7.2vw, 108px);
    font-weight: 300;
    font-style: italic;
    line-height: .95;
    letter-spacing: -3px;
    color: rgba(255, 255, 255, .2);
    margin-bottom: 36px;
    opacity: 0;
    animation: slideUp .75s .4s ease forwards
  }

  /* Sub description */
  .hero-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--muted2);
    max-width: 580px;
    margin-bottom: 44px;
    font-weight: 400;
    opacity: 0;
    animation: slideUp .7s .55s ease forwards
  }

  .hero-desc b {
    color: var(--white);
    font-weight: 600
  }

  /* CTA row */
  .hero-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 56px;
    opacity: 0;
    animation: slideUp .7s .65s ease forwards
  }

  .btn-primary {
    background: var(--blue);
    color: #fff;
    padding: 15px 32px;
    border-radius: 10px;
    border: none;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: none;
    transition: all .25s;
    letter-spacing: .1px;
    box-shadow: 0 8px 32px rgba(38, 136, 232, .35)
  }

  .btn-primary:hover {
    background: var(--blue-v);
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(38, 136, 232, .45)
  }

  .btn-secondary {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    color: var(--white);
    padding: 15px 28px;
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: none;
    transition: all .2s;
    backdrop-filter: blur(6px)
  }

  .btn-secondary:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2)
  }

  /* Social proof */
  .hero-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    animation: slideUp .6s .78s ease forwards
  }

  .proof-avs {
    display: flex
  }

  .pav {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--ink3);
    border: 2px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: var(--blue-v);
    margin-left: -8px
  }

  .pav:first-child {
    margin-left: 0
  }

  .proof-divider {
    width: 1px;
    height: 36px;
    background: var(--border-d)
  }

  .proof-text {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5
  }

  .proof-text b {
    color: var(--white);
    font-weight: 700
  }

 .proof-stars {
    color: #f59e0b;
    font-size: 12px;
    margin-bottom: 2px
}
 .proof-stars1 {
      color: #868480e0;
      font-size: 12px;
      margin-bottom: 2px
  }


  /* Floating dashboard card */
  .hero-card {
    position: absolute;
    right: 52px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    background: rgba(22, 24, 32, .9);
    border: 1px solid rgba(38, 136, 232, .2);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(20px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .5), 0 0 0 1px rgba(38, 136, 232, .06);
    opacity: 0;
    animation: slideLeft .8s .5s ease forwards
  }

  @keyframes slideLeft {
    from {
      opacity: 0;
      transform: translateY(-50%) translateX(40px)
    }

    to {
      opacity: 1;
      transform: translateY(-50%) translateX(0)
    }
  }

  .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px
  }

  .card-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted)
  }

  .card-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    color: var(--blue-v);
    font-weight: 700
  }

  .card-live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
    animation: pulseGlow 1.5s infinite
  }

  .card-stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px
  }

  .cs {
    text-align: center
  }

  .cs-n {
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--blue-v);
    line-height: 1
  }

  .cs-l {
    font-size: 10px;
    color: var(--muted);
    margin-top: 3px;
    letter-spacing: .5px
  }

  .card-divider {
    height: 1px;
    background: var(--border-d);
    margin-bottom: 18px
  }

  .card-bars {
    display: flex;
    flex-direction: column;
    gap: 10px
  }

  .bar-row {
    display: flex;
    align-items: center;
    gap: 10px
  }

  .bar-label {
    font-size: 11px;
    color: var(--muted);
    width: 72px;
    flex-shrink: 0
  }

  .bar-track {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, .07);
    border-radius: 3px;
    overflow: hidden
  }

  .bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-v));
    animation: barGrow 2s ease forwards
  }

  @keyframes barGrow {
    from {
      width: 0
    }

    to {
      width: var(--w)
    }
  }

  .bar-pct {
    font-size: 10px;
    font-weight: 700;
    color: var(--blue-v);
    width: 28px;
    text-align: right
  }

  .card-footer {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border-d);
    display: flex;
    justify-content: space-between;
    align-items: center
  }

  .card-footer-txt {
    font-size: 10px;
    color: var(--muted)
  }

  .notif-pop {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .3);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatY 3s ease-in-out infinite
  }

  @keyframes floatY {

    0%,
    100% {
      transform: translateY(0)
    }

    50% {
      transform: translateY(-8px)
    }
  }

  .notif-ico {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--blue), var(--blue-v));
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0
  }

  .notif-title {
    font-size: 12px;
    font-weight: 700;
    color: #111;
    line-height: 1.3
  }

  .notif-sub {
    font-size: 10px;
    color: #888;
    margin-top: 2px
  }

  /* ── STATS STRIP ── */
  .stats {
    display: flex;
    background: linear-gradient(135deg, var(--blue) 0%, #1a70c4 100%);
    opacity: 0;
    animation: slideUp .6s .9s ease forwards
  }

  .stat {
    flex: 1;
    padding: 22px 16px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .12)
  }

  .stat:last-child {
    border-right: none
  }

  .stat-n {
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1
  }

  .stat-l {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
    margin-top: 4px
  }

  /* ── MARQUEE ── */
  .mq {
    overflow: hidden;
    padding: 14px 0;
    background: var(--ink2);
    border-top: 1px solid var(--border-d);
    border-bottom: 1px solid var(--border-d)
  }

  .mq-t {
    display: flex;
    animation: mq 22s linear infinite;
    white-space: nowrap
  }

  .mi {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted)
  }

  .mi .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0
  }

  @keyframes mq {
    from {
      transform: translateX(0)
    }

    to {
      transform: translateX(-50%)
    }
  }

  /* ══════════ SECTION BASE ══════════ */
  section {
    padding: 100px 52px
  }

  .sec-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-soft);
    border: 1px solid var(--border-b);
    color: var(--blue-v);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px
  }

  .sec-h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 16px
  }

  .sec-h2 .blue {
    color: var(--blue)
  }

  .sec-h2 em {
    font-style: italic;
    font-weight: 300;
    color: var(--muted2)
  }

  .sec-p {
    font-size: 16px;
    color: var(--muted2);
    line-height: 1.8;
    max-width: 540px
  }

  /* ══════════ AI SEO SECTION (white) ══════════ */
  .aeo-sec {
    background: var(--white);
    color: var(--ink)
  }

  .aeo-sec .sec-h2 {
    color: var(--ink)
  }

  .aeo-sec .sec-p {
    color: #5a6478
  }

  .aeo-sec .sec-eyebrow {
    background: rgba(38, 136, 232, .08);
    color: var(--blue)
  }

  .aeo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
  }

  .aeo-left {}

  .aeo-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
  }


  .aeo-card {
    background: var(--off);
    border: 1px solid rgba(9, 9, 15, .08);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all .3s;
    cursor: none;
    position: relative;
    overflow: hidden
  }

  .aeo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-v));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s
  }

  .aeo-card:hover {
    border-color: rgba(38, 136, 232, .2);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(38, 136, 232, .1)
  }

  .aeo-card:hover::before {
    transform: scaleX(1)
  }

  .aeo-icon {
    font-size: 26px;
    margin-bottom: 14px
  }

  .aeo-title {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -.3px
  }

  .aeo-desc {
    font-size: 13px;
    color: #5a6478;
    line-height: 1.7
  }

  .aeo-tag {
    display: inline-block;
    margin-top: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--blue);
    text-transform: uppercase
  }

  .aeo-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px
  }

  .ap {
    background: rgba(38, 136, 232, .06);
    border: 1px solid rgba(38, 136, 232, .15);
    color: var(--blue);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .3px
  }

  /* ══════════ SERVICES ══════════ */
  .svc-sec {
    background: var(--ink)
  }

  .svc-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px
  }

  .svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .04);
    border-radius: 2px
  }

  .sc {
    background: var(--ink);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: background .25s;
    cursor: none;
    border-radius: 2px
  }

  .sc:hover {
    background: var(--ink3)
  }

  .sc-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--blue-v));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s
  }

  .sc:hover .sc-line {
    transform: scaleX(1)
  }

  .sc-num {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--blue);
    margin-bottom: 20px
  }

  .sc-ico {
    width: 44px;
    height: 44px;
    background: var(--blue-soft);
    border: 1px solid var(--border-b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    transition: all .3s
  }

  .sc:hover .sc-ico {
    background: rgba(38, 136, 232, .15);
    border-color: rgba(38, 136, 232, .4);
    box-shadow: 0 0 20px var(--blue-glow)
  }

  .sc-title {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.4px;
    margin-bottom: 12px
  }

  .sc-desc {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 20px
  }

  .sc-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
  }

  .sc-pill {
    background: var(--blue-soft);
    border: 1px solid var(--border-b);
    color: var(--blue-v);
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px
  }

  /* ══════════ PROCESS (white) ══════════ */
  .proc-sec {
    background: var(--off)
  }

  .proc-sec .sec-h2 {
    color: var(--ink)
  }

  .proc-sec .sec-p {
    color: #5a6478
  }

  .proc-sec .sec-eyebrow {
    background: rgba(38, 136, 232, .08);
    color: var(--blue)
  }

  .proc-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 64px
  }

  .proc-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative
  }

  .proc-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), var(--blue), var(--blue), transparent);
    pointer-events: none
  }

  .ps {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px 32px;
    cursor: none
  }

  .ps-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid rgba(38, 136, 232, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: all .3s;
    box-shadow: 0 4px 16px rgba(38, 136, 232, .1)
  }

  .ps:hover .ps-circle {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    box-shadow: 0 8px 24px rgba(38, 136, 232, .4)
  }

  .ps-title {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -.2px
  }

  .ps-desc {
    font-size: 12.5px;
    color: #5a6478;
    line-height: 1.7
  }

  /* ══════════ RESULTS BAR ══════════ */
  .res-sec {
    background: linear-gradient(135deg, #0b1a35 0%, #0e1f3d 50%, #0a1628 100%);
    padding: 72px 52px;
    position: relative;
    overflow: hidden
  }

  .res-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 100% at 80% 50%, rgba(38, 136, 232, .12), transparent);
    pointer-events: none
  }

  .res-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    position: relative
  }

  .res-left h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(32px, 3.5vw, 50px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 14px
  }

  .res-left h2 em {
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, .5)
  }

  .res-left p {
    font-size: 15px;
    color: rgba(255, 255, 255, .55);
    max-width: 360px;
    line-height: 1.7
  }

  .res-metrics {
    display: flex;
    gap: 52px;
    flex-shrink: 0
  }

  .rm {
    text-align: center
  }

  .rm-n {
    font-family: 'Manrope', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--blue-v);
    line-height: 1;
    letter-spacing: -2px
  }

  .rm-l {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-top: 5px
  }

  /* ══════════ PRICING ══════════ */
  .price-sec {
    background: var(--ink)
  }

  .price-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px
  }

  .price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
  }

  .pc {
    border: 1px solid var(--border-d);
    border-radius: 20px;
    padding: 44px 36px;
    position: relative;
    transition: all .3s;
    cursor: none;
    background: var(--ink2)
  }

  .pc:hover {
    transform: translateY(-5px);
    border-color: var(--border-b);
    box-shadow: 0 20px 60px rgba(38, 136, 232, .1)
  }

  .pc.feat {
    border-color: var(--blue);
    background: linear-gradient(160deg, rgba(38, 136, 232, .1) 0%, rgba(38, 136, 232, .03) 50%, var(--ink2) 100%);
    box-shadow: 0 0 0 1px var(--border-b), 0 24px 80px rgba(38, 136, 232, .15)
  }

  .feat-tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(38, 136, 232, .4)
  }

  .pc-tier {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 18px
  }

  .pc.feat .pc-tier {
    color: var(--blue-v)
  }

  .pc-price {
    font-family: 'Manrope', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -2px
  }

  .pc-price sup {
    font-size: 22px;
    vertical-align: top;
    margin-top: 10px;
    letter-spacing: 0
  }

  .pc.feat .pc-price {
    color: var(--blue-v)
  }

  .pc-per {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
    margin-bottom: 32px
  }

  .pc-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 36px
  }

  .pc-features li {
    font-size: 13.5px;
    color: var(--muted2);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5
  }

  .ck {
    color: var(--blue);
    flex-shrink: 0;
    font-size: 13px;
    margin-top: 1px;
    font-weight: 800
  }

  .pc-btn {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    background: transparent;
    border: 1.5px solid var(--border-d);
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    cursor: none;
    transition: all .25s;
    letter-spacing: .1px
  }

  .pc-btn:hover,
  .pc.feat .pc-btn {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 8px 24px rgba(38, 136, 232, .3)
  }

  /* ══════════ WHY US (white) ══════════ */
  .why-sec {
    background: var(--white)
  }

  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
  }

  .why-left .sec-h2 {
    color: var(--ink);
    margin-bottom: 20px
  }

  .why-left .sec-p {
    margin-bottom: 36px
  }

  .why-right {
    display: flex;
    flex-direction: column;
    gap: 2px
  }

  .wr {
    display: flex;
    gap: 18px;
    padding: 20px 24px;
    background: var(--off);
    border-left: 3px solid transparent;
    border-radius: 2px;
    transition: all .25s;
    cursor: none
  }

  .wr:hover {
    background: rgba(38, 136, 232, .05);
    border-left-color: var(--blue)
  }

  .wr-n {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: rgba(38, 136, 232, .25);
    line-height: 1;
    width: 30px;
    flex-shrink: 0;
    transition: color .25s
  }

  .wr:hover .wr-n {
    color: var(--blue)
  }

  .wr-content h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: -.2px
  }

  .wr-content p {
    font-size: 13px;
    color: #5a6478;
    line-height: 1.65
  }

  .why-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px
  }

  .wpill {
    background: var(--off);
    border: 1px solid var(--border-l);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #5a6478;
    transition: all .2s;
    cursor: none
  }

  .wpill:hover {
    border-color: var(--blue);
    color: var(--blue)
  }

  /* ══════════ TESTIMONIALS ══════════ */
  .testi-sec {
    background: var(--ink2)
  }

  .testi-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 56px
  }

  .tgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
  }

  .tc {
    background: var(--ink3);
    border: 1px solid var(--border-d);
    border-radius: 16px;
    padding: 36px 32px;
    transition: all .25s;
    cursor: none
  }

  .tc:hover {
    border-color: var(--border-b);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(38, 136, 232, .08)
  }

  .tc-stars {
    font-size: 13px;
    color: #f59e0b;
    letter-spacing: 2px;
    margin-bottom: 16px
  }

  .tc-q {
    font-family: 'Fraunces', serif;
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.75;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 28px
  }

  .tc-auth {
    display: flex;
    align-items: center;
    gap: 12px
  }

  .tc-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ink4);
    border: 1px solid var(--border-b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--blue-v)
  }

  .tc-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--white)
  }

  .tc-role {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 2px
  }

  /* ══════════ FAQ ══════════ */
  .faq-sec {
    background: var(--off)
  }

  .faq-sec .sec-h2 {
    color: var(--ink)
  }

  .faq-sec .sec-eyebrow {
    background: rgba(38, 136, 232, .08);
    color: var(--blue)
  }

  .faq-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
  }

  .faq-left .sec-p {
    color: #5a6478;
    margin-bottom: 36px
  }

  .faq-cta-box {
    background: linear-gradient(135deg, var(--blue) 0%, #1a70c4 100%);
    border-radius: 20px;
    padding: 32px;
    color: #fff
  }

  .faq-cta-box h4 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2
  }

  .faq-cta-box p {
    font-size: 13px;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 20px;
    line-height: 1.7
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 6px
  }

  .faq-item {
    background: var(--white);
    border: 1px solid rgba(9, 9, 15, .07);
    border-radius: 12px;
    overflow: hidden
  }

  .faq-q {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: none;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    transition: color .2s;
    line-height: 1.4;
    gap: 12px
  }

  .faq-q:hover {
    color: var(--blue)
  }

  .faq-ico {
    color: var(--blue);
    font-size: 20px;
    transition: transform .3s;
    flex-shrink: 0;
    line-height: 1
  }

  .faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease
  }

  .faq-body-inner {
    padding: 0 22px 18px;
    font-size: 13.5px;
    color: #5a6478;
    line-height: 1.8
  }

  .faq-item.open .faq-body {
    max-height: 200px
  }

  .faq-item.open .faq-ico {
    transform: rotate(45deg)
  }

  /* ══════════ CTA ══════════ */
  .cta-sec {
    padding: 140px 52px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--ink)
  }

  .cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(38, 136, 232, .14) 0%, transparent 70%);
    pointer-events: none
  }

  .cta-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none
  }

  .cta-h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(44px, 6vw, 84px);
    font-weight: 700;
    line-height: .95;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
    position: relative
  }

  .cta-h2 .blue {
    color: var(--blue)
  }

  .cta-h2 .dim {
    color: rgba(255, 255, 255, .2)
  }

  .cta-sub {
    font-size: 17px;
    color: var(--muted2);
    max-width: 500px;
    margin: 0 auto 44px;
    line-height: 1.75;
    position: relative
  }

  .cta-form {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto 16px;
    position: relative
  }

  .cta-input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    border: 1.5px solid var(--border-d);
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color .2s
  }

  .cta-input::placeholder {
    color: var(--muted)
  }

  .cta-input:focus {
    border-color: var(--border-b)
  }

  .cta-note {
    font-size: 12px;
    color: var(--muted);
    position: relative
  }

  /* ══════════ FOOTER ══════════ */
  footer {
    background: var(--ink2);
    border-top: 1px solid var(--border-d)
  }

  .footer-top {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 52px;
    padding: 64px 52px 52px;
    border-bottom: 1px solid var(--border-d)
  }

  .footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 14px
  }

  .fbl-estgo {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--white)
  }

  .fbl-max {
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px 2px 7px;
    border-radius: 6px;
    margin-left: 2px;
    letter-spacing: .5px
  }

  .footer-tagline {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 240px;
    margin-bottom: 24px
  }

  .footer-socs {
    display: flex;
    gap: 8px
  }

  .fsoc {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-d);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    transition: all .2s;
    cursor: none
  }

  .fsoc:hover {
    border-color: var(--border-b);
    color: var(--blue-v)
  }

  .footer-col h5 {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue-v);
    margin-bottom: 18px
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
  }

  .footer-col ul a {
    text-decoration: none;
    color: var(--muted);
    font-size: 13px;
    transition: color .2s;
    cursor: none
  }

  .footer-col ul a:hover {
    color: var(--white)
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 52px;
    font-size: 12px;
    color: var(--muted)
  }

  .footer-bottom a {
    color: var(--muted);
    text-decoration: none;
    transition: color .2s
  }

  .footer-bottom a:hover {
    color: var(--blue-v)
  }

  /* ── ANIMATIONS ── */
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(30px)
    }

    to {
      opacity: 1;
      transform: translateY(0)
    }
  }

  .reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .75s ease, transform .75s ease
  }

  .reveal.in {
    opacity: 1;
    transform: none
  }

  .d1 {
    transition-delay: .07s
  }

  .d2 {
    transition-delay: .14s
  }

  .d3 {
    transition-delay: .21s
  }

  .d4 {
    transition-delay: .28s
  }

  .d5 {
    transition-delay: .35s
  }

  .d6 {
    transition-delay: .42s
  }

  /* MOBILE RESPONSIVE - INJECTED */

  /* ================================================
   ESTGOMAX — COMPLETE MOBILE RESPONSIVE CSS
   Inject before 
/* === MOBILE RESPONSIVE === */
  /* ============================================
   ESTGOMAX — GLOBAL MOBILE RESPONSIVE CSS
   Paste before 
/* WhatsApp Floating Button */
  .wa-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 8000;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
    text-decoration: none;
    cursor: none;
    transition: transform .25s, box-shadow .25s;
    animation: waPop .5s .8s ease both;
  }

  .wa-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 32px rgba(37, 211, 102, .6)
  }

  @keyframes waPop {
    from {
      opacity: 0;
      transform: scale(0.5)
    }

    to {
      opacity: 1;
      transform: scale(1)
    }
  }

  .wa-btn svg {
    width: 28px;
    height: 28px;
    fill: #fff
  }

  .wa-tooltip {
    position: fixed;
    bottom: 36px;
    right: 90px;
    z-index: 7999;
    background: #25d366;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
  }

  .wa-tooltip::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    border: 7px solid transparent;
    border-left-color: #25d366;
    border-right: none
  }

  .wa-btn:hover+.wa-tooltip,
  .wa-tooltip:hover {
    opacity: 1
  }

  @media(max-width:680px) {
    .wa-btn {
      bottom: 18px;
      right: 16px;
      width: 48px;
      height: 48px
    }

    .wa-btn svg {
      width: 24px;
      height: 24px
    }

    .wa-tooltip {
      display: none
    }
    .footer-top {
      grid-template-columns: 1fr 1fr !important;
      gap: 28px !important;
    }

    footer {
      padding: 48px 20px 28px !important;
    }

    .footer-bottom,
    .fbot {
      flex-direction: column !important;
      gap: 8px !important;
      text-align: center !important;
    }

  }

  /* Prevent horizontal scroll globally */
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  *,
  *::before,
  *::after {
    max-width: 100%;
  }

  img,
  video,
  iframe {
    max-width: 100%;
    height: auto;
  }

  @media (max-width: 900px) {

    /* ── NAV ── */
    nav {
      padding: 0 20px !important;
      height: 60px !important;
      flex-wrap: wrap;
    }

    .logo-sub {
      display: none !important;
    }

    .nav-links {
      gap: 14px !important;
    }

    .nav-links a {
      font-size: 12px !important;
    }
  }

  @media (max-width: 680px) {

    /* ── NAV ── */
    nav {
      padding: 0 16px !important;
      height: auto !important;
      min-height: 60px;
      flex-direction: column;
      align-items: flex-start;
      padding-top: 12px !important;
      padding-bottom: 12px !important;
      background: rgba(9, 9, 15, .97) !important;
      border-bottom: 1px solid rgba(255, 255, 255, .06) !important;
    }

    .logo-sub {
      display: none !important;
    }

    .nav-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px !important;
      width: 100%;
      margin-top: 10px;
    }
    .footer-top {
         padding: 64px 20px 52px !important;
    }
    .nav-links a {
      font-size: 11px !important;
      padding: 6px 10px;
    }

    .nav-cta {
      padding: 7px 14px !important;
      font-size: 11px !important;
    }

    /* ── HERO ── */
    .hero {
      padding: 110px 20px 60px !important;
      min-height: auto !important;
    }

    .hero-title,
    .h1 {
      font-size: clamp(36px, 10vw, 56px) !important;
      letter-spacing: -1.5px !important;
      max-width: 100% !important;
    }

    .hero-subline {
      font-size: clamp(28px, 8vw, 44px) !important;
      letter-spacing: -1px !important;
    }

    .hero-sub-title {
      font-size: clamp(28px, 8vw, 44px) !important;
    }

    .hero-desc,
    .hero-sub,
    .sub {
      font-size: 15px !important;
      max-width: 100% !important;
    }

    /* Hide floating cards on mobile — they overlap content */
    .hero-card,
    .notif-pop {
      display: none !important;
    }

    /* ── BUTTONS ── */
    .hero-ctas,
    .cta-btns {
      flex-direction: column !important;
      align-items: stretch !important;
      gap: 10px !important;
      width: 100%;
    }

    .btn-primary,
    .btn-p,
    .btn-s,
    .btn-secondary {
      width: 100% !important;
      text-align: center !important;
      box-sizing: border-box !important;
      padding: 14px 20px !important;
      font-size: 14px !important;
    }

    /* ── PROOF ROW ── */
    .hero-proof,
    .proof {
      flex-wrap: wrap !important;
      gap: 12px !important;
    }

    /* ── STATS BAR ── */
    .stats {
      display: grid !important;
      grid-template-columns: 1fr 1fr !important;
    }

    .stat {
      border-right: none !important;
      border-bottom: 1px solid rgba(255, 255, 255, .06) !important;
    }

    /* ── GENERIC SECTIONS ── */
    .svcs-sec,
    .why-sec,
    .mc-sec,
    .process-sec,
    .pricing-sec,
    .testi-sec,
    .faq-sec,
    .cta-sec,
    .cs-sec,
    .cross-sec,
    .values-sec,
    .approach-sec,
    .team-sec,
    .story-sec,
    .other-svcs,
    .free-sec,
    .compare-sec {
      padding: 56px 20px !important;
    }

    /* ── ALL GRIDS → SINGLE COLUMN ── */
    .svcs-grid,
    .svc-grid,
    .pc-grid,
    .tgrid,
    .why-grid,
    .values-grid,
    .team-grid,
    .other-grid,
    .cross-inner,
    .why-inner,
    .mc-inner,
    .story-inner,
    .approach-inner {
      grid-template-columns: 1fr !important;
      gap: 16px !important;
    }

    /* ── CASE STUDY CARD ── */
    .cs-card {
      grid-template-columns: 1fr !important;
      gap: 28px !important;
      padding: 28px 20px !important;
    }

    /* ── FOOTER ── */
    /*footer {
      padding: 48px 20px 28px !important;
    }

    .footer-top,
    .fbl,
    .fcol {
      grid-template-columns: 1fr !important;
      gap: 32px !important;
    }

    .footer-bottom,
    .fbot {
      flex-direction: column !important;
      gap: 10px !important;
      text-align: center !important;
    }*/

footer {
  padding: 48px 0 28px !important; /* remove left/right padding */
}
    .footer-top,
    .fbl,
    .fcol {
      grid-template-columns: 1fr !important;
      gap: 32px !important;
    }

    .footer-bottom,
    .fbot {
      flex-direction: column !important;
      gap: 10px !important;
      text-align: center !important;
    }

    /* ── PRICING TABS ── */
    .tabs {
      flex-wrap: wrap !important;
      width: 100% !important;
      justify-content: center;
    }

    .tab {
      font-size: 12px !important;
      padding: 8px 14px !important;
    }

    /* ── CONTACT FORM ── */
    .main {
      grid-template-columns: 1fr !important;
      padding: 90px 16px 60px !important;
      gap: 40px !important;
    }

    .form-card {
      padding: 24px 16px !important;
      margin-top: 0 !important;
    }

    .form-row {
      grid-template-columns: 1fr !important;
    }

    .contact-left {
      padding-top: 0 !important;
    }

    /* ── CTA SECTION ── */
    .cta-form {
      flex-direction: column !important;
      width: 100% !important;
      max-width: 100% !important;
      gap: 10px !important;
    }

    .cta-input {
      width: 100% !important;
      box-sizing: border-box !important;
    }

    .cta-h2,
    .free-h2 {
      font-size: clamp(32px, 9vw, 54px) !important;
      letter-spacing: -1.5px !important;
    }

    /* ── FREE AUDIT STRIP ── */
    .free-inner {
      grid-template-columns: 1fr !important;
      padding: 28px 20px !important;
      gap: 24px !important;
    }

    .free-cta {
      align-items: stretch !important;
    }

    .free-cta .btn-p {
      width: 100% !important;
      text-align: center !important;
    }

    /* ── SEC HEADERS ── */
    .sec-h2 {
      font-size: clamp(28px, 8vw, 46px) !important;
      letter-spacing: -1px !important;
    }

    /* ── CROSS CHANNEL CARD ── */
    .cross-card,
    .why-card,
    .approach-card {
      width: 100% !important;
      box-sizing: border-box !important;
    }

    /* ── MERCHANT CENTER CARD ── */
    .mc-card {
      width: 100% !important;
    }

    /* ── PROCESS STEPS ── */
    .step {
      grid-template-columns: 40px 1fr !important;
      gap: 16px !important;
    }

    /* ── HERO CARD INNER ── */
    .hero-grid {
      grid-template-columns: 1fr !important;
      gap: 32px !important;
    }

    /* ── CASE STUDY PAGE ── */
    .hero-grid .hero-right {
      display: none !important;
    }

    /* ── MARQUEE ── */
    .marquee-inner {
      gap: 12px !important;
    }

    .mi {
      font-size: 12px !important;
      padding: 6px 12px !important;
    }

    /* ── FUNNEL STEPS ── */
    .funnel-steps {
      flex-direction: column !important;
      gap: 16px !important;
    }

    .fs {
      width: 100% !important;
    }

    /* ── WHYUS GRID ── */
    .whyus-grid {
      grid-template-columns: 1fr !important;
      gap: 32px !important;
    }

    .whyus-right {
      gap: 14px !important;
    }

    /* ── AD FORMAT GRID ── */
    .fmt-grid {
      grid-template-columns: 1fr 1fr !important;
      gap: 12px !important;
    }

    /* ── GENERAL TEXT ── */
    .sec-p {
      font-size: 14.5px !important;
      max-width: 100% !important;
    }

    p {
      max-width: 100% !important;
    }

    .aeo-grid {
      grid-template-columns: 1fr;
      /* single column layout */
      gap: 40px;
    }

    .aeo-left {
      order: 1;
      /* stays on top */
    }

    .aeo-right {
      order: 2;
      /* moves below wm-left */
      grid-template-columns: 1fr;
      /* collapse its internal grid too */
      gap: 20px;

    }

    .res-metrics {
      display: inline;
    }

  }




  /* ── GLOBAL OVERFLOW FIX ── */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  img,
  video,
  iframe {
    max-width: 100%;
    height: auto;
    display: block;
  }

  section,
  .hero,
  .main,
  footer {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  nav {
    width: 100%;
    max-width: 100vw;
  }

  /* ── TABLET (max 1024px) ── */
  @media (max-width: 1024px) {
    nav {
      padding: 0 24px;
    }

    .hero,
    section,
    .main {
      padding-left: 28px !important;
      padding-right: 28px !important;
    }

    .hero-card,
    .notif-pop {
      display: none !important;
    }

    .hero-title {
      font-size: clamp(40px, 6vw, 72px) !important;
    }

    .footer-top {
      grid-template-columns: 1fr 1fr !important;
      gap: 32px;
    }

    .svcs-grid,
    .svc-grid,
    .svcs-grid {
      grid-template-columns: 1fr 1fr !important;
    }

    .why-inner,
    .mc-inner,
    .cross-inner,
    .story-inner,
    .approach-inner {
      grid-template-columns: 1fr !important;
      gap: 40px;
    }

    .pc-grid,
    .tgrid,
    .values-grid,
    .why-grid,
    .team-grid {
      grid-template-columns: 1fr 1fr !important;
      gap: 16px;
    }

    .cs-card {
      grid-template-columns: 1fr !important;
      gap: 32px;
    }

    .main {
      grid-template-columns: 1fr !important;
      gap: 40px;
    }

    .free-inner {
      grid-template-columns: 1fr !important;
      gap: 28px;
    }
  }

  .dropdown {
    position: relative;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #111;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 999;
  }

  .dropdown-content a {
    display: block;
    padding: 10px 16px;
    white-space: nowrap;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  /* ── MOBILE (max 768px) ── */
  @media (max-width: 768px) {

    /* NAV — hide links, show hamburger icon */

    .nav-links {
      display: none;
      /* hidden initially */
      flex-direction: column;
      width: 100%;
      margin-top: 12px;
    }
    .hamburger {
    display: block;
    margin-top: -30px;
    /* show hamburger */
  }

  .logo-estgo {
    font-size: 18px;
    margin-top: 10px;
  }
 .logo-max-pill
  {
    margin-top: 10px;
  }
    .nav-links.show {
      display: flex;
      /* show vertically when toggled */
    }

    .desktop-scroll {
      display: none;
    }

    .dropdown {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
    }

    .dropbtn {
      margin-bottom: -8px;
    }
    
       .proc-steps {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    position: relative
  }
   .res-inner {
  display: flex;
  flex-direction: column; /* stack children vertically */
  align-items: flex-start; /* align left edge */
  gap: 48px;
  position: relative;
}

.res-metrics {
  display: grid; /* keep grid if you want 2-column layout inside */
  grid-template-columns: repeat(2, 1fr);
  gap: 52px;
}

    .dropdown-content {
      display: flex !important;
      flex-direction: column;
      align-items: flex-start;
      position: static !important;
      background: transparent;
      box-shadow: none;
      padding-left: 90px;
      gap: 2px;
      margin-top: 0;
    }

    .dropdown-content a {
      padding: 2px 0;
      line-height: 1.2;
      text-align: left;
    }

    .mobile-columns {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      height: 300px;
      /* smaller overall section */
      overflow: hidden;
    }

    .column {
      overflow: hidden;
      position: relative;
    }

    .column-track {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .column img {
      width: 100%;
      height: 55px;
      /* smaller image size */
      object-fit: cover;
      border-radius: 10px;
    }

    .down .column-track {
      animation: moveDown 10s linear infinite;
    }

    .up .column-track {
      animation: moveUp 10s linear infinite;
    }

    @keyframes moveDown {
      from {
        transform: translateY(-50%);
      }

      to {
        transform: translateY(0%);
      }
    }

    @keyframes moveUp {
      from {
        transform: translateY(0%);
      }

      to {
        transform: translateY(-50%);
      }
    }

    nav {
      padding: 0 20px;
      height: 60px;
    }

    .logo-sub {
      display: none;
    }
.footer-top {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 52px;
    padding: 64px 20px 52px !important;
    border-bottom: 1px solid var(--border-d)
  }

    .c-dot,
    .c-ring {
      display: none;
    }

    .logo-estgo {
      font-size: 18px;
    }

    .logo-max-pill {
      font-size: 11px;
      padding: 2px 7px;
    }

    /* Hamburger button */
    .hamburger {
      display: block;
      /* show hamburger */
    }

    /* HERO SECTIONS */
    .hero,
    section,
    .main {
      padding: 90px 20px 60px !important;
    }

    .hero-card,
    .notif-pop {
      display: none !important;
    }

    .hero-title {
      font-size: 34px !important;
      line-height: 1.15 !important;
      letter-spacing: -1px !important;
      max-width: 100% !important;
    }

    .hero-subline {
      font-size: 26px !important;
      line-height: 1.2 !important;
      letter-spacing: -0.5px !important;
    }

    .hero-sub-title {
      font-size: 26px !important;
      line-height: 1.2 !important;
    }

    .hero-desc,
    .hero-sub {
      font-size: 15px !important;
      line-height: 1.75 !important;
      max-width: 100% !important;
    }

    /* CTAs — stack vertically */
    .hero-ctas,
    .cta-btns {
      flex-direction: column !important;
      gap: 12px !important;
      width: 100% !important;
    }

    .price-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 20px
    }

    .btn-primary,
    .btn-secondary,
    .btn-p,
    .btn-s {
      width: 100% !important;
      text-align: center !important;
      display: block !important;
      /* NOT fixed/sticky — avoid covering content */
      position: static !important;
    }

    /* ALL GRIDS → single column */
    .svcs-grid,
    .svc-grid,
    .pc-grid,
    .tgrid,
    .values-grid,
    .why-grid,
    .team-grid,
    .other-grid,
    .footer-top,
    .why-inner,
    .mc-inner,
    .cross-inner,
    .story-inner,
    .approach-inner,
    .testi-head,
    .cross-inner,
    .cs-card,
    .main,
    .hero-grid,
    .form-row,
    .free-inner {
      grid-template-columns: 1fr !important;
      gap: 20px !important;
    }

    /* STATS BAR — 2 per row on mobile */
    .stats {
      flex-wrap: wrap;
    }

    .stat {
      flex: 1 1 45% !important;
      border-right: none !important;
      border-bottom: 1px solid var(--border-d);
      padding: 20px 10px !important;
    }

    .stat-n {
      font-size: 32px !important;
    }

    /* SECTION HEADINGS */
    .sec-h2,
    .cross-h2,
    .cta-h2,
    .free-h2,
    .hero-title {
      font-size: clamp(28px, 7vw, 40px) !important;
      letter-spacing: -1px !important;
      line-height: 1.1 !important;
    }

    .sec-p,
    .cross-p,
    .cta-sub {
      font-size: 14.5px !important;
      max-width: 100% !important;
    }

    /* PRICING CARDS */
    .pc {
      padding: 24px 20px !important;
    }

    .pc-price {
      font-size: 44px !important;
    }

    .pricing-tabs .tabs {
      flex-wrap: wrap !important;
      width: 100% !important;
    }

    .tab {
      flex: 1 1 45% !important;
      text-align: center;
    }

    /* SERVICE CARDS */
    .svc-card,
    .svc {
      padding: 28px 22px !important;
    }

    .svc-name {
      font-size: 24px !important;
    }

    .svc-metrics {
      flex-wrap: wrap;
      gap: 8px;
    }

    .sm {
      flex: 1 1 30%;
    }

    /* TESTIMONIALS */
    .tc {
      padding: 22px !important;
    }

    /* CONTACT FORM */
    .contact-left {
      padding-top: 0 !important;
    }

    .form-card {
      padding: 24px 20px !important;
    }

    .form-row {
      grid-template-columns: 1fr !important;
    }

    /* MERCHANT CENTER CARD */
    .mc-card {
      margin-top: 0 !important;
    }

    .mc-product {
      flex-wrap: wrap;
      gap: 10px;
    }

    .mc-prod-score {
      margin-left: 0 !important;
    }

    /* CASE STUDY */
    .cs-card {
      padding: 28px 20px !important;
    }

    .cs-metrics {
      grid-template-columns: repeat(3, 1fr) !important;
    }

    .csm-n {
      font-size: 20px !important;
    }

    /* FAQ */
    .faq-q {
      font-size: 14px !important;
      /* padding: 18px 0 !important; */
    }

    .faq-wrap {
      grid-template-columns: 1fr;
      /* collapse to single column */
      gap: 40px;
    }

    .faq-left {
      order: 1;
      /* stays on top */
    }

    .faq-list {
      order: 2;
      /* moves below faq-left */
    }

    .faq-wrap,
    .faq-inner {
      padding: 0 !important;
    }

    /* PROCESS STEPS */
    .step {
      grid-template-columns: 40px 1fr !important;
      gap: 14px !important;
    }

    /* FOOTER */
    .footer-top {
      grid-template-columns: 1fr 1fr !important;
      gap: 28px !important;
    }

    footer {
      footer {
  padding: 48px 0 28px !important; /* remove left/right padding */
    }

    .footer-bottom,
    .fbot {
      flex-direction: column !important;
      gap: 8px !important;
      text-align: center !important;
    }

    /* CROSS CHANNEL CARD ROWS */
    .cc-row {
      flex-wrap: wrap;
      gap: 8px;
    }

    .cc-badge {
      margin-left: 0 !important;
    }

    /* WHY CARD */
    .wc-row {
      flex-wrap: wrap;
    }

    .wc-badge {
      margin-left: 0 !important;
      margin-top: 4px;
    }

    /* APPROACH AI-ITEM */
    .ai-item {
      grid-template-columns: 40px 1fr !important;
    }

    .ai-item .ai-text.h4 {
      /* fix typo in about.html */
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--blue-soft);
      border: 1px solid var(--border-b);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 800;
      color: var(--blue-v);
      flex-shrink: 0;
    }

    /* PROOF STRIP */
    .hero-proof,
    .proof {
      flex-wrap: wrap !important;
      gap: 12px !important;
    }

    .proof-div,
    .pdiv {
      display: none !important;
    }
  }

  /* ── SMALL PHONES (max 480px) ── */
  @media (max-width: 480px) {
    .hero-title {
      font-size: 28px !important;
      letter-spacing: -0.5px !important;
    }

    .hero-subline,
    .hero-sub-title {
      font-size: 20px !important;
    }

    .sec-h2,
    .cross-h2,
    .cta-h2 {
      font-size: 26px !important;
    }

    .c-dot,
    .c-ring {
      display: none;
    }

    .hero-badge,
    .hero-eyebrow,
    .eyebrow {
      font-size: 10.5px !important;
      padding: 6px 12px !important;
    }

    .stat-n {
      font-size: 28px !important;
    }
    .footer-top {
              padding: 64px 20px 52px !important;
          }
    .cs-metrics {
      grid-template-columns: 1fr 1fr 1fr !important;
    }

    .csm-n {
      font-size: 18px !important;
    }

    .mc-footer {
      flex-wrap: wrap;
      gap: 12px;
    }

    .free-checks {
      gap: 8px !important;
    }

    .fc {
      font-size: 12px !important;
    }

    .logo-estgo {
      font-size: 17px !important;
    }

    .footer-top {
      grid-template-columns: 1fr 1fr !important;
    }

    .fbl-e {
      font-size: 17px !important;
    }

    .pc-price {
      font-size: 40px !important;
    }

    .cta-sec {
      padding: 70px 20px !important;
    }

    /* Approach card rows on very small screens */
    .ac-row {
      padding: 12px !important;
    }

    .ac-text {
      font-size: 12px !important;
    }

    /* Services overview cards */
    .svc-metrics {
      gap: 6px;
    }

    .sm-n {
      font-size: 17px !important;
    }

    .sm-l {
      font-size: 8.5px !important;
    }
    .footer-top {
      grid-template-columns: 1fr 1fr !important;
      gap: 28px !important;
    }

    footer {
      padding: 48px 20px 28px !important;
    }

    .footer-bottom,
    .fbot {
      flex-direction: column !important;
      gap: 8px !important;
      text-align: center !important;
    }

  }

  /* ── PREVENT HORIZONTAL SCROLL (SAFETY NET) ── */
  .hero-aurora,
  .hero-aurora2,
  .hbg-orb,
  .hbg-orb2 {
    max-width: 100vw;
    overflow: hidden;
  }