:root {
    --navy: #1B2A4A;
    --navy-d: #0F1C33;
    --navy-l: #243B63;
    --green: #95BF47;
    --green-d: #7BA43A;
    --green-l: #A8D454;
    --green-bg: rgba(149, 191, 71, .08);
    --green-bg2: rgba(149, 191, 71, .12);
    --green-border: rgba(149, 191, 71, .2);
    --green-glow: rgba(149, 191, 71, .15);
    --orange: #E8750A;
    --orange-h: #D06808;
    --orange-l: #F5921D;
    --orange-bg: rgba(232, 117, 10, .08);
    --orange-shadow: rgba(232, 117, 10, .3);
    --bg: #FFFFFF;
    --bg-1: #FAFBFC;
    --bg-2: #F8F9FA;
    --bg-3: #F1F3F5;
    --text: #1A1A2E;
    --text-2: #4A5568;
    --text-3: #8896A6;
    --border: rgba(27, 42, 74, .08);
    --border-2: rgba(27, 42, 74, .12);
    --border-3: rgba(27, 42, 74, .18);
    --display: 'Sora', sans-serif;
    --body: 'Inter', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow: 0 2px 8px rgba(0, 0, 0, .04), 0 8px 32px rgba(0, 0, 0, .06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, .08), 0 24px 64px rgba(0, 0, 0, .06);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, .1), 0 32px 80px rgba(0, 0, 0, .08);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, .1), inset 0 1px 0 rgba(255, 255, 255, .4);
    --max: 1140px;
    --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%
}

::selection {
    background: var(--green);
    color: #fff
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 28px
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--orange);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 700;
    z-index: 1000;
    transition: top .2s
}

.skip-link:focus {
    top: 8px
}

*:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
    border-radius: 2px
}

/* GRAIN OVERLAY */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: .025;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E")
}

/* ANIMATIONS */
@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(-8px) rotate(2deg)
    }
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1)
    }

    25% {
        transform: translate(30px, -20px) scale(1.05)
    }

    50% {
        transform: translate(-10px, -35px) scale(.95)
    }

    75% {
        transform: translate(-25px, 10px) scale(1.03)
    }

    100% {
        transform: translate(0, 0) scale(1)
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(.9);
        opacity: .6
    }

    50% {
        transform: scale(1.05);
        opacity: 1
    }

    100% {
        transform: scale(.9);
        opacity: .6
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0
    }

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

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px var(--green-glow)
    }

    50% {
        box-shadow: 0 0 40px var(--green-glow), 0 0 60px rgba(149, 191, 71, .08)
    }
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes gradient-rotate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes borderGlow {

    0%,
    100% {
        border-color: rgba(149, 191, 71, .15)
    }

    50% {
        border-color: rgba(149, 191, 71, .4)
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px) scale(.9)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@keyframes spotlight {
    0% {
        opacity: 0;
        filter: blur(40px)
    }

    100% {
        opacity: 1;
        filter: blur(0)
    }
}

@keyframes tagFloat {

    0%,
    100% {
        transform: translateY(0)
    }

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

.reveal-in {
    animation: revealUp .5s ease both
}

.reveal-in.d1 {
    animation-delay: .06s
}

.reveal-in.d2 {
    animation-delay: .12s
}

.reveal-in.d3 {
    animation-delay: .18s
}

.reveal-in.d4 {
    animation-delay: .24s
}

.reveal-in.d5 {
    animation-delay: .3s
}

@media(prefers-reduced-motion:reduce) {
    .reveal-in {
        animation: none !important
    }
}

/* NAV */
.nav {
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .65);
    backdrop-filter: blur(28px) saturate(1.8);
    border-bottom: 1px solid var(--border);
    transition: all .5s cubic-bezier(.4, 0, .2, 1)
}

.nav.scrolled {
    box-shadow: 0 4px 40px rgba(0, 0, 0, .08);
    background: rgba(255, 255, 255, .88)
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 3px;
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--navy);
    width: 150px;
}

.nav-logo span {
    color: var(--green)
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-2);
    transition: var(--transition)
}

.nav-phone:hover {
    color: var(--orange)
}

.nav-phone svg {
    width: 14px;
    height: 14px;
    color: var(--green)
}

.nav-trust {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .68rem;
    color: var(--text-3);
    font-weight: 500
}

.nav-trust svg {
    color: var(--green);
    width: 13px;
    height: 13px
}

.btn-nav {
    padding: 10px 22px;
    border-radius: var(--radius);
    font-size: .82rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-h));
    border: none;
    cursor: pointer;
    font-family: var(--body);
    transition: var(--transition);
    box-shadow: 0 2px 16px var(--orange-shadow), inset 0 1px 0 rgba(255, 255, 255, .2)
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--orange-shadow)
}

.btn-nav-call {
    display: none;
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--green-d));
    font-family: var(--body);
    transition: var(--transition);
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 12px rgba(149, 191, 71, .25), inset 0 1px 0 rgba(255, 255, 255, .15);
    text-decoration: none;
    white-space: nowrap
}

.btn-nav-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(149, 191, 71, .3)
}

/* HERO */
.hero {
    padding: 48px 0 56px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(170deg, #E8EDF8 0%, #FFFFFF 35%, #F2F9E8 70%, #FFF8F0 100%)
}

.hero-bg-orb1 {
    position: absolute;
    top: -120px;
    right: -60px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(149, 191, 71, .15) 0%, rgba(149, 191, 71, .05) 40%, transparent 65%);
    pointer-events: none;
    animation: floatOrb 12s ease-in-out infinite
}

.hero-bg-orb2 {
    position: absolute;
    bottom: -140px;
    left: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(27, 42, 74, .08) 0%, transparent 65%);
    pointer-events: none;
    animation: floatOrb 15s ease-in-out infinite 3s
}

.hero-bg-orb3 {
    position: absolute;
    top: 30%;
    left: 40%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 117, 10, .06) 0%, transparent 60%);
    pointer-events: none;
    animation: floatOrb 18s ease-in-out infinite 6s
}

/* Mesh gradient layer */
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: conic-gradient(from 120deg, rgba(149, 191, 71, .06), rgba(232, 117, 10, .04), rgba(27, 42, 74, .03), rgba(149, 191, 71, .06));
    border-radius: 50%;
    animation: gradient-rotate 30s linear infinite;
    pointer-events: none
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(27, 42, 74, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(27, 42, 74, .025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    mask: radial-gradient(ellipse at 60% 40%, black 20%, transparent 70%)
}

/* Floating dots */
.hero-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.hero-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--green);
    opacity: .2
}

.hero-dot:nth-child(1) {
    top: 15%;
    left: 10%;
    animation: floatOrb 8s ease-in-out infinite
}

.hero-dot:nth-child(2) {
    top: 60%;
    left: 85%;
    animation: floatOrb 10s ease-in-out infinite 2s;
    background: var(--orange)
}

.hero-dot:nth-child(3) {
    top: 80%;
    left: 25%;
    animation: floatOrb 12s ease-in-out infinite 4s;
    width: 6px;
    height: 6px
}

.hero-dot:nth-child(4) {
    top: 25%;
    left: 70%;
    animation: floatOrb 9s ease-in-out infinite 1s;
    background: var(--navy);
    width: 3px;
    height: 3px;
    opacity: .1
}

.hero-dot:nth-child(5) {
    top: 45%;
    left: 5%;
    animation: floatOrb 11s ease-in-out infinite 3s;
    width: 5px;
    height: 5px;
    background: var(--orange);
    opacity: .12
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 44px;
    align-items: start;
    position: relative;
    z-index: 1
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left
}

