:root {
    --color-black: #0a0a0a;
    --color-dark: #121212;
    --color-gray: #1e1e1e;
    --color-light-gray: #2a2a2a;
    --color-white: #ffffff;
    --color-red: #dc2626;
    --color-red-dark: #991b1b;
    --color-red-light: #ef4444;
    --gradient-red: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    background: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    padding-top: 75px;
    padding-bottom: calc(70px + var(--safe-bottom));
}

/* Preloader */
.preloader { position: fixed; inset: 0; background: var(--color-black); display: flex; align-items: center; justify-content: center; z-index: 9999; transition: opacity 0.5s, visibility 0.5s; }
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-text { font-family: var(--font-serif); font-size: 2rem; color: var(--color-red); letter-spacing: 0.3em; margin-bottom: 1rem; }
.preloader-line { width: 150px; height: 2px; background: var(--gradient-red); animation: load 2s infinite; }
@keyframes load { 0% { transform: scaleX(0); } 50% { transform: scaleX(1); } 100% { transform: scaleX(0); } }

/* Container & Utilities */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-gradient { background: var(--gradient-red); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-highlight { color: var(--color-red); font-style: italic; }

/* Navigation */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(10,10,10,0.95); backdrop-filter: blur(10px); padding: 15px 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.nav-logo { display: flex; flex-direction: column; text-decoration: none; }
.logo-text { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--color-white); }
.logo-sub { font-size: 0.65rem; letter-spacing: 0.3em; color: var(--color-red); margin-top: -4px; }
.hamburger { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 5px; padding: 10px; }
.hamburger span { width: 24px; height: 2px; background: var(--color-white); transition: 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
.nav-menu { position: fixed; top: 70px; left: -100%; width: 100%; height: calc(100vh - 70px); background: var(--color-black); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px; transition: 0.3s; }
.nav-menu.active { left: 0; }
.nav-link { color: var(--color-white); text-decoration: none; font-size: 1.1rem; padding: 10px 20px; transition: 0.3s; }
.nav-link:hover, .nav-link.active { color: var(--color-red); }
.nav-cta { background: var(--gradient-red); color: var(--color-white) !important; border-radius: 30px; font-weight: 600; }

/* Hero */
.hero { position: relative; padding: 80px 20px 40px; min-height: auto; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #1a0a0a 0%, #2d1b1b 100%); }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at center, transparent 0%, rgba(10,10,10,0.8) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(220,38,38,0.2); border: 1px solid var(--color-red); padding: 8px 20px; border-radius: 30px; font-size: 0.75rem; color: var(--color-red); margin-bottom: 20px; }
.hero-title { font-family: var(--font-serif); font-size: clamp(2rem, 8vw, 3.5rem); line-height: 1.1; margin-bottom: 20px; }
.hero-subtitle { font-size: clamp(0.95rem, 4vw, 1.2rem); color: rgba(255,255,255,0.8); margin-bottom: 30px; }
.hero-trust { display: flex; justify-content: center; gap: 15px; font-size: 0.8rem; color: rgba(255,255,255,0.7); flex-wrap: wrap; margin-top: 15px; }
.hero-trust i { color: var(--color-red); }

/* Hero Banner Image (NEW) */
.hero-banner {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 25px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--color-red);
    box-shadow: 0 10px 40px rgba(220,38,38,0.4);
}
.banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}
.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
    padding: 30px 20px 20px;
}
.banner-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--color-red-light);
    font-weight: 600;
    font-size: 0.9rem;
    animation: pulseArrow 2s infinite;
}
@keyframes pulseArrow {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.7; transform: translateY(5px); }
}

