:root {
    /* Fruit Palette - Vibrant and Saturated */
    --berry-pink: #FF6B9D;
    --deep-pink: #C23866;
    --citrus-orange: #FF9A3C;
    --tangerine: #FF6B1C;
    --grape-purple: #A259FF;
    --deep-purple: #7B2CBF;
    --lime-green: #4ADE80;
    --forest-green: #16A34A;
    --sky-blue: #06B6D4;
    --ocean-blue: #0891B2;
    --sunshine-yellow: #F59E0B;
    --gold: #D97706;

    /* Neutrals */
    --cream: #FFF8F0;
    --warm-white: #FFFBF7;
    --soft-gray: #F3F4F6;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 40px rgba(255, 107, 157, 0.3);

    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Fredoka', 'DM Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--berry-pink) 0%, var(--grape-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 12px rgba(255, 107, 157, 0.2);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 60px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--text-dark) 0%, #374151 100%);
    color: white;
    padding: 24px;
    z-index: 10000;
    box-shadow: var(--shadow-lg);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.hidden {
    transform: translateY(120%);
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie {
    padding: 12px 28px;
    border: none;
    border-radius: 12px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-accept {
    background: linear-gradient(135deg, var(--lime-green) 0%, var(--forest-green) 100%);
    color: white;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.4);
}

.btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--berry-pink);
}

.logo img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--berry-pink), var(--citrus-orange));
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--berry-pink);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(162, 89, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 154, 60, 0.08) 0%, transparent 60%);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--sunshine-yellow) 0%, var(--gold) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.bonus-icon {
    font-size: 20px;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.hero-title {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-description {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Fredoka', sans-serif;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--berry-pink) 0%, var(--citrus-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 16px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--berry-pink) 0%, var(--deep-pink) 100%);
    color: white;
    box-shadow: 0 6px 24px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.5);
}

.btn-secondary {
    background: var(--warm-white);
    color: var(--berry-pink);
    border: 2px solid var(--berry-pink);
}

.btn-secondary:hover {
    background: var(--berry-pink);
    color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 20px;
}

.play-icon {
    width: 24px;
    height: 24px;
}

.trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--warm-white);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.badge svg {
    color: var(--lime-green);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.gameplay-screenshot {
    width: 100%;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.phone-mockup:hover .gameplay-screenshot {
    transform: scale(1.02);
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.4) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

/* Features Section */
.features {
    padding: var(--section-padding) 0;
    background: var(--warm-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--berry-pink);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Screenshots Gallery */
.screenshots {
    padding: var(--section-padding) 0;
    background: var(--cream);
    overflow: hidden;
}

.gallery-scroll {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--berry-pink) var(--soft-gray);
}

.gallery-scroll::-webkit-scrollbar {
    height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: var(--soft-gray);
    border-radius: 4px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--berry-pink), var(--citrus-orange));
    border-radius: 4px;
}

.gallery-track {
    display: flex;
    gap: 24px;
    padding: 20px 0;
}

.gallery-track img {
    height: 500px;
    width: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.gallery-track img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Advantages Section */
.advantages {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF0E5 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.advantage-item {
    position: relative;
    padding-left: 80px;
}

.advantage-number {
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Fredoka', sans-serif;
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--citrus-orange) 0%, var(--tangerine) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
}

.advantage-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.advantage-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Target Audience Section */
.target-audience {
    padding: var(--section-padding) 0;
    background: var(--warm-white);
}

.audience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.audience-card {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    border: 3px solid transparent;
}

.audience-card:hover {
    transform: translateY(-8px) rotate(-2deg);
    border-color: var(--berry-pink);
    box-shadow: var(--shadow-lg);
}

.audience-emoji {
    font-size: 64px;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.audience-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.audience-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Tips Section */
.tips {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.tip-card {
    background: linear-gradient(135deg, white 0%, #FFFBF7 100%);
    padding: 32px 28px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border-left: 4px solid var(--berry-pink);
}

.tip-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-left-width: 6px;
}

.tip-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: inline-block;
}

.tip-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.tip-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Business Model Section */
.business-model {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #FFF0F5 0%, #FFE4F0 100%);
}

.model-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.model-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.model-intro {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.8;
}

.bs-highlight {
    background: white;
    padding: 28px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--sunshine-yellow);
}

.bs-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.bs-highlight h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.bs-highlight p {
    color: var(--text-gray);
    line-height: 1.7;
}

.model-features {
    display: grid;
    gap: 16px;
}

.model-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.model-feature svg {
    width: 24px;
    height: 24px;
    color: var(--lime-green);
    flex-shrink: 0;
}

.model-visual {
    display: flex;
    justify-content: center;
}

.bs-card {
    background: linear-gradient(135deg, var(--sunshine-yellow) 0%, var(--gold) 100%);
    padding: 48px 40px;
    border-radius: 32px;
    text-align: center;
    color: white;
    box-shadow: 0 16px 48px rgba(245, 158, 11, 0.4);
    position: relative;
    overflow: hidden;
}

.bs-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.bs-badge {
    background: rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.bs-amount {
    font-family: 'Fredoka', sans-serif;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.bs-label {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
}

.bs-card p {
    font-size: 15px;
    opacity: 0.95;
    position: relative;
}

/* FAQ Section */
.faq {
    padding: var(--section-padding) 0;
    background: var(--warm-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.faq-item {
    background: white;
    padding: 32px 28px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--berry-pink);
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--berry-pink) 0%, var(--grape-purple) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-box p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-box .btn-primary {
    background: white;
    color: var(--berry-pink);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-box .btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.footer-logo span {
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--berry-pink) 0%, var(--citrus-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-col h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--berry-pink);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: var(--berry-pink);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }

    .model-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 17px;
    }

    .stats-row {
        gap: 24px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .features-grid,
    .audience-cards,
    .tips-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gallery-track img {
        height: 400px;
    }

    .nav-links {
        display: none;
    }

    .cookie-content {
        flex-direction: column;
        gap: 16px;
    }

    .cookie-content p {
        min-width: auto;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cta-box h2 {
        font-size: 32px;
    }

    .cta-box p {
        font-size: 17px;
    }
}

/* Animations on Scroll */
@media (prefers-reduced-motion: no-preference) {
    .feature-card,
    .advantage-item,
    .audience-card,
    .tip-card,
    .faq-item {
        opacity: 0;
        animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .feature-card:nth-child(1) { animation-delay: 0.1s; }
    .feature-card:nth-child(2) { animation-delay: 0.2s; }
    .feature-card:nth-child(3) { animation-delay: 0.3s; }
    .feature-card:nth-child(4) { animation-delay: 0.4s; }
    .feature-card:nth-child(5) { animation-delay: 0.5s; }
    .feature-card:nth-child(6) { animation-delay: 0.6s; }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}