.hero h1 {
    font-family: var(--display);
    font-size: 2.7rem;
    color: var(--navy);
    line-height: 1.12;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -.03em;
    animation: slide-up .6s ease .1s both
}

.hero h1 em {
    color: var(--green);
    font-style: normal;
    position: relative;
    background: linear-gradient(135deg, var(--green-d), var(--green-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero h1 em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, rgba(149, 191, 71, .12), rgba(149, 191, 71, .25), rgba(149, 191, 71, .12));
    border-radius: 4px;
    z-index: -1
}

.hero-sub {
    font-size: .92rem;
    color: var(--text-2);
    line-height: 1.85;
    margin-bottom: 16px;
    max-width: 480px;
    animation: slide-up .6s ease .2s both
}

.hero-checks {
    list-style: none;
    margin-bottom: 24px;
    animation: slide-up .6s ease .3s both
}

.hero-checks li {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 5px 0;
    font-size: .85rem;
    color: var(--text);
    transition: var(--transition)
}

.hero-checks li:hover {
    transform: translateX(4px)
}

.hero-checks li svg {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(149, 191, 71, .3))
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .78rem;
    color: var(--text-2);
    animation: slide-up .6s ease .5s both
}

.hero-proof .stars {
    color: #F59E0B;
    font-size: .95rem;
    letter-spacing: 1px;
    filter: drop-shadow(0 0 4px rgba(245, 158, 11, .3))
}

/* BEFORE/AFTER SHOWCASE — PREMIUM DARK */
.ba-section {
    padding: 72px 0;
    background: linear-gradient(170deg, #0f172a 0%, #1b2a4a 40%, #162038 100%);
    position: relative;
    overflow: hidden
}

.ba-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(149, 191, 71, .08) 0%, transparent 65%);
    pointer-events: none
}

.ba-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 53, 69, .05) 0%, transparent 65%);
    pointer-events: none
}

.ba-showcase {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 28px;
    align-items: start;
    margin-top: 44px
}

/* Glass card wrapper */
.ba-card-inner {
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    padding: 24px;
    transition: all .4s
}

.ba-card-before .ba-card-inner:hover {
    border-color: rgba(220, 53, 69, .12)
}

.ba-card-after .ba-card-inner:hover {
    border-color: rgba(149, 191, 71, .15);
    box-shadow: 0 0 40px rgba(149, 191, 71, .06)
}

/* Badges */
.ba-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: .02em
}

.ba-badge-bad {
    background: rgba(220, 53, 69, .12);
    color: #f87171;
    border: 1px solid rgba(220, 53, 69, .2)
}

.ba-badge-good {
    background: rgba(149, 191, 71, .12);
    color: var(--green-l);
    border: 1px solid rgba(149, 191, 71, .25)
}

/* Browser frames */
.ba-browser-frame {
    border-radius: 12px;
    overflow: hidden;
    transition: all .5s cubic-bezier(.4, 0, .2, 1);
    position: relative
}

.ba-browser-dim {
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
    opacity: .75;
    filter: saturate(.4) brightness(.9)
}

.ba-browser-dim:hover {
    opacity: .6;
    filter: saturate(.2) brightness(.8)
}

.ba-browser-glow {
    border: 1px solid rgba(149, 191, 71, .25);
    box-shadow: 0 8px 40px rgba(149, 191, 71, .12), 0 0 80px rgba(149, 191, 71, .05), 0 2px 12px rgba(0, 0, 0, .2)
}

.ba-browser-glow:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 56px rgba(149, 191, 71, .2), 0 0 100px rgba(149, 191, 71, .08), 0 4px 16px rgba(0, 0, 0, .2)
}

.ba-topbar {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: rgba(30, 40, 60, .95)
}

.ba-topbar-pro {
    background: linear-gradient(135deg, rgba(30, 50, 40, .95), rgba(25, 45, 35, .95))
}

.ba-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%
}

.ba-dot.r {
    background: #ff605c
}

.ba-dot.y {
    background: #ffbd44
}

.ba-dot.g {
    background: #00ca4e
}

.ba-url-bar {
    flex: 1;
    margin-left: 8px;
    background: rgba(255, 255, 255, .08);
    border-radius: 4px;
    padding: 3px 10px;
    font-size: .6rem;
    color: rgba(255, 255, 255, .35);
    font-family: var(--body);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.ba-screen {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
    background: #1a1a2e
}

.ba-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.ba-screen-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px
}

.ba-screen-placeholder span {
    font-size: .72rem;
    font-weight: 600
}

.ba-ph-before {
    background: linear-gradient(135deg, #1a1a2e, #252540)
}

.ba-ph-before svg {
    color: rgba(255, 255, 255, .15)
}

.ba-ph-before span {
    color: rgba(255, 255, 255, .25)
}

.ba-ph-after {
    background: linear-gradient(135deg, #1a2e1a, #253025)
}

.ba-ph-after svg {
    color: rgba(149, 191, 71, .3)
}

.ba-ph-after span {
    color: rgba(149, 191, 71, .5)
}

/* Result stat overlay */
.ba-stat-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(149, 191, 71, .92);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 8px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(149, 191, 71, .3);
    animation: tagFloat 3s ease-in-out infinite
}

.ba-stat-num {
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -.02em
}

.ba-stat-label {
    font-size: .55rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    text-transform: uppercase;
    letter-spacing: .06em
}

/* Captions */
.ba-card-caption {
    margin-top: 18px
}

.ba-caption-list {
    display: flex;
    flex-direction: column;
    gap: 9px
}

.ba-caption-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 500;
    line-height: 1.4
}

.ba-caption-item.bad {
    color: rgba(255, 255, 255, .35)
}

.ba-caption-item.bad svg {
    color: #f87171;
    flex-shrink: 0
}

.ba-caption-item.good {
    color: rgba(255, 255, 255, .8)
}

.ba-caption-item.good svg {
    color: var(--green-l);
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(149, 191, 71, .4))
}

/* Center arrow */
.ba-center-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 52px;
    gap: 14px
}

.ba-arrow-track {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.ba-arrow-gradient {
    width: 3px;
    height: 90px;
    background: linear-gradient(180deg, #f87171, #fbbf24, var(--green-l));
    border-radius: 3px;
    position: absolute;
    opacity: .25
}

.ba-arrow-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-l));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(149, 191, 71, .3);
    position: relative;
    z-index: 1
}

.ba-arrow-icon svg {
    color: #fff;
    animation: arrowPulse 2s ease-in-out infinite
}

.ba-arrow-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(149, 191, 71, .2);
    animation: pulse-ring 2s ease-out infinite
}

@keyframes arrowPulse {

    0%,
    100% {
        transform: translateX(0);
        opacity: .7
    }

    50% {
        transform: translateX(3px);
        opacity: 1
    }
}

.ba-arrow-text {
    font-size: .6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .25);
    text-transform: uppercase;
    letter-spacing: .1em;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    margin-top: 4px
}

/* BUTTONS */
.btn-primary {
    padding: 15px 30px;
    border-radius: var(--radius);
    font-size: .92rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-h));
    border: none;
    cursor: pointer;
    font-family: var(--body);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 24px var(--orange-shadow), inset 0 1px 0 rgba(255, 255, 255, .2);
    position: relative;
    overflow: hidden
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    transition: .6s
}

.btn-primary:hover::before {
    left: 100%
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--orange-shadow)
}

