:root {
    --amber: #FFAF1F;
    --amber-dim: rgba(255, 175, 31, 0.10);
    --amber-glow: rgba(255, 175, 31, 0.25);
    --ink: #09090b;
    --ink2: #121214;
    --ink3: #18181b;
    --ink4: #27272a;
    --stone: #3f3f46;
    --ash: #a8a8a8;
    --fog: #b8b8b8;
    --snow: #EEEBE6;
    --white: #FFFFFF;
    --red: #EF4444;
    --green: #22C55E;
    --display: 'Outfit', sans-serif;
    --sans: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth
}

html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    background: var(--ink);
    color: var(--snow);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.7;
    font-size: 17px;
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: var(--ink)
}

::-webkit-scrollbar-thumb {
    background: var(--amber)
}

img {
    display: block;
    max-width: 100%
}

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

/* ─── NAV ─────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 72px;
    padding: 0 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(11, 11, 11, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0 15px; /* Default for mobile/small screens */
    transition: all .3s;
}

@media (min-width: 992px) {
    nav {
        padding: 0 52px;
    }
}

.logo {
    font-family: var(--display);
    font-size: 1.65rem;
    letter-spacing: 1.5px;
    color: var(--white)
}

    .logo span {
        color: var(--amber)
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    font-size: .85rem;
}

    .nav-links a {
        font-weight: 700;
        font-size: .75rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--snow);
        transition: color .2s
    }

        .nav-links a:hover {
            color: var(--amber)
        }

.nav-btn {
    font-weight: 800;
    font-size: .75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--amber);
    padding: 10px 22px;
    border-radius: 8px;
    transition: opacity .2s, transform .2s
}

    .nav-btn:hover {
        opacity: .88;
        transform: translateY(-1px)
    }

/* ─── BOOTSTRAP NAVBAR OVERRIDES ─────────── */
#topnav {
    background: rgba(11, 11, 11, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
    transition: all .3s ease;
}

#topnav .nav-link {
    font-weight: 700;
    font-size: .75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--snow);
    transition: color .2s;
}

#topnav .nav-link:hover {
    color: var(--amber);
}

.custom-toggler {
    border: none;
    padding: 0;
}

.custom-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.btn-amber-sm {
    background: var(--amber);
    color: var(--ink);
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: opacity .2s;
}

.btn-amber-lg {
    background: var(--amber);
    color: var(--ink);
    font-size: .9rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 1.5px;
    display: inline-block;
    transition: opacity .2s;
}

.nav-util-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}




/* ─── TIMER ──────────────────────────────── */
.timer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    overflow: hidden;
    color: var(--amber);
    background-color: transparent;
}

/* First timer adjust for fixed nav */
nav + .timer {
    padding-top: 100px;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 175, 31, 0.05);
    border: 1px solid rgba(255, 175, 31, 0.15);
    border-radius: 12px;
    min-width: 90px;
    padding: 12px 10px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.time-box:hover {
    transform: translateY(-2px);
    background: rgba(255, 175, 31, 0.08);
}

.days, .hours, .minutes, .seconds {
    font-family: var(--display);
    font-size: 2.2rem;
    display: block;
    font-weight: 800;
    line-height: 1;
}

.label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0.8;
    margin-top: 4px;
}

.countdown {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: nowrap;
}


.separator {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 300;
    opacity: 0.4;
    margin-top: -20px;
}

@media (max-width: 768px) {
    .timer {
        padding: 20px 0;
    }
    .countdown {
        gap: 6px;
    }
    .time-box {
        min-width: 65px;
        padding: 8px 4px;
        border-radius: 8px;
    }
    .days, .hours, .minutes, .seconds {
        font-size: 1.4rem;
    }
    .label {
        font-size: 9px;
        letter-spacing: 0.2px;
        margin-top: 2px;
    }
    .separator {
        font-size: 14px;
        margin-top: -12px;
        opacity: 0.3;
    }
}

@media (max-width: 400px) {
    .countdown {
        gap: 4px;
    }
    .time-box {
        min-width: 58px;
        padding: 6px 2px;
    }
    .days, .hours, .minutes, .seconds {
        font-size: 1.25rem;
    }
    .label {
        font-size: 8px;
        letter-spacing: 0;
    }
    .separator {
        display: none; /* Hide separators on ultra-small screens to save space */
    }
}



