/* ── TOKENS ───────────────────────────────────────────── */
:root {
    --blue: #1b4bab;
    --blue-dark: #0d2e6e;
    --blue-mid: #1840a0;
    --red: #e31e24;
    --red-dark: #b51519;
    --dark: #0e0e0e;
    --dark-2: #181818;
    --gray: #2c2c2c;
    --gray-lt: #f4f4f4;
    --white: #ffffff;
    --gold: #f5a623;
    --green: #28a745;
    --green-dark: #1e7e2a;
}

/* ── BASE ─────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.font-head {
    font-family: 'Montserrat', sans-serif;
}

/* ── UTILITIES ────────────────────────────────────────── */
.text-red {
    color: var(--red) !important;
}

.text-blue {
    color: var(--blue) !important;
}

.text-gold {
    color: var(--gold) !important;
}

.text-bright {
    color: #ccc !important;
}

.text-faint {
    color: #999 !important;
}

.text-gold-light {
    color: #ffe28a;
}

.text-whatsapp {
    color: #25d366;
}

.bg-blue {
    background-color: var(--blue) !important;
}

.bg-red {
    background-color: var(--red) !important;
}

.bg-dark2 {
    background-color: var(--dark-2) !important;
}

.fw-900 {
    font-weight: 900 !important;
}

.divider-red {
    width: 60px;
    height: 4px;
    background: var(--red);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.divider-blue {
    width: 60px;
    height: 4px;
    background: var(--blue);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-pad {
    padding: 90px 0;
}

.section-subtext {
    max-width: 560px;
    font-size: .9rem;
}

.code-gold {
    color: var(--gold);
}

.link-red {
    color: var(--red);
    text-decoration: none;
    font-weight: 700;
}

.link-red:hover {
    color: var(--red-dark);
}

.link-green {
    color: var(--green);
    text-decoration: none;
    font-weight: 700;
}

.link-green:hover {
    color: var(--green-dark);
}

/* ── NAVBAR ───────────────────────────────────────────── */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.97);
    border-bottom: 2px solid var(--red);
    transition: background .3s;
}

#navbar .navbar-brand img {
    height: 52px;
}

.nav-cta {
    background: var(--red);
    color: #fff !important;
    padding: 8px 22px !important;
    border-radius: 4px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: .5px;
    transition: background .2s, transform .15s;
}

.nav-cta:hover {
    background: var(--red-dark) !important;
    transform: translateY(-1px);
}

/* ── URGENCY BAR ──────────────────────────────────────── */
#urgency-bar {
    background: var(--red);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 9px 0;
    margin-top: 72px;
    text-align: center;
}

#urgency-bar i {
    animation: pulse-icon 1.2s infinite;
}

@keyframes pulse-icon {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .6;
        transform: scale(1.3);
    }
}

/* ── HERO ─────────────────────────────────────────────── */
#hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 55%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

#hero .hero-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 1.2rem;
    animation: badge-glow 2s infinite alternate;
}

@keyframes badge-glow {
    from {
        box-shadow: 0 0 8px rgba(227, 30, 36, .5);
    }

    to {
        box-shadow: 0 0 22px rgba(227, 30, 36, .9);
    }
}

#hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

#hero h1 .highlight {
    color: var(--red);
    position: relative;
    display: inline-block;
}

#hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red);
    border-radius: 2px;
}

#hero .subheadline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #c8d4ee;
    max-width: 620px;
    line-height: 1.6;
}

.btn-hero-main {
    background: var(--red);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 16px 40px;
    border-radius: 6px;
    border: none;
    text-decoration: none;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: all .2s;
    box-shadow: 0 6px 24px rgba(227, 30, 36, .45);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-main:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(227, 30, 36, .6);
    color: #fff;
}

.btn-hero-sec {
    border: 2px solid rgba(255, 255, 255, .3);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 34px;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
}

.btn-hero-sec:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

/* Hero stats */
.hero-stat {
    text-align: center;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(4px);
}

.hero-stat .num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--red);
    line-height: 1;
}

.hero-stat .lbl {
    font-size: .8rem;
    color: #99acd0;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-top: 4px;
}

/* Hero mockup */
.hero-mockup {
    position: relative;
    text-align: center;
}