/* Page Hero (inner pages) */
.page-hero { position: relative; padding: 120px 20px 60px; text-align: center; background: linear-gradient(135deg, #1a0a0a 0%, #2d1b1b 100%); }
.hero-page-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(220,38,38,0.15); border: 1px solid var(--color-red); padding: 8px 20px; border-radius: 30px; font-size: 0.75rem; color: var(--color-red); margin-bottom: 20px; }
.page-title { font-family: var(--font-serif); font-size: clamp(2rem, 7vw, 3.5rem); margin-bottom: 15px; }
.page-subtitle { font-size: clamp(0.95rem, 4vw, 1.1rem); color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }

/* Sections */
.section { padding: 60px 0; }
.section-dark { background: var(--color-dark); }
.section-tag { display: block; font-size: 0.75rem; letter-spacing: 0.2em; color: var(--color-red); margin-bottom: 15px; text-transform: uppercase; }
.section-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 6vw, 3rem); line-height: 1.2; margin-bottom: 20px; }
.section-subtitle { font-size: 1rem; color: rgba(255,255,255,0.7); margin-bottom: 30px; }
.story-text { color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 20px; }
.section-header-center { text-align: center; margin-bottom: 40px; }

/* Split Layout */
.split-section { padding: 60px 0; }
.split-container { display: flex; flex-direction: column; gap: 30px; align-items: center; }
.split-container.reverse { flex-direction: column-reverse; }
.split-text { width: 100%; }
.split-image { width: 100%; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.5); border: 1px solid var(--color-gray); }
.split-image img { width: 100%; height: auto; display: block; object-fit: cover; }

/* Problem Tags */
.problem-tags { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 20px; }
.problem-tags span { display: flex; align-items: center; gap: 8px; background: rgba(220,38,38,0.15); padding: 8px 15px; border-radius: 20px; font-size: 0.85rem; color: var(--color-red-light); }
.problem-tags i { font-size: 0.75rem; }

/* Hot List */
.hot-list { list-style: none; margin: 20px 0; }
.hot-list li { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; color: rgba(255,255,255,0.9); font-size: 1rem; }
.hot-list li i { color: var(--color-red); margin-top: 4px; }

/* Modules Compact */
.modules-compact { display: grid; gap: 15px; margin: 25px 0; }
.mod-item { display: flex; gap: 15px; background: var(--color-gray); padding: 15px; border-radius: 10px; border-left: 3px solid var(--color-red); }
.mod-item span { font-family: var(--font-serif); font-size: 1.5rem; color: var(--color-red); font-weight: 700; }
.mod-item h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--color-white); margin-bottom: 5px; }
.mod-item p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* Bonus */
.bonus-value { display: flex; justify-content: center; gap: 20px; padding: 15px; background: rgba(220,38,38,0.1); border-radius: 10px; border: 2px solid var(--color-red); flex-wrap: wrap; margin-top: 20px; }
.bonus-value span { color: rgba(255,255,255,0.6); text-decoration: line-through; }
.bonus-value strong { color: var(--color-red); font-size: 1.2rem; }

/* CTA */
.cta-section { padding: 60px 20px; background: linear-gradient(135deg, #2a0a0a 0%, #1a1a1a 100%); text-align: center; }
.cta-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 6vw, 2.8rem); margin-bottom: 30px; line-height: 1.2; }
.price-box { margin-bottom: 30px; }
.price-old { display: block; font-size: 1.1rem; color: rgba(255,255,255,0.6); text-decoration: line-through; }
.price-now { display: flex; align-items: flex-start; justify-content: center; gap: 5px; margin: 10px 0; }
.currency { font-family: var(--font-serif); font-size: 1.8rem; color: var(--color-red); margin-top: 10px; }
.amount { font-family: var(--font-serif); font-size: 3.5rem; font-weight: 700; color: var(--color-red); line-height: 1; }
.price-note { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* Buttons */
.btn-cta, .btn-hero, .btn-secondary { display: inline-flex; align-items: center; justify-content: center; padding: 18px 30px; border-radius: 50px; text-decoration: none; font-weight: 700; letter-spacing: 0.05em; transition: 0.3s; min-height: 52px; touch-action: manipulation; cursor: pointer; width: 100%; max-width: 350px; text-align: center; }
.btn-cta, .btn-hero { background: var(--gradient-red); color: white; box-shadow: 0 5px 20px rgba(220,38,38,0.4); }
.btn-hero { margin-top: 15px; }
.btn-secondary { background: transparent; color: var(--color-red); border: 2px solid var(--color-red); }
.btn-cta:hover, .btn-hero:hover, .btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(220,38,38,0.6); }

