/* ==========================================================================
   Base Reset
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --gold-primary: #D4A017;
    --gold-accent: #C6A756;
    --gold-dark: #b88a14;
    --gold-glow: rgba(212, 160, 23, 0.4);
    
    --bg-main: #111111;
    --bg-surface: #1e293b;
    --bg-dark: #0f172a;
    --bg-light: #f8fafc;
    
    --text-pure: #ffffff;
    --text-light: rgba(255, 255, 255, 0.7);
    --text-dark: #111111;
    --text-muted: #64748b;
    
    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --card-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
    --card-shadow-hover: 0 26px 60px rgba(15, 23, 42, 0.24);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-pure);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 20%, rgba(212, 160, 23, 0.08), transparent 26%),
        radial-gradient(circle at 85% 15%, rgba(198, 167, 86, 0.07), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 30%);
    z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

/* ==========================================================================
   Typography Utilities
   ========================================================================== */
.text-gold { color: var(--gold-primary); }
.text-center { text-align: center !important; }
.font-sans { font-family: var(--font-sans); }

/* ==========================================================================
   Layout & Containers
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
    position: relative;
}

.section > * {
    position: relative;
    z-index: 1;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transform-origin: left center;
    transform: scaleX(0);
    background: linear-gradient(90deg, var(--gold-primary), #f2cf68);
    box-shadow: 0 0 18px rgba(212, 160, 23, 0.5);
    z-index: 1400;
}

.scroll-top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    background: rgba(10, 14, 23, 0.8);
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition-smooth);
    z-index: 1300;
    cursor: pointer;
}

.scroll-top svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-3px);
    border-color: rgba(242, 207, 104, 0.38);
    color: var(--gold-primary);
}

/* ==========================================================================
   Component: Buttons
   ========================================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px var(--gold-glow);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 35px var(--gold-glow);
    background: linear-gradient(90deg, #e0ad1a 0%, #c9a015 100%);
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.top-bar {
    background-color: var(--bg-main);
    color: var(--gold-primary);
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 1001;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.header {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    transition: var(--transition-smooth);
}

.header.sticky {
    position: fixed;
    top: 0;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-pure);
}

.logo span {
    color: var(--gold-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-pure);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--gold-primary);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-pure);
    cursor: pointer;
}

body.menu-open {
    overflow: hidden;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-image: url('/assets/hero_model_product.jpeg');
    background-position: center center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.42) 48%, rgba(0,0,0,0.08) 100%);
    z-index: 1;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(212,160,23,0.15), transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding-top: 5rem;
}

.hero-subtitle {
    display: inline-block;
    color: var(--gold-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    font-size: 0.9rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.hero-feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    flex: 1;
    transition: var(--transition-smooth);
}

.hero-feature-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.hero-feature-card svg {
    margin: 0 auto 0.5rem;
}

.hero-feature-title {
    font-size: 0.8rem;
    font-weight: 700;
    display: block;
}

.hero-feature-desc {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 0.2rem;
}

/* ==========================================================================
   Sections Base & Utilities
   ========================================================================== */
.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.badge-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(198, 167, 86, 0.15);
    border: 1px solid rgba(198, 167, 86, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    color: var(--gold-accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.text-center-wrapper {
    text-align: center;
}

/* ==========================================================================
   Cards (Features, Benefits)
   ========================================================================== */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    align-items: center;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(198,167,86,0.2), rgba(198,167,86,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(198,167,86,0.3), rgba(198,167,86,0.1));
}

.feature-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ==========================================================================
   Economy Section
   ========================================================================== */
.economy-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.economy-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.economy-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.economy-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.85) 50%, transparent 100%);
}

.economy-content {
    position: relative;
    z-index: 1;
}

.comparison-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.compare-card {
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.compare-card.bad {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.compare-card.good {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.compare-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.compare-card.bad .compare-header { color: #fca5a5; }
.compare-card.good .compare-header { color: #86efac; }

.compare-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 0.4rem 0;
}

.compare-row span:first-child { color: var(--text-light); }
.compare-row span:last-child { font-weight: 600; }

.economy-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.economy-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255,255,255,0.9);
}

/* ==========================================================================
   Results & Testimonials
   ========================================================================== */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
    max-width: 820px;
    margin: 0 auto 3rem;
}

.result-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.result-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.result-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.result-card:hover .result-img-wrapper img {
    transform: scale(1.05);
}

.result-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.result-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.tag {
    font-size: 0.6rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: white;
}

.tag.before { background-color: #ef4444; }
.tag.after { background-color: #22c55e; }

.stars {
    display: flex;
    gap: 0.2rem;
    color: var(--gold-primary);
}

.stars svg {
    fill: currentColor;
    width: 14px;
    height: 14px;
}

/* ==========================================================================
   How It Works (Steps)
   ========================================================================== */
.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 4rem auto;
    max-width: 1000px;
}

.steps-line {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(198,167,86,0.3), transparent);
    z-index: 0;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 0 1rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-dark));
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border: 4px solid var(--bg-main);
    box-shadow: 0 10px 20px rgba(198,167,86,0.2);
    transition: var(--transition-smooth);
}

.step-item:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(198,167,86,0.4);
}

.step-number {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--gold-primary);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   Light Sections (Trust, Advantages)
   ========================================================================== */
.bg-light {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.bg-light .section-subtitle {
    color: var(--text-muted);
}

.trust-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: rgba(34, 197, 94, 0.2);
}

.trust-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #22c55e;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-section {
    background-color: #F8F6F3;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    color: var(--text-dark);
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.price-card.featured {
    border: 2px solid #CDA85C;
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(198,167,86,0.15);
    padding-top: 3.5rem;
}

.price-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(205, 168, 92, 0.45);
    box-shadow: 0 24px 48px rgba(198,167,86,0.18);
}

.price-card.featured:hover {
    transform: translateY(-8px) scale(1.07);
}

/* Featured Header Banner */
.price-badge-banner {
    position: absolute;
    top: 0; left: 0; right: 0;
    background: #CDA85C;
    color: white;
    padding: 0.8rem;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

/* Card content */
.price-image-wrapper {
    position: relative;
    background: #fdfaf6;
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 2rem;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), background-color var(--transition-smooth);
}

.price-image-wrapper::after {
    content: '';
    position: absolute;
    inset: -20%;
    background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.6) 50%, transparent 65%);
    opacity: 0;
    transform: translateX(-60%) rotate(8deg);
    transition: transform 0.7s ease, opacity 0.35s ease;
}

