/* =============================================
   WAYLOCK LANDING PAGE v3.0 — PREMIUM STYLESHEET
   ============================================= */

:root {
    --primary: #F5A623;
    --primary-light: #FFB84D;
    --primary-dark: #D4891A;
    --primary-glow: rgba(245, 166, 35, 0.3);
    --primary-subtle: rgba(245, 166, 35, 0.08);
    --bg: #0A0A0F;
    --bg2: #111118;
    --card: #16161F;
    --card-hover: #1E1E2A;
    --surface: #1A1A26;
    --text: #F0F0F5;
    --text2: #A0A0B0;
    --text3: #6B6B7B;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(245, 166, 35, 0.2);
    --glass: rgba(22, 22, 31, 0.75);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --glow: 0 0 40px rgba(245, 166, 35, 0.15);
    --glow-strong: 0 0 80px rgba(245, 166, 35, 0.25);
    --font-h: 'Outfit', sans-serif;
    --font-b: 'Inter', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-b);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: .3s ease;
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ====== GRADIENTS & UTILS ====== */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--primary);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
    opacity: .6;
}

/* ====== BUTTONS ====== */
.btn {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 36px;
    border-radius: var(--radius-lg);
    font-weight: 800;
    font-size: .95rem;
    letter-spacing: .5px;
    text-align: center;
    overflow: hidden;
    transition: .3s ease;
    cursor: pointer;
    border: none;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000;
    box-shadow: var(--glow), var(--shadow-md);
}

.btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--glow-strong), var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn--primary:active {
    transform: translateY(0) scale(.98);
}

.btn--lg {
    padding: 20px 48px;
}

.btn--lg .btn__text {
    font-size: 1.05rem;
}

.btn--full {
    width: 100%;
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--border-hover);
    color: var(--primary);
    padding: 14px 28px;
}

.btn--outline:hover {
    background: var(--primary-subtle);
    border-color: var(--primary);
}

.btn--whatsapp {
    background: #25D366;
    color: #fff;
    flex-direction: row;
    gap: 8px;
}

.btn--whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-2px);
}