/* ─── TICKER ──────────────────────────────── */
.ticker {
    background: var(--amber);
    overflow: hidden
}

.ticker-track {
    display: flex;
    animation: ticker 20s linear infinite;
    align-items: center;
    width: max-content
}

.ticker-item {
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink);
    padding: 0 34px;
    white-space: nowrap
}

.ticker-dot {
    color: rgba(0, 0, 0, .28)
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ─── HERO ────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 72px - 100vh);
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

.hero-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .08;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E")
}

.hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .016) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .016) 1px, transparent 1px);
    background-size: 60px 60px
}

.hero-orb {
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 175, 31, .07) 0%, transparent 65%);
    pointer-events: none
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    margin: 0 auto;
    width: 100%
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--amber);
    opacity: 0;
    animation: fadeUp .7s .1s forwards
}

.hero-h1 {
    font-family: var(--display);
    font-size: clamp(2.4rem, 9vw, 9.5rem);
    line-height: .93;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp .8s .25s forwards;
    font-weight: 800;
}

    .hero-h1 .a {
        color: var(--amber)
    }

.hero-p {
    font-size: 1.25rem;
    color: var(--snow);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp .8s .4s forwards
}

    .hero-p strong {
        color: var(--snow);
        font-weight: 700
    }

.hero-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .8s .55s forwards
}

.btn-amber {
    font-weight: 800;
    font-size: .88rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--amber);
    padding: 17px 38px;
    border-radius: 8px;
    transition: transform .22s, box-shadow .22s;
    display: inline-block
}

    .btn-amber:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 36px var(--amber-glow)
    }

.btn-outline {
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--amber); /* Match amber theme */
    border: 1px solid var(--amber);
    padding: 17px 38px;
    border-radius: 8px;
    transition: all .22s ease-out;
    display: inline-block;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(255, 175, 31, 0.05);
    border-color: var(--amber-glow);
    color: var(--amber);
}


.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 68px;
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .8s .7s forwards
}

.stat-num {
    font-family: var(--display);
    font-size: 2.5rem;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 4px;
    display: block
}

.stat-lbl {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ash)
}

/* ─── SECTION ATOMS ───────────────────────── */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
}


.sec {
    padding: 130px 0;
}

.sec-dark {
    background: var(--ink)
}

.sec-black {
    background: #090909;
    border-top: 1px solid rgba(255, 255, 255, .04);
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    width: 100%;
    overflow: hidden;
}

.slbl {
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px
}

    .slbl::before {
        content: '';
        width: 20px;
        height: 2px;
        background: var(--amber);
        flex-shrink: 0
    }

.stitle {
    font-family: var(--display);
    font-size: clamp(2.6rem, 4.8vw, 5rem);
    line-height: .93;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 18px;
    font-weight: 800;
}

    .stitle .a {
        color: var(--amber)
    }

    .stitle .d {
        color: var(--amber)
    }

/* ─── PAIN / TIMELINE ─────────────────────── */
.pain-grid {
    align-items: start;
    margin-top: 64px
}

.timeline {
    position: relative
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 17px;
        top: 6px;
        bottom: 6px;
        width: 1px;
        background: linear-gradient(to bottom, var(--amber), transparent)
    }

.t-item {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
    opacity: 1;
    transform: translateX(0);
}

    .t-item.v {
        opacity: 1;
        transform: translateX(0)
    }

.t-dot {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    background: var(--ink2);
    border: 2px solid var(--amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 800;
    color: var(--amber);
    position: relative;
    z-index: 1
}

.t-time {
    font-weight: 800;
    font-size: .68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 3px
}

.t-event {
    font-weight: 700;
    font-size: .98rem;
    color: var(--white);
    margin-bottom: 3px
}

.t-desc {
    font-size: .95rem;
    color: var(--fog);
    line-height: 1.5
}

.pain-aside {
    position: sticky;
    top: 100px
}

.pain-qdeco {
    font-style: italic;
    font-size: 6rem;
    line-height: .55;
    color: var(--amber);
    margin-bottom: 8px
}

.pain-qtext {
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-style: italic;
    font-weight: 300;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 24px;
    font-weight: 400;
}

    .pain-qtext em {
        color: var(--amber);
        font-style: normal;
        font-weight: 700
    }

.pain-qcredit {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--snow)
}