/* Guarantee */
.guarantee { display: flex; align-items: center; gap: 15px; justify-content: center; padding: 20px; background: rgba(220,38,38,0.1); border-radius: 10px; margin-top: 30px; text-align: left; }
.guarantee i { font-size: 2rem; color: var(--color-red); }
.guarantee strong { display: block; color: var(--color-red); margin-bottom: 5px; }
.guarantee span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--color-gray); margin-bottom: 10px; border-radius: 10px; overflow: hidden; }
.faq-question { width: 100%; padding: 20px; background: none; border: none; color: white; font-family: var(--font-sans); font-size: 1rem; font-weight: 600; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; min-height: 48px; }
.faq-question i { color: var(--color-red); transition: 0.3s; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 20px 20px; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* Footer */
.footer { background: var(--color-black); padding: 40px 20px; border-top: 1px solid var(--color-gray); text-align: center; }
.footer-logo { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--color-red); display: block; margin-bottom: 10px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin: 20px 0; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; }
.footer-bottom { display: flex; flex-direction: column; gap: 15px; padding-top: 20px; border-top: 1px solid var(--color-gray); }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-legal { display: flex; justify-content: center; gap: 15px; }
.footer-legal a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; }

/* Sticky CTA Mobile */
.sticky-cta { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(10,10,10,0.95); backdrop-filter: blur(10px); padding: 15px 20px calc(15px + var(--safe-bottom)); z-index: 999; box-shadow: 0 -5px 20px rgba(0,0,0,0.5); }
.sticky-btn { display: flex; justify-content: space-between; align-items: center; background: var(--gradient-red); color: white; padding: 16px 24px; border-radius: 30px; text-decoration: none; font-weight: 700; min-height: 52px; touch-action: manipulation; }
.sticky-price { background: var(--color-black); color: var(--color-red); padding: 6px 15px; border-radius: 20px; font-size: 0.9rem; }

/* === SOBRE PAGE STYLES === */
.pillars-grid { display: grid; gap: 20px; }
.pillar-card { background: var(--color-gray); padding: 30px 20px; border-radius: 15px; position: relative; border: 1px solid transparent; transition: 0.3s; }
.pillar-card:hover { border-color: var(--color-red); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(220,38,38,0.2); }
.pillar-card.featured-pillar { border-color: var(--color-red); background: linear-gradient(135deg, var(--color-gray) 0%, rgba(220,38,38,0.1) 100%); }
.pillar-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--gradient-red); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; }
.pillar-icon { width: 60px; height: 60px; margin: 0 auto 15px; display: flex; align-items: center; justify-content: center; background: rgba(220,38,38,0.1); border-radius: 50%; font-size: 1.5rem; color: var(--color-red); }
.pillar-num { font-family: var(--font-serif); font-size: 3rem; color: var(--color-red); opacity: 0.2; position: absolute; top: 15px; right: 20px; font-weight: 700; }
.pillar-card h3 { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 10px; text-align: center; }
.pillar-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; text-align: center; margin-bottom: 15px; }
.pillar-result { display: flex; align-items: center; gap: 10px; justify-content: center; padding-top: 15px; border-top: 1px solid var(--color-light-gray); }
.pillar-result i { color: var(--color-red); font-size: 0.9rem; }
.pillar-result span { font-size: 0.85rem; color: var(--color-red-light); font-weight: 600; }

