/* ===================================
   JESSBDIGITAL'S MOOD - STYLES
   Design doux et professionnel
   =================================== */

/* ============ VARIABLES ============ */
:root {
    /* Couleurs principales - Palette tropicale vibrante */
    --primary-color: #FF6B35;        /* Orange corail tropical */
    --primary-dark: #E85A2A;         /* Orange foncé */
    --secondary-color: #C724B1;      /* Violet magenta vibrant */
    --accent-color: #00D9FF;         /* Turquoise cyan */
    --accent-green: #00FF88;         /* Vert tropical */
    --accent-yellow: #FFD700;        /* Jaune doré */
    
    /* Couleurs neutres claires et fraîches */
    --text-dark: #2D1B2E;            /* Violet très foncé */
    --text-medium: #5A4A5C;          /* Violet moyen */
    --text-light: #8B7B8D;           /* Violet clair */
    --bg-light: #FFF9F5;             /* Blanc crème très clair */
    --bg-white: #ffffff;
    --bg-cream: #FFF5EB;             /* Crème chaud */
    --bg-dark: #2D1B2E;              /* Fond sombre violet */
    --bg-charcoal: #1F1320;          /* Charbon violet */
    
    /* Gradients tropicaux */
    --gradient-primary: linear-gradient(135deg, #C724B1 0%, #FF6B35 50%, #00D9FF 100%);
    --gradient-hero: linear-gradient(135deg, rgba(199, 36, 177, 0.9) 0%, rgba(255, 107, 53, 0.85) 50%, rgba(0, 217, 255, 0.8) 100%);
    --gradient-sunset: linear-gradient(180deg, #C724B1 0%, #FF6B35 40%, #FFD700 70%, #00FF88 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FF6B35 50%, #C724B1 100%);
    
    /* Typographie */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Bordures */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    /* Ombres tropicales */
    --shadow-sm: 0 2px 8px rgba(255, 107, 53, 0.15);
    --shadow-md: 0 4px 16px rgba(199, 36, 177, 0.25);
    --shadow-lg: 0 8px 32px rgba(0, 217, 255, 0.35);
    --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.4);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ============ UTILITIES ============ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Texte avec dégradé tropical */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    display: inline-block;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ============ HEADER & NAVIGATION ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(45, 31, 26, 0.98), rgba(45, 31, 26, 0.95));
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.3);
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 1rem 0;
}

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

.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-white);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.logo .mood {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}

.nav-list {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.3) 0%, transparent 60%),
                radial-gradient(ellipse at bottom, rgba(255, 107, 107, 0.2) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 100;
    text-align: center;
    color: #FFFFFF;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-md);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
    color: #FFFFFF;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: #FFFFFF;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.hero-title .highlight {
    color: #FFD700;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 215, 0, 0.6);
}

.hero-benefits {
    max-width: 700px;
    margin: var(--spacing-lg) auto;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
    font-weight: 500;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

.hero-video {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
    position: relative;
    z-index: 500;
}

.hero-video-wrapper {
    background: rgba(0, 0, 0, 0.8);
    border-radius: var(--radius-xl);
    padding: var(--spacing-md);
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 600;
    isolation: isolate;
}

.hero-video-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    margin-bottom: var(--spacing-sm);
}

.hero-video-container {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--primary-color);
    background: #000000;
    margin-bottom: var(--spacing-sm);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 700;
    isolation: isolate;
}

.hero-video-player {
    width: 100%;
    height: auto;
    display: block;
    background: #000000;
    min-height: 300px;
    object-fit: contain;
    position: relative;
    z-index: 1000;
    border-radius: var(--radius-lg);
    isolation: isolate;
}

.hero-video-description {
    text-align: center;
    color: var(--bg-white);
    font-size: 0.9375rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0.95;
}

.hero-video-description i {
    color: var(--primary-color);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: #FFFFFF;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--bg-white);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    animation: bounce 2s infinite;
    z-index: 100;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-yellow);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

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

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.hero-wave path {
    fill: var(--bg-light);
}