.btn__text {
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn__sub {
    font-size: .72rem;
    font-weight: 500;
    opacity: .8;
}

.btn__shine {
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60px;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    transform: skewX(-20deg);
    animation: ctaShine 3s ease-in-out infinite;
}

/* ====== HEADER ====== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: .3s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 15, .92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

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

.nav__logo-img {
    height: 140px;
    width: auto;
    transition: .3s ease;
}

.header.scrolled .nav__logo-img {
    height: 100px;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav__link {
    font-size: .88rem;
    font-weight: 500;
    color: var(--text2);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: .3s ease;
}

.nav__link:hover {
    color: var(--text);
    background: var(--primary-subtle);
}

.nav__cta-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000 !important;
    padding: 10px 22px !important;
    font-weight: 700 !important;
    font-size: .78rem !important;
    letter-spacing: .5px;
    border-radius: var(--radius-full) !important;
    box-shadow: var(--glow);
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    position: relative;
}

.nav__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-strong);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: .3s ease;
    display: block;
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ====== HERO ====== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(245, 166, 35, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(245, 166, 35, .03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse, rgba(0, 0, 0, .4), transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse, rgba(0, 0, 0, .4), transparent 70%);
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.hero__glow--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow), transparent 70%);
    top: -20%;
    right: -10%;
    animation: glowPulse 6s ease-in-out infinite;
}

.hero__glow--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 166, 35, .12), transparent 70%);
    bottom: -10%;
    left: -5%;
    animation: glowPulse 8s ease-in-out infinite 2s;
}

.hero__particles {
    position: absolute;
    inset: 0;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: .82rem;
    font-weight: 600;
    color: var(--primary);
    width: fit-content;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--primary-glow);
}

.hero__title {
    font-family: var(--font-h);
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.02em;
}

.hero__subtitle {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--text2);
    max-width: 540px;
}

.hero__subtitle strong {
    color: var(--text);
    font-weight: 600;
}

.hero__proof {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--text2);
}

.hero__proof-item i {
    color: var(--primary);
}

.hero__proof-sep {
    width: 1px;
    height: 20px;
    background: var(--border);
}

.hero__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero__security {
    font-size: .78rem;
    color: var(--text3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero__security i {
    color: var(--primary);
}

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__img-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--primary-glow), transparent 60%);
    filter: blur(60px);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

.hero__product {
    position: relative;
    z-index: 2;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(245, 166, 35, .2));
    animation: float 6s ease-in-out infinite;
}

.hero__float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    padding: 10px 16px;
    border-radius: var(--radius);
    font-size: .78rem;
    font-weight: 600;
    color: var(--text);
    z-index: 3;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.hero__float i {
    color: var(--primary);
}

.hero__float--1 {
    top: 10%;
    right: -5%;
    animation: floatBadge 5s ease-in-out infinite;
}

.hero__float--2 {
    bottom: 25%;
    left: -10%;
    animation: floatBadge 6s ease-in-out infinite 1s;
}

.hero__float--3 {
    bottom: 5%;
    right: 5%;
    animation: floatBadge 5.5s ease-in-out infinite 2s;
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.hero__scroll span {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text3);
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollBounce 2s ease-in-out infinite;
}

/* ====== TICKER ====== */
.ticker {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
    padding: 12px 0;
    overflow: hidden;
}

.ticker__track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.ticker__content {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 0 28px;
    white-space: nowrap;
    color: #000;
    font-size: .82rem;
    font-weight: 700;
}

.ticker__dot {
    opacity: .5;
    font-size: .6rem;
}

/* ====== SECTION SHARED ====== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-h);
    font-size: clamp(1.7rem, 3.5vw, 2.7rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -.02em;
}

.section-sub {
    font-size: 1rem;
    color: var(--text2);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-cta {
    text-align: center;
    margin-top: 56px;
}

.section-cta__text {
    color: var(--text2);
    margin-bottom: 16px;
    font-size: .92rem;
}

.section-glow {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.section-glow::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-glow), transparent 70%);
    border-radius: 50%;
    top: -15%;
    left: -10%;
    filter: blur(80px);
    opacity: .3;
}

.section-glow--alt::before {
    top: auto;
    bottom: -15%;
    left: auto;
    right: -10%;
}

/* ====== PAIN ====== */
.pain {
    padding: 100px 0;
    background: var(--bg2);
    position: relative;
    overflow: hidden;
}

.pain__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.pain__card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: .4s ease;
}

.pain__card:hover {
    transform: translateY(-6px);
    border-color: rgba(231, 76, 60, .3);
    box-shadow: 0 0 30px rgba(231, 76, 60, .08);
}

.pain__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: rgba(231, 76, 60, .1);
    border: 1px solid rgba(231, 76, 60, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #e74c3c;
    margin-bottom: 16px;
}

.pain__card h3 {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pain__card p {
    font-size: .88rem;
    color: var(--text2);
    line-height: 1.65;
}

.pain__card p strong {
    color: var(--text);
}

.pain__stat {
    text-align: center;
    padding: 40px;
    background: var(--card);
    border: 1px solid rgba(231, 76, 60, .15);
    border-radius: var(--radius-lg);
}

.pain__stat-number {
    font-family: var(--font-h);
    font-size: 3rem;
    font-weight: 900;
    color: #e74c3c;
    margin-bottom: 8px;
}

.pain__stat-text {
    font-size: 1rem;
    color: var(--text2);
}

.pain__stat-text strong {
    color: var(--text);
}

/* ====== SOLUTION ====== */
.solution {
    padding: 80px 0;
    background: var(--bg);
}

.solution__inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.solution__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-subtle);
    border: 1px solid var(--border-hover);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: .82rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.solution__title {
    font-family: var(--font-h);
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.solution__text {
    font-size: 1.05rem;
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: 32px;
}

.solution__text strong {
    color: var(--text);
}

/* ====== BENEFITS ====== */
.benefits {
    padding: 100px 0;
    background: var(--bg2);
    position: relative;
    overflow: hidden;
}

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

.benefit {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: .4s ease;
    position: relative;
    overflow: hidden;
}

.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: .3s;
}

