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

:root {
    /* Dark theme colors (default) */
    --bg-primary: #000000;
    --bg-secondary: #000000;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --placeholder-bg: #1a1a1a;
    --placeholder-border: #333333;
    --button-bg: #ffffff;
    --button-text: #000000;
    --button-hover: #cccccc;
    
    /* Red accent colors */
    --accent-red: #FF4444;
    --accent-red-dark: #CC3333;
    --accent-red-light: #FF6666;
    --accent-red-bg: rgba(255, 68, 68, 0.1);
}

/* Light theme colors (commented out for easy restoration) */
/*
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #ffffff;
    --text-primary: #000000;
    --text-secondary: #666666;
    --placeholder-bg: #f0f0f0;
    --placeholder-border: #e0e0e0;
    --button-bg: #000000;
    --button-text: #ffffff;
    --button-hover: #333333;
}

[data-theme="dark"] {
    --bg-primary: #000000;
    --bg-secondary: #000000;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --placeholder-bg: #1a1a1a;
    --placeholder-border: #333333;
    --button-bg: #ffffff;
    --button-text: #000000;
    --button-hover: #cccccc;
}
*/

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Header */
.header {
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--placeholder-border);
    z-index: 100;
    transition: all 0.3s ease;
    opacity: 0;
}

.header.visible {
    top: 0;
    opacity: 1;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.header-download-btn {
    background-color: transparent;
    text-decoration: none;
    padding: 4px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
}

.header-download-btn:hover {
    background-color: transparent;
    border-color: transparent;
    transform: translateY(-1px);
}

/* Download Badges Styles */
.download-badges {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.badge-link:hover {
    transform: translateY(-2px);
}

.store-badge {
    height: 48px;
    width: auto;
    transition: all 0.3s ease;
}

/* Header badges - smaller size */
.header-badges .store-badge {
    height: 32px;
}

/* Theme toggle styles (commented out for easy restoration) */
/*
.theme-toggle {
    background: none;
    border: 1px solid var(--placeholder-border);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: scale(1.1);
}

.theme-icon {
    font-size: 1.2rem;
}
*/

/* Hero Section */
.hero {
    padding: 80px 0 80px 0;
    text-align: center;
    background-color: var(--bg-primary);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text {
    text-align: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.doomy-hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
}

.hero-cta {
    margin-top: 2rem;
}

.mobile-cta {
    display: none;
}

.desktop-cta {
    display: block;
}


.hero-note {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Placeholders */
.placeholder {
    background-color: var(--placeholder-bg);
    border: 2px dashed var(--placeholder-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}


.feature-placeholder {
    width: 100%;
    height: 250px;
}

.cta-placeholder {
    width: 200px;
    height: 200px;
}

.doomy-cta-image {
    width: 100%;
    max-width: 200px;
    height: 200px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
}

.feature-image {
    width: 100%;
    max-width: 400px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
    aspect-ratio: 2 / 1;
}

.urgency-text {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

/* Pain Points → Solution Section */
.pain-solution {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.pain-solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pain-points {
    padding-right: 2rem;
}

.pain-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--placeholder-bg) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid var(--placeholder-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat:hover {
    border-color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-unit {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-red-light);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.pain-description {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.lifetime-chart {
    padding-left: 2rem;
    text-align: center;
}

.chart-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.pie-chart-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.pie-chart {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(
        #2196F3 0deg 118.8deg,                /* Sleeping: 33% */
        var(--accent-red) 118.8deg 230.4deg,  /* Phone: 31% */
        #4CAF50 230.4deg 288deg,              /* Actual Life: 16% */
        #2E7D32 288deg 334.8deg,              /* Working: 13% */
        #9C27B0 334.8deg 349.2deg,            /* Friends: 4% */
        #FF9800 349.2deg 360deg               /* Education: 3% */
    );
    position: relative;
    margin: 0 auto;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.pie-chart:hover {
    transform: scale(1.02);
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-primary);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--placeholder-border);
}

.chart-years {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.chart-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chart-legend {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    text-align: left;
    max-width: 250px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .chart-legend {
        grid-template-columns: 1fr 1fr;
        max-width: 500px;
        column-gap: 2rem;
        row-gap: 0.8rem;
    }
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    flex-shrink: 0;
}

.phone-color { background: var(--accent-red); }
.work-color { background: #2E7D32; }
.sleep-color { background: #2196F3; }
.actual-life-color { background: #4CAF50; }
.friends-color { background: #9C27B0; }
.education-color { background: #FF9800; }

.legend-text {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.legend-text strong {
    color: var(--accent-red);
    font-weight: 600;
}

.chart-footer {
    margin-top: 1.5rem;
    text-align: center;
}

.reality-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
    margin: 0;
}

/* Hero Testimonial Section */
.hero-testimonial {
    padding: 50px 0;
    background-color: var(--bg-primary);
}

.hero-testimonial-content {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
}

.hero-testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-testimonial-photo {
    flex-shrink: 0;
}

.testimonial-hero-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--placeholder-border);
    transition: transform 0.3s ease;
}

.testimonial-hero-image:hover {
    transform: scale(1.05);
}

.hero-testimonial-text {
    flex: none;
}

.hero-testimonial-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 0;
    text-align: left;
}

.hero-testimonial-quote::before {
    content: '"';
    color: var(--accent-red);
    font-size: 1.6rem;
    font-weight: 700;
    margin-right: 0.2rem;
}

.hero-testimonial-quote::after {
    content: '"';
    color: var(--accent-red);
    font-size: 1.6rem;
    font-weight: 700;
    margin-left: 0.2rem;
}

.hero-testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 0.3rem;
}

.author-name-stars {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-testimonial-author strong {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
}


/* Transition Section */
.transition-section {
    padding: 60px 0;
    background-color: var(--bg-primary);
    text-align: center;
}

.transition-content {
    max-width: 800px;
    margin: 0 auto;
}

.transition-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.transition-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* CTA Mini-Section */
.cta-mini {
    padding: 50px 0;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--placeholder-border);
    border-bottom: 1px solid var(--placeholder-border);
}

.cta-mini-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-mini-visual {
    flex-shrink: 0;
}

.cta-mini-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cta-mini-image:hover {
    transform: scale(1.02);
}

.cta-mini-text {
    flex: 1;
}

.cta-mini-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.cta-mini-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cta-mini-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature:last-child {
    margin-bottom: 0;
}

.feature-reverse {
    direction: rtl;
}

.feature-reverse > * {
    direction: ltr;
}

.feature-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.feature-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.testimonials-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: linear-gradient(135deg, var(--placeholder-bg) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid var(--placeholder-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-4px);
    border-color: var(--accent-red);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.15);
}

.testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-quote::before {
    content: '"';
    color: var(--accent-red);
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 0.2rem;
}

.testimonial-quote::after {
    content: '"';
    color: var(--accent-red);
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 0.2rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Testimonial Star Ratings */
.testimonial-rating {
    margin: 0.25rem 0;
    text-align: left;
}

.stars {
    color: #FFFF00 !important;
    font-size: 1rem;
    letter-spacing: 0.05rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--bg-primary);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-visual {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* Footer */
.footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--placeholder-border);
    background-color: var(--bg-secondary);
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Visual Accents */
.doomy-icon {
    width: 60px;
    height: 60px;
    vertical-align: middle;
    margin: 0 2px;
    display: inline-block;
}

.red-text {
    color: var(--accent-red);
    font-weight: 800;
}

.underlined-word {
    position: relative;
    color: var(--accent-red);
    font-weight: 600;
}

.underlined-word::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -2px;
    right: -2px;
    height: 2px;
    background: var(--accent-red);
    border-radius: 50px;
    transform: rotate(-0.5deg);
    opacity: 0.8;
}

.underlined-word::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 10%;
    right: 15%;
    height: 1px;
    background: var(--accent-red);
    border-radius: 50px;
    transform: rotate(1deg);
    opacity: 0.6;
}

.highlighted-text {
    position: relative;
    background: linear-gradient(135deg, var(--accent-red-bg), rgba(255, 68, 68, 0.2));
    padding: 4px 12px;
    border-radius: 8px;
    border: 2px solid var(--accent-red);
    border-style: dashed;
    transform: rotate(-1deg);
    display: inline-block;
}

.hero-cta {
    position: relative;
}

/* Emoji accent colors */
.feature-title {
    position: relative;
}

.feature-title::before {
    filter: drop-shadow(0 0 4px var(--accent-red-light));
}

/* Desktop Layout */
@media (min-width: 1024px) {
    .hero {
        text-align: left;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        grid-template-areas: "text image";
    }
    
    .hero-text {
        text-align: left;
        grid-area: text;
    }
    
    .hero-visual {
        grid-area: image;
    }
    
    .mobile-cta {
        display: none;
    }
    
    .desktop-cta {
        display: block;
    }
    
    .desktop-cta .urgency-text {
        text-align: left;
    }
    
    .desktop-cta .download-badges {
        justify-content: flex-start;
    }
    
    .hero-testimonial-content {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
        max-width: 1200px;
    }
    
    .hero-testimonial-header {
        flex-shrink: 0;
        margin-bottom: 0;
    }
    
    .hero-testimonial-text {
        flex: 1;
    }
}

/* Mobile Responsiveness */
@media (max-width: 1023px) {
    .hero-content {
        grid-template-areas: 
            "text"
            "image"
            "cta";
        gap: 1rem;
    }
    
    .hero-text {
        grid-area: text;
    }
    
    .hero-visual {
        grid-area: image;
    }
    
    .mobile-cta {
        display: block;
        grid-area: cta;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .desktop-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav {
        padding: 1rem 16px;
    }
    
    .hero {
        padding: 60px 0 40px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0;
    }
    
    .hero-visual {
        min-height: 300px;
    }
    
    .doomy-hero-image {
        max-width: 85%;
        height: auto;
    }
    
    .feature {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .feature-reverse {
        direction: ltr;
    }
    
    .feature-placeholder {
        height: 200px;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .pain-solution {
        padding: 60px 0;
    }
    
    .pain-solution-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pain-points {
        padding-right: 0;
        text-align: center;
    }
    
    .lifetime-chart {
        padding-left: 0;
    }
    
    .pain-title {
        font-size: 2rem;
    }
    
    .chart-title {
        font-size: 1.8rem;
    }
    
    .transition-section {
        padding: 40px 0;
    }
    
    .transition-title {
        font-size: 2rem;
    }
    
    .transition-subtitle {
        font-size: 1rem;
    }
    
    .cta-mini {
        padding: 40px 0;
    }
    
    .cta-mini-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-testimonial {
        padding: 40px 0;
    }
    
    .hero-testimonial-header {
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .testimonial-hero-image {
        width: 70px;
        height: 70px;
    }
    
    .hero-testimonial-quote {
        font-size: 1.3rem;
    }
    
    .cta-mini-image {
        width: 100px;
        height: 100px;
    }
    
    .cta-mini-title {
        font-size: 1.6rem;
    }
    
    .cta-mini-subtitle {
        font-size: 0.95rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .pie-chart {
        width: 180px;
        height: 180px;
    }
    
    .chart-center {
        width: 70px;
        height: 70px;
    }
    
    .chart-years {
        font-size: 1.3rem;
    }
    
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .download-badges {
        gap: 8px;
    }
    
    .store-badge {
        height: 44px;
    }
    
    .doomy-icon {
        width: 50px;
        height: 50px;
        margin: 0 4px;
    }
    
    .highlighted-text {
        padding: 3px 8px;
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0 30px 0;
    }
    
    .hero-content {
        gap: 0.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-visual {
        min-height: 250px;
    }
    
    .feature-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .doomy-hero-image {
        max-width: 90%;
        height: auto;
    }
    
    .feature-placeholder {
        height: 150px;
    }
    
    .cta-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .doomy-cta-image {
        max-width: 125px;
        height: 125px;
    }
    
    .feature-image {
        max-width: 300px;
        height: 150px;
    }
    
    .doomy-icon {
        width: 42px;
        height: 42px;
        margin: 0 3px;
    }
    
    .pain-solution {
        padding: 40px 0;
    }
    
    .pain-solution-content {
        gap: 2rem;
    }
    
    .pain-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .chart-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .pie-chart {
        width: 150px;
        height: 150px;
    }
    
    .chart-center {
        width: 60px;
        height: 60px;
    }
    
    .chart-years {
        font-size: 1.2rem;
    }
    
    .chart-legend {
        gap: 0.6rem;
    }
    
    .legend-text {
        font-size: 0.85rem;
    }
    
    .transition-section {
        padding: 30px 0;
    }
    
    .transition-title {
        font-size: 1.6rem;
    }
    
    .transition-subtitle {
        font-size: 0.9rem;
    }
    
    .cta-mini {
        padding: 30px 0;
    }
    
    .cta-mini-content {
        gap: 1.2rem;
    }
    
    .cta-mini-image {
        width: 80px;
        height: 80px;
        border-radius: 12px;
    }
    
    .cta-mini-title {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }
    
    .cta-mini-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-testimonial {
        padding: 30px 0;
    }
    
    .hero-testimonial-header {
        gap: 0.6rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-hero-image {
        width: 60px;
        height: 60px;
    }
    
    .hero-testimonial-quote {
        font-size: 1.1rem;
    }
    
    .cta-mini-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .stat {
        padding: 1rem 0.8rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-unit {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .pain-description {
        font-size: 1rem;
    }
    
    .testimonials {
        padding: 40px 0;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonials-grid {
        gap: 1rem;
    }
    
    .testimonial {
        padding: 1.25rem;
    }
    
    .testimonial-quote {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .stars {
        font-size: 0.9rem;
        letter-spacing: 0.03rem;
        color: #FFFF00;
    }
    
    .download-badges {
        gap: 8px;
    }
    
    .store-badge {
        height: 40px;
    }
    
    .header-badges .store-badge {
        height: 28px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background-color: #000000;
    border-radius: 24px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 80px rgba(255, 80, 80, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-body {
    padding: 3rem 2.5rem 2.5rem;
    text-align: center;
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.3;
}

.modal-doomy-icon {
    width: 48px;
    height: 48px;
    vertical-align: middle;
    display: inline-block;
    animation: modalDoomyBounce 2s ease-in-out infinite;
    margin: 0 0.25rem;
}

@keyframes modalDoomyBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes modalSuccessPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.modal-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #CCCCCC;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.modal-subtitle {
    font-size: 1rem;
    color: #999999;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 500;
}

.modal-button {
    background-color: #FF5050;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 1rem 3.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 6px 20px rgba(255, 80, 80, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-button:hover {
    background-color: #FF3333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 80, 80, 0.4);
}

.modal-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 80, 80, 0.3);
}

/* Modal Dark Theme Support */
[data-theme="dark"] .modal-content {
    background-color: #1E1E1E;
}

[data-theme="dark"] .modal-title {
    color: #FFFFFF;
}

[data-theme="dark"] .modal-text {
    color: #CCCCCC;
}

[data-theme="dark"] .modal-subtitle {
    color: #999999;
}

/* Modal Mobile Styles */
@media (max-width: 480px) {
    .modal-content {
        width: 95%;
        border-radius: 16px;
    }
    
    .modal-body {
        padding: 2rem 1.5rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .modal-doomy-icon {
        width: 40px;
        height: 40px;
    }
    
    .modal-text {
        font-size: 1rem;
    }
    
    .modal-button {
        width: 100%;
        padding: 1rem;
    }
}

/* Modal Form Styles */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.modal-email-input {
    background-color: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #FFFFFF;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: all 0.2s ease;
    width: 100%;
}

.modal-email-input::placeholder {
    color: #666666;
}

.modal-email-input:focus {
    outline: none;
    border-color: #FF5050;
    background-color: #222222;
}

.modal-email-input:invalid:not(:placeholder-shown) {
    border-color: #FF4444;
}

.modal-success {
    color: #4CAF50;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    font-weight: 600;
    padding: 1rem;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.modal-error {
    color: #FF4444;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.modal-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.button-text,
.button-loading {
    display: inline-block;
}

/* Dark theme already applied by default */
[data-theme="dark"] .modal-email-input {
    background-color: #1a1a1a;
    border-color: #333333;
    color: #FFFFFF;
}

[data-theme="dark"] .modal-email-input:focus {
    border-color: #FF5050;
    background-color: #222222;
}