.price-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transform: translateY(0) scale(1) rotate(0deg);
    transform-origin: center bottom;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter var(--transition-smooth);
}

.price-card:hover .price-image-wrapper {
    background: linear-gradient(180deg, #fffaf0 0%, #f6ead4 100%);
    transform: scale(1.03);
    box-shadow: inset 0 0 0 1px rgba(205, 168, 92, 0.16);
}

.price-card:hover .price-image-wrapper::after {
    opacity: 1;
    transform: translateX(60%) rotate(8deg);
}

.price-card:hover .price-image-wrapper img {
    transform: translateY(-6px) scale(1.06) rotate(-1.5deg);
    filter: drop-shadow(0 18px 24px rgba(198,167,86,0.22));
}

.price-card:nth-child(3n+2):hover .price-image-wrapper img {
    transform: translateY(-6px) scale(1.06) rotate(1.5deg);
}

.badge-best-value {
    position: absolute;
    top: 10px; left: 10px;
    background: #16a34a;
    color: white;
    padding: 0.45rem 0.9rem;
    border-radius: 16px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: left;
    max-width: 132px;
    line-height: 1.15;
    letter-spacing: 0.04em;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.25);
    border: 1px solid rgba(255,255,255,0.35);
}

/* Titles and prices */
.price-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-weight: 900;
}

.price-title span {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 1.2rem;
}

.price-old {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.9rem;
    display: block;
}

.badge-discount {
    background: #ef4444;
    color: white;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-block;
    margin-top: 0.3rem;
}

.price-por-apenas {
    font-size: 0.9rem;
    color: #475569;
    margin-top: 1rem;
    display: block;
}

.price-current {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin: 0.2rem 0;
    color: #0f172a;
    letter-spacing: -1.5px;
}

.price-payment-type {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: #16a34a;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
}

.price-installments {
    font-size: 0.9rem;
    color: #64748b;
}

.price-installments strong {
    color: #334155;
    font-weight: 800;
}

/* Checks */
.price-list {
    margin: 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.price-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.4;
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon svg {
    width: 12px;
    height: 12px;
    stroke-width: 4;
}

/* Button & Guarantee */
.btn-buy {
    background: linear-gradient(180deg, #dca820 0%, #b8860b 100%);
    color: white;
    font-size: 1.15rem;
    font-weight: 900;
    padding: 1.2rem 1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(220, 168, 32, 0.3);
    text-transform: uppercase;
    line-height: 1.3;
    transition: var(--transition-smooth);
    width: 100%;
    margin-bottom: 1rem;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 168, 32, 0.5);
    background: linear-gradient(180deg, #e6b42b 0%, #c49214 100%);
}

.guarantee-text {
    font-size: 0.75rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    line-height: 1.2;
}

.guarantee-text svg {
    color: #dca820;
    fill: #dca820;
    flex-shrink: 0;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 300px;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--bg-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-logo span { color: var(--gold-primary); }

.footer-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-bottom p { margin-bottom: 0.5rem; }

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes shimmer {
    100% { left: 200%; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes heroFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -8px, 0); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 10px 25px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.28); }
    50% { box-shadow: 0 16px 32px rgba(212, 160, 23, 0.5), inset 0 1px 0 rgba(255,255,255,0.32); }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Premium Refinements
   ========================================================================== */
.btn-primary,
.btn-buy {
    box-shadow: 0 10px 25px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.24);
}

.btn-primary {
    isolation: isolate;
}

.btn-primary:hover,
.btn-buy:hover {
    transform: translateY(-3px) scale(1.02);
}

.btn-primary:focus-visible,
.btn-buy:focus-visible,
.mobile-menu-btn:focus-visible,
.faq-question:focus-visible,
.nav-link:focus-visible {
    outline: 2px solid rgba(242, 207, 104, 0.9);
    outline-offset: 3px;
}

.header {
    background: linear-gradient(180deg, rgba(0,0,0,0.28), transparent);
}

.header.sticky {
    background: rgba(10, 14, 23, 0.72);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
}

.logo {
    letter-spacing: -0.02em;
}

.logo svg {
    filter: drop-shadow(0 6px 18px rgba(212, 160, 23, 0.3));
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.45rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    transform: scaleX(0.35);
    opacity: 0;
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    opacity: 1;
}

.nav-link.active {
    color: var(--gold-primary);
}

.hero {
    isolation: isolate;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.46) 44%, rgba(0,0,0,0.1) 100%),
        linear-gradient(180deg, rgba(7, 10, 16, 0.12), rgba(7, 10, 16, 0.4));
}

.hero-glow {
    background:
        radial-gradient(circle at 20% 80%, rgba(212,160,23,0.17), transparent 48%),
        radial-gradient(circle at 78% 12%, rgba(255,255,255,0.08), transparent 22%);
}

.hero-description {
    max-width: 60ch;
}

.hero .btn-primary {
    animation: pulseGlow 3.2s ease-in-out infinite;
}

.hero-feature-card,
.feature-card,
.compare-card,
.result-card,
.price-card,
.faq-item {
    position: relative;
    overflow: hidden;
}

.hero-feature-card,
.feature-card,
.result-card,
.price-card {
    box-shadow: var(--card-shadow);
}

.hero-feature-card::before,
.feature-card::before,
.result-card::before,
.price-card::before,
.faq-item::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.65), transparent);
    opacity: 0.9;
}

.hero-feature-card:hover,
.feature-card:hover,
.result-card:hover,
.price-card:hover,
.compare-card:hover,
.faq-item:hover {
    box-shadow: var(--card-shadow-hover);
}

.hero-feature-card:hover {
    transform: translateY(-7px);
}

.feature-card:hover {
    transform: translateY(-8px);
}

.compare-card:hover,
.faq-item:hover {
    transform: translateY(-4px);
}

.result-card:hover {
    transform: translateY(-8px);
}

.price-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.price-card.featured:hover {
    transform: translateY(-10px) scale(1.07);
}

.text-center-wrapper .section-subtitle {
    max-width: 48rem;
    margin-inline: auto;
}

.faq-question {
    background: linear-gradient(180deg, rgba(255,255,255,0.9), #ffffff);
}

.footer {
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.45), transparent);
}