/* ─── COST CARDS ──────────────────────────── */
.cost-grid {
    background: rgba(255, 255, 255, .05);
    margin-top: 64px
}

.cost-card {
    background: var(--ink);
    padding: 46px 36px;
    position: relative;
    overflow: hidden;
    transition: background .3s
}

    .cost-card:hover {
        background: #141414
    }

    .cost-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--amber);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .4s ease
    }

    .cost-card:hover::after {
        transform: scaleX(1)
    }

.cost-num {
    font-family: var(--display);
    font-size: 3.8rem;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 12px;
    display: block
}

.cost-lbl {
    font-weight: 700;
    font-size: .98rem;
    color: var(--white);
    margin-bottom: 10px
}

.cost-desc {
    font-size: 1rem;
    color: var(--fog);
    line-height: 1.6
}

.pricing-grid {
    margin-top: 80px;
}

.plan-card {
    padding: 36px;
}

/* ─── BRIDGE ──────────────────────────────── */
.bridge-inner {
    max-width: 880px;
    margin: 0 auto;
    padding: 120px 52px;
    text-align: center
}

.bline {
    font-family: var(--display);
    font-size: clamp(2.5rem, 5.5vw, 6rem);
    line-height: .9;
    letter-spacing: -0.02em;
    color: var(--stone);
    transition: color .5s ease;
    font-weight: 800;
}

    .bline.lit {
        color: var(--white)
    }

    .bline.al {
        color: var(--amber) !important;
        font-family: var(--sans);
        font-style: italic;
        font-weight: 800;
        font-size: clamp(1.8rem, 3.5vw, 3.5rem)
    }

    .bline.dl {
        color: var(--ash) !important;
        font-size: clamp(1.6rem, 3vw, 3rem)
    }

.brule {
    width: 1px;
    height: 48px;
    background: var(--stone);
    margin: 22px auto
}

/* ─── FEATURES ────────────────────────────── */
.feat-grid {
    background: rgba(255, 255, 255, .04);
    margin-top: 64px;
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .feat-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 24px;
        -ms-overflow-style: none; /* IE/Edge */
        scrollbar-width: none; /* Firefox */
    }
    .feat-grid::-webkit-scrollbar {
        display: none; /* Chrome/Safari/Webkit */
    }
}

.feat-card {
    background: var(--ink2);
    padding: 48px 44px;
    transition: background .3s;
    position: relative;
    overflow: hidden;
    flex: 0 0 50%; /* 2 per row on desktop */
}

@media (max-width: 991px) {
    .feat-card {
        flex: 0 0 85%; /* Shows a peek of the next card */
        scroll-snap-align: center;
        padding: 32px 24px;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: none;
    }
}
 
    .feat-card:hover {
        background: #191919
    }

    .feat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: transparent;
        transition: background .3s
    }

    .feat-card:hover::before {
        background: var(--amber)
    }

.feat-n {
    font-family: var(--display);
    font-size: 3.6rem;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 18px;
    display: block
}

@media (max-width: 768px) {
    .feat-n {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
}


.feat-t {
    font-weight: 800;
    font-size: .9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px
}

.feat-d {
    font-size: 1rem;
    color: var(--fog);
    line-height: 1.7
}

    .feat-d strong {
        color: var(--snow);
        font-weight: 700
    }

.feat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--amber);
    opacity: 0.8;
}

.feat-badge::before {
    content: '';
    width: 2px;
    height: 12px;
    background: var(--amber);
    display: inline-block;
}


/* ─── ROI CALCULATOR ──────────────────────── */
.roi-grid {
    align-items: center;
    margin-top: 64px
}

.roi-card {
    background: var(--ink2);
    border: 1px solid rgba(255, 255, 255, .07);
    border-top: 3px solid var(--amber);
    border-radius: 12px;
    padding: 32px 20px; /* Reduced padding for mobile */
}

@media (min-width: 992px) {
    .roi-card {
        padding: 48px 44px;
    }
}

    .roi-card h3 {
        font-family: var(--display);
        font-size: 1.8rem;
        color: var(--white);
        letter-spacing: -0.02em;
        margin-bottom: 36px
    }

