/* Best Year Yet - Ad Landing Page */
/* Clean, vibrant, intentional design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Vibrant Brand Colors */
    --red: #E85750;
    --orange: #FFB830;
    --blue: #4FC3E8;
    --green: #8ED35C;
    
    --text-dark: #1A1A1A;
    --text-medium: #555555;
    --text-light: #888888;
    --bg-white: #FFFFFF;
    --bg-light: #FFFFFF;
    --border: #E8E8E8;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
    
    --radius: 12px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 68px;
    width: auto;
}

.header-cta {
    background: var(--blue);
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.header-cta:hover {
    background: #3A9AC0;
    transform: translateY(-1px);
}

/* Animated Hero */
.hero-animated {
    padding: 100px 0 60px;
    background: #EDEAE6;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.stage {
    width: 100%;
    max-width: 800px;
    height: 680px;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .hero-animated {
        padding: 80px 0 40px;
        background: var(--bg-white);
    }
    
    .stage {
        width: 100%;
        max-width: 420px;
        border-radius: 24px;
        background: var(--bg-white);
        box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    }
}

.stage-header {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 100;
}

.stage-logo-img {
    height: 110px;
    width: auto;
    display: block;
}

.stage .blob {
    position: absolute;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transition: opacity 1.5s ease;
    pointer-events: none;
}

.stage .blob-blue { width: 350px; height: 320px; background: var(--blue); top: -100px; left: -100px; opacity: 0.3; }
.stage .blob-orange { width: 300px; height: 280px; background: var(--orange); bottom: -80px; right: -80px; border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%; opacity: 0.3; }
.stage .blob-green { width: 250px; height: 250px; background: var(--green); top: 50%; left: -80px; border-radius: 50% 30% 60% 40% / 40% 70% 30% 60%; opacity: 0.3; }

.stage-logo {
    position: absolute;
    top: 24px; left: 24px;
    display: flex; align-items: center; gap: 8px;
    opacity: 0; transition: opacity 1s ease;
    z-index: 10;
}
.stage-logo.visible { opacity: 1; }

.stage-logo .logo-icon {
    width: 26px; height: 26px;
    background: var(--red);
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
}
.stage-logo .logo-icon svg { width: 14px; height: 14px; }
.stage-logo .logo-text { color: #2d2d2d; font-size: 13px; font-weight: 700; }

.replay {
    position: absolute;
    top: 22px; right: 20px;
    background: rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.08);
    color: #888;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
    cursor: pointer;
    opacity: 0; transition: opacity 0.5s ease, background 0.2s;
    z-index: 10;
    font-family: inherit;
}
.replay:hover { background: rgba(0,0,0,0.1); color: #333; }
.replay.visible { opacity: 1; }

.progress-bar {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 8px;
    opacity: 0; transition: opacity 1s ease;
    z-index: 10;
}
.progress-bar.visible { opacity: 1; }

.progress-bar .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    transition: background 0.4s ease, transform 0.4s ease;
}
.progress-bar .dot.active { background: var(--red); transform: scale(1.3); }

.scene {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 72px 36px 120px;
    opacity: 0; transition: opacity 0.8s ease;
    pointer-events: none;
    z-index: 10;
}
.scene.active { opacity: 1; pointer-events: auto; }

.q-label {
    font-size: 13px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--red); margin-bottom: 20px;
    opacity: 0; transform: translateY(8px);
    transition: all 0.6s ease;
}
.q-label.in { opacity: 1; transform: translateY(0); }

.q-text {
    font-size: 32px; font-weight: 800;
    color: #1a1a1a; text-align: center;
    line-height: 1.25; margin-bottom: 40px;
    opacity: 0; transform: translateY(14px);
    transition: all 0.7s ease 0.15s;
}
.q-text.in { opacity: 1; transform: translateY(0); }

.feeling-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px; width: 100%;
}