.mockup-screen {
    width: 100%;
    max-width: 480px;
    background: #1a1f2e;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, .12);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 255, 255, .05);
    margin: 0 auto;
}

.mockup-bar {
    background: #111;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dot--red {
    background: #e31e24;
}

.mockup-dot--yellow {
    background: var(--gold);
}

.mockup-dot--green {
    background: #28a745;
}

.mockup-url {
    flex: 1;
    background: #252a38;
    border-radius: 20px;
    height: 22px;
    margin-left: 8px;
}

.mockup-content {
    padding: 20px;
}

.mockup-hero-bar {
    height: 90px;
    background: linear-gradient(90deg, var(--blue-dark), var(--blue));
    border-radius: 8px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-hero-bar span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: .95rem;
    color: #fff;
    letter-spacing: 1px;
}

.mockup-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.mockup-card {
    flex: 1;
    height: 40px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .06);
}

.mockup-card.red {
    background: rgba(227, 30, 36, .25);
}

.mockup-card.blue {
    background: rgba(27, 75, 171, .35);
}

.mockup-card--tall-blue {
    height: 60px;
    background: rgba(27, 75, 171, .2);
}

.mockup-card--tall-red {
    height: 60px;
    background: rgba(227, 30, 36, .15);
}

.mockup-text-line {
    height: 8px;
    background: rgba(255, 255, 255, .08);
    border-radius: 4px;
    margin-bottom: 6px;
}

.mockup-text-line.w80 {
    width: 80%;
}

.mockup-text-line.w60 {
    width: 60%;
}

.mockup-btn-fake {
    height: 30px;
    width: 120px;
    background: var(--red);
    border-radius: 4px;
    margin-top: 8px;
}

.badge-24h {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 80px;
    height: 80px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 4px 20px rgba(227, 30, 36, .6);
    animation: badge-glow 2s infinite alternate;
    border: 3px solid #fff;
}

.badge-24h .b-num {
    font-size: 1.4rem;
}

.badge-24h .b-txt {
    font-size: .55rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── HERO BADGE VARIANTS ────────────────────────────────── */
.hero-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
}

.hero-badge--blue {
    background: var(--blue);
}

.hero-badge--glass {
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(6px);
}

/* ── SOCIAL PROOF STRIP ───────────────────────────────────── */
#social-strip {
    background: var(--blue-dark);
    padding: 18px 0;
    border-top: 3px solid var(--red);
}

#social-strip .strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #fff;
}

#social-strip .strip-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ── PAIN SECTION ─────────────────────────────────────────── */
#pain {
    background: var(--dark-2);
}

#pain .pain-card {
    background: var(--gray);
    border-left: 4px solid var(--red);
    border-radius: 8px;
    padding: 22px 20px;
    height: 100%;
    transition: transform .2s, box-shadow .2s;
}

#pain .pain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .4);
}

#pain .pain-card i {
    font-size: 2rem;
    color: var(--red);
    margin-bottom: 12px;
    display: block;
}

#pain .pain-card h5 {
    font-size: .95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
}

#pain .pain-card p {
    font-size: .88rem;
    color: #aaa;
    margin: 0;
    line-height: 1.6;
}

#pain .pain-cta-box {
    background: linear-gradient(90deg, var(--blue-dark), var(--blue));
    border-radius: 12px;
    padding: 40px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#pain .pain-cta-box::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: rgba(227, 30, 36, .2);
    border-radius: 50%;
}

.pain-cta-title {
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin: 0;
}

.pain-cta-sub {
    color: #8daad8;
    font-size: .9rem;
    margin: 8px 0 0;
}

/* ── TARGET AUDIENCE ──────────────────────────────────────── */
#audience {
    background: var(--dark);
}

.audience-card {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 34px 24px;
    text-align: center;
    height: 100%;
    transition: all .25s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 75, 171, .08), rgba(227, 30, 36, .08));
    opacity: 0;
    transition: opacity .25s;
}

.audience-card:hover {
    border-color: var(--red);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(227, 30, 36, .2);
}

.audience-card:hover::before {
    opacity: 1;
}

.audience-card .icon-wrap {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 6px 20px rgba(27, 75, 171, .4);
    transition: transform .25s;
}

.audience-card:hover .icon-wrap {
    transform: scale(1.1) rotate(-6deg);
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    box-shadow: 0 6px 20px rgba(227, 30, 36, .4);
}