.fade-up {
    transform: translateY(34px) scale(0.985);
    filter: blur(6px);
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.fade-up.visible {
    filter: blur(0);
}

.hero-feature-card:nth-child(1) {
    animation: heroFloat 4.8s ease-in-out infinite;
}

.hero-feature-card:nth-child(2) {
    animation: heroFloat 4.8s ease-in-out infinite 0.45s;
}

.hero-feature-card:nth-child(3) {
    animation: heroFloat 4.8s ease-in-out infinite 0.9s;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 1rem;
        right: 1rem;
        background: rgba(12,16,25,0.96);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
        clip-path: circle(0% at 100% 0%);
        transition: clip-path 0.5s ease-in-out;
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 22px;
        box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
    }
    
    .nav-links.active {
        clip-path: circle(150% at 100% 0%);
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        text-align: center;
        background-position: center;
    }
    
    .hero-features {
        flex-direction: column;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .steps-line {
        display: none;
    }
    
    .comparison-box {
        margin-top: 3rem;
    }
}

/* Hero social proof refinement */
.hero-feature-subtitle {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.72rem;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.58);
    font-weight: 500;
}

.hero-proof {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 0.85rem;
    row-gap: 0.22rem;
    margin-top: 1.3rem;
}

.hero-proof-avatars {
    display: flex;
    align-items: center;
    margin-right: 0.1rem;
}

.hero-proof-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.16rem;
}

.hero-proof-avatar {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    object-fit: cover;
    object-position: center top;
    border: 2px solid rgba(20, 16, 10, 0.9);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    background: #fff;
}

.hero-proof-avatar + .hero-proof-avatar {
    margin-left: -0.55rem;
}

.hero-proof-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.12rem;
    margin-bottom: 0;
}

.hero-proof p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.15;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
}

.hero-proof p strong {
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero-proof {
        justify-content: center;
        column-gap: 0.65rem;
    }

    .hero-proof-content {
        align-items: center;
    }

    .hero-proof-avatar {
        width: 1.9rem;
        height: 1.9rem;
    }

    .hero-proof p {
        margin-left: 0;
        text-align: center;
        font-size: 0.75rem;
    }

    .hero-feature-subtitle {
        font-size: 0.66rem;
    }
}

/* Zero risk section */
.zero-risk-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 40%, rgba(252, 203, 214, 0.32), transparent 28%),
        radial-gradient(circle at 85% 32%, rgba(214, 184, 98, 0.18), transparent 24%),
        linear-gradient(180deg, #fffaf8 0%, #fffdfb 42%, #f9f5ef 100%);
    padding-top: 4.5rem;
    padding-bottom: 4.8rem;
}

.zero-risk-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
        radial-gradient(circle at center, rgba(212, 168, 92, 0.08), transparent 48%);
}

.zero-risk-container {
    position: relative;
    z-index: 1;
}

.zero-risk-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
    max-width: 860px;
    margin: 0 auto;
}

.zero-risk-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.09);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.zero-risk-card-topline {
    height: 4px;
    width: 100%;
}

.zero-risk-card-pink .zero-risk-card-topline {
    background: linear-gradient(90deg, #f7b7c6, #f58ba6, #f9d4dd);
}

.zero-risk-card-gold .zero-risk-card-topline {
    background: linear-gradient(90deg, #d4b15f, #c99b2d, #ead8a7);
}

.zero-risk-card h3 {
    margin: 0 0 0.85rem;
    color: #172033;
    font-size: 1.75rem;
    font-family: var(--font-serif);
    font-weight: 800;
    text-align: center;
}

.zero-risk-card > p {
    max-width: 430px;
    margin: 0 auto;
    text-align: center;
    color: #64748b;
    font-size: 0.98rem;
    line-height: 1.75;
    padding: 0 2rem 2rem;
}

.zero-risk-badge {
    width: fit-content;
    margin: 2rem auto 1.2rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.zero-risk-card-pink .zero-risk-badge {
    color: #e56c8b;
    background: rgba(251, 207, 232, 0.45);
    border: 1px solid rgba(244, 114, 182, 0.18);
}

.zero-risk-card-gold .zero-risk-badge {
    color: #b2851e;
    background: rgba(250, 232, 188, 0.55);
    border: 1px solid rgba(202, 158, 45, 0.2);
}

.zero-risk-list {
    background: rgba(248, 250, 252, 0.96);
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    padding: 1.15rem;
    display: grid;
    gap: 0.72rem;
}

.zero-risk-list-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 14px;
    padding: 0.82rem 0.95rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.45;
    box-shadow: 0 5px 18px rgba(15, 23, 42, 0.04);
}

.zero-risk-list-item svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zero-risk-card-pink .zero-risk-list-item svg {
    color: #fb7185;
}

.zero-risk-card-gold .zero-risk-list-item svg {
    color: #c89a2f;
}

.zero-risk-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    max-width: 860px;
    margin: 1.9rem auto 0;
}

.zero-risk-mini-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(234, 226, 210, 0.9);
    border-radius: 20px;
    padding: 1.25rem 1rem 1.1rem;
    text-align: center;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.zero-risk-mini-card strong {
    display: block;
    color: #1e293b;
    font-size: 0.95rem;
    margin-bottom: 0.28rem;
}

.zero-risk-mini-card span {
    display: block;
    color: #94a3b8;
    font-size: 0.75rem;
    line-height: 1.3;
}

.zero-risk-mini-icon {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    margin: 0 auto 0.8rem;
}

.zero-risk-mini-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zero-risk-mini-icon-pink {
    color: #fb7185;
    background: rgba(255, 228, 233, 0.9);
}

.zero-risk-mini-icon-gold {
    color: #c89a2f;
    background: rgba(252, 239, 206, 0.92);
}

.zero-risk-mini-icon-rose {
    color: #fb7185;
    background: rgba(255, 240, 243, 0.95);
}

.zero-risk-mini-icon-soft {
    color: #c8a13a;
    background: rgba(252, 247, 222, 0.95);
}

@media (max-width: 992px) {
    .zero-risk-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .zero-risk-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 620px;
    }
}

@media (max-width: 768px) {
    .zero-risk-section {
        padding-top: 3.8rem;
        padding-bottom: 4rem;
    }

    .zero-risk-card {
        border-radius: 22px;
    }

    .zero-risk-card h3 {
        font-size: 1.42rem;
        line-height: 1.15;
        padding: 0 1rem;
    }

    .zero-risk-card > p {
        font-size: 0.92rem;
        padding: 0 1.15rem 1.6rem;
    }

    .zero-risk-list {
        padding: 0.9rem;
    }

    .zero-risk-list-item {
        font-size: 0.89rem;
        padding: 0.8rem 0.85rem;
    }

    .zero-risk-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .zero-risk-mini-card {
        border-radius: 18px;
        padding: 1rem 0.8rem;
    }
}

