*,
*::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
}

.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
}

.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
}

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 {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: none
}

.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
}

.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;
    transition: color .2s;
    cursor: none
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white)
}


.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%);
    }
}

.nav-cta {
    background: var(--blue) !important;
    color: #fff !important;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 13px !important;
    font-weight: 700 !important;
    transition: transform .2s, box-shadow .2s !important
}

.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
}

.hero-bg-base {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #050710 0%, #080c1a 40%, #060912 100%)
}

.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: aFloat 14s ease-in-out infinite
}

.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: aFloat 18s ease-in-out infinite reverse
}

@keyframes aFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    33% {
        transform: translate(30px, -20px) scale(1.04)
    }

    66% {
        transform: translate(-15px, 25px) scale(.97)
    }
}

.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)
}

.hero-lines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(38, 136, 232, .03) 80px)
}

.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: pGlow 2s ease infinite
}

@keyframes pGlow {

    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
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.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: 820px;
    position: relative;
    z-index: 2
}

.hero-title .blue {
    color: var(--blue)
}

.hero-title .dim {
    color: rgba(255, 255, 255, .22);
    font-style: italic;
    font-weight: 300
}

.rw-wrap {
    display: inline-block;
    overflow: hidden;
    height: 1.05em;
    vertical-align: bottom
}

#rword {
    color: var(--blue);
    font-style: italic;
    display: inline-block;
    transition: opacity .3s ease, transform .3s ease
}

.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;
    position: relative;
    z-index: 2
}

.hero-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--muted2);
    max-width: 580px;
    margin-bottom: 44px;
    opacity: 0;
    animation: slideUp .7s .55s ease forwards;
    position: relative;
    z-index: 2
}

.hero-desc b {
    color: var(--white);
    font-weight: 600
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 56px;
    opacity: 0;
    animation: slideUp .7s .65s ease forwards;
    position: relative;
    z-index: 2
}

.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;
    box-shadow: 0 8px 32px rgba(38, 136, 232, .35);
    text-decoration: none;
    display: inline-block
}

.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;
    text-decoration: none;
    display: inline-block
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2)
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    animation: slideUp .6s .78s ease forwards;
    position: relative;
    z-index: 2
}

.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-div {
    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 SERP card */
.hero-card {
    position: absolute;
    right: 52px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    background: rgba(22, 24, 32, .92);
    border: 1px solid rgba(38, 136, 232, .2);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .5);
    opacity: 0;
    animation: sLeft .8s .5s ease forwards
}

@keyframes sLeft {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(40px)
    }

    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0)
    }
}

.card-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px
}

.card-ttl {
    font-size: 10px;
    font-weight: 800;
    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
}

.clive-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
    animation: pGlow 1.5s infinite
}

.serp-result {
    background: var(--ink4);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 8px;
    border: 1px solid var(--border-d)
}

.serp-ad-tag {
    font-size: 9px;
    font-weight: 800;
    color: var(--blue-v);
    background: var(--blue-soft);
    border: 1px solid var(--border-b);
    padding: 1px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 5px
}

.serp-url {
    font-size: 10px;
    color: var(--muted);
    margin-bottom: 3px
}

.serp-title {
    font-size: 13px;
    font-weight: 700;
    color: #8ab4f8;
    margin-bottom: 3px
}

.serp-desc {
    font-size: 10px;
    color: var(--muted2);
    line-height: 1.4
}

.card-metrics {
    display: flex;
    gap: 8px;
    margin-top: 14px
}

.cm {
    flex: 1;
    background: var(--ink4);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
    border: 1px solid var(--border-d)
}

.cm-n {
    font-size: 18px;
    font-weight: 800;
    color: var(--blue-v);
    line-height: 1
}

.cm-l {
    font-size: 9px;
    color: var(--muted);
    margin-top: 2px
}

.roas-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px
}

.roas-label {
    font-size: 11px;
    color: var(--muted);
    width: 50px;
    flex-shrink: 0
}

.roas-track {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, .07);
    border-radius: 3px;
    overflow: hidden
}

.roas-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-v));
    animation: bGrow 2s .6s ease both
}