.roi-slider-group {
    margin-bottom: 36px
}

.roi-label-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px
}

.roi-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ash)
}

.roi-val {
    font-family: var(--display);
    font-size: 1.8rem;
    color: var(--amber);
    line-height: 1
}

    .roi-val.red {
        color: var(--red)
    }

input[type=range] {
    width: 100%;
    height: 3px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--stone);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    accent-color: var(--amber)
}

    input[type=range]::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 18px;
        height: 18px;
        background: var(--amber);
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 0 0 3px rgba(255, 175, 31, .2)
    }

.roi-note {
    font-size: .72rem;
    color: var(--white);
    margin-top: 6px;
    font-style: italic
}

.roi-result {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.roi-result-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fog);
    margin-bottom: 6px
}

.roi-loss {
    font-family: var(--display);
    font-size: 3.8rem;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px
}

.roi-recover {
    font-size: .88rem;
    color: var(--fog);
    margin-bottom: 20px
}

    .roi-recover strong {
        color: var(--green);
        font-weight: 700
    }

.roi-aside-title {
    font-family: var(--display);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: .95;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -0.02em
}

    .roi-aside-title .a {
        color: var(--amber)
    }

.roi-pain-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px
}

.roi-pain-item {
    display: flex;
    gap: 16px;
    align-items: flex-start
}

.roi-pain-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--amber-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 1rem;
    color: var(--amber)
}

.roi-pain-h {
    font-weight: 700;
    font-size: .95rem;
    color: var(--white);
    margin-bottom: 3px
}

.roi-pain-p {
    font-size: 1rem;
    color: var(--fog);
    line-height: 1.55
}

/* ─── CHART ───────────────────────────────── */
.chart-wrap {
    background: var(--ink2);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    padding: 40px;
    margin-top: 48px
}

@media (max-width: 576px) {
    .chart-wrap {
        padding: 20px 15px;
    }
}

.chart-container {
    position: relative;
    width: 100%;
    height: 300px
}

@media (max-width: 576px) {
    .chart-container {
        height: 250px;
    }
}


/* ─── PROOF ───────────────────────────────── */
.proof-grid {
    margin-top: 64px
}

.proof-card {
    background: var(--ink2);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 8px;
    padding: 36px 30px;
    position: relative
}

    .proof-card::before {
        content: '"';
        position: absolute;
        top: 18px;
        right: 22px;
        font-size: 4rem;
        font-style: italic;
        color: var(--amber);
        line-height: 1
    }

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
    color: var(--amber);
    font-size: .85rem;
}


.proof-text {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--snow);
    line-height: 1.65;
    margin-bottom: 22px;
    font-weight: 300
}

.proof-by {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ash)
}

    .proof-by span {
        display: block;
        color: var(--amber);
        margin-top: 3px;
        font-weight: 700
    }

/* ─── PRICING ─────────────────────────────── */
.pricing-grid {
    max-width: 900px;
    margin: 64px auto 0
}

.plan-card {
    background: var(--ink2);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 12px;
    padding: 48px 44px;
    display: flex;
    flex-direction: column
}

    .plan-card.featured {
        background: var(--amber);
        border-color: var(--amber);
        transform: scale(1.03);
        box-shadow: 0 0 60px rgba(255, 175, 31, .2)
    }

.plan-badge {
    display: inline-block;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 20px;
    align-self: flex-start;
    align-self: center;
}

    .plan-badge.dark {
        background: var(--ash);
        color: var(--amber)
    }

    .plan-badge.light {
        background: rgba(59, 59, 59, 0.15);
        color: rgba(0, 0, 0, .7)
    }

.plan-name {
    font-family: var(--display);
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 8px
}

.plan-card:not(.featured) .plan-name {
    color: var(--white)
}

.plan-card.featured .plan-name {
    color: var(--ink)
}

.plan-price {
    font-family: var(--display);
    font-size: 3.9rem;
    line-height: 1;
}

.plan-card:not(.featured) .plan-price {
    color: var(--white)
}

.plan-card.featured .plan-price {
    color: var(--ink)
}

.plan-cycle {
    font-size: .78rem;
    font-weight: 700;
    margin-bottom: 6px
}