.feeling-card {
    background: #fff;
    border: 1.5px solid rgba(0,0,0,0.07);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    opacity: 0; transform: translateY(16px) scale(0.96);
    transition: all 0.5s ease, border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.feeling-card.in { opacity: 1; transform: translateY(0) scale(1); }

.feeling-card.glow-good {
    background: rgba(79, 195, 232, 0.08);
    border-color: var(--blue);
    box-shadow: 0 4px 20px rgba(79, 195, 232, 0.15);
}
.feeling-card.glow-bad {
    background: rgba(232, 87, 80, 0.08);
    border-color: var(--red);
    box-shadow: 0 4px 20px rgba(232, 87, 80, 0.15);
}

.feeling-card .word { font-size: 14px; font-weight: 600; color: var(--text-dark); }

.res-small {
    font-size: 16px; color: #999; text-align: center;
    margin-bottom: 14px;
    opacity: 0; transform: translateY(10px);
    transition: all 0.7s ease;
}
.res-small.in { opacity: 1; transform: translateY(0); }

.res-big {
    font-size: 42px; font-weight: 900;
    color: #1a1a1a; text-align: center;
    line-height: 1.15; margin-bottom: 10px;
    opacity: 0; transform: translateY(14px);
    transition: all 0.8s ease 0.1s;
}
.res-big.in { opacity: 1; transform: translateY(0); }
.res-big span { color: var(--red); }

.res-divider {
    width: 36px; height: 2px;
    background: #e0ddd9; margin: 20px auto 24px;
    opacity: 0; transition: opacity 0.7s ease 0.3s;
}
.res-divider.in { opacity: 1; }

.res-sub {
    font-size: 15px; color: #777;
    text-align: center; line-height: 1.6;
    margin-bottom: 36px;
    opacity: 0; transform: translateY(10px);
    transition: all 0.7s ease 0.35s;
}
.res-sub.in { opacity: 1; transform: translateY(0); }

.stage-cta-container {
    position: absolute;
    bottom: 24px;
    left: 36px;
    right: 36px;
    z-index: 100;
    display: block;
    visibility: visible;
    text-align: center;
}

.stage-cta {
    background: var(--red);
    color: #fff; border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 16px; font-weight: 700;
    cursor: pointer; width: 100%;
    transition: background 0.2s, transform 0.2s;
    letter-spacing: 0.2px;
    font-family: inherit;
}
.stage-cta:hover { background: #d44e3c; transform: scale(1.02); }

.sub-cta {
    font-size: 12px; color: #888;
    margin-top: 12px; text-align: center;
}

@media (max-width: 480px) {
    .stage {
        width: 100%;
        height: 600px;
        border-radius: 0;
    }
    
    .hero-animated {
        padding: 70px 0 0;
        min-height: auto;
    }
    
    .q-text {
        font-size: 28px;
    }
    
    .res-big {
        font-size: 36px;
    }
    
    .res-small {
        font-size: 15px;
    }
    
    .res-sub {
        font-size: 14px;
    }
}

/* Legacy Hero (keeping for reference) */
.hero {
    padding: 180px 0 120px;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
    display: none;
}

/* Vibrant blob shapes */
.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -120px;
    width: 450px;
    height: 400px;
    background: var(--blue);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.35;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 400px;
    height: 380px;
    background: var(--orange);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.3;
}

.hero-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero .cta-primary {
    margin-bottom: 24px;
}

.hero-badges {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.hero-badge-item {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--red);
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 2px;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.cta-primary:hover {
    background: #B8403A;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(201, 74, 68, 0.25);
}

.cta-primary i {
    font-size: 0.9rem;
}

.cta-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 16px;
}

.hero-image {
    margin-bottom: 32px;
}

.app-preview {
    width: 420px;
    max-width: 90vw;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.15));
}

/* Who This Is For */
.who-for {
    padding: 60px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}


.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.03em;
}

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

.who-list {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.who-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

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

.who-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.who-item:nth-child(1) .who-dot { background: var(--blue); }
.who-item:nth-child(2) .who-dot { background: var(--orange); }
.who-item:nth-child(3) .who-dot { background: var(--red); }
.who-item:nth-child(4) .who-dot { background: var(--green); }

.who-item p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.who-item strong {
    color: var(--text-dark);
}

.who-cta {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.who-cta strong {
    color: var(--red);
}

/* How It Works */
.how-it-works {
    padding: 60px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: var(--blue);
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    opacity: 0.25;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.step-number {
    width: 56px;
    height: 56px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step:nth-child(1) .step-number { background: var(--blue); }
.process-step:nth-child(2) .step-number { background: var(--orange); }
.process-step:nth-child(3) .step-number { background: var(--red); }
.process-step:nth-child(4) .step-number { background: var(--green); }
.process-step:nth-child(5) .step-number { background: var(--blue); }
.process-step:nth-child(6) .step-number { background: var(--orange); }

.process-note {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-top: 40px;
    font-style: italic;
}

.process-step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: var(--red);
    border-radius: 50% 30% 60% 40% / 40% 70% 30% 60%;
    opacity: 0.25;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.testimonial-rating {
    color: var(--orange);
    font-size: 1rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

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

/* Pricing */
.pricing {
    padding: 60px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--blue);
    border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
    opacity: 0.3;
}

.pricing-single {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card-main {
    background: var(--bg-white);
    padding: 56px 48px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--red);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.price {
    margin-bottom: 4px;
}

.price .amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.03em;
}

.price .period {
    font-size: 1.1rem;
    color: var(--text-light);
}

.price-note {
    font-size: 1rem;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 36px;
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 36px;
}

.features li {
    padding: 12px 0;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
}

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

.features li i {
    color: var(--green);
    font-size: 0.95rem;
}

.pricing-card-main .cta-primary {
    width: 100%;
    justify-content: center;
    padding: 20px 40px;
    font-size: 1.15rem;
}


/* FAQ */
.faq {
    padding: 60px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    background: transparent;
}

.faq-question {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-question:hover h3 {
    color: var(--red);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--text-light);
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.7;
}

.faq-answer strong {
    color: var(--red);
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: var(--bg-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -150px;
    transform: translateY(-50%);
    width: 250px;
    height: 250px;
    background: var(--blue);
    border-radius: 50%;
    opacity: 0.25;
}

.final-cta::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -150px;
    transform: translateY(-50%);
    width: 250px;
    height: 250px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.25;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.final-cta p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.final-cta .cta-primary {
    background: var(--red);
    padding: 18px 44px;
    font-size: 1.1rem;
}

.final-cta .cta-primary:hover {
    background: #D14940;
    box-shadow: 0 12px 40px rgba(232, 87, 80, 0.3);
}

/* Footer */
.footer {
    padding: 48px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
}

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

.footer-logo {
    height: 56px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 14px 20px;
    }
    
    .logo-img {
        height: 56px;
    }
    
    .header-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .app-preview {
        width: 320px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        order: -1;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .app-preview {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 6px;
    }
    
    .cta-primary {
        width: 100%;
        justify-content: center;
        padding: 18px 32px;
    }
}