.benefit:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--glow), var(--shadow-md);
}

.benefit:hover::before {
    opacity: 1;
}

.benefit__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: var(--radius);
    background: var(--primary-subtle);
    border: 1px solid rgba(245, 166, 35, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
}

.benefit h3 {
    font-family: var(--font-h);
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit p {
    font-size: .88rem;
    color: var(--text2);
    line-height: 1.65;
}

.benefit p strong {
    color: var(--text);
}

/* ====== STEPS ====== */
.steps {
    padding: 100px 0;
    background: var(--bg);
}

.steps__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.step {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    flex: 1;
    max-width: 340px;
    transition: .4s ease;
    position: relative;
    overflow: hidden;
}

.step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: .5s;
    transform-origin: left;
}

.step:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--glow), var(--shadow-md);
}

.step:hover::after {
    transform: scaleX(1);
}

.step__num {
    font-family: var(--font-h);
    font-size: .82rem;
    font-weight: 800;
    color: #000;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: var(--glow);
}

.step__icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
    opacity: .3;
}

.step h3 {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step p {
    font-size: .88rem;
    color: var(--text2);
    line-height: 1.65;
}

.step p strong {
    color: var(--primary);
}

.step__arrow {
    color: var(--primary);
    font-size: 1.2rem;
    opacity: .3;
}

.steps__pdf {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--card);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-top: 48px;
    transition: .3s;
}

.steps__pdf:hover {
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.steps__pdf>i {
    font-size: 2.2rem;
    color: #e74c3c;
    flex-shrink: 0;
    margin-top: 4px;
}

.steps__pdf h4 {
    font-family: var(--font-h);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.steps__pdf p {
    font-size: .88rem;
    color: var(--text2);
    line-height: 1.65;
}

.steps__pdf p strong {
    color: var(--text);
}

/* ====== GALLERY ====== */
.gallery {
    padding: 100px 0;
    background: var(--bg2);
    position: relative;
    overflow: hidden;
}

.gallery__video-wrap {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card);
    box-shadow: 0 8px 40px rgba(245, 166, 35, .08);
    position: relative;
}

.gallery__video-wrap video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    background: #000;
    object-fit: contain;
}

/* ====== TESTIMONIALS ====== */
.testimonials {
    padding: 100px 0;
    background: var(--bg);
}

.testimonials__videos {
    margin-bottom: 48px;
}

.testimonials__placeholder {
    text-align: center;
    padding: 48px 24px;
    background: var(--card);
    border: 2px dashed var(--border-hover);
    border-radius: var(--radius-lg);
    color: var(--text3);
    font-size: .88rem;
}

.testimonials__placeholder i {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
}

.testimonials__placeholder code {
    background: var(--primary-subtle);
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--primary);
}

.testimonials__videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.testimonials__video-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
}

.testimonials__video-card video {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
}

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

.testimonial {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: .4s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.testimonial:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--glow), var(--shadow-md);
}

.testimonial__stars {
    display: flex;
    gap: 3px;
    color: var(--primary);
    font-size: .85rem;
}

.testimonial p {
    font-size: .9rem;
    color: var(--text2);
    line-height: 1.75;
    flex: 1;
}

.testimonial p strong {
    color: var(--text);
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .9rem;
    color: #000;
    flex-shrink: 0;
}

.testimonial__author strong {
    font-size: .88rem;
}

