/* ===== Variables ===== */
:root {
    --color-bg: #ffffff;
    --color-bg-soft: #f8fafc;
    --color-bg-dark: #0f172a;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-primary: #f97316;
    --color-primary-dark: #ea580c;
    --color-secondary: #1e3a5f;
    --color-secondary-light: #334155;
    --color-accent: #10b981;
    --color-danger: #dc2626;
    --color-border: #e2e8f0;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
    --header-height: 72px;
    --transition: all 0.25s ease;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    padding-top: 104px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    padding: 14px 28px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    line-height: 1.2;
}
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -5px rgba(249, 115, 22, 0.45); }
.btn-primary:active { transform: translateY(0); }
.btn-large { padding: 20px 36px; font-size: 1.15rem; }
.btn-block { width: 100%; }
.btn-outline {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}
.btn-outline:hover { background: var(--color-secondary); color: #fff; }
.btn-sub { font-size: 0.75rem; font-weight: 500; opacity: 0.9; }
.btn-header { padding: 10px 20px; font-size: 0.85rem; background: var(--color-primary); color: #fff; }
.btn-header:hover { background: var(--color-primary-dark); }

/* ===== Urgency Bar ===== */
.urgency-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1001;
    background: linear-gradient(90deg, var(--color-danger), #b91c1c);
    color: #fff;
    font-size: 0.9rem;
    padding: 8px 0;
}
.urgency-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 24px; flex-wrap: wrap;
}
.urgency-label {
    background: rgba(255,255,255,0.2);
    padding: 2px 10px; border-radius: 999px;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px; font-size: 0.75rem;
}
.urgency-text { font-weight: 600; }
#countdown { font-family: "SF Mono", Consolas, monospace; font-weight: 700; letter-spacing: 1px; }
.urgency-stock strong { color: #fef08a; }
.urgency-bar.urgency-hidden { display: none; }

/* ===== Header ===== */
.site-header {
    position: fixed; top: 36px; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
}
.header-inner {
    height: var(--header-height);
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px;
}
.logo {
    display: flex; align-items: center; gap: 8px;
    font-weight: 800; font-size: 1.4rem;
    color: var(--color-secondary);
}
.logo-icon { font-size: 1.5rem; }
.header-nav { display: flex; gap: 28px; font-weight: 500; color: var(--color-text-light); }
.header-nav a:hover { color: var(--color-secondary); }

.header-right { display: flex; align-items: center; gap: 16px; }
.lang-switch {
    display: flex; align-items: center; gap: 4px;
    font-size: 0.8rem; font-weight: 600;
    background: #f1f2f4; border-radius: 999px; padding: 4px 10px;
}
.lang-switch a { color: var(--color-text-light); text-decoration: none; padding: 2px 4px; border-radius: 999px; }
.lang-switch a:hover { color: var(--color-secondary); }
.lang-switch a.active { color: #fff; background: var(--color-secondary); }
.lang-switch .lang-sep { color: #c4c7cc; }

/* ===== Hero ===== */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #fff 0%, #fff7ed 100%);
    overflow: hidden;
}
.hero-grid {
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center;
}
.hero-badge { display: inline-flex; margin-bottom: 16px; }
.hero-badge span {
    background: #eff6ff; color: #1d4ed8;
    padding: 6px 14px; border-radius: 999px;
    font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.hero-title {
    font-size: 3.2rem; font-weight: 800; line-height: 1.05;
    color: var(--color-secondary); margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero-title .highlight { color: var(--color-primary); }
.hero-subtitle {
    font-size: 1.15rem; color: var(--color-text-light);
    margin-bottom: 24px; max-width: 540px;
}

.rating-strip {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 24px;
}
.stars-row { color: #f59e0b; font-size: 1.2rem; letter-spacing: 2px; }
.rating-meta { font-size: 0.9rem; color: var(--color-text-light); }
.rating-meta strong { color: var(--color-secondary); }

.price-box {
    display: flex; align-items: baseline; gap: 14px;
    margin-bottom: 24px; flex-wrap: wrap;
}
.price-current { font-size: 2.6rem; font-weight: 800; color: var(--color-danger); }
.price-original { font-size: 1.4rem; color: var(--color-text-light); text-decoration: line-through; }
.price-save {
    background: #fef3c7; color: #92400e;
    padding: 4px 12px; border-radius: 999px;
    font-size: 0.85rem; font-weight: 700;
}
.hero-actions { margin-bottom: 28px; }
.hero-actions .btn { margin-bottom: 14px; }
.stock-pulse {
    display: flex; align-items: center; gap: 8px;
    color: var(--color-text-light); font-size: 0.9rem;
}
.stock-pulse strong { color: var(--color-danger); }
.pulse-dot {
    width: 10px; height: 10px;
    background: var(--color-danger);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.trust-row { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.85rem; font-weight: 600;
    color: var(--color-text-light);
}
.trust-icon { font-size: 1.1rem; }

.hero-media { position: relative; }
.hero-video-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #f1f5f9;
}
.hero-video { width: 100%; display: block; }
.video-badge {
    position: absolute; bottom: 16px; left: 16px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 6px 14px; border-radius: 999px;
    font-size: 0.8rem; font-weight: 600;
    backdrop-filter: blur(8px);
}

/* ===== Social Bar ===== */
.social-bar {
    background: var(--color-secondary);
    color: #fff;
    padding: 22px 0;
}
.social-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.social-icon { font-size: 1.5rem; }
.social-item strong {
    font-size: 0.95rem;
    color: #fff;
}
.social-item span:not(.social-icon) { font-size: 0.8rem; opacity: 0.85; }

/* ===== Section Common ===== */
.section-head {
    text-align: center; max-width: 720px;
    margin: 0 auto 50px;
}
.section-head h2 {
    font-size: 2.2rem; font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.section-head p {
    font-size: 1.05rem; color: var(--color-text-light);
}
.section-kicker {
    display: inline-block; color: var(--color-primary);
    font-weight: 700; font-size: 0.8rem;
    letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 8px;
}
.section-head.light h2, .section-head.light p { color: #fff; }
.section-head.light .section-kicker { color: #fdba74; }

/* ===== Problem Section ===== */
.problem-section { padding: 80px 0; background: var(--color-bg-soft); }
.problem-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.problem-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow);
}
.problem-stat {
    font-size: 1.4rem; font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 12px;
    line-height: 1.2;
    min-height: 2rem;
    display: flex; align-items: center; justify-content: center;
}
.problem-card h4 {
    font-size: 1.05rem; margin-bottom: 8px;
    color: var(--color-secondary);
    line-height: 1.4;
}
.problem-card p { color: var(--color-text-light); font-size: 0.9rem; }

/* ===== Features Section ===== */
.features-section { padding: 90px 0; background: var(--color-bg-dark); }
.features-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 24px;
    color: #fff;
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.08);
}
.feature-media {
    background: #fff;
    border-radius: var(--radius);
    margin-bottom: 18px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
.feature-media img {
    width: 100%; height: 100%; object-fit: cover;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: #94a3b8; line-height: 1.5; }

/* ===== Gallery (was Video Demo) ===== */
.video-section { padding: 90px 0; background: #fff; }
.video-grid {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: center;
}
.gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.gallery-grid img {
    width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: #f1f5f9;
}
.video-text h2 {
    font-size: 1.8rem; color: var(--color-secondary);
    margin-bottom: 16px; line-height: 1.2;
}
.video-text p { color: var(--color-text-light); margin-bottom: 24px; }

/* ===== Specs Bar ===== */
.specs-bar {
    padding: 28px 0;
    background: #fff;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.specs-grid {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.spec { text-align: center; }
.spec strong {
    display: block; color: var(--color-text-light);
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 0.5px; margin-bottom: 4px;
}
.spec span { font-weight: 700; color: var(--color-secondary); }

/* ===== Audience Section ===== */
.audience-section { padding: 90px 0; background: var(--color-bg-soft); }
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.audience-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--color-border);
}
.audience-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
}
.audience-emoji {
    display: inline-block;
    font-size: 2rem;
    margin-bottom: 12px;
}
.audience-card h4 {
    color: var(--color-secondary);
    margin-bottom: 8px;
    font-size: 1.05rem;
}
.audience-card p { color: var(--color-text-light); font-size: 0.9rem; }

/* ===== Compare Section ===== */
.compare-section { padding: 90px 0; background: #fff; }
.compare-table-wrap { overflow-x: auto; }
.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.compare-table th, .compare-table td {
    padding: 18px 16px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}
.compare-table th {
    background: var(--color-bg-soft);
    font-weight: 700;
    color: var(--color-text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.compare-table th:first-child, .compare-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--color-secondary);
    background: var(--color-bg-soft);
}
.compare-table th.us, .compare-table td.us {
    background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
    color: var(--color-primary);
    font-weight: 700;
    position: relative;
}
.compare-table th.us::before {
    content: "★";
    display: block;
    color: var(--color-primary);
    margin-bottom: 4px;
    font-size: 1.2rem;
}
.check-yes { color: #10b981; font-weight: 700; }
.check-no { color: #cbd5e1; }
.check-maybe { color: #f59e0b; font-weight: 600; font-size: 0.85rem; }

/* ===== Bundles Section ===== */
.bundles-section {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--color-bg-soft) 0%, #fff 100%);
}
.bundles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}
.bundle-card {
    background: #fff;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.bundle-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.bundle-card.popular {
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px -10px rgba(249, 115, 22, 0.3);
    transform: scale(1.02);
}
.bundle-card.popular:hover { transform: scale(1.02) translateY(-4px); }
.bundle-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}
.bundle-head {
    text-align: center;
    margin-bottom: 16px;
}
.bundle-head h3 {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 4px;
}
.bundle-tag {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 700;
}
.bundle-price {
    text-align: center;
    margin-bottom: 20px;
    padding: 16px 0;
    border-top: 1px dashed var(--color-border);
    border-bottom: 1px dashed var(--color-border);
}
.bundle-now {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-danger);
}
.bundle-was {
    display: block;
    font-size: 1.1rem;
    color: var(--color-text-light);
    text-decoration: line-through;
    margin-top: 4px;
}
.bundle-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}
.bundle-list li {
    padding: 6px 0;
    color: var(--color-text);
    font-size: 0.9rem;
    border-bottom: 1px dotted #e2e8f0;
}
.bundle-list li:last-child { border-bottom: none; }

.bundles-note {
    text-align: center;
    margin-top: 30px;
    color: var(--color-text-light);
    font-size: 0.85rem;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Product Builder ===== */
.product-section { padding: 90px 0; background: var(--color-bg-soft); }
.product-builder {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 50px; align-items: start;
    background: #fff; border-radius: var(--radius-lg);
    padding: 40px; box-shadow: var(--shadow);
}
.builder-preview { text-align: center; position: sticky; top: 120px; }
.builder-preview img { max-width: 360px; margin: 0 auto 20px; }
.builder-price { display: flex; align-items: center; justify-content: center; gap: 12px; }
.builder-now { font-size: 2rem; font-weight: 800; color: var(--color-danger); }
.builder-was { font-size: 1.2rem; color: var(--color-text-light); text-decoration: line-through; }

.builder-options { display: flex; flex-direction: column; gap: 22px; }
.option-group label {
    display: block; font-weight: 700;
    margin-bottom: 8px; color: var(--color-secondary);
}
.input-select, .input-text {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    font-size: 1rem; background: #fff;
    transition: var(--transition);
}
.input-select:focus, .input-text:focus {
    outline: none; border-color: var(--color-primary);
}
.color-swatches { display: flex; gap: 12px; }
.color-swatch {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--color-border);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}
.color-swatch:hover, .color-swatch.active {
    box-shadow: 0 0 0 3px var(--color-primary);
    transform: scale(1.1);
}
.color-swatch .check {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: #fff; font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.2s;
}
.color-swatch.active .check { opacity: 1; }
.selected-color-label {
    margin-top: 8px;
    font-weight: 600; color: var(--color-text-light);
}
.qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
}
.qty-stepper button {
    width: 42px; height: 44px;
    border: none; background: var(--color-bg-soft);
    font-size: 1.2rem; cursor: pointer;
    color: var(--color-secondary);
}
.qty-stepper button:hover { background: #e2e8f0; }
.qty-stepper input {
    width: 60px; height: 44px;
    border: none; text-align: center;
    font-weight: 700; font-size: 1rem;
    color: var(--color-secondary);
}
.builder-total {
    font-size: 1.2rem; color: var(--color-text-light);
    padding-top: 10px;
    border-top: 1px dashed var(--color-border);
}
.builder-total strong { color: var(--color-danger); font-size: 1.5rem; }
.builder-guarantee {
    display: flex; gap: 16px; flex-wrap: wrap;
    font-size: 0.8rem; color: var(--color-text-light);
}

/* ===== Reviews ===== */
.reviews-section { padding: 90px 0; background: #fff; }
.reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-bottom: 40px;
}
.review-card {
    background: var(--color-bg-soft);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--color-border);
}
.stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.review-card p {
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 18px;
    line-height: 1.6;
}
.reviewer strong { display: block; color: var(--color-secondary); font-size: 0.9rem; }
.reviewer span { font-size: 0.8rem; color: var(--color-text-light); }
.reviews-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: -20px;
    margin-bottom: 20px;
}
.reviews-summary {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; padding: 24px;
    background: var(--color-bg-soft);
    border-radius: var(--radius-lg);
}
.rating-big { font-size: 3rem; font-weight: 800; color: var(--color-secondary); }
.rating-text { text-align: left; }
.rating-text span {
    display: block; color: var(--color-text-light); font-size: 0.9rem;
}

/* ===== Guarantee ===== */
.guarantee-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}
.guarantee-grid {
    display: grid; grid-template-columns: 2fr 1fr;
    gap: 60px; align-items: center;
}
.guarantee-content h2 {
    font-size: 2.2rem; color: var(--color-secondary);
    margin-bottom: 16px; line-height: 1.2;
}
.guarantee-content p {
    font-size: 1.05rem; color: var(--color-text-light);
    margin-bottom: 24px;
}
.check-list {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 10px;
}
.check-list li { font-weight: 600; color: var(--color-secondary); }
.guarantee-badge { display: flex; justify-content: center; }
.badge-circle {
    width: 200px; height: 200px;
    border-radius: 50%;
    background: #fff;
    border: 6px solid var(--color-primary);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.badge-circle span {
    font-size: 3.8rem; font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}
.badge-circle small {
    font-weight: 700; color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    line-height: 1.2;
}

/* ===== FAQ ===== */
.faq-section { padding: 90px 0; background: var(--color-bg-soft); }
.faq-list {
    max-width: 800px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
    background: #fff; border-radius: var(--radius);
    border: 1px solid var(--color-border);
    overflow: hidden;
}
.faq-item summary {
    padding: 20px 24px; font-weight: 700;
    color: var(--color-secondary); cursor: pointer;
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    transition: background 0.2s;
}
.faq-item summary:hover { background: var(--color-bg-soft); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; font-size: 1.4rem; color: var(--color-primary);
    font-weight: 400;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 24px 20px; color: var(--color-text-light); margin: 0; }

/* ===== Final CTA ===== */
.final-cta {
    padding: 80px 0;
    background: var(--color-secondary);
    color: #fff;
    text-align: center;
}
.final-cta-inner { max-width: 800px; }
.final-cta h2 {
    font-size: 2.4rem; margin-bottom: 14px;
    line-height: 1.2;
}
.final-cta p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 24px; }
.final-price {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; margin-bottom: 28px;
}
.final-now { font-size: 2.4rem; font-weight: 800; color: #fdba74; }
.final-was { font-size: 1.3rem; opacity: 0.6; text-decoration: line-through; }

/* ===== Mobile Sticky Bar ===== */
.mobile-sticky-bar {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 999;
    background: #fff;
    border-top: 1px solid var(--color-border);
    padding: 10px 0;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
}
.mobile-sticky-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 0 20px;
}
.mobile-sticky-price strong { font-size: 1.3rem; color: var(--color-danger); }
.mobile-sticky-price span {
    display: block; font-size: 0.85rem;
    color: var(--color-text-light); text-decoration: line-through;
}

/* ===== Footer ===== */
.site-footer {
    background: #0b1120;
    color: #94a3b8;
    padding: 50px 0 20px;
}
.footer-grid {
    display: flex; justify-content: space-between;
    align-items: flex-start; flex-wrap: wrap;
    gap: 30px; margin-bottom: 30px;
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-brand strong { color: #fff; font-size: 1.2rem; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
    text-align: center; font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}
.footer-disclaimer {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 10px;
    line-height: 1.5;
}
.footer-legal {
    display: flex; gap: 20px; flex-wrap: wrap;
}
.footer-legal a {
    font-size: 0.8rem; color: #94a3b8;
}
.footer-legal a:hover { color: #fff; }

/* ===== Cookie Consent Banner ===== */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1500;
    background: rgba(15, 23, 42, 0.97);
    color: #e2e8f0;
    padding: 14px 0;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
}
.cookie-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; flex-wrap: wrap;
}
.cookie-inner p {
    font-size: 0.82rem; line-height: 1.5; margin: 0; flex: 1; min-width: 240px;
}
.cookie-link { color: #fdba74; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie {
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.8rem; font-weight: 700;
    cursor: pointer; border: none;
    transition: var(--transition);
}
.btn-cookie-ok { background: var(--color-primary); color: #fff; }
.btn-cookie-ok:hover { background: var(--color-primary-dark); }
.btn-cookie-ghost { background: transparent; color: #cbd5e1; border: 1px solid #475569; }
.btn-cookie-ghost:hover { border-color: #94a3b8; color: #fff; }

/* ===== Modal ===== */
.modal-overlay {
    position: fixed; inset: 0;
    z-index: 2000;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center; justify-content: center;
    padding: 20px; overflow-y: auto;
}
.modal-overlay.active { display: flex; }
.modal {
    background: #fff; border-radius: var(--radius-lg);
    width: 100%; max-width: 900px;
    max-height: 90vh; overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: modalIn 0.3s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.modal-close {
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px;
    border-radius: 50%; border: none;
    background: var(--color-bg-soft);
    font-size: 1.6rem; line-height: 1;
    cursor: pointer; color: var(--color-text-light);
    z-index: 10;
}
.modal-close:hover { background: var(--color-border); }
.modal-grid { display: grid; grid-template-columns: 1fr 1.2fr; }
.modal-summary {
    background: var(--color-bg-soft);
    padding: 36px;
    border-right: 1px solid var(--color-border);
}
.modal-summary h3 {
    font-size: 1.1rem; color: var(--color-secondary);
    margin-bottom: 20px;
}
.summary-image {
    background: #fff; border-radius: var(--radius);
    padding: 16px; margin-bottom: 20px;
}
.summary-image img { max-width: 220px; margin: 0 auto; }
.summary-line {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 10px; font-size: 0.95rem;
}
.summary-line strong { color: var(--color-danger); font-size: 1.1rem; }
.summary-line.small { color: var(--color-text-light); font-size: 0.85rem; }
.summary-total {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 20px; padding-top: 16px;
    border-top: 2px solid var(--color-border);
    font-size: 1.1rem; font-weight: 700;
}
.summary-total strong { color: var(--color-danger); font-size: 1.4rem; }
.summary-trust {
    margin-top: 16px;
    display: flex; gap: 12px; flex-wrap: wrap;
    font-size: 0.75rem; color: var(--color-text-light);
}
.modal-form { padding: 36px; }
.modal-form h3 {
    font-size: 1.3rem; color: var(--color-secondary);
    margin-bottom: 22px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
    display: block; font-weight: 700;
    margin-bottom: 6px; color: var(--color-secondary);
    font-size: 0.9rem;
}
.form-row label small { font-weight: 400; color: var(--color-text-light); }
.paypal-note {
    text-align: center; font-size: 0.8rem;
    color: var(--color-text-light); margin-top: 10px;
}
.config-alert {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    color: #991b1b;
}
.config-alert strong { display: block; margin-bottom: 8px; }
.config-alert p { margin-bottom: 14px; font-size: 0.9rem; }
.checkout-message {
    margin-top: 14px;
    padding: 12px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    display: none;
}
.checkout-message.success {
    display: block; background: #dcfce7; color: #166534;
    border: 1px solid #bbf7d0;
}
.checkout-message.error {
    display: block; background: #fee2e2; color: #991b1b;
    border: 1px solid #fecaca;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-grid, .product-builder, .modal-grid, .guarantee-grid, .video-grid, .bundles-grid {
        grid-template-columns: 1fr;
    }
    .features-grid, .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .builder-preview { position: static; }
    .bundle-card.popular { transform: none; }
    .bundle-card.popular:hover { transform: translateY(-4px); }
    .modal-summary { border-right: none; border-bottom: 1px solid var(--color-border); }
    .hero-title { font-size: 2.4rem; }
    .social-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    body { padding-top: 96px; padding-bottom: 70px; }
    .urgency-inner { gap: 8px; font-size: 0.8rem; }
    .urgency-stock { display: none; }
    .site-header { top: 32px; }
    .header-nav { display: none; }
    .header-right { gap: 10px; }
    .lang-switch { padding: 3px 8px; font-size: 0.72rem; }
    .btn-header { padding: 8px 14px; font-size: 0.75rem; }
    .hero { padding: 40px 0 60px; }
    .hero-title { font-size: 2rem; }
    .price-current { font-size: 2rem; }
    .problem-grid, .features-grid, .audience-grid, .reviews-grid, .details-gallery, .gallery-grid {
        grid-template-columns: 1fr;
    }
    .specs-grid { grid-template-columns: repeat(2, 1fr); }
    .section-head h2 { font-size: 1.7rem; }
    .guarantee-content h2, .final-cta h2 { font-size: 1.8rem; }
    .product-builder { padding: 24px; }
    .mobile-sticky-bar { display: block; }
    .modal { max-height: 95vh; }
    .modal-summary, .modal-form { padding: 24px; }
    .guarantee-badge { margin-top: 20px; }
    .bundle-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.7rem; }
    .btn-large { padding: 16px 24px; font-size: 1rem; }
    .trust-row { gap: 12px; }
    .trust-item { font-size: 0.75rem; }
    .final-now { font-size: 1.8rem; }
    .social-item strong { font-size: 1.2rem; }
    .badge-circle { width: 160px; height: 160px; }
    .badge-circle span { font-size: 3rem; }
}
