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

:root {
    --yellow: #ffc94e;
    --dark-bg: #0f0f0f;
    --dark-card: #1a1a1a;
    --dark-border: #2a2a2a;
    --text-primary: #f5f5f5;
    --text-secondary: #b8b8b8;
    --gradient-yellow: linear-gradient(135deg, #ffc94e 0%, #ffb020 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Urgence Bar */
.urgence-bar {
    background: var(--gradient-yellow);
    color: #0f0f0f;
    padding: 12px 0;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(255, 201, 78, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

.urgence-bar p {
    margin: 0;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 2px 10px rgba(255, 201, 78, 0.3);
    }
    50% {
        box-shadow: 0 2px 20px rgba(255, 201, 78, 0.6);
    }
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    text-align: center;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1a1a1a 100%);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 201, 78, 0.1);
    color: var(--yellow);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 201, 78, 0.3);
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, var(--yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(20px, 3vw, 28px);
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-weight: 300;
}

.hero-text {
    max-width: 700px;
    margin: 0 auto 48px;
    font-size: 18px;
    color: var(--text-secondary);
}

.hero-text p {
    margin-bottom: 16px;
}

.hero-text strong {
    color: var(--yellow);
    font-weight: 600;
}

.hero-cta {
    margin-top: 48px;
}

.hero-cta-sub {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-yellow);
    color: #0f0f0f;
    box-shadow: 0 4px 20px rgba(255, 201, 78, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 201, 78, 0.6);
}

.btn-large {
    padding: 20px 60px;
    font-size: 20px;
    font-weight: 700;
}

/* Sections */
.section {
    padding: 80px 0;
    border-bottom: 1px solid var(--dark-border);
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
}

.lead {
    font-size: 20px;
    margin-bottom: 32px;
    color: var(--text-secondary);
}

/* Intro Section */
.intro {
    text-align: center;
    background: var(--dark-card);
}

.intro-text {
    font-size: 22px;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text.highlight {
    color: var(--yellow);
    font-weight: 600;
    font-size: 24px;
}

/* What's Included */
.what-included {
    background: var(--dark-bg);
}

.intro-box {
    background: var(--dark-card);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 48px;
    border-left: 4px solid var(--yellow);
}

.intro-box p {
    font-size: 18px;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.feature-card {
    background: var(--dark-card);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--yellow);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 16px;
}

.cta-box {
    background: var(--dark-card);
    padding: 32px;
    border-radius: 12px;
    border: 2px solid var(--yellow);
}

.cta-box p {
    font-size: 20px;
    margin-bottom: 16px;
}

.cta-box ul {
    list-style: none;
    padding-left: 0;
}

.cta-box ul li {
    padding: 8px 0;
    padding-left: 32px;
    position: relative;
    font-size: 18px;
}

.cta-box ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: 700;
    font-size: 20px;
}

/* Custom Program */
.custom-program {
    background: var(--dark-card);
}

.custom-list {
    max-width: 800px;
    margin: 40px auto;
}

.custom-item {
    display: flex;
    align-items: flex-start;
    padding: 16px 0;
    font-size: 18px;
}

.custom-item .bullet {
    color: var(--yellow);
    font-size: 24px;
    margin-right: 16px;
    font-weight: 700;
}

.highlight-box {
    background: rgba(255, 201, 78, 0.1);
    border: 2px solid var(--yellow);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

.highlight-box p {
    font-size: 20px;
    margin: 0;
}

/* Races Integration */
.races-integration {
    background: var(--dark-bg);
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin: 48px 0;
}

.process-step {
    background: var(--dark-card);
    padding: 32px 24px;
    border-radius: 12px;
    border: 2px solid var(--dark-border);
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-yellow);
    color: #0f0f0f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.process-step h4 {
    margin-bottom: 8px;
    color: var(--yellow);
}

.process-arrow {
    font-size: 32px;
    color: var(--yellow);
}

.results-box {
    background: var(--dark-card);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--yellow);
}

.results-box h4 {
    margin-bottom: 16px;
    color: var(--yellow);
    font-size: 20px;
}

.results-box ul {
    list-style: none;
    padding: 0;
}

.results-box ul li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
}

.results-box ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: 700;
}

/* Renfo Section */
.renfo-section {
    background: var(--dark-card);
}

.quote-box {
    background: rgba(255, 201, 78, 0.1);
    border-left: 4px solid var(--yellow);
    padding: 24px 32px;
    margin: 32px 0;
    font-size: 20px;
}