.audience-card h5 {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px;
}

.audience-card p {
    font-size: .85rem;
    color: #999;
    line-height: 1.6;
    margin: 0;
}

/* ── FEATURES ─────────────────────────────────────────────── */
#features {
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--blue-dark) 100%);
}

.feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px;
    background: rgba(255, 255, 255, .04);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .07);
    height: 100%;
    transition: all .2s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(27, 75, 171, .5);
    transform: translateY(-3px);
}

.feature-item .feat-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 4px 14px rgba(227, 30, 36, .35);
}

.feature-item h5 {
    font-size: .95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px;
}

.feature-item p {
    font-size: .84rem;
    color: #aaa;
    margin: 0;
    line-height: 1.6;
}

/* Big feature highlight */
.feature-big {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--gray) 100%);
    border: 2px solid var(--blue);
    border-radius: 14px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
}

.feature-big::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: rgba(227, 30, 36, .15);
    border-radius: 50%;
}

.feature-big-title {
    font-size: 1.6rem;
    font-weight: 900;
}

.feature-big-desc {
    color: #aaa;
    font-size: .92rem;
    line-height: 1.7;
    max-width: 560px;
    margin: 0;
}

.domain-box {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--gold);
    border: 2px dashed var(--gold);
    padding: 18px 24px;
    border-radius: 8px;
    display: inline-block;
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
#process {
    background: var(--dark);
}

.step-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--dark-2);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .07);
    height: 100%;
    position: relative;
    transition: all .25s;
}

.step-card:hover {
    border-color: var(--blue);
    transform: translateY(-5px);
    box-shadow: 0 16px 38px rgba(27, 75, 171, .2);
}

.step-card--highlight {
    border-color: var(--red) !important;
}

.step-num {
    width: 56px;
    height: 56px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: #fff;
    margin: 0 auto 18px;
    border: 3px solid rgba(255, 255, 255, .15);
    box-shadow: 0 4px 18px rgba(27, 75, 171, .4);
}

.step-num--red {
    background: var(--red) !important;
}

.step-card h5 {
    font-size: .95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px;
}

.step-card p {
    font-size: .85rem;
    color: #999;
    margin: 0;
    line-height: 1.6;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--red);
    padding-top: 30px;
}

/* Disclaimer */
.disclaimer-note {
    font-size: .78rem;
    color: #666;
    max-width: 560px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

/* ── TEMPLATES SECTION ────────────────────────────────────── */
#templates {
    background: linear-gradient(135deg, var(--dark-2) 0%, #0d1a38 100%);
    padding: 80px 0;
    border-top: 3px solid var(--blue);
}

.template-card {
    border-radius: 12px;
    padding: 28px 22px;
    text-align: center;
    height: 100%;
    transition: all .2s;
}

.template-card--blue {
    background: rgba(27, 75, 171, .12);
    border: 1px solid rgba(27, 75, 171, .35);
}

.template-card--red {
    background: rgba(227, 30, 36, .1);
    border: 1px solid rgba(227, 30, 36, .35);
}

.template-card--gold {
    background: rgba(245, 166, 35, .08);
    border: 1px solid rgba(245, 166, 35, .3);
}

.template-card--blue:hover,
.template-card--red:hover {
    border-color: var(--red);
    transform: translateY(-4px);
}

.template-card--gold:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.template-card-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 14px;
}

.template-card-icon--blue {
    color: var(--blue);
}

.template-card-icon--red {
    color: var(--red);
}

.template-card-icon--gold {
    color: var(--gold);
}

.template-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px;
}

.template-card-text {
    font-size: .85rem;
    color: #888;
    margin: 0;
    line-height: 1.6;
}

.segment-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 16px;
}

.segment-tag {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 30px;
    padding: 6px 18px;
    font-size: .83rem;
    color: #aaa;
}

/* ── PRICING ──────────────────────────────────────────────── */
#pricing {
    background: var(--dark-2);
}