.plan-card:not(.featured) .plan-cycle {
    color: var(--fog)
}

.plan-card.featured .plan-cycle {
    color: rgba(0, 0, 0, .6)
}

.plan-saving {
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: 28px
}

.plan-saving1 {
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: 10px
}

.plan-card:not(.featured) .plan-saving {
    color: var(--amber)
}

.plan-card.featured .plan-saving {
    color: rgba(0, 0, 0, .75)
}

.plan-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    margin-bottom: 36px
}

    .plan-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: .88rem
    }

.plan-card:not(.featured) .plan-list li {
    color: var(--snow)
}

.plan-card.featured .plan-list li {
    color: var(--ink);
    font-weight: 600
}

.plan-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber)
}

.plan-card.featured .plan-list li::before {
    background: var(--ink)
}

.plan-btn {
    font-weight: 800;
    font-size: .82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    padding: 16px;
    border-radius: 8px;
    transition: opacity .2s, transform .2s;
    display: block
}

    .plan-btn:hover {
        opacity: .88;
        transform: translateY(-2px)
    }

.plan-card:not(.featured) .plan-btn {
    background: var(--amber);
    color: var(--ink)
}

.plan-card.featured .plan-btn {
    background: var(--ink);
    color: var(--white)
}

.pricing-note {
    text-align: center;
    margin-top: 24px;
    font-size: .8rem;
    color: var(--snow);
    font-weight: 600
}

/* ─── FORM ────────────────────────────────── */
.form-section {
    background: var(--ink);
    position: relative;
    overflow: hidden
}

    .form-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(255, 175, 31, .07) 0%, transparent 70%);
        pointer-events: none
    }

.form-grid {
    align-items: start
}

.form-left-title {
    font-family: var(--display);
    font-size: clamp(2.5rem, 4.2vw, 4.5rem);
    line-height: .93;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 24px
}

    .form-left-title .a {
        color: var(--amber)
    }

.form-left-body {
    font-size: 1rem;
    color: var(--fog);
    line-height: 1.72;
    margin-bottom: 36px
}

.form-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px
}

    .form-check-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: .88rem;
        font-weight: 600;
        color: var(--snow)
    }

        .form-check-list li::before {
            content: '';
            flex-shrink: 0;
            width: 16px;
            height: 2px;
            background: var(--amber)
        }

.form-box {
    background: var(--ink2);
    border: 1px solid rgba(255, 255, 255, .06);
    border-top: 4px solid var(--amber);
    border-radius: 12px;
    padding: 46px 42px
}

.formbox-amber {
    background: var(--amber);
    border: 1px solid rgba(255, 255, 255, .06);
    border-top: 4px solid var(--amber);
    border-radius: 12px;
    padding: 46px 42px
}

.form-title {
    font-family: var(--display);
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 4px;
    font-weight: 400;
}

.form-title-ink {
    font-family: var(--display);
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: var(--ink);
    margin-bottom: 4px;
    font-weight: 400;
}

.form-sub {
    font-size: .84rem;
    color: var(--fog);
    margin-bottom: 32px
}

.fg {
    margin-bottom: 18px
}

    .fg label {
        display: block;
        font-size: .75rem;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--white);
        margin-bottom: 6px
    }

    .fg input,
    .fg select {
        width: 100%;
        background: rgba(255, 255, 255, .035);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 8px;
        color: var(--snow);
        font-family: var(--sans);
        font-size: 1rem;
        padding: 12px 15px;
        outline: none;
        transition: border-color .2s, background .2s;
        -webkit-appearance: none;
        appearance: none
    }

.input1 {
    color: var(--ink) !important;
}


.fg input::placeholder {
    color: rgba(255, 255, 255, 0.4)
}

.fg input:focus,
.fg select:focus {
    border-color: var(--amber);
    background: rgba(255, 255, 255, .055)
}

.fg select option {
    background: var(--ink3)
}

.frow {
    background: var(--amber);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 800;
    font-size: .88rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    padding: 17px;
    cursor: pointer;
    margin-top: 8px;
    transition: transform .22s, box-shadow .22s
}

.f-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 34px var(--amber-glow);
}