@keyframes bGrow {
    from {
        width: 0
    }

    to {
        width: var(--w)
    }
}

.roas-val {
    font-size: 10px;
    font-weight: 800;
    color: var(--blue-v);
    width: 28px;
    text-align: right
}

/* STATS BAR */
.stats {
    display: flex;
    border-top: 1px solid var(--border-d);
    border-bottom: 1px solid var(--border-d)
}

.stat {
    flex: 1;
    padding: 28px 0;
    text-align: center;
    border-right: 1px solid var(--border-d)
}

.stat:last-child {
    border-right: none
}

.stat-n {
    font-family: 'Fraunces', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--blue-v);
    line-height: 1;
    letter-spacing: -1.5px
}

.stat-l {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
    font-weight: 500
}

/* SERVICES */
.svcs-sec {
    padding: 80px 52px;
    background: var(--ink2)
}

.svcs-inner {
    max-width: 1100px;
    margin: 0 auto
}

.sec-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-v);
    margin-bottom: 16px
}

.sec-h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 16px
}

.sec-h2 .blue {
    color: var(--blue)
}

.sec-h2 .dim {
    color: rgba(255, 255, 255, .22);
    font-style: italic;
    font-weight: 300
}

.sec-p {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--muted2);
    max-width: 560px;
    margin-bottom: 52px
}

.svcs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.sc {
    background: var(--ink3);
    border: 1px solid var(--border-d);
    border-radius: 16px;
    padding: 28px 32px;
    cursor: none;
    transition: border-color .25s, transform .25s
}

.sc:hover {
    border-color: rgba(38, 136, 232, .35);
    transform: translateY(-4px)
}

.sc-ico {
    font-size: 32px;
    margin-bottom: 16px
}

.sc-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px
}

.sc-desc {
    font-size: 13.5px;
    color: var(--muted2);
    line-height: 1.7
}

.sc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px
}

.stag {
    background: var(--blue-soft);
    border: 1px solid var(--border-b);
    color: var(--blue-v);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px
}

/* MERCHANT CENTER SPOTLIGHT */
.mc-sec {
    padding: 80px 52px
}

.mc-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center
}

.mc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(38, 136, 232, .1);
    border: 1px solid var(--border-b);
    color: var(--blue-v);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px
}

.mc-card {
    background: var(--ink3);
    border: 1px solid var(--border-d);
    border-radius: 20px;
    overflow: hidden
}

.mc-card-hd {
    background: var(--blue-soft);
    border-bottom: 1px solid var(--border-b);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 10px
}

.mc-card-hd span {
    font-size: 12px;
    font-weight: 700;
    color: var(--blue-v)
}

.mc-product {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-d)
}

.mc-prod-img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(38, 136, 232, .3), rgba(20, 80, 160, .4));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0
}

.mc-prod-info {
    flex: 1
}

.mc-prod-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 3px
}

.mc-prod-old {
    font-size: 11px;
    color: var(--muted);
    text-decoration: line-through;
    margin-bottom: 2px
}

.mc-prod-new {
    font-size: 11px;
    color: #26c887;
    font-weight: 700
}

.mc-prod-score {
    margin-left: auto;
    text-align: right
}

.mc-score-n {
    font-size: 18px;
    font-weight: 800;
    color: var(--blue-v)
}

.mc-score-l {
    font-size: 9px;
    color: var(--muted)
}

.mc-footer {
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.mc-foot-stat {
    text-align: center
}

.mc-foot-n {
    font-size: 16px;
    font-weight: 800;
    color: var(--blue-v)
}

.mc-foot-l {
    font-size: 9px;
    color: var(--muted)
}

/* PROCESS */
.process-sec {
    padding: 80px 52px;
    background: var(--ink2)
}

.process-inner {
    max-width: 1000px;
    margin: 0 auto
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0
}

.step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 28px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border-d);
    align-items: start
}

.step:last-child {
    border-bottom: none
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--blue-soft);
    border: 1px solid var(--border-b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: var(--blue-v)
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px
}

.step-content p {
    font-size: 14px;
    color: var(--muted2);
    line-height: 1.7
}