/* Philosophy */
.philosophy-block { max-width: 800px; margin: 0 auto; }
.philosophy-quote { text-align: center; padding: 40px 20px; border-left: 3px solid var(--color-red); border-right: 3px solid var(--color-red); margin-bottom: 40px; }
.philosophy-quote i { font-size: 2rem; color: var(--color-red); margin-bottom: 15px; display: block; }
.philosophy-quote p { font-family: var(--font-serif); font-size: clamp(1.3rem, 5vw, 1.8rem); font-style: italic; color: var(--color-red); line-height: 1.4; }
.philosophy-points { display: grid; gap: 20px; }
.phil-point { display: flex; gap: 15px; align-items: flex-start; background: var(--color-gray); padding: 20px; border-radius: 12px; }
.phil-point i { color: var(--color-red); font-size: 1.3rem; margin-top: 3px; }
.phil-point strong { display: block; color: var(--color-white); margin-bottom: 5px; }
.phil-point span { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* Credentials */
.credential-list { list-style: none; margin-top: 20px; }
.credential-list li { display: flex; align-items: center; gap: 15px; padding: 12px 0; border-bottom: 1px solid var(--color-light-gray); }
.credential-list li:last-child { border-bottom: none; }
.credential-list li i { color: var(--color-red); font-size: 1.2rem; }
.credential-list li span { color: rgba(255,255,255,0.8); }

/* === MODULOS PAGE STYLES === */
.overview-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 20px; }
.overview-card { background: var(--color-gray); padding: 25px 15px; border-radius: 15px; text-align: center; border: 1px solid transparent; transition: 0.3s; }
.overview-card:hover { border-color: var(--color-red); }
.overview-card i { font-size: 1.5rem; color: var(--color-red); margin-bottom: 10px; display: block; }
.ov-number { display: block; font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--color-red); }
.ov-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

.module-detailed-card { background: var(--color-gray); border-radius: 15px; margin-bottom: 25px; overflow: hidden; border: 1px solid transparent; transition: 0.3s; }
.module-detailed-card:hover { border-color: var(--color-red); }
.module-header { padding: 20px; display: flex; align-items: center; gap: 15px; background: rgba(220,38,38,0.08); border-bottom: 1px solid var(--color-light-gray); }
.module-icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: rgba(220,38,38,0.15); border-radius: 12px; font-size: 1.3rem; color: var(--color-red); flex-shrink: 0; }
.module-badge { display: inline-block; font-size: 0.7rem; letter-spacing: 0.1em; color: var(--color-red); margin-bottom: 5px; }
.module-header h3 { font-family: var(--font-serif); font-size: 1.3rem; }
.module-body { padding: 20px; }
.module-desc { color: rgba(255,255,255,0.8); margin-bottom: 20px; font-size: 1rem; line-height: 1.7; }
.module-topics { list-style: none; }
.module-topics li { display: flex; gap: 15px; padding: 15px 0; border-bottom: 1px solid var(--color-light-gray); }
.module-topics li:last-child { border-bottom: none; }
.module-topics li i { font-size: 1.2rem; color: var(--color-red); margin-top: 3px; }
.module-topics li strong { display: block; color: white; margin-bottom: 4px; }
.module-topics li span { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.module-meta { display: flex; gap: 20px; margin-top: 20px; padding-top: 15px; border-top: 2px solid var(--color-red); }
.module-meta span { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--color-red-light); font-weight: 600; }

.bonus-highlight { border: 2px solid var(--color-red); box-shadow: 0 0 30px rgba(220,38,38,0.2); }
.bonus-badge-text { background: var(--gradient-red); color: white; padding: 3px 10px; border-radius: 15px; }
.bonus-value-tag { display: flex; align-items: center; gap: 15px; margin-top: 20px; padding: 15px; background: rgba(220,38,38,0.1); border-radius: 10px; }
.bonus-value-tag span { color: rgba(255,255,255,0.6); text-decoration: line-through; }
.bonus-value-tag strong { color: var(--color-red); font-size: 1.2rem; }

/* === DEPOIMENTOS PAGE STYLES === */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.stat-card { text-align: center; padding: 25px 15px; background: var(--color-gray); border-radius: 15px; border: 1px solid transparent; transition: 0.3s; }
.stat-card:hover { border-color: var(--color-red); }
.stat-card i { font-size: 2rem; color: var(--color-red); margin-bottom: 10px; display: block; }
.stat-number { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; color: var(--color-red); margin-bottom: 5px; }
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