.testimonial__author span {
    font-size: .75rem;
    color: var(--text3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial__author span i {
    color: var(--primary);
    font-size: .65rem;
}

.testimonial__verified {
    font-size: .72rem;
    color: #27ae60;
    display: flex;
    align-items: center;
    gap: 5px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

/* ====== COMPARE ====== */
.compare {
    padding: 100px 0;
    background: var(--bg2);
}

.compare__table {
    max-width: 750px;
    margin: 0 auto;
    overflow-x: auto;
}

.compare__table table {
    width: 100%;
    border-collapse: collapse;
}

.compare__table th,
.compare__table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-size: .88rem;
}

.compare__table thead th {
    background: var(--card);
    font-family: var(--font-h);
    font-weight: 700;
    color: var(--text);
    font-size: .82rem;
}

.compare__table thead th:first-child {
    text-align: left;
    border-radius: var(--radius) 0 0 0;
}

.compare__table thead th:last-child {
    border-radius: 0 var(--radius) 0 0;
}

.compare__table thead th:nth-child(2) {
    background: linear-gradient(135deg, rgba(245, 166, 35, .15), rgba(245, 166, 35, .05));
    border: 1px solid var(--border-hover);
    border-bottom: none;
}

.compare__table tbody td:nth-child(2) {
    background: rgba(245, 166, 35, .03);
    border-left: 1px solid var(--border-hover);
    border-right: 1px solid var(--border-hover);
}

.compare__table tbody td:first-child {
    text-align: left;
    color: var(--text);
    font-weight: 500;
}

.compare__logo {
    height: 80px;
    margin: 0 auto;
}

.compare__table .yes {
    color: #27ae60;
    font-size: 1.1rem;
}

.compare__table .no {
    color: #e74c3c;
    font-size: 1.1rem;
    opacity: .5;
}

/* ====== OFFER ====== */
.offer {
    padding: 100px 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.offer__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.offer__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.offer__glow--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 166, 35, .12), transparent 70%);
    top: -20%;
    left: -10%;
}

.offer__glow--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 166, 35, .08), transparent 70%);
    bottom: -15%;
    right: -10%;
}

.offer__card {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: var(--card);
    border: 2px solid var(--border-hover);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--glow), var(--shadow-lg);
}

.offer__ribbon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000;
    font-size: .75rem;
    font-weight: 800;
    padding: 8px 28px;
    border-radius: 0 0 var(--radius) var(--radius);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
}

.offer__layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
}

.offer__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    background: rgba(245, 166, 35, .03);
    border-right: 1px solid var(--border);
    gap: 28px;
}

.offer__img {
    max-width: 220px;
    filter: drop-shadow(0 10px 30px rgba(245, 166, 35, .15));
    animation: float 6s ease-in-out infinite;
}

.offer__trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.offer__trust>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.offer__trust i {
    font-size: 1.2rem;
    color: var(--primary);
}

.offer__trust span {
    font-size: .68rem;
    color: var(--text3);
    line-height: 1.3;
}

.offer__right {
    padding: 52px 36px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer__right h3 {
    font-family: var(--font-h);
    font-size: 1.4rem;
    font-weight: 800;
}

.offer__desc {
    font-size: .88rem;
    color: var(--text2);
}

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

.offer__checklist>div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--text2);
    font-weight: 500;
}

.offer__checklist i {
    color: #27ae60;
    font-size: .85rem;
}

.offer__price {
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.offer__price-old {
    font-size: .88rem;
    color: var(--text3);
}

.offer__price-old s {
    color: #e74c3c;
}

.offer__price-now {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    margin: 4px 0;
}

.offer__currency {
    font-family: var(--font-h);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 8px;
}

.offer__value {
    font-family: var(--font-h);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.offer__cents {
    font-family: var(--font-h);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 8px;
}

.offer__installments {
    font-size: .82rem;
    color: var(--text2);
}

/* ====== CHECKOUT MODAL ====== */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
}

.checkout-modal.active {
    opacity: 1;
    visibility: visible;
}

.checkout-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(8px);
}

.checkout-modal__content {
    position: relative;
    background: var(--bg2);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-xl);
    max-width: 540px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px;
    z-index: 2;
}

.checkout-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text2);
    font-size: 1rem;
    transition: .3s;
}

