/* ═══════════════════════════════════════════════════════════════
   СВЕТ ДУШИ - Landing Page Styles
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   ANIMATED SUN LOGO
   ═══════════════════════════════════════════════════════════════ */

@keyframes rayWave {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

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

@keyframes sunGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(251, 191, 36, 0.4), 0 0 60px rgba(251, 191, 36, 0.2); }
    50% { box-shadow: 0 0 50px rgba(251, 191, 36, 0.6), 0 0 80px rgba(251, 191, 36, 0.3); }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.animated-sun {
    --sun-size: 48px;
    position: relative;
    width: var(--sun-size);
    height: var(--sun-size);
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-sun.sun-large {
    --sun-size: 80px;
}

.sun-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.4) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
}

.sun-rays {
    position: absolute;
    width: 100%;
    height: 100%;
}

.sun-ray {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 35%;
    transform-origin: center bottom;
}

.sun-ray-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #FBBF24, #FDE68A);
    border-radius: 2px;
    transform-origin: bottom center;
    animation: rayWave 1.5s ease-in-out infinite;
}

.sun-center {
    position: relative;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background: linear-gradient(135deg, #FEF3C7 0%, #FBBF24 50%, #F59E0B 100%);
    animation: sunGlow 3s ease-in-out infinite, sunPulse 4s ease-in-out infinite;
    z-index: 2;
}

.sun-highlight {
    position: absolute;
    top: 15%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    filter: blur(2px);
}

.sun-highlight-secondary {
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 15%;
    height: 15%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    filter: blur(1px);
}

/* Responsive sun sizes */
@media (max-width: 480px) {
    .animated-sun {
        --sun-size: 40px;
    }
    .animated-sun.sun-large {
        --sun-size: 64px;
    }
    .sun-ray {
        width: 2px;
    }
}

/* Section Base */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: white;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-tertiary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* ═══════════════════════════════════════════════════════════════
   Problem Section
   ═══════════════════════════════════════════════════════════════ */

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.problem-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--cream-light);
    border-radius: 16px;
    transition: transform 0.2s;
}

.problem-item:hover {
    transform: translateY(-4px);
}

.problem-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.problem-item p {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.solution-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    padding: 2rem;
    background: var(--gradient-warm);
    border-radius: 20px;
    border-left: 4px solid var(--amber);
}

/* ═══════════════════════════════════════════════════════════════
   Features Section
   ═══════════════════════════════════════════════════════════════ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(45, 37, 32, 0.08);
    border: 1px solid var(--sand);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(45, 37, 32, 0.12);
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-tertiary);
}

/* ═══════════════════════════════════════════════════════════════
   Paths Section
   ═══════════════════════════════════════════════════════════════ */

.paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.path-card {
    background: var(--cream-light);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.path-card:hover {
    border-color: var(--amber);
}

.path-card-accent {
    background: var(--gradient-warm);
    border-color: var(--golden-light);
}

.path-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1.5rem;
}

.path-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.path-card p {
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   Daily Timeline Section
   ═══════════════════════════════════════════════════════════════ */

.daily-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.daily-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(45, 37, 32, 0.08);
    border: 1px solid var(--sand);
}

.daily-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.daily-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.daily-content p {
    color: var(--text-tertiary);
}

/* ═══════════════════════════════════════════════════════════════
   Testimonials Section
   ═══════════════════════════════════════════════════════════════ */

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

.testimonial-card {
    background: var(--cream-light);
    border-radius: 20px;
    padding: 2rem;
    border-left: 4px solid var(--amber);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-stars {
    color: var(--amber);
}

/* ═══════════════════════════════════════════════════════════════
   Benefits Section
   ═══════════════════════════════════════════════════════════════ */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(45, 37, 32, 0.06);
}

.benefit-check {
    width: 32px;
    height: 32px;
    background: var(--harmony-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   Pricing Section
   ═══════════════════════════════════════════════════════════════ */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.pricing-card {
    background: var(--cream-light);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card-premium {
    background: white;
    border-color: var(--amber);
    box-shadow: 0 8px 40px rgba(232, 168, 56, 0.2);
}

.pricing-card-lifetime {
    background: linear-gradient(135deg, #FFF8F0 0%, #FEF3C7 100%);
    border-color: var(--golden-light);
    box-shadow: 0 8px 40px rgba(246, 196, 69, 0.25);
}

.pricing-badge-gold {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-golden);
    color: var(--text-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-tertiary);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--sand);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Promo Code */
.promo-section {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.promo-section h4 {
    margin-bottom: 1rem;
    color: var(--text-tertiary);
}

.promo-form {
    display: flex;
    gap: 0.75rem;
}

.promo-form input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--sand);
    border-radius: 50px;
    font-size: 1rem;
    text-transform: uppercase;
    outline: none;
    transition: border-color 0.2s;
}

.promo-form input:focus {
    border-color: var(--amber);
}

.promo-result {
    margin-top: 1rem;
    font-weight: 500;
}

.promo-result.success {
    color: var(--harmony-green);
}

.promo-result.error {
    color: var(--rose-aurora);
}

/* ═══════════════════════════════════════════════════════════════
   FAQ Section
   ═══════════════════════════════════════════════════════════════ */

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(45, 37, 32, 0.06);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--amber);
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════════
   CTA / Download Section
   ═══════════════════════════════════════════════════════════════ */

.section-cta {
    background: var(--gradient-warm);
    text-align: center;
    padding: 6rem 0;
}

.section-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-cta > .container > p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--text-primary);
    color: white;
    border-radius: 16px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45, 37, 32, 0.2);
}