.objectives-grid {
    background: var(--dark-bg);
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
}

.objectives-grid h4 {
    margin-bottom: 20px;
    color: var(--yellow);
    font-size: 20px;
}

.obj-item {
    padding: 12px 0;
    font-size: 17px;
    border-bottom: 1px solid var(--dark-border);
}

.obj-item:last-child {
    border-bottom: none;
}

.emphasis {
    font-size: 18px;
    margin-top: 32px;
    padding: 24px;
    background: var(--dark-bg);
    border-radius: 8px;
    text-align: center;
}

/* Audio Section */
.audio-section {
    background: var(--dark-bg);
}

.audio-content {
    background: var(--dark-card);
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
}

.audio-content h4 {
    margin-bottom: 20px;
    color: var(--yellow);
    font-size: 20px;
}

.audio-content ul {
    list-style: none;
    padding: 0;
}

.audio-content ul li {
    padding: 16px;
    margin-bottom: 12px;
    background: var(--dark-bg);
    border-radius: 8px;
    border-left: 3px solid var(--yellow);
}

/* Platform Section */
.platform-section {
    background: var(--dark-card);
}

.platform-screenshot-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
}

.platform-screenshot {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--dark-border);
    transition: all 0.3s ease;
}

.platform-screenshot:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(255, 201, 78, 0.2);
    border-color: var(--yellow);
}

.platform-screenshot img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .platform-screenshot-wrapper {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .platform-screenshot-wrapper {
        padding: 0 20px;
        margin: 30px auto;
    }
    
    .platform-screenshot {
        border-radius: 8px;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .platform-screenshot img {
        width: auto;
        max-width: none;
        height: 400px;
    }
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.platform-item {
    background: var(--dark-bg);
    padding: 32px;
    border-radius: 12px;
    border: 2px solid var(--dark-border);
    text-align: center;
    transition: all 0.3s ease;
}

.platform-item:hover {
    border-color: var(--yellow);
}

.platform-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.platform-item h4 {
    margin-bottom: 12px;
    color: var(--yellow);
}

.flexibility-box {
    background: rgba(255, 201, 78, 0.05);
    border: 2px solid var(--yellow);
    padding: 32px;
    border-radius: 12px;
    margin-top: 40px;
}

.flexibility-box p.highlight {
    color: var(--yellow);
    font-weight: 600;
    font-size: 18px;
    margin: 24px 0 16px;
}

.flexibility-box ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.flexibility-box ul li {
    padding: 8px 0 8px 24px;
    position: relative;
}

.flexibility-box ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-size: 20px;
}

/* Strategy Section */
.strategy-section {
    background: var(--dark-bg);
}

.strategy-content {
    background: var(--dark-card);
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
}

.strategy-content h4 {
    margin-bottom: 20px;
    color: var(--yellow);
    font-size: 20px;
}

.strategy-content ul {
    list-style: none;
    padding: 0;
}

.strategy-content ul li {
    padding: 12px 0 12px 32px;
    position: relative;
    border-bottom: 1px solid var(--dark-border);
}

.strategy-content ul li:last-child {
    border-bottom: none;
}

.strategy-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: 700;
    font-size: 18px;
}

/* Autonomy Section */
.autonomy-section {
    background: var(--dark-card);
}

.autonomy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

.autonomy-card {
    background: var(--dark-bg);
    padding: 32px;
    border-radius: 12px;
    border: 2px solid var(--dark-border);
}

.autonomy-card h4 {
    margin-bottom: 20px;
    color: var(--yellow);
    font-size: 22px;
}

.autonomy-card ul {
    list-style: none;
    padding: 0;
}

.autonomy-card ul li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px solid var(--dark-border);
}

.autonomy-card ul li:last-child {
    border-bottom: none;
}

.autonomy-card ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--yellow);
}

.safety-net {
    background: rgba(255, 201, 78, 0.1);
    border: 2px solid var(--yellow);
    padding: 32px;
    border-radius: 12px;
    margin: 40px 0;
}

.safety-net p {
    margin-bottom: 16px;
    font-size: 17px;
}

.safety-net p.highlight {
    color: var(--yellow);
    font-weight: 600;
    font-size: 19px;
}

.guarantee-box {
    background: var(--dark-bg);
    padding: 32px;
    border-radius: 12px;
}

.guarantee-box h4 {
    margin-bottom: 16px;
    color: var(--yellow);
}

.guarantee-box ul {
    list-style: none;
    padding: 0;
}

.guarantee-box ul li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
}

