/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    /* Color Scheme */
    --primary: #FF3366;
    --primary-dark: #E5194D;
    --primary-light: #FF5580;
    --secondary: #1A1A2E;
    --accent: #16213E;
    --success: #00D25B;
    --warning: #FFB800;
    --danger: #FF3366;
    --text-dark: #1A1A2E;
    --text-light: #666;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --border: #E5E5E5;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF3366 0%, #FF5580 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    --gradient-glow: linear-gradient(45deg, #FF3366, #FF5580, #FF3366);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 40px rgba(255,51,102,0.3);
    
    /* Typography - Mobile First */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --h1-size: 32px;
    --h2-size: 24px;
    --h3-size: 20px;
    --text-size: 16px;
    --small-size: 14px;
    
    /* Spacing */
    --section-padding: 60px 0;
    --container-padding: 0 16px;
    
    /* Animation */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Desktop Typography */
@media (min-width: 768px) {
    :root {
        --h1-size: 56px;
        --h2-size: 36px;
        --h3-size: 24px;
        --text-size: 18px;
        --section-padding: 80px 0;
        --container-padding: 0 24px;
    }
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--text-size);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    width: 100%;
}

/* Hero container específico */
.hero-section .container {
    max-width: 1800px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Links */
a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255,51,102,0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(255,51,102,0.8);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

/* ===== COMPONENTS ===== */

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    min-height: 48px;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    background-size: 200% 200%;
    animation: gradientShift 2s ease infinite, glow 1s ease-in-out infinite;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(0);
}

/* CTA Benefits Centralization */
.cta-benefits {
    display: inline-block;
    margin: 30px auto 0;
    text-align: center;
    max-width: 400px;
    width: auto;
}

.benefits-section {
    text-align: center;
}

/* ===== PROGRESS BAR ===== */
.progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0,0,0,0.1);
    z-index: 9999;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    transition: width 0.2s ease;
    box-shadow: 0 0 10px rgba(255,51,102,0.5);
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 20px 0 40px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    overflow-x: hidden;
    contain: layout;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 30px 0 60px;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 60px 0 80px;
        max-height: 100vh;
        display: flex;
        align-items: center;
    }
}

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

@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 50px;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }
}

.hero-text-wrapper {
    width: 100%;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text-wrapper {
         flex: 0 0 auto;
        max-width: 650px;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-subtitle {
        max-width: 550px;
    }

}

.hero-right-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@media (min-width: 1024px) {
    .hero-right-wrapper {
        flex: 1;
        align-items: center;
        max-width: none;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,51,102,0.08) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,51,102,0.03) 0%, transparent 60%);
    animation: float 15s ease-in-out infinite reverse;
}

.hero-title {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 4px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out;
    text-align: center;
    text-shadow: 0 4px 30px rgba(255,51,102,0.3);
    display: block;
}

.hero-title br {
    display: block;
    content: "";
}

.title-line {
    display: inline-block;
}

@media (min-width: 1024px) {
    .title-line {
        white-space: nowrap;
    }
}

@media (min-width: 1400px) {
    .hero-title {
        font-size: 52px;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: var(--h1-size);
        margin-bottom: 12px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        text-align: left;
    }
}

.hero-subtitle {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-align: center;
    opacity: 0.8;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: var(--h2-size);
        margin-bottom: 30px;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        text-align: left;
        margin-bottom: 40px;
    }
}

.hero-mockup {
    max-width: 570px;
    margin: 0 auto 20px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    position: relative;
    z-index: 5;
}

@media (min-width: 768px) {
    .hero-mockup {
        max-width: 780px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    .hero-mockup {
        max-width: 1050px;
        margin: 0 0 20px 0;
        flex-shrink: 0;
    }
}

@media (min-width: 1400px) {
    .hero-mockup {
        max-width: 1200px;
    }
}

.hero-mockup::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(255,51,102,0.08) 0%, transparent 50%);
    filter: blur(40px);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

@media (max-width: 767px) {
    .hero-mockup::before {
        display: none; /* Remove no mobile para performance */
    }
}

.mockup-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 40px rgba(0,0,0,0.25));
    transition: all var(--transition-normal);
    will-change: transform;
    max-width: none;
}

@media (min-width: 1024px) {
    .mockup-image {
        width: auto;
        height: auto;
        max-height: 60vh;
        object-fit: contain;
    }
}

@media (min-width: 768px) {
    .mockup-image {
        filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
    }
}

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

@media (min-width: 768px) {
    .mockup-image:hover {
        transform: scale(1.05) rotate(0deg) translateZ(40px);
        filter: drop-shadow(0 50px 100px rgba(0,0,0,0.25)) drop-shadow(0 25px 50px rgba(0,0,0,0.15));
    }
}