@media (max-width: 520px) {
    .zero-risk-mini-grid {
        grid-template-columns: 1fr 1fr;
    }

    .zero-risk-mini-card strong {
        font-size: 0.88rem;
    }

    .zero-risk-mini-card span {
        font-size: 0.72rem;
    }
}

/* Economy section redesign */
.economy-section {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    display: flex;
    align-items: center;
    background: #0f172a;
}

.economy-bg {
    position: absolute;
    inset: 0;
}

.economy-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    filter: saturate(0.94);
}

.economy-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(11, 18, 32, 0.95) 0%, rgba(15, 23, 42, 0.88) 26%, rgba(15, 23, 42, 0.68) 52%, rgba(15, 23, 42, 0.16) 100%),
        radial-gradient(circle at 20% 50%, rgba(212, 168, 92, 0.08), transparent 30%);
}

.economy-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.economy-content .grid-2 {
    grid-template-columns: minmax(0, 620px);
}

.economy-content .grid-2 > div {
    max-width: 620px;
}

.economy-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 1rem;
    margin-bottom: 1.35rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 168, 92, 0.28);
    background: rgba(212, 168, 92, 0.12);
    color: #d7af57;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.economy-title {
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.08;
    font-family: var(--font-serif);
    font-weight: 900;
    text-wrap: balance;
}

.economy-title span {
    color: #f87171;
}

.economy-subtitle {
    margin: 0 0 2rem;
    max-width: 540px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1.02rem;
    line-height: 1.75;
}

.comparison-box {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    align-items: stretch;
    max-width: 580px;
}

.compare-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1rem 1.05rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.compare-card.bad {
    background: rgba(127, 29, 29, 0.16);
    border: 1px solid rgba(248, 113, 113, 0.26);
}

.compare-card.good {
    background: rgba(6, 95, 70, 0.18);
    border: 1px solid rgba(74, 222, 128, 0.22);
}

.compare-header {
    margin-bottom: 0.85rem;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.compare-card.bad .compare-header {
    color: #fda4af;
}

.compare-card.good .compare-header {
    color: #86efac;
}

.compare-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.96rem;
}

.compare-row span:first-child {
    color: rgba(255, 255, 255, 0.62);
}

.compare-row span:last-child {
    text-align: right;
    font-weight: 700;
}

.compare-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 52px;
    pointer-events: none;
}

.compare-divider::before,
.compare-divider::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(180deg, rgba(248, 113, 113, 0.08), rgba(248, 113, 113, 0.55), rgba(248, 113, 113, 0.08));
    border-radius: 999px;
}

.compare-divider::before {
    top: 0;
    height: calc(50% - 26px);
}

.compare-divider::after {
    bottom: 0;
    height: calc(50% - 26px);
}

.compare-divider span {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #ef4444;
    color: #fff;
    border: 3px solid rgba(15, 23, 42, 0.82);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 14px 32px rgba(239, 68, 68, 0.35);
}

.economy-list {
    margin-top: 1.5rem;
    margin-bottom: 1.8rem;
    display: grid;
    gap: 0.8rem;
}

.economy-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.economy-list li svg {
    color: #4ade80;
    flex: 0 0 20px;
}

.economy-section .btn-primary {
    box-shadow: 0 16px 32px rgba(212, 168, 92, 0.28);
}