.download-icon {
    font-size: 2rem;
}

.download-text {
    text-align: left;
}

.download-small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.download-large {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
}

.download-note {
    color: var(--text-tertiary);
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════════════ */

.footer {
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    background: var(--amber);
}

.footer-brand p {
    font-size: 0.95rem;
}

.footer-links h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE-FIRST RESPONSIVE DESIGN
   Best practices: Touch-friendly, thumb zones, performance
   ═══════════════════════════════════════════════════════════════ */

/* Mobile Base (< 480px) - Small phones */
@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    /* Header - Compact mobile */
    .header {
        padding: 1rem 0;
        position: sticky;
        top: 0;
        background: rgba(255, 248, 240, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 100;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .header .btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

    /* Touch-friendly buttons (min 44px) */
    .btn {
        min-height: 48px;
        padding: 0.875rem 1.5rem;
    }

    /* Problems - Horizontal scroll on mobile */
    .problems-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 1rem;
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .problems-grid::-webkit-scrollbar {
        display: none;
    }

    .problem-item {
        flex: 0 0 75%;
        scroll-snap-align: center;
        padding: 1.5rem 1rem;
    }

    .problem-emoji {
        font-size: 2.5rem;
    }

    .problem-item p {
        font-size: 1rem;
    }

    .solution-text {
        padding: 1.5rem;
        font-size: 1rem;
        border-left-width: 3px;
        margin: 0 -0.5rem;
        border-radius: 16px;
    }

    /* Features - Horizontal scroll */
    .features-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 1rem;
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .features-grid::-webkit-scrollbar {
        display: none;
    }

    .feature-card {
        flex: 0 0 80%;
        scroll-snap-align: center;
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-card h3 {
        font-size: 1.125rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    /* Paths - Stack vertically */
    .paths-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .path-card {
        padding: 1.5rem;
    }

    .path-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .path-card h3 {
        font-size: 1.25rem;
    }

    /* Daily Timeline - Compact */
    .daily-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem;
        text-align: left;
    }

    .daily-icon {
        font-size: 2rem;
    }

    .daily-content h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .daily-content p {
        font-size: 0.875rem;
    }

    /* Testimonials - Horizontal scroll */
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 1rem;
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding: 1.25rem;
    }

    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    /* Benefits - Compact */
    .benefits-grid {
        gap: 0.75rem;
    }

    .benefit-item {
        padding: 1rem;
        gap: 0.75rem;
    }

    .benefit-check {
        width: 28px;
        height: 28px;
        font-size: 0.875rem;
    }

    .benefit-item span {
        font-size: 0.9rem;
    }

    /* Pricing - Stack on mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .pricing-card h3 {
        font-size: 1.25rem;
    }

    .pricing-price {
        font-size: 2.5rem;
    }

    .pricing-features li {
        padding: 0.625rem 0;
        font-size: 0.9rem;
    }

    /* Promo */
    .promo-section {
        padding: 0 0.5rem;
    }

    .promo-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .promo-form input {
        padding: 1rem;
        font-size: 1rem;
    }

    .promo-form .btn {
        width: 100%;
        justify-content: center;
    }

    /* FAQ - Touch friendly */
    .faq-item summary {
        padding: 1.25rem;
        font-size: 0.95rem;
        min-height: 56px;
    }

    .faq-item p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9rem;
    }

    /* Download CTA */
    .section-cta {
        padding: 3rem 0;
    }

    .section-cta h2 {
        font-size: 1.75rem;
    }

    .section-cta > .container > p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .download-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .download-btn {
        width: 100%;
        padding: 1rem 1.5rem;
        justify-content: center;
        min-height: 64px;
    }

    .download-icon {
        font-size: 1.75rem;
    }

    .download-large {
        font-size: 1.125rem;
    }

    .download-note {
        font-size: 0.85rem;
    }

    /* Footer - Compact */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-brand .logo-text {
        font-size: 1.125rem;
    }

    .footer-links h4 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        padding: 0.375rem 0;
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding-top: 1.5rem;
    }
}