.cta-hero {
    display: block;
    max-width: 300px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    font-size: 14px;
    padding: 14px 20px;
    box-shadow: 0 12px 40px rgba(255,51,102,0.5);
    position: relative;
    z-index: 10;
    background: var(--gradient-primary);
    width: 100%;
}

@media (min-width: 768px) {
    .cta-hero {
        max-width: 380px;
        font-size: 17px;
        padding: 16px 28px;
        box-shadow: 0 10px 40px rgba(255,51,102,0.3);
        margin: 15px auto 0;
    }
}

@media (min-width: 1024px) {
    .cta-hero {
        max-width: 100%;
        font-size: 18px;
        padding: 18px 36px;
        margin: 0;
        width: auto;
    }
}

/* ===== RESET SECTIONS ===== */
.reset-section {
    padding: var(--section-padding);
    background: var(--secondary);
    color: var(--white);
    position: relative;
}

.reset-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

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

.reset-recognition,
.reset-disruption,
.reset-transition {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.reset-disruption {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-light);
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.section-title {
    font-size: var(--h2-size);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-block {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.benefit-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.benefit-block:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.benefit-title {
    font-size: var(--h3-size);
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== VALUE STACK SECTION ===== */
.reset-logica {
    background: var(--gradient-dark);
    text-align: center;
    padding: 60px 0;
}

.value-stack {
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.value-total {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 10px;
}

.strike {
    text-decoration: line-through;
    opacity: 0.7;
}

.value-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
}

.value-price strong {
    color: var(--primary-light);
    font-size: 48px;
    display: inline-block;
    animation: pulse 2s infinite;
}

/* CTA + Scarcity Container */
.cta-scarcity-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.scarcity-alert {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,51,102,0.1);
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 12px 24px;
    margin-top: 0;
    animation: glow 2s ease-in-out infinite;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scarcity-alert:hover {
    background: rgba(255,51,102,0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,51,102,0.3);
    color: inherit;
}

.alert-icon {
    font-size: 24px;
    animation: pulse 1s infinite;
}

.alert-text {
    color: var(--white);
    font-weight: 600;
}

/* ===== CONTENT SECTION ===== */
.content-section {
    padding: var(--section-padding);
    background: var(--white);
}

.content-list {
    max-width: 800px;
    margin: 0 auto;
}

.content-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--off-white);
    border-radius: 12px;
    transition: all var(--transition-normal);
    align-items: flex-start;
}

.content-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.content-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    opacity: 1;
    min-width: 60px;
    text-shadow: 0 2px 8px rgba(255, 51, 102, 0.2);
    position: relative;
}

.content-title {
    font-size: var(--h3-size);
    margin-bottom: 10px;
    color: var(--text-dark);
}

.content-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== BONUS SECTION ===== */
.bonus-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #FFE5EC 0%, #FFF0F5 100%);
    position: relative;
}

.bonus-emoji {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
    animation: float 2s ease-in-out infinite;
}

.bonus-block {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.bonus-block::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
    border-radius: 16px;
}

.bonus-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.bonus-block:hover::before {
    opacity: 1;
}

.bonus-image {
    font-size: 64px;
    min-width: 80px;
    text-align: center;
}

.bonus-label {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.bonus-title {
    font-size: var(--h3-size);
    margin-bottom: 10px;
    color: var(--text-dark);
}

.bonus-value {
    font-size: 18px;
    margin-bottom: 15px;
}

.bonus-value strong {
    color: var(--success);
    font-weight: 700;
}

.bonus-benefits {
    list-style: none;
}

.bonus-benefits li {
    padding: 8px 0;
    color: var(--text-light);
}

/* Timer */
.bonus-timer {
    text-align: center;
    background: var(--gradient-dark);
    color: var(--white);
    padding: 30px;
    border-radius: 16px;
    margin-top: 40px;
}

.timer-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
    animation: pulse 1s infinite;
}

.timer-text {
    font-size: 20px;
    margin-bottom: 15px;
    display: block;
}

.countdown {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-light);
    text-shadow: 0 0 20px rgba(255,51,102,0.5);
}

.order-bumps-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.order-bump {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all var(--transition-normal);
}

.order-bump:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.order-bump-featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, #FFF5F8 0%, #FFFFFF 100%);
    position: relative;
}

.order-bump-featured::before {
    content: 'MAIS POPULAR';
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.bump-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.bump-checkbox input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: var(--primary);
}

.bump-checkbox label {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
}

.bump-title {
    font-size: var(--h3-size);
    margin-bottom: 10px;
    color: var(--text-dark);
}

.bump-subtitle {
    color: var(--text-light);
    margin-bottom: 15px;
}

.bump-benefits {
    list-style: none;
    margin-bottom: 15px;
}

.bump-benefits li {
    padding: 5px 0;
    color: var(--text-light);
}