.btn-outline {
    padding: 14px 24px;
    border-radius: var(--radius);
    font-size: .88rem;
    font-weight: 600;
    color: var(--navy);
    background: rgba(255, 255, 255, .8);
    border: 1.5px solid var(--border-3);
    cursor: pointer;
    font-family: var(--body);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 7px
}

.btn-outline:hover {
    border-color: var(--green);
    color: var(--green-d);
    background: var(--green-bg);
    box-shadow: 0 4px 16px rgba(149, 191, 71, .1)
}

/* FORM */
.hero-form-wrap {
    animation: slide-in-right .7s ease .2s both;
    perspective: 1000px
}

.hero-form {
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(28px) saturate(1.6);
    border: 1px solid rgba(149, 191, 71, .12);
    border-radius: var(--radius-xl);
    padding: 30px 26px;
    position: relative;
    box-shadow: 0 12px 48px rgba(0, 0, 0, .08), 0 2px 8px rgba(0, 0, 0, .04), inset 0 1px 0 rgba(255, 255, 255, .6);
    transform: rotateY(-1deg) rotateX(1deg);
    transition: transform .4s ease, box-shadow .4s
}

.hero-form:hover {
    transform: rotateY(0) rotateX(0);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .1), 0 4px 12px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .6)
}

.hero-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--orange), var(--green));
    background-size: 200% 100%;
    border-radius: 3px 3px 0 0;
    animation: shimmer 4s linear infinite
}

.hero-form::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(149, 191, 71, .18), rgba(232, 117, 10, .1), rgba(149, 191, 71, .12));
    z-index: -1;
    opacity: 0;
    transition: opacity .4s
}

.hero-form:hover::after {
    opacity: 1
}

.hero-form h3 {
    font-family: var(--display);
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 2px;
    font-weight: 700
}

.hero-form .form-sub {
    font-size: .77rem;
    color: var(--text-3);
    margin-bottom: 14px;
    line-height: 1.6
}

.form-group {
    margin-bottom: 10px
}

.form-group label {
    display: block;
    font-size: .7rem;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 3px;
    letter-spacing: .02em
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    background: rgba(255, 255, 255, .8);
    border: 1.5px solid var(--border-2);
    border-radius: var(--radius);
    font-family: var(--body);
    font-size: .85rem;
    color: var(--text);
    transition: all .3s ease
}

.form-group input::placeholder {
    color: var(--text-3)
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px var(--green-bg), 0 4px 20px rgba(149, 191, 71, .12);
    background: #fff
}

.form-group select {
    cursor: pointer;
    color: var(--text-2)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.btn-form {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--orange), var(--orange-h));
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: var(--body);
    font-weight: 700;
    font-size: .88rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    box-shadow: 0 4px 20px var(--orange-shadow), inset 0 1px 0 rgba(255, 255, 255, .15);
    position: relative;
    overflow: hidden
}

.btn-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    transition: .6s
}

.btn-form:hover::before {
    left: 100%
}

.btn-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px var(--orange-shadow)
}

.form-note {
    text-align: center;
    font-size: .63rem;
    color: var(--text-3);
    margin-top: 8px;
    line-height: 1.5
}

.form-note a {
    color: var(--green-d);
    font-weight: 600
}

.form-urgency {
    text-align: center;
    font-size: .68rem;
    color: var(--orange);
    font-weight: 700;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px
}

.field-error {
    display: none;
    font-size: .65rem;
    color: #DC2626;
    margin-top: 2px
}

.submitted input:invalid~.field-error,
.submitted select:invalid~.field-error {
    display: block
}

.discount-badge {
    background: linear-gradient(135deg, var(--navy), var(--navy-l));
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 10px;
    box-shadow: 0 4px 16px rgba(27, 42, 74, .2);
    letter-spacing: .02em
}

.btn-form.loading {
    pointer-events: none;
    opacity: .7
}

.btn-form .btn-text {
    display: inline
}

.btn-form.loading .btn-text {
    display: none
}

.btn-form .spinner-wrap {
    display: none
}

.btn-form.loading .spinner-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .6s linear infinite
}

/* TRUST BAR */
.trust-bar {
    background: linear-gradient(135deg, var(--navy-d), var(--navy), var(--navy-l));
    padding: 24px 0;
    position: relative;
    overflow: hidden
}

.trust-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(149, 191, 71, .06), transparent);
    animation: shimmer 4s linear infinite;
    background-size: 200% 100%
}

.trust-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(149, 191, 71, .04) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none
}

.trust-bar .container {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

.trust-item {
    text-align: center;
    animation: countUp .6s ease both
}

.trust-item:nth-child(2) {
    animation-delay: .1s
}

.trust-item:nth-child(3) {
    animation-delay: .2s
}

.trust-item:nth-child(4) {
    animation-delay: .3s
}

.trust-item:nth-child(5) {
    animation-delay: .4s
}

.trust-num {
    font-family: var(--display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--green);
    text-shadow: 0 0 30px var(--green-glow), 0 0 60px rgba(149, 191, 71, .1)
}

.trust-label {
    font-size: .65rem;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600
}

/* SECTIONS */
.section {
    padding: 80px 0;
    position: relative
}

.section-alt {
    background: var(--bg-2)
}

.section-dark {
    background: linear-gradient(170deg, var(--navy-d) 0%, var(--navy) 50%, var(--navy-l) 100%);
    color: #fff;
    overflow: hidden;
    position: relative
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(149, 191, 71, .08) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: .5;
    pointer-events: none
}

.section-dark::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(149, 191, 71, .08), transparent 60%);
    animation: floatOrb 20s ease-in-out infinite;
    pointer-events: none
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--green-bg);
    border: 1px solid var(--green-border);
    padding: 5px 16px;
    border-radius: 100px;
    font-size: .67rem;
    font-weight: 700;
    color: var(--green-d);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 12px;
    animation: tagFloat 3s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(149, 191, 71, .06)
}

.section-dark .section-tag {
    background: rgba(149, 191, 71, .12);
    border-color: rgba(149, 191, 71, .25);
    color: var(--green-l)
}

.section-title {
    font-family: var(--display);
    font-size: 2.1rem;
    color: var(--navy);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -.02em
}

.section-dark .section-title {
    color: #fff
}

.section-desc {
    font-size: .9rem;
    color: var(--text-2);
    max-width: 600px;
    line-height: 1.85
}

.section-dark .section-desc {
    color: rgba(255, 255, 255, .65)
}

.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

/* SERVICE SECTION — enhanced mini cards */
.svc-section {
    padding: 56px 0;
    background: linear-gradient(180deg, #f7f8fa 0%, #fff 100%);
    position: relative;
    overflow: hidden
}

.svc-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(149, 191, 71, .06) 0%, transparent 65%);
    pointer-events: none
}

.svc-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px
}

.svc-mini {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden
}

.svc-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--green-l));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1)
}

.svc-mini:hover::before {
    transform: scaleX(1)
}

.svc-mini:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .06);
    border-color: var(--green-border)
}

.svc-mini-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--green-bg), var(--green-bg2));
    border: 1px solid var(--green-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .4s;
    box-shadow: 0 2px 8px rgba(149, 191, 71, .08)
}

.svc-mini-icon svg {
    color: var(--green-d);
    filter: drop-shadow(0 0 3px rgba(149, 191, 71, .2))
}

.svc-mini:hover .svc-mini-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 4px 16px rgba(149, 191, 71, .15);
    background: linear-gradient(135deg, var(--green-bg2), var(--green-bg))
}

.svc-mini-text h4 {
    font-family: var(--display);
    font-size: .85rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 3px;
    line-height: 1.3
}