.guarantee-box ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: 700;
}

/* Difference Section */
.difference-section {
    background: var(--dark-bg);
}

.comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

.comparison-col {
    background: var(--dark-card);
    padding: 32px;
    border-radius: 12px;
    border: 2px solid var(--dark-border);
}

.comparison-title {
    font-size: 22px;
    margin-bottom: 24px;
}

.comparison-title.negative {
    color: #ff6b6b;
}

.comparison-title.positive {
    color: var(--yellow);
}

.comparison-col ul {
    list-style: none;
    padding: 0;
}

.comparison-col ul li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px solid var(--dark-border);
}

.comparison-col ul li:last-child {
    border-bottom: none;
}

.comparison-col:first-child ul li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-size: 20px;
    font-weight: 700;
}

.comparison-col:last-child ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-size: 18px;
    font-weight: 700;
}

.personal-note {
    background: rgba(255, 201, 78, 0.1);
    border-left: 4px solid var(--yellow);
    padding: 24px;
    margin-top: 40px;
    font-size: 17px;
    font-style: italic;
    border-radius: 8px;
}

/* For Who Section */
.for-who-section {
    background: var(--dark-card);
}

.for-who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

.for-who-card {
    padding: 40px;
    border-radius: 12px;
    border: 3px solid;
}

.for-who-card.fit {
    background: rgba(76, 175, 80, 0.1);
    border-color: #4caf50;
}

.for-who-card.not-fit {
    background: rgba(244, 67, 54, 0.1);
    border-color: #f44336;
}

.for-who-card h3 {
    margin-bottom: 24px;
    font-size: 24px;
}

.for-who-card.fit h3 {
    color: #4caf50;
}

.for-who-card.not-fit h3 {
    color: #f44336;
}

.for-who-card ul {
    list-style: none;
    padding: 0;
}

.for-who-card ul li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px solid var(--dark-border);
}

.for-who-card ul li:last-child {
    border-bottom: none;
}

.for-who-card.fit ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
    font-size: 18px;
}

.for-who-card.not-fit ul li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: 700;
    font-size: 20px;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--dark-card);
    padding: 80px 0;
}

.testimonials-section .section-title {
    color: var(--text-primary);
}

.testimonials-section .section-subtitle {
    color: var(--text-secondary);
}

.testimonials-cta {
    margin-top: 50px;
    text-align: center;
}

.testimonials-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.testimonials-cta-sub {
    margin-top: 16px;
    font-size: 15px;
    color: var(--text-secondary);
}

/* Final CTA Section */
.final-cta {
    background: var(--dark-bg);
    text-align: center;
    padding: 100px 0;
}

.benefits-final {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin: 40px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    background: var(--dark-card);
    padding: 20px;
    border-radius: 8px;
    font-size: 18px;
    border: 2px solid var(--yellow);
    color: var(--yellow);
    font-weight: 600;
}

.cta-main {
    margin: 60px 0;
}

.cta-sub {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

.process-info {
    max-width: 800px;
    margin: 60px auto 0;
    background: var(--dark-card);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--dark-border);
    text-align: left;
}

.process-info h4 {
    margin-bottom: 24px;
    color: var(--yellow);
    font-size: 22px;
    text-align: center;
}

.process-info ol {
    padding-left: 24px;
}

.process-info ol li {
    padding: 16px 0;
    font-size: 17px;
    line-height: 1.6;
}

.final-message {
    font-size: 22px;
    font-weight: 600;
    margin-top: 60px;
    color: var(--yellow);
}

/* Footer */
.footer {
    background: var(--dark-card);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--dark-border);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(255, 201, 78, 0.05);
}

.footer-social a:hover {
    color: var(--yellow);
    background: rgba(255, 201, 78, 0.15);
    transform: translateY(-2px);
}

.footer-social a i {
    font-size: 24px;
}

.signature {
    max-width: 600px;
    margin: 0 auto 30px;
}

.signature-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--yellow);
}

.signature-title {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 30px;
}

@media (max-width: 768px) {
    .footer-social {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .process-flow {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

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

    .autonomy-grid {
        grid-template-columns: 1fr;
    }

    .for-who-grid {
        grid-template-columns: 1fr;
    }

    .benefits-final {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--yellow);
    color: #0f0f0f;
}

/* Snowflakes Animation */
.snowflake {
    position: fixed;
    top: -10%;
    z-index: 9999;
    user-select: none;
    cursor: default;
    animation: snowfall linear infinite;
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

@keyframes snowfall {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}