.bump-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.kit-items {
    background: var(--off-white);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.kit-items p {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.bump-total {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin: 15px 0;
}

.bump-bonus {
    background: rgba(255,51,102,0.1);
    padding: 15px;
    border-radius: 8px;
    color: var(--primary);
    font-weight: 600;
}

.bumps-guarantee {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(0,210,91,0.1);
    border-radius: 12px;
    color: var(--success);
    font-weight: 600;
}

/* ===== CTA FINAL SECTION ===== */
.cta-final-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,51,102,0.1) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.cta-final-title {
    font-size: var(--h2-size);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 1;
}

.offer-box {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    z-index: 1;
}

.offer-price {
    margin-bottom: 30px;
}

.offer-label {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.offer-value {
    display: block;
    font-size: 72px;
    font-weight: 900;
    color: var(--primary-light);
    text-shadow: 0 0 30px rgba(255,51,102,0.5);
    animation: pulse 2s infinite;
}

.cta-main {
    display: block;
    max-width: 100%;
    margin: 0 auto 30px;
    font-size: 20px;
    padding: 20px 40px;
    background: var(--gradient-primary);
    background-size: 200% 200%;
}

.guarantee {
    margin-bottom: 20px;
    text-align: center;
}

.guarantee-seal {
    width: 60px;
    height: 60px;
    margin: 0 10px 0 0;
    opacity: 0.6;
    vertical-align: middle;
    display: inline-block;
}

.guarantee-text {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
}

.security-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Nova security-bar fora da offer-box */
.security-bar {
    margin-top: 45px;
    padding: 18px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.security-bar:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
}

.security-badge {
    height: 60px;
    width: auto;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.security-badge:hover {
    opacity: 1;
    transform: scale(1.1);
}

.secure-text {
    font-size: 13px;
    opacity: 0.75;
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.footer-text {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-links a {
    color: var(--white);
    opacity: 0.8;
    margin: 0 10px;
    transition: opacity var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
}

/* ===== MOBILE OPTIMIZATIONS ===== */
@media (max-width: 767px) {
    .benefit-block,
    .content-item,
    .bonus-block {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-scarcity-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .content-number {
        margin: 0 auto;
    }
    
    .bonus-image {
        margin: 0 auto;
    }
    
    .offer-value {
        font-size: 56px;
    }
    
    .countdown {
        font-size: 36px;
    }
    
    /* Optimize touch targets for mobile */
    .cta-button {
        min-height: 48px;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    /* Mobile optimizations handled by mobile-first approach above */
}

/* ===== CORE WEB VITALS OPTIMIZATIONS ===== */

/* Reduce layout shift */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Optimize fonts for performance */
body {
    font-display: swap;
}

/* Reduce reflow */
.container {
    contain: layout;
}

/* Optimize animations for performance */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Improve perceived performance */
.hero-section {
    contain: layout style;
}

/* Critical resource hints */
.mockup-image {
    will-change: transform;
}

/* Optimize hover states for touch devices */
@media (hover: none) {
    .benefit-block:hover,
    .content-item:hover,
    .bonus-block:hover,
    .cta-button:hover {
        transform: none;
        box-shadow: var(--shadow-md);
    }
}

/* ===== NORMAL CURSOR ===== */
body {
    cursor: default;
}

a, button, .cta-button, input, [role="button"] {
    cursor: pointer;
}

/* ===== LOADING ANIMATION ===== */
body {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== PARTICLES EFFECT ===== */
.hero-section,
.cta-final-section {
    position: relative;
}

.hero-section::after,
.cta-final-section::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    top: 20%;
    left: 10%;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

/* ===== SMOOTH REVEAL ANIMATIONS ===== */
section {
    opacity: 0;
    animation: sectionReveal 0.8s ease-out forwards;
}

@keyframes sectionReveal {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section:nth-child(1) { animation-delay: 0.1s; }
section:nth-child(2) { animation-delay: 0.2s; }
section:nth-child(3) { animation-delay: 0.3s; }
section:nth-child(4) { animation-delay: 0.4s; }
section:nth-child(5) { animation-delay: 0.5s; }
section:nth-child(6) { animation-delay: 0.6s; }
section:nth-child(7) { animation-delay: 0.7s; }
section:nth-child(8) { animation-delay: 0.8s; }

/* ===== DIGITAL FORMAT STYLES ===== */

/* Mockup format note */
.mockup-format-note {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0.8;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

@media (min-width: 768px) {
    .mockup-format-note {
        font-size: 16px;
    }
}

/* Digital format info in CTA section */
.digital-format-info {
    margin: 25px 0;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.format-highlight {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 15px;
    text-align: center;
}

.format-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.format-benefits li {
    padding: 8px 0;
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    text-align: left;
}

/* Section subtitle */
.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-top: -30px;
    margin-bottom: 40px;
    opacity: 0.8;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 20px;
    }
}