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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fffdf8;
    overflow-x: hidden;
}

/* Logo Header */
.logo-header {
    text-align: center;
    margin: 20px auto;
}

.logo-header .logo-img {
    max-width: 150px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(255, 107, 74, 0.15);
    transition: transform 0.3s ease;
}

.logo-header .logo-img:hover {
    transform: scale(1.05);
}

/* Button Container */
.btn-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 20px auto;
}

.btn-container a,
.btn-container button {
    min-width: 200px;
    text-align: center;
}

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

/* Header */
.header {
    padding: 10px 0 20px;
    text-align: center;
    background: linear-gradient(135deg, #fff5f2 0%, #f0f9ff 100%);
}

/* Hero Section */
.hero {
    padding: 20px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #fff5f2 0%, #f0f9ff 100%);
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #5a6c7d;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits */
.benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #34495e;
    padding: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.check {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B4A 0%, #FF8A75 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 74, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #3BB273 0%, #4CD964 100%);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 178, 115, 0.4);
}

.btn-bonus {
    background: linear-gradient(135deg, #FFA726 0%, #FFB74D 100%);
    color: white;
}

.btn-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 167, 38, 0.4);
}

.btn-support {
    background: linear-gradient(135deg, #42A5F5 0%, #66BB6A 100%);
    color: white;
}

.btn-support:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(66, 165, 245, 0.4);
}

.btn-icon {
    font-size: 1.2em;
}

.btn:focus {
    outline: 3px solid rgba(255, 107, 74, 0.4);
    outline-offset: 2px;
}

/* Steps Section */
.steps {
    padding: 60px 0 100px;
    background: #fff;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #5a6c7d;
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Individual Step */
.step {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #fafafa 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 74, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF6B4A 0%, #FF8A75 100%);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 74, 0.3);
}

.step-content {
    flex: 1;
    min-width: 0;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-text {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.6;
}

.step-image {
    margin-bottom: 16px;
}

.step-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e5e9;
    transition: transform 0.3s ease;
}

.step-image img:hover {
    transform: scale(1.02);
}

.fallback-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #FF6B4A;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 8px;
}

.fallback-link:hover {
    text-decoration: underline;
}

/* Quick Actions */
.quick-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid #e1e5e9;
    padding: 12px 0;
    z-index: 1000;
    display: none;
}

.quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 80px;
}

.quick-btn-primary {
    background: linear-gradient(135deg, #FF6B4A 0%, #FF8A75 100%);
    color: white;
}

.quick-btn-secondary {
    background: linear-gradient(135deg, #42A5F5 0%, #66BB6A 100%);
    color: white;
}

.quick-btn:hover {
    transform: translateY(-2px);
}

.quick-btn-icon {
    font-size: 1.5em;
}

.quick-btn-text {
    font-size: 0.75rem;
    font-weight: 500;
}

.quick-btn:focus {
    outline: 2px solid rgba(255, 107, 74, 0.4);
    outline-offset: 2px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 40px 0;
    margin-bottom: 80px;
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 30px 0 50px;
    }

    .benefits {
        gap: 8px;
    }

    .benefit-item {
        font-size: 1rem;
        padding: 12px 16px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 1rem;
        min-width: 180px;
    }

    .steps {
        padding: 40px 0 80px;
    }

    .step {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .step-number {
        align-self: flex-start;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .quick-actions {
        display: block;
    }

    .footer {
        margin-bottom: 0;
    }

    .btn-container {
        gap: 8px;
    }

    .btn-container a,
    .btn-container button {
        min-width: 160px;
    }
}

/* Desktop Optimizations */
@media (min-width: 769px) {
    .benefits {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .benefit-item {
        flex: 0 0 auto;
        min-width: 200px;
    }

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    .step {
        border: 2px solid #333;
    }
    
    .btn {
        border: 2px solid transparent;
    }
    
    .btn:focus {
        border-color: currentColor;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print styles */
@media print {
    .quick-actions {
        display: none;
    }
    
    .step-image img {
        max-width: 300px;
    }
}