.price-card {
    background: var(--dark);
    border: 2px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 40px 32px;
    height: 100%;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

.price-card.popular {
    border-color: var(--red);
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(227, 30, 36, .3);
}

.price-card:not(.popular):hover {
    border-color: var(--blue);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(27, 75, 171, .2);
}

.price-card--master {
    border-color: var(--gold) !important;
    background: linear-gradient(135deg, #1a140a 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: .72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 22px;
    border-radius: 0 0 8px 8px;
}

.popular-badge--gold {
    background: var(--gold) !important;
    color: #111 !important;
}

.price-card .plan-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ccc;
    margin-bottom: 6px;
}

.plan-name--gold {
    color: var(--gold) !important;
}

.price-card .plan-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.8rem;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.price-card .plan-price sup {
    font-size: 1.2rem;
    top: -12px;
}

.plan-price--lg {
    font-size: 2.4rem !important;
}

.plan-price-sub {
    font-size: 1rem;
    color: #888;
}

.price-card .plan-desc {
    font-size: .83rem;
    color: #888;
    margin-bottom: 24px;
    line-height: 1.5;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.price-card ul li {
    font-size: .87rem;
    color: #ccc;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-card ul li i.bi-check-circle-fill {
    color: var(--red);
    font-size: 1rem;
}

.price-card ul li i.bi-x-circle {
    color: #555;
    font-size: 1rem;
}

.price-card ul li.disabled {
    color: #555;
}

.check-gold {
    color: var(--gold) !important;
    font-size: 1rem;
}

.btn-plan {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 14px;
    border-radius: 6px;
    border: none;
    transition: all .2s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-plan.red {
    background: var(--red);
    color: #fff;
    box-shadow: 0 4px 18px rgba(227, 30, 36, .35);
}

.btn-plan.red:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    color: #fff;
}

.btn-plan.blue {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 18px rgba(27, 75, 171, .35);
}

.btn-plan.blue:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    color: #fff;
}

.btn-plan.outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .25);
}

.btn-plan.outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

.btn-plan--gold {
    background: var(--gold) !important;
    color: #111 !important;
    font-weight: 900 !important;
}

.btn-plan--gold:hover {
    filter: brightness(.9);
    transform: translateY(-2px);
}

/* Hosting */
.hosting-block {
    background: rgba(27, 75, 171, .1);
    border: 1px solid rgba(27, 75, 171, .35);
    border-radius: 12px;
    padding: 24px 28px;
}

.hosting-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--blue);
    margin-bottom: 6px;
}

.hosting-desc {
    font-size: .85rem;
    color: #aaa;
    margin: 0;
    line-height: 1.6;
}

.hosting-row {
    background: rgba(255, 255, 255, .06);
    border-radius: 8px;
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hosting-label {
    font-size: .85rem;
    color: #ccc;
}

.hosting-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #fff;
}

.hosting-price-unit {
    font-size: .75rem;
    color: #888;
}

/* Notes */
.note-text {
    font-size: .83rem;
    color: #777;
}

.contact-note {
    font-size: .78rem;
    color: #666;
}

.footer-link {
    color: #555;
    text-decoration: none;
}

.footer-link:hover {
    color: #fff;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
#testimonials {
    background: var(--dark);
    display: none;
}

.testi-card {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 14px;
    padding: 32px 28px;
    height: 100%;
    position: relative;
    transition: all .2s;
}

.testi-card:hover {
    border-color: var(--blue);
    box-shadow: 0 12px 32px rgba(27, 75, 171, .2);
}

.testi-card .stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testi-card .quote {
    font-size: .9rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-card .quote::before {
    content: '\201C';
    font-size: 2.5rem;
    color: var(--red);
    line-height: 0;
    vertical-align: -14px;
    margin-right: 4px;
    font-style: normal;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    border: 2px solid var(--red);
    flex-shrink: 0;
}

.testi-author .name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .88rem;
}

.testi-author .role {
    font-size: .78rem;
    color: #888;
}

/* ── GUARANTEE ────────────────────────────────────────────── */
#guarantee {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--dark-2) 100%);
    border-top: 3px solid var(--red);
    border-bottom: 3px solid var(--red);
}

.guarantee-seal {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
    box-shadow: 0 8px 30px rgba(227, 30, 36, .5);
    margin: 0 auto;
    animation: badge-glow 2s infinite alternate;
}

.guarantee-seal i {
    font-size: 2.5rem;
    color: #fff;
}

.guarantee-seal span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: .7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-top: 4px;
}

/* ── FAQ ──────────────────────────────────────────────────── */
#faq {
    background: var(--dark);
}