.svc-mini-text p {
    font-size: .74rem;
    color: var(--text-2);
    line-height: 1.5;
    margin: 0
}

/* PROCESS - glowing steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 36px;
    perspective: 1000px
}

.step {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    position: relative;
    transition: all .4s;
    overflow: hidden
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--green-l));
    transform: scaleX(0);
    transition: transform .5s;
    transform-origin: left
}

.step::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(149, 191, 71, .06), transparent);
    opacity: 0;
    transition: opacity .4s
}

.step:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(149, 191, 71, .35);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .2), 0 0 30px rgba(149, 191, 71, .06)
}

.step:hover::after {
    opacity: 1
}

.step:hover::before {
    transform: scaleX(1)
}

.step-num {
    font-family: var(--display);
    font-size: 2.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--green), var(--green-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 12px rgba(149, 191, 71, .2))
}

.step h4 {
    font-family: var(--display);
    font-size: .92rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 6px;
    position: relative;
    z-index: 1
}

.step p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.75;
    position: relative;
    z-index: 1
}

/* PRICING — TIERED SYSTEM */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-2);
    position: relative;
    overflow: hidden
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(149, 191, 71, .04), transparent 60%);
    pointer-events: none
}

/* Scarcity bar */
.pricing-scarcity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(27, 42, 74, .04), rgba(232, 117, 10, .04));
    border: 1px solid rgba(232, 117, 10, .12);
    border-radius: var(--radius);
    padding: 12px 20px;
    max-width: 600px;
    margin: 0 auto 20px;
    font-size: .8rem;
    color: var(--text-2);
    font-weight: 500;
    text-align: center
}

.pricing-scarcity svg {
    color: var(--orange);
    flex-shrink: 0
}

/* Qualification filter */
.pricing-filter {
    display: flex;
    align-items: stretch;
    gap: 12px;
    max-width: 660px;
    margin: 0 auto 36px;
    position: relative
}

.pricing-filter-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .85);
    border: 1.5px solid var(--border-2);
    border-radius: var(--radius);
    padding: 14px 18px;
    cursor: pointer;
    transition: all .35s;
    font-size: .8rem;
    color: var(--text-2);
    font-weight: 500
}

.pricing-filter-card:hover,
.pricing-filter-card.active {
    border-color: var(--green);
    background: var(--green-bg);
    color: var(--green-d)
}

.pricing-filter-card svg {
    flex-shrink: 0;
    color: var(--green)
}

.pricing-filter-card strong {
    color: var(--navy);
    font-weight: 700
}

.pricing-filter-or {
    display: flex;
    align-items: center;
    font-size: .65rem;
    color: var(--text-3);
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase
}

/* Tier row */
.pricing-tier {
    margin-bottom: 40px;
    position: relative
}

.pricing-tier:last-child {
    margin-bottom: 0
}

.pricing-tier-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px
}

.pricing-tier-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.pricing-tier-starter .pricing-tier-icon {
    background: linear-gradient(135deg, rgba(149, 191, 71, .1), rgba(149, 191, 71, .05));
    border: 1px solid rgba(149, 191, 71, .18)
}

.pricing-tier-growth .pricing-tier-icon {
    background: linear-gradient(135deg, rgba(232, 117, 10, .08), rgba(232, 117, 10, .04));
    border: 1px solid rgba(232, 117, 10, .15)
}

.pricing-tier-label {
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy)
}

.pricing-tier-sub {
    font-size: .75rem;
    color: var(--text-3);
    font-weight: 400
}

/* Card grid */
.pricing-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

/* Cards */
.pc {
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-xl);
    padding: 24px 20px;
    transition: all .4s;
    position: relative;
    overflow: hidden
}

.pc::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(149, 191, 71, .02), transparent, rgba(232, 117, 10, .01), transparent);
    animation: gradient-rotate 25s linear infinite;
    pointer-events: none
}

.pc:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .07)
}

/* Featured card */
.pc.pc-featured {
    border-color: var(--green);
    box-shadow: 0 0 0 1px var(--green), 0 12px 48px rgba(149, 191, 71, .1);
    transform: scale(1.03)
}

.pc.pc-featured:hover {
    transform: scale(1.05) translateY(-6px)
}

.pc.pc-featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--green), var(--green-l));
    color: #fff;
    font-size: .55rem;
    font-weight: 800;
    padding: 3px 14px;
    border-radius: 0 0 10px 10px;
    letter-spacing: .08em;
    box-shadow: 0 4px 12px rgba(149, 191, 71, .2);
    z-index: 2
}

/* Growth tier cards = deeper visual weight */
.pricing-tier-growth .pc {
    background: rgba(255, 255, 255, .92);
    border-color: var(--border-3)
}

.pricing-tier-growth .pc:not(.pc-featured) {
    box-shadow: 0 4px 24px rgba(0, 0, 0, .04)
}

/* Card internals */
.pc-name {
    font-family: var(--display);
    font-size: .78rem;
    color: var(--text-3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 4px;
    position: relative;
    z-index: 1
}

.pc-price {
    font-family: var(--display);
    font-size: 2rem;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
    line-height: 1.1
}

.pc-price span {
    font-size: .75rem;
    color: var(--text-3);
    font-weight: 400
}

.pc-ideal {
    font-size: .7rem;
    color: var(--text-3);
    font-style: italic;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    line-height: 1.5
}

/* Feature list — 5 max visible */
.pc-features {
    list-style: none;
    margin-bottom: 14px;
    position: relative;
    z-index: 1
}

.pc-features li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    padding: 3px 0;
    font-size: .74rem;
    color: var(--text-2)
}

.pc-features li svg {
    width: 14px;
    height: 14px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 1px
}

/* Expandable details */
.pc-expand {
    font-size: .68rem;
    color: var(--green-d);
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 14px;
    transition: color .3s;
    position: relative;
    z-index: 1;
    background: none;
    border: none;
    padding: 0;
    font-family: var(--body)
}

.pc-expand:hover {
    color: var(--orange)
}

.pc-expand svg {
    transition: transform .3s
}

.pc-expand.open svg {
    transform: rotate(180deg)
}

.pc-extra {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease
}

.pc-extra.open {
    max-height: 200px
}

.pc-extra ul {
    list-style: none;
    padding: 0 0 10px;
    border-top: 1px solid var(--border);
    margin-top: 6px;
    padding-top: 8px
}

.pc-extra ul li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    padding: 3px 0;
    font-size: .72rem;
    color: var(--text-3)
}

.pc-extra ul li svg {
    width: 13px;
    height: 13px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 1px;
    opacity: .6
}

/* CTA buttons */
.pc-btn {
    width: 100%;
    padding: 11px;
    border-radius: var(--radius);
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--body);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.pc-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    transition: .5s
}

.pc-btn:hover::before {
    left: 100%
}

.pc.pc-featured .pc-btn {
    background: linear-gradient(135deg, var(--orange), var(--orange-h));
    color: #fff;
    box-shadow: 0 4px 20px var(--orange-shadow)
}

.pc.pc-featured .pc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--orange-shadow)
}

.pc:not(.pc-featured) .pc-btn {
    background: transparent;
    color: var(--green-d);
    border: 1.5px solid var(--green-border)
}

.pc:not(.pc-featured) .pc-btn:hover {
    background: var(--green-bg);
    border-color: var(--green);
    box-shadow: 0 4px 16px rgba(149, 191, 71, .1)
}

/* Tier divider */
.pricing-tier-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0 36px;
    padding: 0 4px
}

.pricing-tier-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-3), transparent)
}