.step-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px
}

.step-tag {
    font-size: 10px;
    font-weight: 700;
    color: var(--muted2);
    background: var(--ink4);
    border: 1px solid var(--border-d);
    padding: 3px 9px;
    border-radius: 6px
}

/* PRICING */
.pricing-sec {
    padding: 80px 52px
}

.pricing-inner {
    max-width: 1100px;
    margin: 0 auto
}

.pc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px
}

.pc {
    background: var(--ink3);
    border: 1px solid var(--border-d);
    border-radius: 20px;
    padding: 32px 28px;
    transition: transform .25s, border-color .25s
}

.pc:hover {
    transform: translateY(-4px)
}

.pc.feat {
    border-color: rgba(38, 136, 232, .4);
    box-shadow: 0 0 0 1px rgba(38, 136, 232, .15)
}

.feat-tag {
    font-size: 10px;
    font-weight: 800;
    background: var(--blue);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: .5px
}

.pc-tier {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px
}

.pc-price {
    font-family: 'Fraunces', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -2px
}

.pc-price sup {
    font-size: 22px;
    font-weight: 600;
    vertical-align: top;
    margin-top: 10px;
    display: inline-block
}

.pc-per {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px
}

.pc-note {
    font-size: 12px;
    color: var(--muted2);
    margin-top: 6px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-d)
}

.pc-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px
}

.pc-features li {
    font-size: 13px;
    color: var(--muted2);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5
}

.ck {
    color: var(--blue-v);
    font-weight: 800;
    flex-shrink: 0
}

.pc-btn {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: none;
    transition: all .2s
}

.pc.feat .pc-btn {
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 8px 24px rgba(38, 136, 232, .3)
}

.pc-btn:hover {
    background: var(--blue);
    border-color: var(--blue)
}

/* TESTIMONIALS */
.testi-sec {
    padding: 80px 52px;
    background: var(--ink2)
}

.testi-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 52px
}

.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: 28px
}

.tc-stars {
    color: #f59e0b;
    font-size: 13px;
    margin-bottom: 12px
}

.tc-q {
    font-size: 14px;
    color: var(--muted2);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic
}

.tc-auth {
    display: flex;
    align-items: center;
    gap: 12px
}

.tc-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    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
}

.tc-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--white)
}

.tc-role {
    font-size: 11.5px;
    color: var(--muted)
}

/* FAQ */
.faq-sec {
    padding: 80px 52px
}

.faq-wrap {
    max-width: 760px;
    margin: 0 auto
}

.faq-item {
    border-bottom: 1px solid var(--border-d)
}

.faq-q {
    padding: 22px 0;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--white);
    cursor: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color .2s
}

.faq-q:hover {
    color: var(--blue-v)
}

.faq-ico {
    font-size: 20px;
    color: var(--muted);
    transition: transform .3s
}

.faq-item.open .faq-ico {
    transform: rotate(45deg);
    color: var(--blue-v)
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease
}

.faq-item.open .faq-body {
    max-height: 300px
}

.faq-body-inner {
    padding: 0 0 20px;
    font-size: 14px;
    color: var(--muted2);
    line-height: 1.75
}

/* CTA */
.cta-sec {
    padding: 100px 52px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(38, 136, 232, .12) 0%, transparent 65%);
    pointer-events: none
}

.cta-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 32px 32px
}

.cta-h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(42px, 5.5vw, 76px);
    font-weight: 700;
    line-height: .95;
    letter-spacing: -2px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2
}

.cta-h2 .blue {
    color: var(--blue)
}

.cta-h2 .dim {
    color: rgba(255, 255, 255, .22);
    font-style: italic;
    font-weight: 300
}

.cta-sub {
    font-size: 16px;
    color: var(--muted2);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.75;
    position: relative;
    z-index: 2
}

.cta-form {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto 16px;
    position: relative;
    z-index: 2
}

.cta-input {
    flex: 1;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    padding: 14px 18px;
    border-radius: 10px;
    outline: none
}

.cta-input::placeholder {
    color: var(--muted)
}