.checkout-modal__close:hover {
    background: var(--primary);
    color: #000;
}

.checkout__header {
    text-align: center;
    margin-bottom: 28px;
}

.checkout__logo {
    height: 125px;
    margin: 0 auto 16px;
}

.checkout__header h3 {
    font-family: var(--font-h);
    font-size: 1.4rem;
    font-weight: 800;
}

.checkout__header p {
    font-size: .88rem;
    color: var(--text2);
}

.checkout__step {
    display: none;
}

.checkout__step.active {
    display: block;
}

.checkout__step-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.checkout__step-title span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000;
    font-size: .82rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text2);
    margin-bottom: 6px;
}

.form-group label i {
    color: var(--primary);
    font-size: .85rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: .92rem;
    font-family: var(--font-b);
    transition: .3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, .1);
}

.form-group input::placeholder {
    color: var(--text3);
}

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

.checkout__nav-btns {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.checkout__nav-btns .btn {
    flex: 1;
}

.checkout__summary {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 20px;
}

.checkout__summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout__summary-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.checkout__summary-item strong {
    font-size: .88rem;
    display: block;
}

.checkout__summary-item span {
    font-size: .75rem;
    color: var(--text3);
}

.checkout__summary-price {
    margin-left: auto;
    font-family: var(--font-h);
    font-weight: 800;
    color: var(--primary);
    font-size: 1.1rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.payment-method {
    cursor: pointer;
}

.payment-method input {
    display: none;
}

.payment-method__inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: .3s;
}

.payment-method.active .payment-method__inner,
.payment-method input:checked+.payment-method__inner {
    border-color: var(--primary);
    background: var(--primary-subtle);
}

.payment-method__inner i {
    font-size: 1.4rem;
    color: var(--primary);
    width: 24px;
    text-align: center;
}

.payment-method__inner strong {
    font-size: .88rem;
    display: block;
}

.payment-method__inner span {
    font-size: .75rem;
    color: var(--text3);
}

.payment-method__price {
    margin-left: auto;
    font-weight: 700;
    font-size: .88rem;
    color: var(--text);
}

.checkout__secure {
    text-align: center;
    font-size: .78rem;
    color: var(--text3);
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.checkout__secure i {
    color: var(--primary);
}

.checkout__success {
    text-align: center;
    padding: 20px 0;
}

.checkout__success-icon {
    font-size: 3.5rem;
    color: #27ae60;
    margin-bottom: 20px;
}

.checkout__success h3 {
    font-family: var(--font-h);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.checkout__success p {
    font-size: .92rem;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 20px;
}

.checkout__order-id {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    font-family: monospace;
    font-size: .85rem;
    color: var(--primary);
    margin-bottom: 24px;
}

/* ====== CARD FIELDS ====== */
.card-fields {
    margin-bottom: 16px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

/* ====== PAYMENT DISCOUNT BADGE ====== */
.payment-method__discount {
    background: #27ae60;
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    margin-left: auto;
    margin-right: 8px;
}

/* ====== PIX QR CODE SCREEN ====== */
.checkout__pix-screen {
    text-align: center;
}

.pix-header {
    margin-bottom: 24px;
}

.pix-header i {
    font-size: 2.5rem;
    color: #32BCAD;
    margin-bottom: 12px;
}

.pix-header h3 {
    font-family: var(--font-h);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.pix-header p {
    font-size: .88rem;
    color: var(--text2);
}

.pix-qr {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    max-width: 280px;
    margin: 0 auto 20px;
}

.pix-qr img {
    width: 100%;
    display: block;
}

.pix-qr__loading {
    padding: 40px 0;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: .9rem;
}

.pix-qr__loading i {
    font-size: 1.5rem;
}

.pix-copypaste {
    margin-bottom: 16px;
}

.pix-copypaste label {
    font-size: .82rem;
    color: var(--text2);
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.pix-copypaste__field {
    display: flex;
    gap: 8px;
}

.pix-copypaste__field input {
    flex: 1;
    padding: 10px 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: .78rem;
    font-family: monospace;
}

.pix-copypaste__btn {
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000;
    font-weight: 700;
    font-size: .82rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: .3s;
    white-space: nowrap;
}

.pix-copypaste__btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.pix-copypaste__btn.copied {
    background: #27ae60;
    color: #fff;
}

.pix-value {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 12px;
}

.pix-value strong {
    color: var(--primary);
    font-family: var(--font-h);
    font-size: 1.3rem;
}

.pix-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: .85rem;
    color: var(--primary);
    background: var(--primary-subtle);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius);
    padding: 12px;
    margin-bottom: 20px;
}

.pix-status.confirmed {
    color: #27ae60;
    background: rgba(39, 174, 96, .08);
    border-color: rgba(39, 174, 96, .2);
}

.pix-status.confirmed i {
    color: #27ae60;
}

/* ====== FAQ ====== */
.faq {
    padding: 100px 0;
    background: var(--bg2);
    position: relative;
    overflow: hidden;
}

.faq__list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq__item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: .3s;
}

.faq__item:hover {
    border-color: var(--border-hover);
}

.faq__item.active {
    border-color: rgba(245, 166, 35, .3);
    box-shadow: 0 0 20px rgba(245, 166, 35, .06);
}

.faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    transition: .3s;
    font-family: var(--font-b);
}

.faq__q:hover {
    color: var(--primary);
}

.faq__q i {
    color: var(--primary);
    font-size: .85rem;
    transition: .3s;
    flex-shrink: 0;
}

.faq__item.active .faq__q i {
    transform: rotate(45deg);
}

.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .4s;
    padding: 0 22px;
}

.faq__item.active .faq__a {
    max-height: 300px;
    padding: 0 22px 22px;
}

.faq__a p {
    font-size: .9rem;
    color: var(--text2);
    line-height: 1.75;
}

.faq__a strong {
    color: var(--text);
    font-weight: 600;
}

/* ====== FINAL CTA ====== */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg), var(--bg2));
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 166, 35, .06), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.final-cta__inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.final-cta__inner h2 {
    font-family: var(--font-h);
    font-size: clamp(1.7rem, 3.5vw, 2.7rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.final-cta__inner p {
    font-size: 1.05rem;
    color: var(--text2);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta__inner p strong {
    color: var(--text);
}

/* ====== FOOTER ====== */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 60px 0 28px;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.footer__brand {
    max-width: 320px;
}

.footer__logo {
    height: 72px;
    width: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 20px rgba(245, 166, 35, .15));
}

.footer__brand p {
    font-size: .88rem;
    color: var(--text3);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer__social {
    display: flex;
    gap: 10px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text2);
    font-size: 1.1rem;
    transition: .3s;
}

.footer__social a:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer__nav {
    display: flex;
    gap: 56px;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__col h4 {
    font-family: var(--font-h);
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.footer__col a {
    font-size: .85rem;
    color: var(--text3);
    transition: .3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer__col a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer__line {
    height: 1px;
    background: var(--border);
    margin: 36px 0 20px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__bottom p {
    font-size: .78rem;
    color: var(--text3);
}

.footer__badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer__badges span {
    font-size: .75rem;
    color: var(--text3);
    background: var(--primary-subtle);
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer__badges span i {
    color: var(--primary);
}

/* ====== WHATSAPP FLOAT ====== */
.wpp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    z-index: 999;
    transition: .3s;
    animation: wppPulse 2s ease-in-out infinite;
}

.wpp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, .5);
}

.wpp-float span {
    position: absolute;
    right: 68px;
    background: #fff;
    color: #333;
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: .78rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    opacity: 0;
    transform: translateX(10px);
    transition: .3s;
    pointer-events: none;
}

.wpp-float span::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-left: 6px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.wpp-float:hover span {
    opacity: 1;
    transform: translateX(0);
}

/* ====== KEYFRAMES ====== */
@keyframes float {

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

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

@keyframes floatBadge {

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

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

@keyframes glowPulse {

    0%,
    100% {
        opacity: .3;
        transform: scale(1)
    }

    50% {
        opacity: .6;
        transform: scale(1.1)
    }
}

@keyframes pulse {

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

    50% {
        opacity: .5;
        transform: scale(1.3)
    }
}

@keyframes ctaShine {
    0% {
        left: -100%
    }

    50%,
    100% {
        left: 200%
    }
}

@keyframes scrollBounce {

    0%,
    100% {
        opacity: .3;
        transform: scaleY(.6);
        transform-origin: top
    }

    50% {
        opacity: 1;
        transform: scaleY(1)
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0);
        opacity: 0
    }

    10% {
        opacity: .6
    }

    90% {
        opacity: .6
    }

    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

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

@keyframes wppPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .4)
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, .6), 0 0 0 10px rgba(37, 211, 102, .1)
    }
}

@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0
    }
}