.pricing-tier-divider-text {
    font-size: .72rem;
    color: var(--text-3);
    font-weight: 500;
    font-style: italic;
    text-align: center;
    max-width: 400px;
    line-height: 1.6
}

/* Upgrade ladder */
.pricing-ladder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
    flex-wrap: wrap
}

.pricing-ladder-step {
    font-family: var(--display);
    font-size: .72rem;
    font-weight: 700;
    color: var(--text-3);
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .6);
    border: 1px solid var(--border);
    transition: all .3s
}

.pricing-ladder-step:hover {
    border-color: var(--green-border);
    color: var(--green-d)
}

.pricing-ladder-arrow {
    color: var(--text-3);
    font-size: .6rem;
    opacity: .4
}

.pricing-ladder-caption {
    width: 100%;
    text-align: center;
    font-size: .68rem;
    color: var(--text-3);
    margin-top: 8px;
    font-style: italic
}

/* TESTIMONIALS - glowing borders */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 36px
}

.testi {
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 22px;
    transition: all .4s;
    position: relative;
    overflow: hidden
}

.testi::before {
    content: '\201C';
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 3.5rem;
    background: linear-gradient(135deg, rgba(149, 191, 71, .1), rgba(149, 191, 71, .04));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: Georgia, serif;
    line-height: 1
}

.testi::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, rgba(149, 191, 71, .02));
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s
}

.testi:hover::after {
    opacity: 1
}

.testi:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .06);
    border-color: var(--green-border)
}

.testi-text {
    font-size: .82rem;
    color: var(--text-2);
    line-height: 1.85;
    margin-bottom: 14px;
    font-style: italic
}

.testi-text strong {
    color: var(--green-d);
    font-style: normal;
    font-weight: 600
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 10px
}

.testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-bg2), var(--green-bg));
    border: 2px solid var(--green-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
    color: var(--green-d);
    box-shadow: 0 4px 12px rgba(149, 191, 71, .1)
}

.testi-name {
    font-size: .8rem;
    font-weight: 600;
    color: var(--navy)
}

.testi-source {
    font-size: .64rem;
    color: var(--text-3)
}

.testi-industry {
    font-size: .66rem;
    font-weight: 600;
    color: var(--green-d);
    background: var(--green-bg);
    border: 1px solid var(--green-border);
    border-radius: 100px;
    padding: 3px 12px;
    display: inline-block;
    margin-bottom: 10px;
    letter-spacing: .02em
}

/* RISK REVERSAL */
.risk-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 32px
}

.risk-card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--green-border);
    border-radius: var(--radius-lg);
    padding: 22px 16px;
    text-align: center;
    transition: all .4s
}

.risk-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.risk-card svg {
    margin-bottom: 8px
}

.risk-title {
    font-family: var(--display);
    font-size: .82rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px
}

.risk-desc {
    font-size: .72rem;
    color: var(--text-3);
    line-height: 1.5
}

/* RISK REVERSAL BLOCK — PREMIUM REDESIGN */
.risk-reversal-block {
    margin-top: 48px;
    background: linear-gradient(160deg, var(--navy-d) 0%, var(--navy) 45%, var(--navy-l) 100%);
    border-radius: var(--radius-xl);
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(27, 42, 74, .2), 0 4px 16px rgba(0, 0, 0, .08)
}

/* Mesh gradient orb */
.risk-reversal-block::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(149, 191, 71, .14) 0%, transparent 60%);
    animation: floatOrb 18s ease-in-out infinite;
    pointer-events: none
}

.risk-reversal-block::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 117, 10, .06) 0%, transparent 55%);
    animation: floatOrb 22s ease-in-out infinite 5s;
    pointer-events: none
}

/* Dot grid texture */
.rrb-texture {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(149, 191, 71, .06) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    opacity: .6
}

/* Top accent bar */
.rrb-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--green-l), var(--orange-l), var(--green));
    background-size: 300% 100%;
    animation: shimmer 5s linear infinite;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0
}

/* Inner wrap */
.rrb-inner {
    position: relative;
    z-index: 1;
    padding: 40px 36px 36px
}

/* Header row with shield */
.rrb-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 32px
}

.rrb-shield {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(149, 191, 71, .15), rgba(149, 191, 71, .06));
    border: 2px solid rgba(149, 191, 71, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 24px rgba(149, 191, 71, .12), 0 0 48px rgba(149, 191, 71, .06);
    animation: pulse-ring 3s ease infinite;
    flex-shrink: 0
}

.rrb-shield svg {
    filter: drop-shadow(0 0 8px rgba(149, 191, 71, .4))
}

.rrb-header-text h3 {
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -.01em
}

.rrb-header-text p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 3px;
    font-weight: 400
}

/* 4 Guarantee cards grid */
.rrb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 28px
}

.rrb-card {
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(149, 191, 71, .12);
    border-radius: var(--radius-lg);
    padding: 24px 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all .45s cubic-bezier(.4, 0, .2, 1)
}

.rrb-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(149, 191, 71, .06), transparent 60%);
    opacity: 0;
    transition: opacity .4s
}

.rrb-card:hover::before {
    opacity: 1
}

.rrb-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(149, 191, 71, .3), transparent);
    opacity: 0;
    transition: opacity .4s
}

.rrb-card:hover::after {
    opacity: 1
}

.rrb-card:hover {
    transform: translateY(-6px);
    border-color: rgba(149, 191, 71, .3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .2), 0 0 20px rgba(149, 191, 71, .06)
}

/* Icon circle */
.rrb-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(149, 191, 71, .12), rgba(149, 191, 71, .06));
    border: 1px solid rgba(149, 191, 71, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: all .4s;
    box-shadow: 0 4px 16px rgba(149, 191, 71, .08)
}

.rrb-card:hover .rrb-icon {
    transform: scale(1.12) rotate(-3deg);
    box-shadow: 0 8px 28px rgba(149, 191, 71, .15);
    border-color: rgba(149, 191, 71, .35)
}

.rrb-icon svg {
    filter: drop-shadow(0 0 4px rgba(149, 191, 71, .25))
}

.rrb-card-title {
    font-family: var(--display);
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.25
}

.rrb-card-desc {
    font-size: .72rem;
    color: rgba(255, 255, 255, .48);
    line-height: 1.6
}

/* Bottom trust strip */
.rrb-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 16px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.rrb-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .45);
    transition: color .3s
}

.rrb-trust-badge:hover {
    color: rgba(255, 255, 255, .7)
}

.rrb-trust-badge svg {
    color: var(--green);
    filter: drop-shadow(0 0 3px rgba(149, 191, 71, .2))
}

.rrb-trust-sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, .1)
}

/* COMPARISON SECTION — PREMIUM REDESIGN */
.compare-section {
    padding: 80px 0;
    background: linear-gradient(170deg, var(--navy-d) 0%, var(--navy) 50%, var(--navy-l) 100%);
    position: relative;
    overflow: hidden
}

.compare-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(149, 191, 71, .05) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: .6;
    pointer-events: none
}

.compare-section::after {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(149, 191, 71, .06) 0%, transparent 55%);
    animation: floatOrb 20s ease-in-out infinite;
    pointer-events: none
}

.compare-section .section-tag {
    background: rgba(149, 191, 71, .12);
    border-color: rgba(149, 191, 71, .25);
    color: var(--green-l)
}

.compare-section .section-title {
    color: #fff
}

.compare-section .section-desc {
    color: rgba(255, 255, 255, .6)
}

/* Grid layout */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 64px 1fr;
    gap: 0;
    margin-top: 40px;
    align-items: stretch;
    position: relative;
    z-index: 1
}