/* ============ SUNSET EFFECTS ============ */
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    margin: var(--spacing-sm) auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ============ SORA VIDEO SECTIONS ============ */
.sora-video-section {
    max-width: 1000px;
    margin: var(--spacing-xl) auto;
    padding: 0 var(--spacing-md);
}

.sora-video-wrapper {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-cream) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-gold);
    border: 3px solid var(--primary-color);
    transition: var(--transition);
}

.sora-video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 50px rgba(212, 175, 55, 0.5);
}

.sora-video-content {
    padding: var(--spacing-lg);
}

.video-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-sm);
}

.video-tag.female {
    background: linear-gradient(135deg, #ff8c42 0%, #d4af37 100%);
}

.video-tag i {
    font-size: 1rem;
}

.video-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.video-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.sora-placeholder {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #3d2a1f 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    border: 2px solid var(--primary-color);
}

.sora-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.sora-play-button {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--bg-dark);
    cursor: pointer;
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.6);
    transition: var(--transition);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 2;
    border: 4px solid rgba(212, 175, 55, 0.3);
}

.sora-play-button:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 60px rgba(212, 175, 55, 0.8);
}

.sora-play-button i {
    margin-left: 0.25rem;
}

.sora-info {
    text-align: center;
    color: var(--bg-white);
    position: relative;
    z-index: 2;
}

.sora-info > p {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.sora-prompt {
    background: rgba(26, 20, 16, 0.8);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: left;
    margin-bottom: var(--spacing-md);
    border-left: 4px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.sora-prompt h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sora-prompt p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.sora-specs {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.sora-specs span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(212, 175, 55, 0.15);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

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

.video-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.video-benefits .benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary-color);
}

.video-benefits .benefit i {
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

.video-benefits .benefit span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
}

.solution-video-sora {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

/* ============ SORA VIDEO PLAYER ============ */
.sora-video-container {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-gold);
    border: 3px solid var(--primary-color);
    background: #000000;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.sora-video-player {
    width: 100%;
    height: auto;
    display: block;
    background: #000000;
    border-radius: var(--radius-lg);
    min-height: 300px;
    object-fit: contain;
    position: relative;
    z-index: 30;
}

.sora-video-player:hover {
    cursor: pointer;
}

/* Custom video controls styling */
.sora-video-player::-webkit-media-controls-panel {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(45, 31, 26, 0.9));
}

.sora-video-player::-webkit-media-controls-play-button,
.sora-video-player::-webkit-media-controls-pause-button {
    background: var(--primary-color);
    border-radius: 50%;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.6));
}