#faq .accordion-item {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

#faq .accordion-button {
    background: var(--dark-2);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .93rem;
    box-shadow: none;
    border: none;
}

#faq .accordion-button:not(.collapsed) {
    background: var(--blue-dark);
    color: #fff;
    box-shadow: none;
}

#faq .accordion-button::after {
    filter: invert(1);
}

#faq .accordion-body {
    background: rgba(27, 75, 171, .08);
    color: #bbb;
    font-size: .88rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

/* ── FINAL CTA ────────────────────────────────────────────── */
#final-cta {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 40%, var(--blue) 100%);
    position: relative;
    overflow: hidden;
}

#final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2l-2 2-34 34v-2zm4 4L80 0h2L44 40h-2zm4 0L80 4v2L48 40h-2zm4 0L80 8v2L52 40h-2zm4 0L80 12v2L56 40h-2zm4 0L80 16v2L60 40h-2zm4 0L80 20v2L64 40h-2zm4 0L80 24v2L68 40h-2zm4 0L80 28v2L72 40h-2zm4 0L80 32v2L76 40h-2zm4 0L80 36v2L80 38l-2 2h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

#final-cta h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .3);
}

.final-cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .85);
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.final-cta-note {
    font-size: .82rem;
    color: rgba(255, 255, 255, .55);
}

.btn-final {
    background: #fff;
    color: var(--red);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.15rem;
    padding: 18px 48px;
    border-radius: 6px;
    border: none;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .3);
}

.btn-final:hover {
    background: var(--dark);
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .4);
}

/* ── FOOTER ───────────────────────────────────────────────── */
#footer {
    background: #050505;
    border-top: 2px solid rgba(255, 255, 255, .06);
    padding: 50px 0 30px;
}

#footer .footer-brand img {
    height: 50px;
}

#footer .footer-brand p {
    font-size: .82rem;
    color: #666;
    margin-top: 12px;
    line-height: 1.6;
    max-width: 280px;
}

#footer h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: .8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

#footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer ul li {
    margin-bottom: 8px;
}

#footer ul li a {
    color: #888;
    font-size: .85rem;
    text-decoration: none;
    transition: color .2s;
}

#footer ul li a:hover {
    color: #fff;
}

#footer .footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #888;
    font-size: .85rem;
}

#footer .footer-contact .contact-item i {
    color: var(--red);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

#footer .footer-contact .contact-item a {
    color: #888;
    text-decoration: none;
    transition: color .2s;
}

#footer .footer-contact .contact-item a:hover {
    color: #fff;
}

#footer .divider {
    border-color: rgba(255, 255, 255, .06);
    margin: 30px 0 20px;
}

#footer .footer-bottom {
    font-size: .78rem;
    color: #555;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--gray);
    border-radius: 8px;
    color: #aaa;
    font-size: 1rem;
    text-decoration: none;
    transition: all .2s;
    margin-right: 6px;
}

.social-links a:hover {
    background: var(--red);
    color: #fff;
    transform: translateY(-2px);
}

/* ── WHATSAPP FLOAT ───────────────────────────────────────── */
#whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

#whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    color: #fff;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(37, 211, 102, .5);
    transition: all .2s;
    animation: wa-pulse 2.5s infinite;
}

#whatsapp-float a:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 32px rgba(37, 211, 102, .7);
}

@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 6px 22px rgba(37, 211, 102, .5);
    }

    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, .85), 0 0 0 10px rgba(37, 211, 102, .12);
    }
}

/* ── COUNTER SECTION ──────────────────────────────────────── */
#counter {
    background: var(--blue-dark);
    border-top: 3px solid var(--red);
    border-bottom: 3px solid var(--red);
}

.counter-item {
    text-align: center;
}

.counter-item .count-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: #fff;
    line-height: 1;
}

.counter-item .count-num span {
    color: var(--red);
}

.counter-item .count-label {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #8daad8;
    margin-top: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 991px) {
    .step-arrow {
        display: none;
    }

    .price-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 767px) {
    .section-pad {
        padding: 64px 0;
    }

    #hero {
        padding: 70px 0 60px;
    }

    #hero h1 {
        font-size: 1.8rem;
    }

    .hero-mockup {
        margin-top: 40px;
    }
}