/* Shared card styles */
.compare-card {
    border-radius: var(--radius-xl);
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all .5s cubic-bezier(.4, 0, .2, 1)
}

/* --- BAD SIDE --- */
.compare-bad {
    background: rgba(220, 38, 38, .03);
    border: 1px solid rgba(220, 38, 38, .12)
}

.compare-bad:hover {
    box-shadow: 0 16px 48px rgba(220, 38, 38, .08);
    border-color: rgba(220, 38, 38, .2)
}

/* Red accent bar top */
.compare-bad::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #DC2626, #EF4444, #DC2626);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0
}

/* Noise/static overlay for "broken" feel */
.compare-bad::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(220, 38, 38, .015) 2px, rgba(220, 38, 38, .015) 4px);
    pointer-events: none
}

/* Card header */
.compare-header {
    padding: 28px 28px 0;
    position: relative;
    z-index: 1
}

.compare-icon-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px
}

.compare-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.compare-bad .compare-icon-circle {
    background: rgba(220, 38, 38, .08);
    border: 1.5px solid rgba(220, 38, 38, .18)
}

.compare-good .compare-icon-circle {
    background: rgba(149, 191, 71, .1);
    border: 1.5px solid rgba(149, 191, 71, .25);
    box-shadow: 0 0 20px rgba(149, 191, 71, .08)
}

.compare-badge {
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px
}

.compare-bad .compare-badge {
    background: rgba(220, 38, 38, .08);
    color: #EF4444;
    border: 1px solid rgba(220, 38, 38, .15)
}

.compare-good .compare-badge {
    background: rgba(149, 191, 71, .1);
    color: var(--green-l);
    border: 1px solid rgba(149, 191, 71, .2)
}

.compare-card-title {
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 4px;
    position: relative;
    z-index: 1
}

.compare-bad .compare-card-title {
    color: rgba(255, 255, 255, .85)
}

.compare-good .compare-card-title {
    color: #fff
}

.compare-card-sub {
    font-size: .76rem;
    line-height: 1.6;
    position: relative;
    z-index: 1
}

.compare-bad .compare-card-sub {
    color: rgba(255, 255, 255, .35)
}

.compare-good .compare-card-sub {
    color: rgba(255, 255, 255, .45)
}

/* Items list */
.compare-items {
    padding: 20px 28px 28px;
    position: relative;
    z-index: 1
}

.compare-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius);
    margin-bottom: 6px;
    transition: all .35s cubic-bezier(.4, 0, .2, 1)
}

.compare-item:last-child {
    margin-bottom: 0
}

.compare-bad .compare-item {
    background: rgba(220, 38, 38, .03);
    border: 1px solid rgba(220, 38, 38, .06)
}

.compare-bad .compare-item:hover {
    background: rgba(220, 38, 38, .06);
    border-color: rgba(220, 38, 38, .12);
    transform: translateX(-3px)
}

.compare-good .compare-item {
    background: rgba(149, 191, 71, .04);
    border: 1px solid rgba(149, 191, 71, .08)
}

.compare-good .compare-item:hover {
    background: rgba(149, 191, 71, .08);
    border-color: rgba(149, 191, 71, .18);
    transform: translateX(3px)
}

/* Item icon */
.compare-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px
}

.compare-bad .compare-item-icon {
    background: rgba(220, 38, 38, .08);
    border: 1px solid rgba(220, 38, 38, .1)
}

.compare-good .compare-item-icon {
    background: rgba(149, 191, 71, .08);
    border: 1px solid rgba(149, 191, 71, .15)
}

.compare-item-text {
    font-size: .82rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.6
}

.compare-item-text strong {
    font-weight: 600
}

.compare-bad .compare-item-text strong {
    color: rgba(239, 68, 68, .8)
}

.compare-good .compare-item-text strong {
    color: var(--green-l)
}

/* --- GOOD SIDE --- */
.compare-good {
    background: rgba(149, 191, 71, .04);
    border: 1px solid rgba(149, 191, 71, .15)
}

.compare-good:hover {
    box-shadow: 0 16px 48px rgba(149, 191, 71, .08), 0 0 40px rgba(149, 191, 71, .04);
    border-color: rgba(149, 191, 71, .3)
}

.compare-good::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--green-l), var(--green));
    background-size: 200% 100%;
    animation: shimmer 4s linear infinite;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0
}

.compare-good::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(149, 191, 71, .06), transparent 65%);
    pointer-events: none
}

/* Center arrow */
.compare-center {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2
}

.compare-arrow-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.compare-arrow-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, rgba(220, 38, 38, .3), rgba(255, 255, 255, .1), rgba(149, 191, 71, .4));
    border-radius: 2px
}

.compare-arrow-orb {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-l));
    border: 2px solid rgba(149, 191, 71, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(27, 42, 74, .4), 0 0 24px rgba(149, 191, 71, .08);
    animation: pulse-ring 3s ease infinite;
    position: relative
}

.compare-arrow-orb::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(149, 191, 71, .1);
    animation: pulse-ring 3s ease infinite .5s
}

.compare-arrow-orb svg {
    filter: drop-shadow(0 0 6px rgba(149, 191, 71, .3))
}

/* Bottom stats bar */
.compare-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 36px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
    position: relative;
    z-index: 1
}

.compare-stat {
    text-align: center
}

.compare-stat-num {
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--green-l);
    text-shadow: 0 0 24px rgba(149, 191, 71, .15);
    line-height: 1
}

.compare-stat-label {
    font-size: .65rem;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
    margin-top: 4px
}

.compare-stat-sep {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, .08)
}

/* FAQ - enhanced */
.faq-list {
    max-width: 700px;
    margin: 32px auto 0
}

.faq-item {
    border-bottom: 1px solid var(--border-2);
    transition: var(--transition)
}

.faq-item:hover {
    border-color: var(--green-border)
}

.faq-q {
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--display);
    font-size: .9rem;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition)
}

.faq-q:hover {
    color: var(--green-d);
    padding-left: 4px
}

.faq-q svg {
    width: 18px;
    height: 18px;
    color: var(--text-3);
    transition: all .3s;
    flex-shrink: 0
}

.faq-item.open .faq-q svg {
    transform: rotate(180deg);
    color: var(--green);
    filter: drop-shadow(0 0 4px rgba(149, 191, 71, .3))
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease
}

.faq-item.open .faq-a {
    max-height: 300px
}

.faq-a-inner {
    padding: 0 0 18px;
    font-size: .84rem;
    color: var(--text-2);
    line-height: 1.85
}

/* BOTTOM FORM */
.bottom-form-section {
    padding: 72px 0;
    background: var(--bg-2);
    position: relative;
    overflow: hidden
}

.bottom-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(149, 191, 71, .04), transparent 60%);
    pointer-events: none
}

.bottom-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-top: 28px;
    align-items: start
}

.bottom-info h3 {
    font-family: var(--display);
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 10px
}

.bottom-info p {
    font-size: .84rem;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 16px
}

.contact-list {
    list-style: none
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: .84rem;
    color: var(--text-2);
    transition: var(--transition)
}

.contact-list li:hover {
    transform: translateX(3px)
}

.contact-list li svg {
    width: 16px;
    height: 16px;
    color: var(--green);
    flex-shrink: 0;
    filter: drop-shadow(0 0 3px rgba(149, 191, 71, .2))
}

.contact-list a {
    color: var(--green-d);
    font-weight: 600;
    transition: var(--transition)
}