@media (max-width: 992px) {
    .economy-section {
        min-height: auto;
    }

    .economy-overlay {
        background:
            linear-gradient(180deg, rgba(11, 18, 32, 0.36) 0%, rgba(15, 23, 42, 0.78) 28%, rgba(15, 23, 42, 0.95) 100%);
    }

    .economy-content {
        padding-top: 18rem;
        padding-bottom: 4rem;
    }

    .economy-bg img {
        object-position: 62% center;
    }

    .economy-content .grid-2 {
        grid-template-columns: 1fr;
    }

    .economy-content .grid-2 > div {
        max-width: 640px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .economy-section {
        min-height: 760px;
    }

    .economy-content {
        padding-top: 19rem;
        padding-bottom: 3.5rem;
    }

    .economy-bg img {
        object-position: 66% top;
        object-fit: cover;
    }

    .economy-overlay {
        background:
            linear-gradient(180deg, rgba(11, 18, 32, 0.14) 0%, rgba(15, 23, 42, 0.68) 32%, rgba(15, 23, 42, 0.95) 100%);
    }

    .economy-badge {
        font-size: 0.72rem;
        padding: 0.55rem 0.9rem;
    }

    .economy-title {
        font-size: 2.1rem;
    }

    .economy-subtitle {
        font-size: 0.94rem;
        line-height: 1.65;
    }

    .comparison-box {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 420px;
        margin-inline: auto;
    }

    .compare-card.bad {
        margin-bottom: 1.2rem;
    }

    .compare-card.good {
        margin-top: 1.2rem;
    }

    .compare-divider {
        position: absolute;
        top: 50%;
        bottom: auto;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 52px;
        min-width: 52px;
        min-height: 52px;
        z-index: 4;
    }

    .compare-divider::before,
    .compare-divider::after {
        top: 50%;
        bottom: auto;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 2px;
        height: calc(50% - 28px);
        background: linear-gradient(180deg, rgba(248, 113, 113, 0.08), rgba(248, 113, 113, 0.5), rgba(248, 113, 113, 0.08));
    }

    .compare-divider::before {
        top: 0;
        transform: translateX(-50%);
    }

    .compare-divider::after {
        top: auto;
        bottom: 0;
        transform: translateX(-50%);
    }

    .compare-divider span {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .compare-card.good {
        transform: none !important;
    }

    .economy-list li {
        font-size: 0.93rem;
        line-height: 1.45;
    }
}

@media (max-width: 480px) {
    .economy-section {
        min-height: 720px;
    }

    .economy-content {
        padding-top: 17rem;
        padding-bottom: 3rem;
    }

    .economy-bg img {
        object-position: 64% top;
    }
}

/* Testimonial videos section */
.testimonial-videos-section {
    background:
        radial-gradient(circle at 20% 20%, rgba(212, 168, 92, 0.08), transparent 24%),
        linear-gradient(180deg, #0f172a 0%, #111c31 52%, #0c1424 100%);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 7rem;
}

.testimonial-videos-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.58rem 1rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    background: rgba(212, 168, 92, 0.14);
    border: 1px solid rgba(212, 168, 92, 0.28);
    color: #d7af57;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.testimonial-videos-section .section-title {
    color: #ffffff;
}

.testimonial-videos-section .section-subtitle {
    color: rgba(255, 255, 255, 0.64);
    max-width: 760px;
}

.testimonial-videos-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
    margin-top: 2.4rem;
}

.testimonial-video-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 0.85rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.testimonial-video-frame {
    border-radius: 16px;
    overflow: hidden;
    background: #030712;
    aspect-ratio: 9 / 16;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.testimonial-video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #030712;
}

.testimonial-video-meta {
    padding: 0.95rem 0.25rem 0.2rem;
}

.testimonial-video-meta strong {
    display: block;
    color: #ffffff;
    font-size: 0.98rem;
    margin-bottom: 0.26rem;
}

.testimonial-video-meta span {
    display: block;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.82rem;
    line-height: 1.4;
}

.testimonial-videos-footnote {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1.6rem;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.8rem;
}

.testimonial-videos-cta {
    display: flex;
    justify-content: center;
    margin-top: 1.8rem;
}

.testimonial-videos-cta .btn-primary {
    box-shadow: 0 18px 38px rgba(212, 168, 92, 0.24);
    text-align: center;
}

@media (max-width: 1100px) {
    .testimonial-videos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .testimonial-videos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonial-video-card {
        padding: 0.75rem;
        border-radius: 20px;
    }

    .testimonial-video-meta strong {
        font-size: 0.92rem;
    }

    .testimonial-video-meta span {
        font-size: 0.78rem;
    }

    .testimonial-videos-footnote {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonial-videos-cta .btn-primary {
        width: 100%;
        max-width: 360px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }

    .fade-up {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

@keyframes mediaGalleryScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

.media-gallery-section {
    position: relative;
    padding: 5.5rem 0 4.5rem;
    background: linear-gradient(180deg, #172235 0%, #182338 100%);
    overflow: hidden;
}

.media-gallery-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top center, rgba(198,167,86,0.1), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,0.015), transparent 18%);
    pointer-events: none;
}

.media-gallery-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.media-gallery-header .badge-glow {
    margin-bottom: 1rem;
}

.media-gallery-header .section-title {
    margin-bottom: 0.8rem;
}

.media-gallery-header .section-subtitle {
    max-width: 720px;
    margin-bottom: 0;
}

.media-gallery-shell {
    position: relative;
    overflow: hidden;
    padding: 0.5rem 0;
}

.media-gallery-shell::before,
.media-gallery-shell::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 72px;
    z-index: 2;
    pointer-events: none;
}

.media-gallery-shell::before {
    left: 0;
    background: linear-gradient(90deg, #182338, transparent);
}

.media-gallery-shell::after {
    right: 0;
    background: linear-gradient(270deg, #182338, transparent);
}

.media-gallery-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: mediaGalleryScroll 36s linear infinite;
}

.media-gallery-shell:hover .media-gallery-track {
    animation-play-state: paused;
}

.media-gallery-card {
    width: 182px;
    flex: 0 0 182px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}

.media-gallery-visual {
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
}

.media-gallery-visual img,
.media-gallery-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.media-gallery-card:hover .media-gallery-visual img,
.media-gallery-card:hover .media-gallery-visual video {
    transform: scale(1.04);
}

.media-gallery-caption {
    display: flex;
    align-items: center;
    gap: 0.38rem;
    padding: 0.78rem 0.8rem 0.9rem;
    color: rgba(255,255,255,0.88);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.3;
}

.media-gallery-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 999px;
    background: rgba(212,160,23,0.18);
    position: relative;
    flex: 0 0 auto;
}

.media-gallery-dot::before {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 0.22rem;
    height: 0.22rem;
    border-radius: 999px;
    background: var(--gold-primary);
    transform: translate(-50%, -50%);
}

.media-gallery-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
    text-align: center;
}

.media-gallery-meta div {
    display: flex;
    flex-direction: column;
    gap: 0.22rem;
}

.media-gallery-meta strong {
    color: var(--gold-accent);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.media-gallery-meta span {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .media-gallery-section {
        padding: 4.5rem 0 3.8rem;
    }

    .media-gallery-card {
        width: 156px;
        flex-basis: 156px;
    }

    .media-gallery-shell::before,
    .media-gallery-shell::after {
        width: 36px;
    }

    .media-gallery-meta {
        gap: 1.5rem;
    }
}

/* ==========================================================================
   Reference-Match Pass
   ========================================================================== */
.top-bar {
    padding: 0.72rem 1rem;
    background: #111111;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.top-bar-content {
    gap: 0.9rem;
    font-size: 0.82rem;
}

.top-bar-content > span {
    color: rgba(255,255,255,0.18);
}

.header {
    padding: 1rem 8%;
}

.nav-container {
    max-width: 1320px;
    height: 56px;
}

.nav-links {
    gap: 2rem;
}

.hero {
    background-position: right center;
}

.hero-content {
    max-width: 680px;
    margin-left: 8%;
    padding-top: 6rem;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4.3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero-description {
    max-width: 540px;
    color: rgba(255,255,255,0.82);
}

.hero .btn-primary {
    padding: 0.95rem 2.4rem;
    font-size: 0.92rem;
    font-weight: 800;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 500px;
}

.hero-feature-card {
    min-height: 110px;
    padding: 1rem 0.75rem;
    border-radius: 14px;
    background: rgba(255,255,255,0.1);
}

.hero-feature-card .hero-feature-title {
    font-size: 0.76rem;
    line-height: 1.25;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-top: 1.3rem;
    color: rgba(255,255,255,0.72);
    font-size: 0.86rem;
}

.hero-proof strong {
    color: #ffffff;
}

.hero-proof-stars {
    display: inline-flex;
    gap: 0.14rem;
    color: var(--gold-primary);
    text-shadow: 0 2px 10px rgba(212,160,23,0.28);
}

.hero-proof-stars span {
    font-size: 0.9rem;
}

.section[style*="var(--bg-surface)"] {
    background: #0f172a !important;
}

.section[style*="var(--bg-surface)"] .section-title,
.section[style*="var(--bg-surface)"] .feature-title,
.section[style*="var(--bg-surface)"] .step-item h4 {
    color: #ffffff;
}

.section[style*="var(--bg-surface)"] .section-subtitle,
.section[style*="var(--bg-surface)"] .feature-desc,
.section[style*="var(--bg-surface)"] .step-item p {
    color: rgba(255,255,255,0.5) !important;
}

.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 2.2rem 1.8rem;
}

.feature-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-8px) scale(1.02);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    margin-bottom: 1rem;
}