.testimonials-grid { display: grid; gap: 25px; }
.testimonial-large-card { background: var(--color-gray); padding: 25px; border-radius: 15px; position: relative; border: 1px solid transparent; transition: 0.3s; }
.testimonial-large-card:hover { border-color: var(--color-red); transform: translateY(-3px); }
.testimonial-large-card.featured-test { border-color: var(--color-red); box-shadow: 0 5px 20px rgba(220,38,38,0.3); }
.test-badge { position: absolute; top: -10px; right: 20px; background: var(--gradient-red); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; }
.testimonial-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.testimonial-avatar { width: 55px; height: 55px; background: var(--gradient-red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.3rem; flex-shrink: 0; }
.testimonial-header h4 { color: var(--color-red); margin-bottom: 3px; }
.testimonial-header span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.verified { display: flex; align-items: center; gap: 5px; font-size: 0.8rem; color: var(--color-red); margin-top: 3px; }
.stars { color: var(--color-red); margin-bottom: 15px; font-size: 0.9rem; }
.testimonial-large-text { color: rgba(255,255,255,0.8); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.test-footer { display: flex; justify-content: space-between; padding-top: 15px; border-top: 1px solid var(--color-light-gray); font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.test-footer i { margin-right: 5px; }

.mini-testimonials { display: grid; gap: 20px; }
.mini-test { background: var(--color-gray); padding: 25px; border-radius: 15px; border-left: 3px solid var(--color-red); }
.mini-test .stars { margin-bottom: 10px; }
.mini-test p { color: rgba(255,255,255,0.8); font-style: italic; margin-bottom: 15px; line-height: 1.7; }
.mini-test span { font-size: 0.85rem; color: var(--color-red); font-weight: 600; }

/* === CHECKOUT PAGE STYLES === */
.urgency-bar { position: fixed; top: 0; left: 0; width: 100%; background: linear-gradient(90deg, var(--color-red-dark), var(--color-red)); padding: 12px 20px; z-index: 1001; text-align: center; }
.urgency-content { display: flex; align-items: center; justify-content: center; gap: 15px; font-weight: 600; font-size: 0.9rem; flex-wrap: wrap; }
.urgency-content i { animation: pulse 1.5s infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }
.countdown { display: flex; gap: 10px; }
.countdown-item { background: rgba(0,0,0,0.3); padding: 4px 10px; border-radius: 5px; text-align: center; }
.countdown-number { display: block; font-size: 1.2rem; font-weight: 700; }
.countdown-label { font-size: 0.7rem; text-transform: uppercase; }
.navbar-checkout { margin-top: 48px; }
.checkout-security { display: flex; align-items: center; gap: 8px; color: var(--color-red); font-size: 0.85rem; }
.checkout-main { padding: 80px 0 40px; }
.checkout-grid { display: grid; gap: 30px; }
.checkout-offer { margin-bottom: 30px; }
.offer-badge { display: inline-block; background: var(--gradient-red); color: white; padding: 8px 20px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; margin-bottom: 15px; }
.offer-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 6vw, 2.5rem); margin-bottom: 20px; }
.offer-summary { background: var(--color-gray); padding: 20px; border-radius: 15px; margin-bottom: 20px; }
.offer-summary h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; color: var(--color-red); font-size: 1.1rem; }
.offer-list { list-style: none; }
.offer-list li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.offer-list li:last-child { border-bottom: none; }
.offer-list li i { color: var(--color-red); }
.offer-price-box { background: var(--gradient-red); padding: 25px; border-radius: 15px; text-align: center; margin-bottom: 20px; }
.price-was { display: block; font-size: 1rem; color: white; margin-bottom: 8px; }
.price-save { display: block; font-weight: 700; color: white; margin-top: 8px; font-size: 1.1rem; }
.offer-guarantee { display: flex; gap: 15px; padding: 20px; background: rgba(220,38,38,0.1); border-radius: 10px; margin-bottom: 20px; }
.guarantee-badge { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: var(--gradient-red); border-radius: 50%; font-size: 1.5rem; color: white; flex-shrink: 0; }
.guarantee-content h4 { color: var(--color-red); margin-bottom: 5px; font-size: 1rem; }
.guarantee-content p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.offer-trust { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.offer-trust .trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.offer-trust .trust-item i { font-size: 1.3rem; color: var(--color-red); }

.checkout-card { background: var(--color-gray); padding: 25px; border-radius: 15px; border: 2px solid var(--color-red); margin-bottom: 20px; }
.checkout-card-header { text-align: center; margin-bottom: 20px; }
.checkout-card-header h3 { font-size: 1.3rem; margin-bottom: 5px; }
.checkout-card-header p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.btn-checkout { display: flex; align-items: center; gap: 15px; background: var(--gradient-red); color: white; padding: 20px; border-radius: 12px; text-decoration: none; font-weight: 700; transition: 0.3s; min-height: 60px; touch-action: manipulation; }
.btn-checkout:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(220,38,38,0.5); }
.btn-checkout i { font-size: 1.5rem; }
.btn-checkout-text { display: block; font-size: 1rem; letter-spacing: 0.05em; }
.btn-checkout-sub { display: block; font-size: 0.8rem; font-weight: 400; margin-top: 4px; opacity: 0.9; }
.checkout-payment-methods { text-align: center; margin: 15px 0; }
.checkout-payment-methods span { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.payment-icons { display: flex; justify-content: center; gap: 15px; font-size: 2rem; color: white; }
.checkout-security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
.security-badge { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.security-badge i { color: var(--color-red); }
.checkout-urgency { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; background: rgba(139,0,0,0.2); border-radius: 8px; font-size: 0.85rem; }
.checkout-urgency i { color: var(--color-red); animation: pulse 2s infinite; }

.checkout-benefits-card { background: var(--color-gray); padding: 25px; border-radius: 15px; }
.checkout-benefits-card h4 { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--color-red); }
.benefits-checkout-list { list-style: none; }
.benefits-checkout-list li { display: flex; gap: 15px; padding: 15px 0; border-bottom: 1px solid var(--color-light-gray); }
.benefits-checkout-list li:last-child { border-bottom: none; }
.benefit-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(220,38,38,0.1); border-radius: 50%; color: var(--color-red); flex-shrink: 0; }
.benefits-checkout-list li strong { display: block; color: white; margin-bottom: 3px; }
.benefits-checkout-list li span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