.f-note {
    text-align: center;
    font-size: .72rem;
    color: var(--ash);
    margin-top: 12px
}

/* ─── FOOTER ──────────────────────────────── */
footer {
    background: #070707;
    border-top: 1px solid rgba(255, 255, 255, .04);
    padding: 34px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px
}

.flogo {
    font-family: var(--display);
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--white)
}

    .flogo span {
        color: var(--amber)
    }

.fcopy {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--fog)
}

/* ─── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px)
    }

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

.r {
    opacity: 1;
    transform: translateY(0);
}

    .r.v {
        opacity: 1;
        transform: translateY(0)
    }

.rl {
    opacity: 1;
    transform: translateX(0);
}

    .rl.v {
        opacity: 1;
        transform: translateX(0)
    }

.rr {
    opacity: 1;
    transform: translateX(0);
}

    .rr.v {
        opacity: 1;
        transform: translateX(0)
    }

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

.d3 {
    transition-delay: .3s
}

.d4 {
    transition-delay: .4s
}

.d5 {
    transition-delay: .5s
}

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 991px) {
    #topnav .container-fluid {
        padding: 0 15px;
    }

    #topnav .navbar-collapse {
        background: rgba(11, 11, 11, 0.99);
        height: auto;
        max-height: 85vh;
        overflow-y: auto;
        margin-top: 15px;
        padding: 32px 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 0 0 12px 12px;
    }

    #topnav .nav-link {
        font-size: 1.1rem;
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        text-align: left;
    }

    #topnav .navbar-nav .nav-item:nth-last-child(2) .nav-link {
        border-bottom: none;
    }

    .custom-toggler {
        padding: 4px;
    }

    .hero {
        padding-left: 15px;
        padding-right: 15px;
    }

    .bridge-inner {
        padding: 80px 15px;
    }

    .pain-aside,
    .roi-aside {
        position: static;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    footer {
        padding: 28px 15px;
    }
}

.recommended-badge {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--amber);
    color: var(--ink);
    padding: 6px 18px;
    border-radius: 4px;
    font-weight: 900;
    font-size: 0.65rem;
    letter-spacing: 2px;
    box-shadow: 0 4px 12px rgba(255,175,31,0.3);
    z-index: 5;
}

.whatsapp-float {
    position: fixed;
    width: 60px; /* Standard Zoho Desktop profile */
    height: 60px;
    bottom: 98px; /* Above Zoho on desktop */
    right: 20px; /* Base fallback */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Scrollbar Compensation for Windows/Restricted Viewports on Desktop */
@media screen and (min-width: 992px) {
    .whatsapp-float {
        right: calc(18px - (100vw - 100%)); 
    }
}


.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    color: #fff;
}

@media (max-width: 991px) {
    .hero-btns {
        flex-direction: column;
        align-items: stretch !important;
        gap: 12px;
        margin-top: 32px;
    }

    .hero-btns .btn-amber,
    .hero-btns .btn-outline,
    .btn-amber[href="#cta"], /* All primary CTAs on mobile */
    .btn-outline[href="#pain"],
    .btn-cta-freetrial {
        width: 100% !important;
        text-align: center;
        padding: 14px 20px !important; /* Refined, professional padding */
        font-size: 0.85rem !important;
        display: block !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 12px;
    }

    .whatsapp-float {
        width: 48px !important; /* Standard Zoho Mobile diameter */
        height: 48px !important;
        bottom: 82px !important; /* Stacked: 20px bottom + 48px height + 14px gap */
        right: 12px !important; /* Precision fallback for mobile edge */
        font-size: 20px !important;
    }
}

.promo-badge-float {

    position: absolute;
    top: -16px;
    right: 32px;
    background: linear-gradient(135deg, #FF3B30, #FF9500);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    box-shadow: 0 6px 20px rgba(255, 59, 48, 0.4);
    animation: floatBadgeBounce 2.5s infinite ease-in-out;
    z-index: 10;
    text-transform: uppercase;
}

@keyframes floatBadgeBounce {
    0% {
        transform: translateY(0) scale(1) rotate(2deg);
    }

    50% {
        transform: translateY(-5px) scale(1.05) rotate(4deg);
    }

    100% {
        transform: translateY(0) scale(1) rotate(2deg);
    }
}