/* Tablets & Medium phones (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .section {
        padding: 3.5rem 0;
    }

    .header {
        position: sticky;
        top: 0;
        background: rgba(255, 248, 240, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 100;
    }

    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .paths-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .daily-item {
        flex-direction: row;
        text-align: left;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 320px;
    }

    .promo-form {
        flex-direction: row;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium tablets (600px - 768px) - show 2 pricing cards */
@media (min-width: 600px) and (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }

    .pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* Large tablets & small desktops (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .paths-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   STICKY MOBILE CTA
   Floating download button for mobile
   ═══════════════════════════════════════════════════════════════ */

.mobile-sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 -4px 20px rgba(45, 37, 32, 0.15);
        z-index: 1000;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .mobile-sticky-cta.visible {
        transform: translateY(0);
    }

    .mobile-sticky-cta .btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
    }

    /* Add padding to body for sticky CTA */
    body.has-sticky-cta {
        padding-bottom: 80px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL INDICATORS
   Visual hint for horizontal scroll sections
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
    .scroll-hint {
        position: relative;
    }

    .scroll-hint::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 1rem;
        width: 40px;
        background: linear-gradient(to right, transparent, var(--cream-light));
        pointer-events: none;
    }

    .section-alt .scroll-hint::after {
        background: linear-gradient(to right, transparent, white);
    }
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

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

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-text,
.hero-image {
    animation: fadeInUp 0.8s ease-out;
}

.hero-image {
    animation-delay: 0.2s;
}

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

/* Smooth scroll indicator - desktop only */
@media (min-width: 769px) and (min-height: 700px) {
    .hero::after {
        content: '';
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 50px;
        border: 2px solid var(--amber);
        border-radius: 20px;
        opacity: 0.5;
    }
}

/* ═══════════════════════════════════════════════════════════════
   TOUCH & INTERACTION
   ═══════════════════════════════════════════════════════════════ */

/* Remove tap highlight on mobile */
@media (max-width: 768px) {
    a, button, input, select, textarea {
        -webkit-tap-highlight-color: transparent;
    }

    /* Active states for touch */
    .btn:active,
    .feature-card:active,
    .path-card:active,
    .faq-item summary:active {
        transform: scale(0.98);
    }

    .download-btn:active {
        transform: scale(0.98);
    }
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   DARK MODE (Optional - follows system preference)
   ═══════════════════════════════════════════════════════════════ */

@media (prefers-color-scheme: dark) {
    /* Uncomment to enable dark mode */
    /*
    :root {
        --cream-light: #1a1815;
        --cream-warm: #252220;
        --sand: #3a3530;
        --text-primary: #f5f0eb;
        --text-secondary: #c5c0bb;
        --text-tertiary: #8a8580;
    }
    */
}

/* ═══════════════════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════════════════ */

@media print {
    .hero,
    .section-cta,
    .promo-section,
    .mobile-sticky-cta,
    .header {
        display: none;
    }

    .section {
        padding: 1rem 0;
    }
}

/* ═══════════════════════════════════════════════════════════════
   DAILY SUN ICON STYLING
   ═══════════════════════════════════════════════════════════════ */

.daily-sun {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: inherit;
}

.daily-sun .animated-sun {
    --sun-size: 48px;
}

@media (max-width: 480px) {
    .daily-sun .animated-sun {
        --sun-size: 32px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   INSTALL MODAL
   First-visit popup to encourage app installation
   ═══════════════════════════════════════════════════════════════ */

.install-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.install-modal.visible {
    opacity: 1;
    visibility: visible;
}

.install-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 37, 32, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.install-modal-content {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(45, 37, 32, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s;
}

.install-modal.visible .install-modal-content {
    transform: translateY(0);
}

.install-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--sand);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: background 0.2s;
}

.install-modal-close:hover {
    background: var(--amber);
    color: white;
}

.install-modal-sun {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.install-modal-sun .animated-sun {
    --sun-size: 100px;
}

.install-modal-content h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.install-modal-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.install-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.install-modal-buttons .btn {
    width: 100%;
    justify-content: center;
}

.install-modal-skip {
    background: none;
    border: none;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: color 0.2s;
}

.install-modal-skip:hover {
    color: var(--text-primary);
}

@media (max-width: 480px) {
    .install-modal-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .install-modal-sun .animated-sun {
        --sun-size: 80px;
    }

    .install-modal-content h2 {
        font-size: 1.5rem;
    }

    .install-modal-content p {
        font-size: 0.95rem;
    }
}