.checkout-faq { background: var(--color-dark); }
.checkout-final-cta { padding: 60px 20px; background: linear-gradient(135deg, #2a0a0a 0%, #1a1a1a 100%); }
.final-cta-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 6vw, 2.5rem); margin-bottom: 30px; }
.footer-checkout { background: var(--color-black); padding: 30px 20px; border-top: 1px solid var(--color-gray); }
.footer-checkout .footer-content { display: flex; flex-direction: column; align-items: center; gap: 15px; }

/* Tablet/Desktop Enhancements */
@media (min-width: 768px) {
    body { padding-top: 80px; padding-bottom: 0; }
    .sticky-cta { display: none; }
    .hero { padding: 100px 40px 80px; }
    .split-container { flex-direction: row; gap: 50px; }
    .split-container.reverse { flex-direction: row-reverse; }
    .split-text, .split-image { flex: 1; }
    .split-image img { height: 100%; max-height: 500px; }
    .modules-compact { grid-template-columns: repeat(2, 1fr); }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .mini-testimonials { grid-template-columns: repeat(3, 1fr); }
    .philosophy-points { grid-template-columns: repeat(3, 1fr); }
    .hamburger { display: none; }
    .nav-menu { position: static; height: auto; background: none; flex-direction: row; gap: 30px; }
    .nav-link { font-size: 0.9rem; padding: 0; }
    .btn-cta, .btn-hero, .btn-secondary { width: auto; max-width: none; }
    .checkout-grid { grid-template-columns: 1fr 450px; gap: 40px; align-items: start; }
    .checkout-action { position: sticky; top: 100px; }
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
    .hero { padding: 120px 40px 100px; }
    .pillars-grid { grid-template-columns: repeat(3, 1fr); }
    .overview-stats { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
img { max-width: 100%; height: auto; }
button, a { touch-action: manipulation; }