.comparison-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
    gap: 1rem;
}

.compare-card {
    border-radius: 18px;
    padding: 1.35rem;
}

.compare-card.good {
    transform: none !important;
}

.economy-list {
    margin-top: 1.5rem;
}

.results-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto 2.6rem;
    color: rgba(255,255,255,0.85);
}

.results-stats div {
    display: flex;
    flex-direction: column;
    gap: 0.22rem;
    text-align: center;
}

.results-stats strong {
    font-size: 2rem;
    line-height: 1;
    color: #ffffff;
}

.results-stats span {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.5);
}

#resultados.section {
    background:
        linear-gradient(180deg, rgba(15,23,42,0.92), rgba(15,23,42,0.94)),
        radial-gradient(circle at top left, rgba(198,167,86,0.12), transparent 35%);
}

.result-card {
    border-radius: 22px;
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
}

.result-overlay {
    padding: 1.35rem;
    background: linear-gradient(to top, rgba(0,0,0,0.84), rgba(0,0,0,0.2), transparent);
}

.steps-container {
    gap: 1rem;
}

.step-item {
    width: 20%;
}

.step-item h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 800;
}

.step-number {
    color: rgba(198,167,86,0.7);
}

.step-icon {
    width: 84px;
    height: 84px;
    border-radius: 999px;
    border: 4px solid #0f172a;
}

#beneficios.bg-light {
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.trust-card {
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(15,23,42,0.06);
}

.trust-card h3 {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    color: #0f172a;
    margin-bottom: 0.45rem;
}

.trust-card p {
    color: #64748b;
}

.pricing-section {
    background: #f8f6f3;
}

.pricing-grid {
    max-width: 1120px;
    gap: 2rem;
}

.price-card {
    border-radius: 28px;
}

.price-card.featured {
    transform: scale(1.05) translateY(-0.7rem);
}

.price-current {
    font-size: 3.15rem;
}