.sora-video-player::-webkit-media-controls-current-time-display,
.sora-video-player::-webkit-media-controls-time-remaining-display {
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.sora-video-player::-webkit-media-controls-timeline {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 25px;
}

.sora-video-player::-webkit-media-controls-timeline::-webkit-slider-thumb {
    background: var(--gradient-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

/* Responsive video */
@media (max-width: 768px) {
    .sora-video-container {
        border-width: 2px;
    }
}

/* ============ PAYMENT BUTTONS & INFO ============ */
.btn-payment {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1.25rem 2rem;
    box-shadow: var(--shadow-gold);
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-payment::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.btn-payment:hover::before {
    opacity: 1;
    animation: shimmer 1.5s infinite;
}

.btn-payment:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.7);
    border-color: var(--primary-color);
}

.btn-offer-secondary {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    margin-top: var(--spacing-sm);
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-offer-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.payment-info {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.payment-badges {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.payment-badge {
    height: 24px;
    border-radius: 4px;
}

.payment-methods {
    display: flex;
    gap: 0.5rem;
    font-size: 1.75rem;
}

.payment-methods i {
    color: var(--text-medium);
    transition: var(--transition);
}

.payment-methods i:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.payment-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--spacing-sm);
}

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

@keyframes shimmer {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ============ WRITTEN TESTIMONIALS ============ */
.testimonials-section {
    margin-top: var(--spacing-xl);
}

.testimonials-grid-written {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.testimonial-card-written {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card-written::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.testimonial-card-written:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-color);
}

.testimonial-header-written {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--bg-cream);
}

.testimonial-avatar-written {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-dark);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.testimonial-avatar-written.female {
    background: linear-gradient(135deg, #ff8c42 0%, #d4af37 100%);
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-info h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-job {
    font-size: 0.9375rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-location {
    font-size: 0.875rem;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.testimonial-rating-written {
    display: flex;
    gap: 0.25rem;
    color: #ffd700;
    font-size: 1rem;
}

.testimonial-content-written {
    margin-bottom: var(--spacing-md);
}

.testimonial-content-written p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
    color: var(--text-dark);
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-medium);
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-color);
}

.testimonial-result {
    background: var(--bg-cream);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
}

.testimonial-numbers {
    font-size: 0.9375rem;
    line-height: 1.8;
}

.number-highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-badge-written {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.testimonial-badge-written i {
    color: var(--primary-color);
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
    font-weight: 700;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    border-color: var(--primary-color);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(199, 36, 177, 0.1) 0%, rgba(255, 107, 53, 0.1) 50%, rgba(0, 217, 255, 0.1) 100%);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.25);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-color: var(--accent-color);
    box-shadow: 0 6px 24px rgba(0, 217, 255, 0.4);
    transform: translateY(-2px);
}

.btn-offer {
    width: 100%;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
    font-weight: 700;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.btn-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
    border-color: var(--primary-color);
}

.btn-featured {
    background: var(--gradient-gold);
    animation: pulse 2s infinite;
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

.btn-submit {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    width: 100%;
    padding: 1.25rem 2rem;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.7);
    border-color: var(--primary-color);
}

/* ============ SECTIONS ============ */
section {
    padding: var(--spacing-xl) 0;
}

/* ============ PROBLEM SECTION ============ */
.problem-section {
    background: var(--bg-white);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.problem-card {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.25);
    border-color: var(--accent-color);
    border-left-width: 6px;
}

.problem-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2d1f1a 0%, #1a1410 100%);
    border-radius: 50%;
    font-size: 1.75rem;
    color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.problem-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.problem-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.problem-cta {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--primary-color);
}

.highlight-text {
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* ============ SOLUTION SECTION ============ */
.solution-section {
    background: var(--bg-cream);
}

.solution-intro {
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
}

.intro-text {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.intro-text-bold {
    font-size: 1.25rem;
    color: var(--primary-color);
    line-height: 1.8;
    margin-top: var(--spacing-md);
}

.solution-video,
.testimonial-video-section {
    max-width: 800px;
    margin: var(--spacing-lg) auto;
}

.video-placeholder {
    background: linear-gradient(135deg, #fffbf0 0%, var(--bg-white) 100%);
    border: 3px dashed var(--primary-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: inset 0 0 30px rgba(212, 175, 55, 0.1);
}

.video-placeholder:hover {
    background: var(--bg-cream);
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-gold), inset 0 0 40px rgba(212, 175, 55, 0.15);
    transform: scale(1.02);
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
    animation: pulse 2s infinite;
}

.video-placeholder p {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.video-placeholder small {
    color: var(--text-medium);
    font-style: italic;
}

.video-placeholder.large {
    padding: var(--spacing-xl) var(--spacing-md);
}

.video-placeholder.medium {
    padding: var(--spacing-lg);
}

.solution-features {
    margin-top: var(--spacing-lg);
}

.feature-block {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    gap: var(--spacing-md);
}

.feature-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
    border: 3px solid rgba(212, 175, 55, 0.3);
}

.feature-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.feature-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.feature-content ul {
    list-style: none;
}

.feature-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-content ul li i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 3px rgba(212, 175, 55, 0.4));
}

.solution-guarantee {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
}

.guarantee-box {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #3d2a1f 100%);
    color: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    box-shadow: var(--shadow-gold);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.guarantee-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.guarantee-box i {
    font-size: 3rem;
    flex-shrink: 0;
    color: var(--primary-color);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8));
    position: relative;
    z-index: 1;
}

.guarantee-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.guarantee-box p {
    line-height: 1.6;
    opacity: 0.95;
}

/* ============ SERVICES SECTION ============ */
.services {
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ============ RESULTS SECTION ============ */
.results-section {
    background: var(--bg-cream);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.result-card {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.result-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 1.75rem;
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.result-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    text-align: center;
}

.result-card p {
    color: var(--text-medium);
    line-height: 1.7;
    text-align: left;
}

.roi-section {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
}

.roi-box {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #3d2a1f 100%);
    color: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-gold);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.roi-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

.roi-box h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.roi-text {
    font-size: 1.125rem;
    line-height: 2;
    margin-bottom: var(--spacing-md);
}

.roi-conclusion {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: var(--spacing-md);
}

/* ============ TARGET AUDIENCE ============ */
.target-audience {
    background: var(--bg-cream);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.audience-card {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.audience-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream);
    border-radius: 50%;
    font-size: 1.75rem;
    color: var(--primary-color);
}

.audience-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.audience-card p {
    color: var(--text-medium);
    font-size: 0.9375rem;
}

/* ============ OFFERS SECTION ============ */
.offers {
    background: var(--bg-white);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.offer-card {
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.offer-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.4);
    background: linear-gradient(to bottom, #fffbf0 0%, var(--bg-light) 100%);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(212, 175, 55, 0.3);
}

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

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.offer-badge.popular {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
    font-weight: 700;
}

.offer-header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #3d2a1f 100%);
    color: var(--bg-white);
    padding: var(--spacing-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.offer-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.offer-level {
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0.9;
}

.offer-price {
    margin-top: var(--spacing-md);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.offer-content {
    padding: var(--spacing-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.offer-description {
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.offer-features {
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.offer-content h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: var(--spacing-md) 0 var(--spacing-sm) 0;
}

.offer-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.offer-features i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 3px rgba(212, 175, 55, 0.3));
}

.offer-bonus {
    background: linear-gradient(135deg, #fff9e6 0%, #fff5d6 100%);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    margin: var(--spacing-md) 0;
    text-align: center;
    color: var(--text-dark);
    border-left: 4px solid var(--primary-color);
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.offer-guarantee {
    text-align: center;
    margin-top: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--text-medium);
    font-weight: 500;
}

.price-subtitle {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.testimonial-video-section {
    margin-top: var(--spacing-xl);
    text-align: center;
}

.testimonial-video-section h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

/* ============ PAYMENT BUTTONS & BADGES ============ */
.btn-payment {
    position: relative;
    overflow: hidden;
}

.btn-payment::before {
    content: '🔒';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    opacity: 0.8;
}

.btn-offer-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    margin-top: var(--spacing-sm);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-offer-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.payment-info {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.payment-badges {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.payment-badge {
    height: 24px;
    display: block;
}

.payment-methods {
    display: flex;
    gap: 0.5rem;
    font-size: 1.75rem;
}

.payment-methods i {
    color: var(--text-medium);
    transition: var(--transition);
}

.payment-methods i:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.payment-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-medium);
    margin-top: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.offer-extra {
    background: var(--bg-cream);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    margin-top: var(--spacing-sm);
    text-align: center;
}

.offer-extra p {
    color: var(--text-medium);
    font-size: 0.875rem;
}

.offer-tag {
    background: var(--bg-cream);
    padding: var(--spacing-sm);
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============ GUARANTEE ============ */
.guarantee-section {
    background: var(--bg-cream);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-lg);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-content i {
    font-size: 3rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.guarantee-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.guarantee-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* ============ PROCESS SECTION ============ */
.process {
    background: var(--bg-cream);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.step-content {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    flex: 1;
    box-shadow: var(--shadow-sm);
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: var(--spacing-sm);
    color: #ffd700;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
}

.author-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-medium);
}

/* ============ FAQ SECTION ============ */
.faq {
    background: var(--bg-cream);
}

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

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid transparent;
    transition: var(--transition);
}

.faq-item:hover {
    border-left-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-left-color: var(--secondary-color);
    background: linear-gradient(to right, rgba(199, 36, 177, 0.02), #ffffff);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    cursor: pointer;
    transition: var(--transition);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background: var(--bg-cream);
}

.faq-question span {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-question .faq-icon {
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 var(--spacing-md);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md);
}

.faq-answer p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-medium);
    line-height: 1.8;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer p strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* ============ CTA SECTION ============ */
.cta {
    background: var(--gradient-sunset);
    color: var(--bg-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.cta-content > p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.cta-form-wrapper {
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    position: relative;
}

.cta-form {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--bg-cream);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.form-success {
    display: none;
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.form-success.active {
    display: block;
}

.form-success i {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: var(--spacing-sm);
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.form-success p {
    color: var(--text-medium);
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.cta-benefit i {
    font-size: 1.5rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}

.cta-urgency {
    max-width: 700px;
    margin: var(--spacing-lg) auto 0;
    padding: var(--spacing-md);
    background: rgba(255, 249, 240, 0.95);
    border-left: 4px solid var(--accent-color);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}

.cta-urgency p {
    color: var(--text-dark);
    line-height: 1.7;
}

.form-privacy {
    text-align: center;
    margin-top: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--text-medium);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.trust-item p {
    font-weight: 500;
}

/* ============ FOOTER ============ */
.footer {
    background: linear-gradient(to bottom, var(--bg-charcoal) 0%, var(--bg-dark) 100%);
    color: var(--bg-light);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -4px 30px rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.footer-section h3 .mood {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}

.footer-section p,
.footer-section li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.footer-section li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-section li i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    color: var(--bg-dark);
}

.social-links a:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-bottom p {
    color: var(--text-light);
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

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

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

/* ============ SCROLL TO TOP ============ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.7);
    border-color: var(--primary-color);
}

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

.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-up {
    animation: fadeInUp 1s ease-in 0.2s both;
}

.fade-in-up-delay {
    animation: fadeInUp 1s ease-in 0.4s both;
}

.fade-in-up-delay-2 {
    animation: fadeInUp 1s ease-in 0.6s both;
}

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

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

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 768px) {
    /* Navigation mobile */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(to bottom, rgba(45, 31, 26, 0.98), rgba(45, 31, 26, 0.95));
        backdrop-filter: blur(10px);
        transition: var(--transition);
        box-shadow: var(--shadow-gold);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: var(--spacing-md);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Hero section */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    /* Section titles */
    .section-title {
        font-size: 1.75rem;
    }
    
    /* Process timeline */
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        padding-left: 80px;
    }
    
    .process-step:nth-child(even) {
        flex-direction: row;
    }
    
    .step-number {
        position: absolute;
        left: 0;
    }
    
    /* Offers */
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-card.featured {
        transform: scale(1);
    }
    
    .offer-card.featured:hover {
        transform: translateY(-10px);
    }
    
    /* Feature blocks */
    .feature-block {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-number {
        margin: 0 auto var(--spacing-sm);
    }
    
    /* Video placeholders */
    .video-placeholder {
        padding: var(--spacing-md);
    }
    
    .video-placeholder i {
        font-size: 3rem;
    }
    
    /* CTA benefits */
    .cta-benefits {
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Guarantee box */
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
    
    /* SORA Videos */
    .sora-placeholder {
        min-height: 350px;
        padding: var(--spacing-md);
    }
    
    .sora-play-button {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .sora-prompt p {
        font-size: 0.875rem;
    }
    
    .sora-specs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .video-benefits {
        grid-template-columns: 1fr;
    }
    
    .video-title {
        font-size: 1.5rem;
    }
    
    .video-description {
        font-size: 1rem;
    }
    
    /* Hero video */
    .hero-video-wrapper {
        padding: var(--spacing-sm);
    }
    
    .hero-video-container {
        border-width: 2px;
    }
    
    .hero-video-description {
        font-size: 0.875rem;
    }
    
    /* Payment buttons */
    .btn-payment {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .btn-offer-secondary {
        font-size: 0.9375rem;
    }
    
    .payment-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-methods {
        font-size: 1.5rem;
    }
    
    /* Payment buttons */
    .payment-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-methods {
        font-size: 1.5rem;
    }
    
    .btn-offer-secondary {
        font-size: 0.9rem;
        padding: 0.875rem 1.5rem;
    }
    
    /* CTA */
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    /* Footer */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    /* Guarantee */
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 3rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
}