.contact-list a:hover {
    color: var(--orange)
}

/* FOOTER */
.footer {
    background: linear-gradient(180deg, var(--navy-d), #080E1A);
    padding: 32px 0;
    color: rgba(255, 255, 255, .6);
    position: relative;
    overflow: hidden
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(149, 191, 71, .2), transparent)
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 20px
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.footer-links a {
    font-size: .75rem;
    color: rgba(255, 255, 255, .5);
    transition: var(--transition)
}

.footer-links a:hover {
    color: var(--green-l)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: .65rem;
    color: rgba(255, 255, 255, .35)
}

/* RESPONSIVE */
@media(max-width:900px) {

    .hero .container,
    .bottom-form-grid {
        grid-template-columns: 1fr
    }

    .testi-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .pricing-row {
        grid-template-columns: repeat(3, 1fr)
    }

    .pricing-filter {
        flex-direction: column
    }

    .pricing-filter-or {
        justify-content: center
    }

    .compare-grid {
        grid-template-columns: 1fr;
        gap: 0
    }

    .ba-showcase {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .ba-center-arrow {
        flex-direction: row;
        padding-top: 0;
        gap: 10px
    }

    .ba-arrow-gradient {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #f87171, #fbbf24, var(--green-l))
    }

    .ba-arrow-text {
        writing-mode: horizontal-tb;
        transform: none
    }

    .svc-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px
    }

    .compare-center {
        padding: 12px 0;
        transform: none
    }

    .compare-arrow-wrap {
        flex-direction: row
    }

    .compare-arrow-line {
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, rgba(220, 38, 38, .3), rgba(255, 255, 255, .1), rgba(149, 191, 71, .4))
    }

    .compare-arrow-orb {
        width: 44px;
        height: 44px
    }

    .compare-stats {
        gap: 20px;
        flex-wrap: wrap
    }

    .hero h1 {
        font-size: 2rem
    }

    .section-title {
        font-size: 1.6rem
    }

    .trust-bar .container {
        gap: 24px
    }

    .risk-grid {
        grid-template-columns: 1fr 1fr !important
    }

    .rrb-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:640px) {

    /* NAV: compact, no overlap */
    .nav {
        padding: 8px 0
    }

    .nav .container {
        padding: 0 16px
    }

    .nav-logo {
        font-size: .95rem
    }

    .nav-phone,
    .nav-trust {
        display: none
    }

    .btn-nav {
        display: none
    }

    .btn-nav-call {
        display: inline-flex
    }

    /* HERO: tighter spacing, readable gradient text */
    .hero {
        padding: 28px 0 36px
    }

    .hero h1 {
        font-size: 1.55rem;
        line-height: 1.18
    }

    .hero h1 em {
        -webkit-text-fill-color: var(--green);
        background: none
    }

    .hero-sub {
        font-size: .88rem;
        margin-bottom: 16px
    }

    .hero-checks li {
        font-size: .8rem;
        padding: 4px 0
    }

    /* BEFORE/AFTER section mobile */
    .ba-card-badge {
        font-size: .62rem;
        padding: 4px 10px
    }

    .ba-card-inner {
        padding: 18px
    }

    .ba-caption-item {
        font-size: .72rem
    }

    .ba-stat-overlay {
        padding: 6px 10px;
        bottom: 8px;
        right: 8px
    }

    .ba-stat-num {
        font-size: 1rem
    }

    .ba-stat-label {
        font-size: .48rem
    }

    .ba-arrow-icon {
        width: 36px;
        height: 36px
    }

    .ba-arrow-icon svg {
        width: 16px;
        height: 16px
    }

    .ba-arrow-ring {
        inset: -4px
    }

    .btn-primary {
        padding: 13px 24px;
        font-size: .85rem;
        width: 100%;
        justify-content: center
    }

    .btn-outline {
        padding: 12px 20px;
        font-size: .82rem;
        width: 100%;
        justify-content: center
    }

    .hero-proof {
        font-size: .72rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px
    }

    .hero-proof .stars {
        font-size: .85rem
    }

    /* FORM: full width fields */
    .hero-form {
        padding: 24px 20px;
        border-radius: var(--radius-lg)
    }

    .hero-form h3 {
        font-size: 1rem
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .discount-badge {
        font-size: .62rem;
        padding: 4px 10px
    }

    /* TRUST BAR: 2-column grid */
    .trust-bar .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 20px;
        justify-items: center
    }

    .trust-num {
        font-size: 1.15rem
    }

    .trust-label {
        font-size: .58rem
    }

    /* GRIDS: single column */
    .process-grid,
    .pricing-row,
    .testi-grid {
        grid-template-columns: 1fr
    }

    /* SERVICE GRID mobile */
    .svc-grid-new {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .svc-mini {
        padding: 16px
    }

    .svc-mini-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px
    }

    .svc-mini-icon svg {
        width: 16px;
        height: 16px
    }

    .svc-mini-text h4 {
        font-size: .8rem
    }

    .svc-mini-text p {
        font-size: .7rem
    }

    /* COMPARISON mobile */
    .compare-section {
        padding: 52px 0
    }

    .compare-grid {
        grid-template-columns: 1fr;
        gap: 0
    }

    .compare-header {
        padding: 22px 20px 0
    }

    .compare-items {
        padding: 16px 20px 22px
    }

    .compare-card {
        border-radius: var(--radius-lg)
    }

    .compare-card-title {
        font-size: .92rem
    }

    .compare-icon-circle {
        width: 40px;
        height: 40px
    }

    .compare-item {
        padding: 10px 12px;
        gap: 10px;
        margin-bottom: 4px
    }

    .compare-item-icon {
        width: 28px;
        height: 28px;
        border-radius: 8px
    }

    .compare-item-icon svg {
        width: 13px;
        height: 13px
    }

    .compare-item-text {
        font-size: .76rem
    }

    .compare-center {
        padding: 8px 0
    }

    .compare-arrow-wrap {
        flex-direction: row
    }

    .compare-arrow-line {
        width: 32px;
        height: 2px;
        background: linear-gradient(90deg, rgba(220, 38, 38, .3), rgba(255, 255, 255, .1), rgba(149, 191, 71, .4))
    }

    .compare-arrow-orb {
        width: 40px;
        height: 40px
    }

    .compare-arrow-orb svg {
        width: 16px;
        height: 16px
    }

    .compare-stats {
        gap: 16px;
        margin-top: 24px;
        padding-top: 16px
    }

    .compare-stat-num {
        font-size: 1.1rem
    }

    .compare-stat-label {
        font-size: .58rem
    }

    /* SECTION spacing */
    .section-title {
        font-size: 1.45rem
    }

    .section-desc {
        font-size: .84rem
    }

    .section-tag {
        font-size: .6rem;
        padding: 4px 12px
    }

    /* FAQ: more room for touch */
    .faq-q {
        padding: 16px 0;
        font-size: .84rem
    }

    .faq-a-inner {
        font-size: .8rem
    }

    /* BOTTOM FORM: tighter */
    .bottom-form-grid {
        gap: 24px
    }

    .bottom-info h3 {
        font-size: 1rem
    }

    .bottom-info p {
        font-size: .8rem
    }

    /* FOOTER */
    .footer-top {
        flex-direction: column;
        gap: 16px
    }

    .footer-links {
        gap: 14px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 4px;
        text-align: center
    }

    /* Hide heavy decorative elements on mobile for perf */
    .hero::before,
    .hero-dots,
    .hero-bg-orb3 {
        display: none
    }

    .hero-bg-orb1 {
        width: 300px;
        height: 300px;
        top: -80px;
        right: -40px
    }

    .hero-bg-orb2 {
        width: 250px;
        height: 250px
    }

    body::after {
        display: none
    }

    /* Reduce GPU-heavy effects on mobile */
    .nav {
        backdrop-filter: blur(12px)
    }

    .hero-form {
        backdrop-filter: blur(12px)
    }

    /* PROCESS GRID collapse on mobile */
    .process-grid {
        gap: 10px
    }

    .step {
        padding: 22px 18px
    }

    /* PRICING compress spacing */
    .pricing-section {
        padding: 52px 0
    }

    .pricing-row {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .pc {
        padding: 18px 16px;
        border-radius: var(--radius-lg)
    }

    .pc.pc-featured {
        transform: scale(1)
    }

    .pc.pc-featured:hover {
        transform: translateY(-4px)
    }

    .pc-price {
        font-size: 1.7rem
    }

    .pc-features li {
        font-size: .72rem;
        padding: 2px 0
    }

    .pc-btn {
        padding: 10px;
        font-size: .76rem
    }

    .pc-name {
        font-size: .72rem
    }

    .pricing-scarcity {
        font-size: .74rem;
        padding: 10px 16px
    }

    .pricing-filter {
        gap: 8px;
        margin-bottom: 24px
    }

    .pricing-filter-card {
        padding: 12px 14px;
        font-size: .75rem
    }

    .pricing-tier-header {
        margin-bottom: 14px
    }

    .pricing-tier-divider {
        margin: 4px 0 24px
    }

    .pricing-tier-divider-text {
        font-size: .66rem
    }

    .pricing-ladder-step {
        font-size: .62rem;
        padding: 3px 8px
    }

    .pricing-ladder-caption {
        font-size: .62rem
    }

    /* RISK REVERSAL mobile */
    .risk-reversal-block {
        margin-top: 28px;
        border-radius: var(--radius-lg)
    }

    .rrb-inner {
        padding: 28px 18px 24px
    }

    .rrb-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-bottom: 22px
    }

    .rrb-shield {
        width: 48px;
        height: 48px
    }

    .rrb-shield svg {
        width: 24px;
        height: 24px
    }

    .rrb-header-text h3 {
        font-size: 1.1rem
    }

    .rrb-header-text p {
        font-size: .72rem
    }

    .rrb-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 20px
    }

    .rrb-card {
        padding: 18px 14px
    }

    .rrb-icon {
        width: 40px;
        height: 40px;
        border-radius: 11px;
        margin-bottom: 10px
    }

    .rrb-icon svg {
        width: 20px;
        height: 20px
    }

    .rrb-card-title {
        font-size: .78rem;
        margin-bottom: 3px
    }

    .rrb-card-desc {
        font-size: .66rem
    }

    .rrb-trust-strip {
        gap: 12px;
        flex-direction: column;
        align-items: center;
        padding-top: 14px
    }

    .rrb-trust-sep {
        display: none
    }

    .rrb-trust-badge {
        font-size: .66rem
    }

    /* REDUCE VERTICAL PADDING globally on mobile */
    .section {
        padding: 44px 0
    }

    .bottom-form-section {
        padding: 44px 0
    }

    .section-title {
        font-size: 1.35rem
    }

    /* TESTIMONIALS compress on mobile */
    .testi-grid {
        gap: 10px
    }

    .testi {
        padding: 20px 18px
    }
}