/* ====== RESPONSIVE ====== */
@media(max-width:1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero__content {
        align-items: center;
        order: 1;
    }

    .hero__visual {
        order: 0;
        max-width: 380px;
        margin: 0 auto;
    }

    .hero__subtitle {
        max-width: 100%;
    }

    .hero__proof {
        justify-content: center;
    }

    .hero__cta {
        align-items: center;
    }

    .hero__float--1 {
        right: 0;
    }

    .hero__float--2 {
        left: 0;
    }

    .pain__grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefits__grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps__grid {
        flex-direction: column;
    }

    .step__arrow {
        transform: rotate(90deg);
    }

    .step {
        max-width: 100%;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .offer__layout {
        grid-template-columns: 1fr;
    }

    .offer__left {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 40px 20px 20px;
    }

    .offer__img {
        max-width: 180px;
    }

    .footer__top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width:768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 10, 15, .97);
        backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 8px;
        transition: right .4s cubic-bezier(.4, 0, .2, 1);
        border-left: 1px solid var(--border);
        box-shadow: -10px 0 40px rgba(0, 0, 0, .5);
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__link {
        font-size: 1rem;
        padding: 12px 16px;
        width: 100%;
    }

    .nav__cta-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-top: 16px;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero__title {
        font-size: clamp(1.5rem, 6vw, 2.1rem);
    }

    .hero__product {
        max-height: 280px;
    }

    .hero__float {
        font-size: .68rem;
        padding: 8px 10px;
    }

    .hero__scroll {
        display: none;
    }

    .hero__proof-sep {
        height: 16px;
    }

    .btn--lg {
        padding: 16px 32px;
        width: 100%;
    }

    .pain__grid {
        grid-template-columns: 1fr;
    }

    .pain__stat-number {
        font-size: 2.2rem;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
    }

    .compare__table {
        font-size: .8rem;
    }

    .offer__right {
        padding: 36px 20px 28px;
    }

    .offer__checklist {
        grid-template-columns: 1fr;
    }

    .checkout-modal__content {
        padding: 24px;
    }

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

    .faq__q {
        padding: 16px 18px;
        font-size: .9rem;
    }

    .footer__nav {
        gap: 36px;
    }

    .footer__badges {
        justify-content: center;
    }

    .wpp-float {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
        bottom: 16px;
        right: 16px;
    }

    .wpp-float span {
        display: none;
    }
}

@media(max-width:480px) {
    .hero__title {
        font-size: 1.4rem;
    }

    .hero__badge {
        font-size: .72rem;
        padding: 6px 14px;
    }

    .hero__proof {
        flex-direction: column;
        gap: 8px;
    }

    .hero__proof-sep {
        display: none;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .offer__value {
        font-size: 2.6rem;
    }

    .footer__nav {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .footer__col {
        align-items: center;
    }
}

/* Overlay mobile */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Selection & Scrollbar */
::selection {
    background: var(--primary);
    color: #000;
}

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

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}