.faq-section {
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.faq-container {
    max-width: 920px;
}

.faq-question {
    border-radius: 24px;
    padding: 1.35rem 1.5rem;
}

.footer {
    background: #ffffff;
    color: #0f172a;
    border-top: 1px solid #e2e8f0;
}

.footer::before {
    display: none;
}

.footer-logo,
.footer-heading {
    color: #0f172a;
}

.footer-desc,
.footer-links a,
.footer-bottom {
    color: #64748b;
}

.footer-links a:hover {
    color: var(--gold-accent);
}

@media (max-width: 992px) {
    .hero-content {
        margin-left: 0;
        max-width: 100%;
    }

    .steps-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .step-item {
        width: calc(33.333% - 1rem);
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 1.25rem;
    }

    .hero {
        background-position: center center;
    }

    .hero-content {
        padding-top: 7rem;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 100%;
    }

    .hero-proof {
        justify-content: center;
        flex-direction: column;
        gap: 0.45rem;
    }

    .comparison-box {
        grid-template-columns: 1fr;
    }

    .results-stats {
        gap: 1.4rem;
    }

    .results-stats strong {
        font-size: 1.6rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        gap: 1rem;
    }

    .step-item {
        width: 100%;
    }
}

/* ==========================================================================
   Final Responsive Polish
   ========================================================================== */
html, body {
    overflow-x: hidden;
}

body {
    text-wrap: pretty;
}

.container {
    width: min(100% - 2rem, 1200px);
}

img,
video {
    max-width: 100%;
    height: auto;
}

.top-bar-content {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.35rem;
}

.nav-container,
.hero-content,
.economy-content .grid-2 > div,
.faq-container,
.zero-risk-grid,
.zero-risk-mini-grid,
.testimonial-videos-grid {
    min-width: 0;
}

.hero-content,
.hero-description,
.economy-subtitle,
.section-subtitle {
    max-width: 100%;
}

.hero-features,
.pricing-grid,
.results-grid,
.testimonial-videos-grid,
.zero-risk-mini-grid {
    align-items: stretch;
}

.comparison-box,
.results-grid,
.pricing-grid,
.zero-risk-grid,
.zero-risk-mini-grid,
.testimonial-videos-grid {
    width: 100%;
}

.price-card,
.result-card,
.testimonial-video-card,
.zero-risk-card,
.feature-card,
.trust-card,
.faq-item {
    min-width: 0;
}

.price-current {
    line-height: 1;
}

.price-title,
.section-title,
.economy-title,
.hero-title {
    text-wrap: balance;
}

.faq-question span:first-child,
.compare-row span:first-child,
.compare-row span:last-child,
.testimonial-video-meta strong,
.testimonial-video-meta span {
    min-width: 0;
}

@media (max-width: 1100px) {
    .container {
        width: min(100% - 2rem, 1040px);
    }

    .hero-content {
        margin-left: 4%;
        max-width: 620px;
    }

    .pricing-grid {
        gap: 1.5rem;
    }

    .price-card.featured {
        transform: scale(1.02) translateY(-0.35rem);
    }
}

@media (max-width: 992px) {
    .container {
        width: min(100% - 1.6rem, 940px);
    }

    .top-bar {
        padding-inline: 0.6rem;
    }

    .header {
        padding-inline: 1.25rem;
    }

    .hero {
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-content {
        margin-left: 0;
        padding-top: 7.4rem;
        max-width: 720px;
        margin-inline: auto;
    }

    .hero-features {
        max-width: 620px;
        margin-inline: auto;
    }

    .economy-content {
        padding-inline: 0;
    }

    .results-grid {
        max-width: 760px;
    }

    .pricing-grid {
        max-width: 760px;
        margin-inline: auto;
    }

    .price-card.featured {
        transform: none;
    }

    .testimonial-videos-grid {
        max-width: 760px;
        margin-inline: auto;
    }

    .zero-risk-grid,
    .zero-risk-mini-grid {
        max-width: 760px;
    }

    .footer-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(100% - 1.2rem, 100%);
    }

    .top-bar-content {
        font-size: 0.72rem;
        gap: 0.5rem;
    }

    .top-bar-content > span {
        display: none;
    }

    .header {
        padding: 0.9rem 0.85rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        top: 68px;
        left: 0.75rem;
        right: 0.75rem;
        padding: 1.15rem;
        gap: 1rem;
    }

    .hero {
        background-position: 60% center;
    }

    .hero-content {
        padding-top: 6.7rem;
        padding-inline: 0.1rem;
    }

    .hero-title {
        font-size: clamp(1.95rem, 9vw, 2.8rem);
        line-height: 1.1;
    }

    .hero-description {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .hero .btn-primary {
        width: 100%;
        max-width: 360px;
        margin-inline: auto;
        padding-inline: 1.2rem;
        font-size: 0.84rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        max-width: 360px;
        gap: 0.75rem;
        margin-top: 1.2rem;
    }

    .hero-feature-card {
        min-height: auto;
        padding: 0.95rem 0.8rem;
    }

    .hero-proof {
        max-width: 360px;
        margin-inline: auto;
    }

    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .trust-card {
        padding: 1.35rem 1rem;
        border-radius: 18px;
    }

    .economy-content {
        padding-top: 15rem;
    }

    .economy-title {
        font-size: clamp(1.95rem, 8vw, 2.4rem);
    }

    .economy-subtitle {
        font-size: 0.92rem;
    }

    .compare-card {
        padding: 1rem 0.9rem;
    }

    .compare-row {
        font-size: 0.9rem;
    }

    .economy-list {
        gap: 0.7rem;
    }

    .economy-list li {
        font-size: 0.9rem;
    }

    .results-stats {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .results-stats strong {
        font-size: 1.4rem;
    }

    .results-stats span {
        font-size: 0.78rem;
    }

    .results-grid {
        max-width: 350px;
        gap: 0.9rem;
    }

    .result-overlay {
        padding: 1rem;
    }

    .steps-container {
        gap: 1.2rem;
    }

    .step-item {
        max-width: 340px;
        margin-inline: auto;
    }

    .pricing-grid {
        max-width: 430px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .price-card {
        border-radius: 22px;
    }

    .price-card.featured {
        grid-column: auto;
        order: 0;
    }

    .price-image-wrapper {
        margin-bottom: 1.15rem;
    }

    .price-current {
        font-size: 2.15rem;
    }

    .btn-buy {
        width: 100%;
    }

    .zero-risk-grid {
        gap: 1rem;
    }

    .zero-risk-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .testimonial-videos-grid {
        max-width: 360px;
        gap: 0.9rem;
    }

    .testimonial-videos-cta .btn-primary {
        font-size: 0.82rem;
        line-height: 1.3;
        padding-inline: 1rem;
    }

    .faq-container {
        max-width: 100%;
    }

    .faq-question {
        padding: 1rem 1rem;
        border-radius: 18px;
    }

    .faq-question span:first-child {
        font-size: 0.94rem;
        line-height: 1.35;
    }

    .footer-grid {
        gap: 1.6rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(100% - 1rem, 100%);
    }

    .hero-content {
        padding-top: 6.2rem;
    }

    .hero-title {
        font-size: 1.78rem;
    }

    .hero-description {
        font-size: 0.92rem;
    }

    .hero-feature-card .hero-feature-title {
        font-size: 0.74rem;
    }

    .hero-proof-avatar {
        width: 1.8rem;
        height: 1.8rem;
    }

    .economy-content {
        padding-top: 13rem;
        padding-bottom: 3rem;
    }

    .economy-badge,
    .testimonial-videos-badge,
    .zero-risk-badge {
        font-size: 0.68rem;
    }

    .compare-row {
        gap: 0.75rem;
        font-size: 0.86rem;
    }

    .results-grid {
        max-width: 100%;
    }

    .testimonial-videos-grid {
        max-width: 100%;
        gap: 0.75rem;
    }

    .results-stats {
        flex-direction: row;
        gap: 0.8rem 1.2rem;
    }

    .results-stats strong {
        font-size: 1.25rem;
    }

    .price-current {
        font-size: 2rem;
    }

    .pricing-grid {
        max-width: 100%;
        gap: 0.75rem;
    }

    .price-card {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .price-title {
        font-size: 1rem;
    }

    .price-old,
    .price-por-apenas,
    .price-installments,
    .guarantee-text {
        font-size: 0.72rem;
    }

    .price-list {
        gap: 0.55rem;
    }

    .price-list li {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .zero-risk-mini-card,
    .testimonial-video-card {
        border-radius: 16px;
    }

    .testimonial-video-card {
        padding: 0.55rem;
    }

    .testimonial-video-meta {
        padding: 0.7rem 0.1rem 0.05rem;
    }

    .testimonial-video-meta strong {
        font-size: 0.82rem;
    }

    .testimonial-video-meta span {
        font-size: 0.72rem;
        line-height: 1.3;
    }

    .testimonial-videos-cta .btn-primary,
    .hero .btn-primary {
        max-width: 100%;
    }
}

/* ==========================================================================
   Compact Layout Tune
   ========================================================================== */
:root {
    --section-space: clamp(3.4rem, 6vw, 4.9rem);
    --section-space-mobile: 2.8rem;
    --content-gap: clamp(0.9rem, 1.8vw, 1.35rem);
    --card-radius: 18px;
}

.section,
.economy-section,
.pricing-section,
.testimonial-videos-section,
.faq-section,
.zero-risk-section,
.media-gallery-section {
    padding-block: var(--section-space);
}

.section-title,
.economy-title {
    margin-bottom: 0.85rem;
}

.section-subtitle,
.economy-subtitle {
    margin-bottom: 2.15rem;
    max-width: 680px;
    line-height: 1.65;
}

.text-center-wrapper {
    margin-bottom: 2rem;
}

.text-center-wrapper .section-subtitle:last-child {
    margin-bottom: 0;
}

.grid-4,
.grid-3,
.grid-2,
.results-grid,
.pricing-grid,
.zero-risk-grid,
.zero-risk-mini-grid,
.testimonial-videos-grid,
.footer-grid {
    gap: var(--content-gap);
}

.feature-card,
.trust-card,
.price-card,
.zero-risk-card,
.zero-risk-mini-card,
.testimonial-video-card,
.faq-item {
    border-radius: var(--card-radius);
}

.feature-card,
.trust-card {
    padding: 1.55rem 1.2rem;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    margin-bottom: 1rem;
}

.hero-description {
    margin-bottom: 1.8rem;
    max-width: 56ch;
}

.hero-features {
    margin-top: 1.6rem;
    gap: 0.85rem;
}

.hero-feature-card {
    padding: 0.9rem 0.75rem;
}

.hero-proof {
    margin-top: 1.15rem;
}

.results-stats {
    margin-top: 1.25rem;
    margin-bottom: 1.6rem;
}

.price-card {
    padding: 1.6rem 1.15rem;
}

.price-card.featured {
    padding-top: 3rem;
}

.price-image-wrapper {
    margin-bottom: 1.35rem;
}

.price-list {
    margin: 1.35rem 0;
}

.price-list li {
    margin-bottom: 0.8rem;
}

.btn-primary,
.btn-buy {
    min-height: 48px;
}

.faq-question {
    padding: 1rem 1.1rem;
}

.faq-answer {
    padding-inline: 1.1rem;
}

.testimonial-video-meta {
    padding-top: 0.8rem;
}

.testimonial-videos-footnote {
    margin-top: 1rem;
}

.testimonial-videos-cta {
    margin-top: 1.4rem;
}

.footer-bottom {
    margin-top: 2rem;
}

@media (min-width: 769px) and (max-width: 1200px) {
    .hero {
        min-height: 92vh;
    }

    .hero-content {
        padding-top: 4.6rem;
    }

    .hero-title {
        font-size: clamp(2.6rem, 4.8vw, 4rem);
    }

    .section-title,
    .economy-title {
        font-size: clamp(2rem, 3.4vw, 2.8rem);
    }

    .pricing-grid {
        max-width: 960px;
    }
}

@media (max-width: 768px) {
    .section,
    .economy-section,
    .pricing-section,
    .testimonial-videos-section,
    .faq-section,
    .zero-risk-section,
    .media-gallery-section {
        padding-block: var(--section-space-mobile);
    }

    .section-title,
    .economy-title {
        font-size: clamp(1.7rem, 7vw, 2.3rem);
    }

    .section-subtitle,
    .economy-subtitle {
        font-size: 0.92rem;
        margin-bottom: 1.7rem;
    }

    .badge-glow,
    .economy-badge,
    .testimonial-videos-badge,
    .zero-risk-badge {
        font-size: 0.68rem;
        padding: 0.34rem 0.78rem;
        letter-spacing: 0.04em;
        margin-bottom: 1rem;
    }

    .hero-content {
        padding-top: 6.1rem;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 0.72rem;
        letter-spacing: 0.1em;
        margin-bottom: 0.9rem;
    }

    .hero-title {
        font-size: clamp(1.85rem, 8.2vw, 2.55rem);
    }

    .hero-description {
        font-size: 0.92rem;
        line-height: 1.55;
        margin-bottom: 1.35rem;
    }

    .hero .btn-primary {
        min-height: 46px;
        padding: 0.78rem 1rem;
        font-size: 0.79rem;
    }

    .hero-features {
        gap: 0.65rem;
        margin-top: 1rem;
    }

    .hero-feature-card {
        padding: 0.8rem 0.7rem;
    }

    .hero-feature-card svg {
        width: 20px;
        height: 20px;
        margin-bottom: 0.35rem;
    }

    .hero-feature-title {
        font-size: 0.76rem;
    }

    .hero-feature-subtitle,
    .hero-feature-desc {
        font-size: 0.68rem;
    }

    .hero-proof {
        padding: 0.8rem 0.9rem;
    }

    .feature-card,
    .trust-card,
    .zero-risk-card,
    .faq-item {
        padding: 1.15rem 0.95rem;
    }

    .results-stats {
        gap: 0.8rem;
        margin-top: 1rem;
        margin-bottom: 1.4rem;
    }

    .results-grid,
    .testimonial-videos-grid {
        max-width: 100%;
    }

    .comparison-box,
    .compare-card,
    .price-card {
        width: 100%;
    }

    .compare-card {
        padding: 0.95rem 0.85rem;
    }

    .compare-row {
        font-size: 0.87rem;
        gap: 0.65rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

    .price-card,
    .price-card.featured {
        padding-top: 1.45rem;
    }

    .price-badge-banner {
        position: static;
        border-radius: 12px;
        margin: -0.2rem auto 0.9rem;
        width: fit-content;
        padding: 0.5rem 0.75rem;
        font-size: 0.72rem;
    }

    .badge-best-value {
        top: 8px;
        left: 8px;
        font-size: 0.64rem;
        max-width: 108px;
        padding: 0.35rem 0.65rem;
    }

    .price-title {
        font-size: 1.08rem;
    }

    .price-title span {
        font-size: 1rem;
    }

    .price-current {
        font-size: 2rem;
    }

    .price-list {
        margin: 1rem 0 1.2rem;
    }

    .price-list li {
        font-size: 0.8rem;
    }

    .btn-buy {
        min-height: 46px;
        font-size: 0.8rem;
    }

    .zero-risk-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .zero-risk-mini-card {
        padding: 0.9rem 0.75rem;
    }

    .testimonial-videos-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
    }

    .testimonial-video-card {
        padding: 0.55rem;
    }

    .testimonial-video-meta strong {
        font-size: 0.82rem;
    }

    .testimonial-video-meta span {
        font-size: 0.73rem;
        line-height: 1.35;
    }

    .testimonial-videos-footnote {
        flex-direction: column;
        gap: 0.35rem;
        text-align: center;
        font-size: 0.72rem;
    }

    .testimonial-videos-cta .btn-primary {
        min-height: 46px;
        font-size: 0.78rem;
        padding: 0.85rem 1rem;
    }

    .faq-question {
        padding: 0.9rem 0.95rem;
    }

    .faq-answer {
        padding-inline: 0.95rem;
    }

    .footer-grid {
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding-block: 0.45rem;
    }

    .logo {
        font-size: 1.05rem;
    }

    .nav-links {
        left: 0.5rem;
        right: 0.5rem;
        top: 64px;
        padding: 0.95rem;
    }

    .hero-content {
        padding-top: 5.8rem;
    }

    .hero-title {
        font-size: 1.72rem;
    }

    .hero-description,
    .section-subtitle,
    .economy-subtitle {
        font-size: 0.88rem;
    }

    .results-stats {
        justify-content: center;
    }

    .results-stats div {
        min-width: 82px;
    }

    .zero-risk-mini-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-videos-grid,
    .pricing-grid {
        max-width: 100%;
    }
}