.cta-note {
    font-size: 12px;
    color: var(--muted);
    position: relative;
    z-index: 2
}

/* FOOTER */
footer {
    background: var(--ink2);
    border-top: 1px solid var(--border-d);
    padding: 60px 52px 32px
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 48px
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    margin-bottom: 14px
}

.fbl-estgo {
    font-size: 20px;
    font-weight: 800;
    color: var(--white)
}

.fbl-max {
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 2px;
    letter-spacing: .8px
}

.footer-tagline {
    font-size: 13.5px;
    color: var(--muted2);
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 280px
}

.footer-socs {
    display: flex;
    gap: 10px
}

.fsoc {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--ink3);
    border: 1px solid var(--border-d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--muted2);
    text-decoration: none;
    cursor: none;
    transition: border-color .2s, color .2s
}

.fsoc:hover {
    border-color: var(--blue);
    color: var(--blue-v)
}

.footer-col h5 {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    margin-bottom: 9px
}

.footer-col ul li a {
    color: var(--muted2);
    text-decoration: none;
    font-size: 13.5px;
    cursor: none;
    transition: color .2s
}

.footer-col ul li a:hover {
    color: var(--blue-v)
}

.footer-bottom {
    border-top: 1px solid var(--border-d);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.footer-bottom p {
    font-size: 12.5px;
    color: var(--muted)
}

.footer-bottom a {
    color: var(--muted);
    text-decoration: none
}

/* OTHER SERVICES STRIP */
.other-svcs {
    padding: 60px 52px;
    background: var(--ink2);
    border-top: 1px solid var(--border-d)
}

.other-inner {
    max-width: 1100px;
    margin: 0 auto
}

.other-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 24px;
    text-align: center
}

.other-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.other-card {
    background: var(--ink3);
    border: 1px solid var(--border-d);
    border-radius: 14px;
    padding: 22px 26px;
    text-decoration: none;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: none;
    transition: border-color .25s, transform .2s
}

.other-card:hover {
    border-color: rgba(38, 136, 232, .35);
    transform: translateY(-3px)
}

.oc-ico {
    font-size: 28px;
    flex-shrink: 0
}

.oc-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px
}

.oc-desc {
    font-size: 12.5px;
    color: var(--muted2)
}

.oc-arrow {
    margin-left: auto;
    color: var(--blue-v);
    font-size: 16px;
    opacity: .7
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

.d3 {
    transition-delay: .3s
}

/* 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
    }
}

/* 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;
}

.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%);
    }
}

@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;
    }
    .hamburger {
    display: block;
    margin-top: -30px;
    /* show hamburger */
  }

  .logo-estgo {
    font-size: 18px;
    margin-top: 10px;
  }
 .logo-max-pill
  {
    margin-top: 10px;
  }
    .logo-sub {
        display: none !important;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        gap: 8px !important;
        width: 100%;
        margin-top: 10px;
    }

    .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;
    }

    /* ── 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;
    }
}

/* ── 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;
    }
}

.mobile-columns {
    display: none;
}

.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;
    }

    .nav-links.show {
        display: flex;
        /* show vertically when toggled */
    }

    .dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }

    .dropbtn {
        margin-bottom: -8px;
    }

    .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;
    }

    nav {
        padding: 0 20px;
        height: 60px;
    }

    .c-dot,
    .c-ring {
        display: none;
    }

    .logo-sub {
        display: none;
    }

    .logo-estgo {
        font-size: 18px;
    }

    .logo-max-pill {
        font-size: 11px;
        padding: 2px 7px;
    }

    /* Hamburger button */
    .hamburger {
        display: block;
        /* show hamburger */
    }

    .desktop-scroll {
        display: none;
    }

    .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%);
        }
    }

    /* 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;
    }

    .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,
    .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 {
        padding: 48px 20px 28px !important;
    }

    .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;
    }

    .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;
    }
}

/* ── PREVENT HORIZONTAL SCROLL (SAFETY NET) ── */
.hero-aurora,
.hero-aurora2,
.hbg-orb,
.hbg-orb2 {
    max-width: 100vw;
    overflow: hidden;
}