/* PLAN POPUP MODAL */
.plan-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease
}

.plan-modal-overlay.active {
    opacity: 1;
    pointer-events: all
}

.plan-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .25);
    transform: translateY(24px) scale(.97);
    transition: transform .35s cubic-bezier(.16, 1, .3, 1);
    position: relative
}

.plan-modal-overlay.active .plan-modal {
    transform: translateY(0) scale(1)
}

.plan-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg-2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2
}

.plan-modal-close:hover {
    background: var(--bg-3);
    transform: rotate(90deg)
}

.plan-modal-close svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-2);
    stroke-width: 2.5
}

.plan-modal-header {
    padding: 28px 28px 0;
    border-bottom: none
}

.plan-modal-plan {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px
}

.plan-modal-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    background: var(--green-bg);
    color: var(--green-d);
    border: 1px solid var(--green-border)
}

.plan-modal-badge.featured {
    background: linear-gradient(135deg, var(--orange), var(--orange-h));
    color: #fff;
    border: none
}

.plan-modal-price {
    font-family: var(--display);
    font-size: 1.6rem;
    color: var(--navy);
    font-weight: 800
}

.plan-modal-price span {
    font-size: .8rem;
    font-weight: 500;
    color: var(--text-2);
    margin-left: 4px
}

.plan-modal-ideal {
    font-size: .78rem;
    color: var(--text-2);
    margin-top: 4px;
    line-height: 1.5
}

.plan-modal-body {
    padding: 20px 28px 28px
}

.plan-modal-body .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 0
}

.plan-modal-body .form-group {
    margin-bottom: 12px
}

.plan-modal-body .form-group label {
    font-size: .72rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
    display: block
}

.plan-modal-body .form-group input,
.plan-modal-body .form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1.5px solid var(--bg-3);
    font-size: .82rem;
    font-family: var(--body);
    transition: var(--transition);
    background: #fff;
    box-sizing: border-box
}

.plan-modal-body .form-group input:focus,
.plan-modal-body .form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(149, 191, 71, .12)
}

.plan-modal-body textarea {
    resize: vertical;
    min-height: 70px
}

.plan-modal-body .btn-form {
    width: 100%;
    padding: 13px;
    border-radius: var(--radius);
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-h));
    border: none;
    cursor: pointer;
    font-family: var(--body);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 24px var(--orange-shadow);
    margin-top: 4px
}

.plan-modal-body .btn-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--orange-shadow)
}

.plan-modal-body .form-note {
    font-size: .68rem;
    color: var(--text-2);
    text-align: center;
    margin-top: 10px
}

.plan-modal-body .field-error {
    display: none;
    font-size: .68rem;
    color: #e74c3c;
    margin-top: 3px
}

.plan-modal-body form.submitted input:invalid~.field-error,
.plan-modal-body form.submitted textarea:invalid~.field-error {
    display: block
}

.plan-modal-body .btn-form .spinner-wrap {
    display: none
}

.plan-modal-body .btn-form.loading .btn-text {
    display: none
}

.plan-modal-body .btn-form.loading .spinner-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.plan-modal-divider {
    height: 1px;
    background: var(--bg-2);
    margin: 16px 0
}

.plan-modal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px
}

.plan-modal-feat {
    font-size: .68rem;
    padding: 4px 10px;
    border-radius: 14px;
    background: var(--bg-1);
    color: var(--text-2);
    border: 1px solid var(--bg-2)
}

#planModalSuccess {
    text-align: center;
    padding: 40px 28px
}

#planModalSuccess h3 {
    font-family: var(--display);
    color: var(--navy);
    font-size: 1.05rem;
    margin-bottom: 5px
}

#planModalSuccess p {
    font-size: .82rem;
    color: var(--text-2);
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto
}

@media(max-width:640px) {
    .plan-modal {
        max-width: 100%;
        border-radius: 12px
    }

    .plan-modal-header {
        padding: 24px 20px 0
    }

    .plan-modal-body {
        padding: 16px 20px 24px
    }

    .plan-modal-body .form-row {
        grid-template-columns: 1fr
    }

    .plan-modal-price {
        font-size: 1.3rem
    }

    .plan-modal-overlay {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(15, 23, 42, .85)
    }
}