:root {
    --bg: #060713;
    --bg2: #0b1028;
    --card: rgba(255, 255, 255, .08);
    --line: rgba(255, 255, 255, .14);
    --text: #f6f8ff;
    --muted: #aab3d6;
    --gold: #ffd166;
    --pink: #ff2e88;
    --cyan: #39d6ff;
    --green: #24d366;
    --shadow: 0 30px 80px rgba(0, 0, 0, .45)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, Arial, sans-serif;
    background: radial-gradient(circle at 20% 0%, rgba(255, 46, 136, .24), transparent 30%), radial-gradient(circle at 80% 10%, rgba(57, 214, 255, .18), transparent 26%), linear-gradient(180deg, var(--bg), #090b19 48%, #05060f);
    color: var(--text);
    overflow-x: hidden
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .06;
    background-image: url('data:image/svg+xml,%3Csvg viewBox=%220 0 200 200%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22n%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%22.9%22 numOctaves=%224%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23n)%22/%3E%3C/svg%3E')
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px clamp(18px, 4vw, 70px);
    backdrop-filter: blur(18px);
    background: rgba(6, 7, 19, .72);
    border-bottom: 1px solid var(--line)
}

.brand {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 22px
}

.brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--pink), var(--cyan));
    box-shadow: 0 0 30px rgba(255, 46, 136, .4)
}

.nav {
    display: flex;
    gap: 28px
}

.nav a,
footer a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 700
}

.nav a:hover,
footer a:hover {
    color: #fff
}

.btn {
    border: 0;
    text-decoration: none;
    color: #fff;
    border-radius: 999px;
    padding: 15px 24px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .25s;
    cursor: pointer
}

.btn-small {
    padding: 11px 18px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid var(--line)
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink), #8b5cf6, var(--cyan));
    box-shadow: 0 18px 40px rgba(255, 46, 136, .25)
}

.btn-ghost {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .06)
}

.btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.12)
}

.section {
    padding: 80px clamp(18px, 4vw, 70px)
}

.hero {
    min-height: calc(100vh - 72px);
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 38px;
    align-items: center
}

.badge,
.eyebrow {
    display: inline-flex;
    width: max-content;
    border: 1px solid rgba(255, 209, 102, .35);
    background: rgba(255, 209, 102, .1);
    color: var(--gold);
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 13px
}

.pulse {
    animation: pulse 1.8s infinite
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(255, 209, 102, 0)
    }

    50% {
        box-shadow: 0 0 38px rgba(255, 209, 102, .25)
    }
}

h1 {
    font-size: clamp(42px, 7vw, 82px);
    line-height: .94;
    margin: 22px 0 18px;
    letter-spacing: -.06em
}

h2 {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1;
    margin: 12px 0;
    letter-spacing: -.04em
}

h3 {
    font-size: 26px;
    margin: 0 0 16px
}

.hero-text,
.section-title p,
.showcase p,
.lead-box p,
.price-card p,
.legal-note {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65
}

.glass,
.price-card,
.support-card,
.accordion,
.logos {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .04));
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px)
}

.offer-card {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    max-width: 100%;
    padding: 14px 18px;
    border-radius: 22px;
    margin: 25px 0
}

.offer-card strong {
    font-size: 34px;
    color: var(--gold)
}

.offer-card small {
    max-width: 220px;
    color: var(--muted)
}

.hero-actions,
.trust-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center
}

.trust-row {
    margin-top: 24px;
    color: #d9def7;
    font-weight: 800
}

.hero-media {
    position: relative
}

.main-hero-img,
.showcase-img {
    width: 100%;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, .45));
    animation: float 6s ease-in-out infinite
}

@keyframes float {

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

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

.floating-card {
    position: absolute;
    border: 1px solid var(--line);
    background: rgba(8, 11, 30, .78);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 14px 18px;
    font-weight: 900
}

.card-one {
    left: 5%;
    top: 8%;
    animation: float 5s ease-in-out infinite
}

.card-two {
    right: 4%;
    bottom: 10%;
    animation: float 6.5s ease-in-out infinite
}

.logos {
    border-radius: 28px;
    text-align: center;
    padding: 28px
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-top: 18px
}

.logo-grid span {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, .05);
    font-weight: 900
}

.section-title {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 38px
}

.pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.price-card {
    position: relative;
    padding: 32px;
    border-radius: 30px;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.price-card.featured {
    transform: scale(1.04);
    border-color: rgba(255, 209, 102, .55)
}

.ribbon {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--gold);
    color: #111;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 900
}

.price {
    font-size: 46px;
    font-weight: 900;
    letter-spacing: -.04em
}

.showcase {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 42px;
    align-items: center
}

.showcase li {
    margin: 12px 0;
    color: #dbe2ff;
    font-weight: 700
}

.lead-box {
    border-radius: 34px;
    padding: 38px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center
}

.lead-form {
    display: grid;
    gap: 14px
}

.lead-form input,
.lead-form select {
    width: 100%;
    padding: 17px 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    outline: none
}

.lead-form option {
    color: #111
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.support-card {
    padding: 28px;
    border-radius: 26px;
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    font-weight: 900
}

.support-card span {
    display: block;
    color: var(--muted);
    font-size: 15px;
    margin-top: 12px
}

.legal-note {
    text-align: center;
    margin-top: 28px
}

.accordion {
    max-width: 920px;
    margin: auto;
    border-radius: 28px;
    overflow: hidden
}

.accordion button {
    width: 100%;
    background: transparent;
    color: #fff;
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 26px;
    text-align: left;
    font-size: 18px;
    font-weight: 900;
    display: flex;
    justify-content: space-between;
    cursor: pointer
}

.accordion div {
    display: none;
    color: var(--muted);
    padding: 0 26px 22px;
    line-height: 1.7
}

.accordion .open+div {
    display: block
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 30;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-size: 34px;
    color: #fff;
    background: var(--green);
    box-shadow: 0 18px 40px rgba(36, 211, 102, .45);
    animation: wobble 2.2s infinite
}

@keyframes wobble {

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

    50% {
        transform: rotate(6deg) scale(1.08)
    }
}

footer {
    border-top: 1px solid var(--line);
    padding: 34px clamp(18px, 4vw, 70px);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    color: var(--muted)
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: .8s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.delay-1 {
    transition-delay: .12s
}

.delay-2 {
    transition-delay: .24s
}

@media(max-width:900px) {
    .nav {
        display: none
    }

    .hero,
    .showcase,
    .lead-box {
        grid-template-columns: 1fr
    }

    .pricing,
    .support-grid,
    .logo-grid {
        grid-template-columns: 1fr
    }

    .price-card.featured {
        transform: none
    }

    footer {
        flex-direction: column;
        text-align: center
    }

    h1 {
        font-size: 44px
    }

    .section {
        padding: 58px 18px
    }

    .offer-card {
        width: 100%;
        display: grid
    }

    .topbar {
        padding: 14px 18px
    }

    .btn-small {
        display: none
    }
}

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 70px;
    height: 70px;

    border-radius: 50%;
    background: #25D366;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 38px;

    z-index: 9999;

    box-shadow:
        0 8px 25px rgba(37, 211, 102, .45),
        0 0 0 4px rgba(255, 255, 255, .15);

    transition: .3s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.whatsapp-float i {
    line-height: 1;
}