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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #302445 0%, #4a3764 50%, #665485 100%);
    color: #FEF1D8;
    overflow-x: hidden;
}

/* Animated starry background */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: twinkle 4s infinite ease-in-out;
}

.star:nth-child(odd) { animation-delay: -2s; }
.star:nth-child(3n) { animation-delay: -1s; }
.star:nth-child(5n) { animation-delay: -3s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(48, 36, 69, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 0rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 100px;
    max-height: 100px;
    width: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: #FF0025;
    border-radius: 50% 50% 50% 0;
    position: relative;
    transform: rotate(-45deg);
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 35px;
    font-size: 1.25rem;
}

.nav-menu a:hover {
    color: #FF0025;
    background: rgba(255, 255, 255, 0.1);
}

/* Main content */
main {
    position: relative;
    z-index: 10;
    padding-top: 80px;
}

/* Hero Section (Sizzle-Inspired) */
.hero-sizzle,
.hero-sizzle-inner {
    overflow: visible !important;
}
.hero-sizzle {
    min-height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(135deg, #302445 0%, #665485 100%); */
    background: transparent;
    position: relative;
    text-align: center;
}
.hero-sizzle-inner {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    padding: 3rem 1rem 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-sizzle-logo {
    width: 90px;
    height: auto;
    margin-bottom: 2rem;
    animation: fadeIn 1.2s;
}
.hero-sizzle-headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
    font-size: clamp(1.5rem, 5vw, 2.6rem);
    white-space: normal;
    text-align: center;
    color: #FEF1D8;
    margin-bottom: 1.2rem;
    margin-top: 3.2rem;
    letter-spacing: -1px;
    animation: fadeUp 1s 0.2s both;
    white-space: nowrap;
}
.hero-sizzle-subheadline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #FEF1D8;
    font-size: 1.2rem;
    margin-bottom: 2.2rem;
    opacity: 0.92;
    animation: fadeUp 1s 0.4s both;
}
.hero-sizzle-downloads {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.hero-sizzle-downloads img {
    height: 70px;
    width: auto;
    transition: transform 0.2s ease, filter 0.2s ease;
}
.hero-sizzle-downloads a:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}
.app-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #FEF1D8;
    background: #FF0025;
    box-shadow: 0 4px 24px 0 rgba(255,0,37,0.10);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.app-btn.playstore {
    background: #665485;
}
.app-btn:hover {
    background: #FF7476;
    color: #302445;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}
@keyframes fadeIn {
    from { opacity: 0;}
    to { opacity: 1;}
}
@media (max-width: 700px) {
    .hero-sizzle-inner {
        max-width: 98vw;
        padding: 1.2rem 0.2rem;
        min-height: calc(600px + 6rem); /* Increased to accommodate larger images */
    }
    
    .hero-sizzle-headline {
        font-size: 1.5rem;
        white-space: normal;
        margin-bottom: 2rem;
    }
    
    .hero-sizzle-downloads {
        margin-bottom: 2rem;
        position: relative;
        z-index: 2;
    }
    .hero-sizzle-downloads img {
        height: 55px;
    }
    .app-btn { padding: 0.7rem 1.2rem; font-size: 1rem; }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #FEF1D8;
    backdrop-filter: blur(10px);
    width: 100vw;
    max-width: 100vw;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-headline {
    font-size: 2.8rem;
    font-weight: 700;
    color: rgba(48, 36, 69, 0.9);
    margin-bottom: 3rem;
    letter-spacing: -1px;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #FEF1D8;
}

.stats-headline {
    font-size: 2.8rem;
    font-weight: 700;
    color: #FEF1D8;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
    text-align: center;
}

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

.feature-card {
    background: #302445;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: 1;
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF0025, #FF7476);
    border-radius: 15px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', sans-serif;
    line-height: 1;
    text-rendering: optimizeLegibility;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FEF1D8;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Sticky Scroll Section */
.sticky-scroll-section {
    position: relative;
    height: 500vh;
    background: transparent;
}

.sticky-scroll-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    position: sticky;
    top: 0;
    gap: 11vw;
}

.side-cards-column {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    height: 100vh;
    position: relative;
    min-width: 320px;
    max-width: 350px;
    margin-left: 2vw;
}

.progress-dots-vertical {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: background 0.3s, transform 0.3s;
}

.progress-dot.active {
    background: #FF0025;
    transform: scale(1.4);
}

.side-card {
    position: relative;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    z-index: 1;
    background: rgba(255,255,255,0.08);
    border-radius: 15px;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    color: #FEF1D8;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.12);
    pointer-events: none;
    margin-bottom: 2rem;
    left: 0;
    text-align: left;
    transform: translateY(30px);
}

.side-card.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.phone-mockup {
    z-index: 2;
    margin-right: 2vw;
}

@media (max-width: 900px) {
    .sticky-scroll-inner {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
    }
    .side-cards-column {
        min-width: 0;
        max-width: 100vw;
        margin-left: 0;
        align-items: center;
    }
    .progress-dots-vertical {
        left: 50%;
        top: 10px;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 1rem;
        position: static;
        margin-bottom: 1.5rem;
    }
    .phone-mockup {
        margin: 0;
    }
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem;
    margin: 2rem 0;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #FF7476;
}

/* Testimonials Carousel Styles */
.testimonials-carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    position: relative;
    min-height: 350px;
    background: transparent;
}

.testimonials-carousel {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    position: relative;
}

.testimonial-card {
    min-width: 100%;
    max-width: 100%;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(255,255,255,0.08);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.testimonial-card.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
    z-index: 2;
    transform: scale(1.02);
}

.testimonial-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    width: 50px;
    height: 50px;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    margin: 0 1.5rem;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.testimonial-arrow:hover {
    background: #FF0025;
    color: #fff;
}

@media (max-width: 700px) {
    .testimonials-carousel {
        max-width: 98vw;
    }
    .testimonial-card {
        padding: 2rem 0.5rem;
        font-size: 1rem;
    }
    .testimonial-arrow {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        border-radius: 50%;
    }
}

/* Download Section */
.download {
    padding: 6rem 0;
    background: transparent;
    text-align: center;
}

.download-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.download h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FEF1D8;
}

.download p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #FEF1D8;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.10);
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 15px;
    color: #FEF1D8;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.app-button:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #302445;
    transform: translateY(-3px);
}

.app-button-icon {
    font-size: 1.5rem;
    color: #FEF1D8;
}

/* Footer */
footer {
    background: rgba(48, 36, 69, 0.9);
    padding: 3rem 0 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF0025;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .stats-section {
        padding-bottom: 36rem;
    }
}

/* Add margin to create space on mobile */
@media (max-width: 768px) {
    .sticky-horizontal-section {
        margin-top: 8rem !important;
    }

    .stats-section {
        padding-bottom: 3rem; /* Reset any large padding from previous attempts */
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 5rem 0 6rem 0;
    background: transparent;
}
.faq-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.faq-item {
    background: rgba(255,255,255,0.08);
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.faq-item.open {
    box-shadow: 0 8px 32px 0 rgba(255,0,37,0.10);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #FEF1D8;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    padding: 1.25rem 2.5rem 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
    outline: none;
}
.faq-question:hover, .faq-item.open .faq-question {
    background: rgba(255,255,255,0.10);
}
.faq-toggle {
    font-size: 1.5rem;
    color: #FEF1D8;
    margin-left: 1rem;
    transition: transform 0.3s;
}
.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}
.faq-answer {
    color: #FEF1D8;
    font-size: 1rem;
    padding: 0 2.5rem 1.25rem 1.5rem;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
}
.faq-item.open .faq-answer {
    max-height: 200px;
    opacity: 1;
}
@media (max-width: 600px) {
    .faq-container {
        max-width: 98vw;
        padding: 0 0.5rem;
    }
    .faq-question, .faq-answer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Stats Section Styles */
.stats-section {
    width: 100vw;
    padding: 4rem 0 3rem 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.stats-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}
.stats-headline {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FEF1D8;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
    text-align: center;
}
.stats-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}
.stat-block {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: rgba(255,255,255,0.07);
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    min-width: 160px;
    max-width: 300px;
    margin: 0 0.5rem;
    position: relative;
}
.stat-block:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.5rem;
    top: 20%;
    height: 60%;
    width: 1.5px;
    background: rgba(255,255,255,0.15);
}
.stat-label {
    font-size: 1.1rem;
    color: #FEF1D8;
    opacity: 0.85;
    font-weight: 500;
    margin-bottom: 0.7rem;
    text-align: center;
}
.stat-number {
    font-size: 2.7rem;
    font-weight: 800;
    color: #FEF1D8;
    letter-spacing: -2px;
    line-height: 1;
    transition: color 0.3s;
    text-align: center;
}
@media (max-width: 900px) {
    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .stat-block {
        width: 100%;
        max-width: 400px;
        margin: 0 0 1.5rem 0;
    }
    .stat-block:not(:last-child)::after {
        display: none;
    }
    .stats-headline {
        font-size: 1.3rem;
    }
}

/* Branding Typography and Color Update */
h1, h2, h3, h4, h5, h6, .hero-headline-animated, .stats-headline, .section-title {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    color: #FEF1D8;
}

.hero-subheadline, .stats-label, .stat-label, .testimonial-author, .faq-question, .faq-answer, .side-card, .btn, .nav-menu a, .footer-links a, .stat-number, .testimonial-text {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    color: #FEF1D8;
}

/* Replace all #fff and white with #FEF1D8 */
.hero-headline-animated, .hero-subheadline, .stats-headline, .stat-number, .stat-label, .testimonial-text, .testimonial-author, .faq-question, .faq-answer, .side-card, .btn, .nav-menu a, .footer-links a, .logo-img, .progress-dot, .section-title {
    color: #FEF1D8 !important;
}

/* Adjust background/box colors if needed for contrast */

/* Sticky Content Section */
.sticky-content {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #302445 0%, #665485 100%);
    overflow: hidden;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, #FEF1D8, #2d2d2d);
    border-radius: 35px;
    padding: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #665485, #302445);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.app-logo {
    width: 80px;
    height: 80px;
    background: #FF0025;
    border-radius: 20px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 0, 37, 0.3);
}

.app-logo::after {
    content: '🔒';
    font-size: 2rem;
    filter: brightness(0) invert(1);
}

/* Hero Section Phone Screens (Sizzle Style, in flow) */
.hero-phones-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10rem;
    margin-top: 7.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    overflow: visible !important;
}
.hero-phone {
    width: 268px;
    height: 557px;
    background: linear-gradient(135deg, #302445 60%, #665485 100%);
    border-radius: 38px;
    box-shadow: 0 24px 64px 0 rgba(0,0,0,0.35), 0 2px 16px 0 rgba(0,0,0,0.12);
    position: relative;
    border: none !important;
    overflow: visible !important;
    transition: transform 0.3s;
    pointer-events: auto;
}
.hero-phone-center {
    z-index: 2;
    transform: scale(1.08);
    position: relative;
    overflow: visible;
}
.hero-phone-left {
    z-index: 1;
    transform: rotate(-13deg) scale(0.97);
    margin-top: -40px;
    box-shadow: 0 18px 48px 0 rgba(0,0,0,0.22), 0 2px 8px 0 rgba(0,0,0,0.10);
    overflow: visible !important;
}
.hero-phone-right {
    z-index: 1;
    transform: rotate(13deg) scale(0.97);
    margin-top: -40px;
    box-shadow: 0 18px 48px 0 rgba(0,0,0,0.22), 0 2px 8px 0 rgba(0,0,0,0.10);
    overflow: visible !important;
}
@media (max-width: 900px) {
    .hero-phones-row {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
        position: relative;
    }
    .hero-phone-group {
        position: relative;
        width: 90vw;
        max-width: 340px;
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-phone {
        width: 100%;
        max-width: 340px;
        height: 220px;
        position: relative;
        z-index: 1;
        margin-bottom: 0;
        background: linear-gradient(135deg, #302445 60%, #665485 100%);
        box-shadow: 0 12px 32px 0 rgba(0,0,0,0.18), 0 2px 8px 0 rgba(0,0,0,0.10);
    }
    .brown-pop, .hero-phone-pop-group {
        position: absolute !important;
        z-index: 2;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .feature-card {
        padding: 1.2rem 0.7rem;
        font-size: 1rem;
        border-radius: 16px;
    }
    .side-card, .stat-block {
        padding: 1rem 0.5rem;
        border-radius: 14px;
    }
    .sticky-horizontal-phone {
        width: 95vw;
        max-width: 340px;
        height: 260px;
        margin-right: 0;
        margin-bottom: 2rem;
    }
    .sticky-horizontal-track {
        padding: 0 1vw;
        height: auto;
        flex-wrap: wrap;
    }
    .testimonial-card {
        padding: 1.2rem 0.5rem;
        font-size: 1rem;
        border-radius: 18px;
    }
    .testimonial-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        margin: 0 0.5rem;
    }
    .side-card-bubble {
        font-size: 0.98rem;
        padding: 0.7rem 1.1rem;
        max-width: 90vw;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
    }
    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .stat-block {
        width: 100%;
        max-width: 400px;
        margin: 0 0 1.5rem 0;
    }
    .stat-block:not(:last-child)::after {
        display: none;
    }
    .stats-headline, .section-title, .features-headline {
        font-size: 2.2rem;
    }
    .app-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    .brown-pop {
        position: absolute !important;
        z-index: 3;
    }
    .hero-phone-pop-group {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 3;
    }
    .sticky-horizontal-section {
        position: relative;
        min-height: 100vh;
        height: auto;
        width: 100vw;
        overflow: visible;
    }
    .sticky-horizontal-inner {
        position: sticky;
        top: 0;
        min-height: 100vh;
        width: 100vw;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        z-index: 6;
    }
    .sticky-horizontal-track {
        flex-direction: column;
        width: 100vw;
        max-width: 100vw;
        align-items: center;
        justify-content: flex-start;
        padding: 0;
        height: auto;
        gap: 0;
    }
    .sticky-horizontal-phone {
        width: 90vw;
        max-width: 340px;
        height: 340px;
        margin: 0 0 2.5rem 0;
        left: unset;
        top: unset;
        position: relative;
        opacity: 0;
        transform: translateY(40px) scale(0.98);
        transition: opacity 0.7s, transform 0.7s;
        z-index: 10;
    }
    .sticky-horizontal-phone.visible {
        opacity: 1;
        transform: translateY(0) scale(1.04);
        z-index: 12;
    }
    .sticky-horizontal-line {
        width: 0;
        height: 60px;
        border-top: none;
        border-left: 4px dotted #FEF1D8;
        margin: 0 0 2.5rem 0;
        align-self: flex-start;
    }
}

@media (max-width: 700px) {
    .hero-phones-row { display: none !important; }
    .hero-sizzle-inner picture > img, .hero-sizzle-inner picture > source {
        display: block !important;
        margin: 0 auto;
        max-width: 90vw;
        height: auto;
    }
    .hero-sizzle-inner {
        max-width: 98vw;
        padding: 1.2rem 0.2rem;
        min-height: calc(600px + 6rem); /* Increased to accommodate larger images */
    }
    .hero-sizzle-headline {
        font-size: 1.5rem;
        white-space: normal;
        margin-bottom: 2rem;
    }
    .hero-sizzle-downloads {
        margin-bottom: 2rem;
        position: relative;
        z-index: 2;
    }
    .app-btn { padding: 0.7rem 1.2rem; font-size: 1rem; }
    .section-title, .stats-headline {
        font-size: 2.2rem;
    }
    .feature-card h3 {
        font-size: 1rem;
    }
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    .side-card-bubble {
        font-size: 0.85rem;
        padding: 0.5rem 0.7rem;
    }
    .sticky-horizontal-phone {
        width: 98vw;
        height: 180px;
        margin-bottom: 1.2rem;
    }
    .sticky-horizontal-track {
        padding: 0 0.5vw;
    }
    .testimonial-card {
        padding: 1rem 0.2rem;
        font-size: 0.95rem;
        border-radius: 12px;
    }
    .testimonial-arrow {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        border-radius: 50%;
    }
    .app-btn, .app-button {
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
        min-width: 120px;
    }
    .footer-container {
        padding: 0 0.5rem;
    }
    .hill-headline-text {
        font-size: 1.6rem !important;
        left: 16px !important;
        right: 16px !important;
        width: auto !important;
        white-space: normal !important;
        text-align: left !important;
    }
}

@media (max-width: 480px) {
    .hero-sizzle-inner {
        padding: 0.7rem 0.1rem;
    }
    .feature-card h3 {
        font-size: 0.95rem;
    }
    .feature-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    .side-card-bubble {
        font-size: 0.75rem;
        padding: 0.4rem 0.5rem;
    }
    .sticky-horizontal-phone {
        width: 99vw;
        height: 120px;
        margin-bottom: 0.7rem;
    }
    .testimonial-card {
        padding: 0.7rem 0.1rem;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    .testimonial-arrow {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
        border-radius: 50%;
    }
    .footer-links {
        gap: 0.5rem;
    }
    .hill-headline-text {
        font-size: 1.1rem !important;
        left: 8px !important;
        right: 8px !important;
    }
}

@media (max-width: 1024px) {
    body, html {
        overflow-x: hidden;
    }
    button, .app-btn, .app-button, .testimonial-arrow {
        min-width: 44px;
        min-height: 44px;
        font-size: 1rem;
        border-radius: 12px;
        margin-bottom: 0.7rem;
        touch-action: manipulation;
    }
    .sticky-horizontal-inner {
        position: static !important;
        height: auto !important;
        display: block !important;
    }
    .sticky-horizontal-track {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100vw !important;
        max-width: 100vw !important;
        padding: 0 !important;
        height: auto !important;
        gap: 2rem !important;
    }
    .sticky-horizontal-phone {
        width: 90vw;
        max-width: 340px;
        height: auto;
        margin: 0 0 2.5rem 0;
        left: unset;
        top: unset;
        position: relative;
        opacity: 1;
        transform: none;
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    .sticky-horizontal-phone > img.sticky-phone-swap {
        width: 100% !important;
        max-width: 340px !important;
        height: auto !important;
        border-radius: 24px !important;
        background: transparent !important;
        margin-bottom: 1rem !important;
        transition: opacity 0.5s, transform 0.5s !important;
    }
    .side-card-bubble {
        margin-top: 0.5rem !important;
        margin-bottom: 2rem !important;
        max-width: 90vw !important;
        width: auto !important;
        text-align: center !important;
        font-size: 1rem !important;
        transition: opacity 0.5s, transform 0.5s !important;
    }
    .sticky-horizontal-line { display: none !important; }
    
    /* Mobile carousel functionality - hide all but first phone */
    .sticky-horizontal-phone:not(:first-child) {
        display: none !important;
    }
    
    /* Add dots for mobile carousel */
    .sticky-horizontal-track::after {
        content: var(--dots-content, '●○○○');
        display: flex;
        justify-content: center;
        gap: 0.8rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        font-size: 12px;
        letter-spacing: 0; /* Remove letter spacing */
        color: var(--dots-color, #FEF1D8);
    }

    /* Create a container for the mobile sticky content */
    .sticky-horizontal-phone {
        width: 90vw;
        max-width: 340px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Create fixed containers for static elements */
    .sticky-content-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: static;
    }

    .sticky-phone-swap {
        width: 100%;
        height: auto;
        max-width: 340px;
        border-radius: 24px;
        transition: opacity 0.5s;
    }

    /* Keep these elements static */
    .side-card-bubble,
    .sticky-mockup-dots {
        position: static;
        width: 100%;
        text-align: center;
    }
}

/* Animated phone entrance for hero section */
.hero-phones-animate .hero-phone {
  opacity: 0;
  transform: translateY(80px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.hero-phones-animate .hero-phone.show {
  opacity: 1;
  transform: none;
}

.custom-download-btn {
  background: #FEF1D8 !important;
  color: #302445 !important;
  border-radius: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 2.2rem 0.7rem 1.2rem;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.15 rem;
  text-align: left;
  border: none;
  min-width: 220px;
  transition: background 0.22s cubic-bezier(0.4,0,0.2,1), color 0.22s, box-shadow 0.22s, transform 0.22s cubic-bezier(0.4,1.4,0.6,1), filter 0.22s;
}
.custom-download-btn:hover {
  background: #FFD6E0 !important;
  color: #302445 !important;
  box-shadow: 0 8px 32px 0 rgba(255,0,37,0.18), 0 2px 16px 0 rgba(0,0,0,0.12);
  transform: translateY(-6px) scale(1.04);
  filter: brightness(1.04);
}
.download-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2rem;
  width: 2.2rem;
  min-width: 2.2rem;
  margin-right: 0.5rem;
}
.download-icon img {
  height: 2rem;
  width: auto;
  display: block;
}
.download-text {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #302445;
  font-size: 1.08rem;
  line-height: 1.15;
}
.custom-download-btn.playstore .download-icon img {
  height: 1.7rem;
}
@media (max-width: 700px) {
  .custom-download-btn {
    font-size: 0.95rem;
    min-width: 150px;
    padding: 0.5rem 1.2rem 0.5rem 0.7rem;
  }
  .download-icon {
    height: 1.5rem;
    width: 1.5rem;
    min-width: 1.5rem;
  }
  .download-icon img {
    height: 1.2rem;
  }
}

/* Pop-in brown PNGs on center phone */
.hero-phone-center {
  position: relative;
  overflow: visible;
}
.hero-phone-pop-group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}
.brown-pop {
  position: absolute;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s cubic-bezier(.68,-0.55,.27,1.55),
              transform 0.6s cubic-bezier(.68,-0.55,.27,1.55);
  will-change: opacity, transform;
  background: none !important;
  box-shadow: none !important;
  filter: none !important;
}
.brown-pop.pop-in {
  opacity: 1;
  transform: scale(1.05);
  animation: pop-bounce 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes pop-bounce {
  0%   { opacity: 0; transform: scale(0.8);}
  60%  { opacity: 1; transform: scale(1.08);}
  80%  { transform: scale(0.97);}
  100% { opacity: 1; transform: scale(1);}
}
.brown-pop-sun {
  right: -75px;
  top: -20px;
  left: unset;
  width: 150px;
  max-width: 150px;
  overflow-wrap: break-word;
  word-break: break-word;
  z-index: 3;
  transform: rotate(4deg);
}
.brown-pop-sun-icon {
  position: absolute;
  right: -18px;
  top: 60px;
  width: 70px;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.18));
}
.brown-pop-shows {
  right: -38px;
  bottom: 70px;
  width: 110px;
  z-index: 2;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18), 0 2px 8px 0 rgba(0,0,0,0.10);
  transform: rotate(6deg);
}
.brown-pop-kiss {
  left: -60px;
  top: 150px;
  width: 120px;
  z-index: 2;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18), 0 2px 8px 0 rgba(0,0,0,0.10);
  transform: rotate(-8deg);
  background: none !important;
  filter: none !important;
}
.center-mockup-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  border-radius: 34px;
  box-shadow: none;
  border: none !important;
  background: transparent;
}
@media (max-width: 900px) {
  .brown-pop-sun { left: -60px; top: -40px; width: 120px; }
  .brown-pop-kiss { left: -40px; bottom: 20px; width: 90px; }
  .brown-pop-shows { right: -40px; bottom: 5px; width: 80px; }
}
@media (max-width: 600px) {
  .brown-pop-sun {
    right: -10px;
    top: -10px;
    max-width: 90px;
    width: 90px;
    left: unset;
  }
  .brown-pop-sun-icon {
    right: -8px;
    top: 32px;
    width: 38px;
  }
  .brown-pop-shows {
    right: -10px;
    bottom: 18px;
    width: 60px;
  }
  .brown-pop-kiss {
    left: -20px;
    top: 60px;
    width: 60px;
  }
}

.brown-pop-getdeep,
.brown-pop-frenzy-1,
.brown-pop-frenzy-2 {
  left: -20px;
  right: 0;
  margin: 0 auto;
  width: 320px;
  max-width: 320px;
}
.brown-pop-getdeep { top: 155px; z-index: 4; transform: scale(1.08) rotate(-2deg); }
.brown-pop-frenzy-1 { top: 250px; z-index: 3; transform: scale(1.07) rotate(1deg); }
.brown-pop-frenzy-2 { top: 355px; z-index: 2; transform: scale(1.06) rotate(-2deg); }
@media (max-width: 900px) {
  .brown-pop-getdeep,
  .brown-pop-frenzy-1,
  .brown-pop-frenzy-2 {
    width: 240px;
    max-width: 240px;
  }
  .brown-pop-getdeep { top: 80px; }
  .brown-pop-frenzy-1 { top: 175px; }
  .brown-pop-frenzy-2 { top: 280px; }
}
@media (max-width: 600px) {
  .brown-pop-getdeep,
  .brown-pop-frenzy-1,
  .brown-pop-frenzy-2 {
    width: 180px;
    max-width: 180px;
  }
  .brown-pop-getdeep { top: 40px; }
  .brown-pop-frenzy-1 { top: 110px; }
  .brown-pop-frenzy-2 { top: 180px; }
}

.date-mockup-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 38px;
  z-index: 2;
  box-shadow: none;
  border: none !important;
  background: transparent;
}

.date-center-img {
  z-index: 2;
}
.date-left-img, .date-right-img {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s cubic-bezier(.68,-0.55,.27,1.55),
              transform 0.6s cubic-bezier(.68,-0.55,.27,1.55);
  will-change: opacity, transform;
  border: none;
}
.date-left-img {
  position: absolute;
  left: -50px;
  top: 95px;
  width: 85%;
  max-width: 260px;
  transform: rotate(-1deg) scale(1);
  z-index: 10;
  pointer-events: none;
}
.date-right-img {
  position: absolute;
  right: -50px;
  top: 95px;
  width: 85%;
  max-width: 260px;
  transform: rotate(1deg) scale(1);
  z-index: 11;
  pointer-events: none;
}
.hero-phone-left {
  overflow: visible !important;
}

/* Make .pop-in animation global for brown-pop and date cards */
.brown-pop.pop-in,
.date-left-img.pop-in,
.date-right-img.pop-in {
  opacity: 1;
  transform: scale(1.05);
  animation: pop-twist 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes pop-twist {
    0% { transform: scale(0.9) rotate(0deg); opacity: 0; }
    70% { transform: scale(1.05) rotate(5deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.photo-carousel-section {
  width: 100vw;
  background: transparent;
  padding: 2.5rem 0 2.5rem 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.carousel-inner {
  width: 100vw;
  overflow: hidden;
  position: relative;
}
.carousel-track {
  display: flex;
  gap: 24px;
  width: calc(12 * 240px + 11 * 24px);
  animation: carousel-scroll 32s linear infinite;
  will-change: transform;
}
@keyframes carousel-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.carousel-photo {
  width: 240px;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
  background: #fff;
  flex-shrink: 0;
  margin-right: 0;
  transition: none;
}
.carousel-photo:hover,
.carousel-photo:focus {
  transform: none;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
}
@media (max-width: 900px) {
  .carousel-photo {
    width: 140px;
    height: 180px;
  }
  .carousel-inner {
    padding: 0 0.5rem;
  }
}
.carousel-inner::-webkit-scrollbar { display: none; }
.carousel-inner { -ms-overflow-style: none; scrollbar-width: none; }

.hill-section {
  position: relative;
  min-height: 60vh;
  background: transparent;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hill-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  pointer-events: none;
  display: block;
}

.cream-section {
  background-color: #FEF1D8;
  min-height: 100vh;
  position: relative;
  z-index: 10;
  padding-top: 0;
}

.cream-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 12rem 2rem 2rem 2rem;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.68,-0.55,.27,1.55), transform 0.8s cubic-bezier(.68,-0.55,.27,1.55);
  z-index: 20;
  position: relative;
}

.cream-content.revealed {
  opacity: 1;
  transform: translateY(0);
}

.sticky-horizontal-section {
  position: relative;
  height: 350vh;
  background: transparent;
  z-index: 5;
  width: 100vw;
  overflow: visible;
}

@media (max-width: 1024px) {
  .sticky-horizontal-section {
    height: auto;
    min-height: auto;
  }
}

.sticky-horizontal-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 6;
}

.sticky-horizontal-track {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100vw;
    /* max-width: 100vw; */
    margin: 0 auto;
    position: relative;
    height: 600px;
    padding: 0 2vw;
    box-sizing: border-box;
}

.sticky-horizontal-phone {
  background: transparent !important;
  box-shadow: none !important;
  width: 320px;
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-right: 40px;
  position: relative;
  z-index: 10;
  opacity: 0;
  transform: translateX(-60px) scale(0.98);
  transition: opacity 0.7s, transform 0.7s;
}

.sticky-horizontal-phone.visible {
  opacity: 1;
  transform: translateX(0) scale(1.04);
  z-index: 12;
}

.sticky-horizontal-phone > div {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  box-shadow: none !important;
}

.sticky-horizontal-phone img.sticky-phone-swap {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 24px;
  /* box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10); */
  background: transparent;
}

@media (max-width: 900px) {
  .sticky-horizontal-phone {
    width: 90vw;
    height: 340px;
    margin: 0 0 2.5rem 0;
  }
  .sticky-horizontal-phone img.sticky-phone-swap {
    max-width: 90vw;
  }
}

.side-card-bubble {
    display: inline-block;
    margin: 1.2rem auto 0 auto;
    padding: 0.85rem 1.5rem;
    color: #FEF1D8;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 22px;
    text-align: center;
    max-width: 260px;
    width: auto;
    letter-spacing: 0.01em;
    line-height: 1.4;
    position: relative;
    z-index: 20;
}

@media (max-width: 900px) {
    .side-card-bubble {
        font-size: 0.98rem;
        padding: 0.7rem 1.1rem;
        max-width: 90vw;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
    }
}

.join-waitlist-btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #FF0025;
  background: #FF0025;
  box-shadow: 0 4px 24px 0 rgba(255,0,37,0.10);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: none;
  outline: none;
  cursor: pointer;
  margin: 0 auto;
  text-align: center;
}
.nav-waitlist-btn {
  font-size: 1.1rem;
  margin: 0;
  vertical-align: middle;
  margin-top: -9px; /* Shift up slightly */
}
.nav-waitlist-btn:hover, .join-waitlist-btn:hover {
  background: #FF7476;
  color: #302445;
}
@media (max-width: 900px) {
  .nav-waitlist-btn {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 28px;
  }
  .join-waitlist-btn {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    border-radius: 28px;
  }
}

.hill-headline-text {
  opacity: 0;
  transform: scale(0.92) translateY(40px);
  transition: opacity 0.5s cubic-bezier(.68,-0.55,.27,1.55), transform 0.5s cubic-bezier(.68,-0.55,.27,1.55);
}
.hill-headline-text.visible {
  opacity: 1;
  transform: scale(1.06) translateY(-8px);
  transition: opacity 0.5s cubic-bezier(.68,-0.55,.27,1.55), transform 0.5s cubic-bezier(.68,-0.55,.27,1.55);
}

.mobile-center-mockup {
  display: block !important;
  margin: 0 auto;
  width: 90vw;
  height: auto;
  max-width: 320px;
  aspect-ratio: 1/2;
  object-fit: contain;
  border-radius: 24px;
  background: transparent;
  opacity: 1;
  transition: opacity 0.5s, transform 0.5s;
}

.mobile-mockup-dots {
  display: flex !important;
  margin: 1rem 0;
  gap: 0.8rem;
  position: static;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(254, 241, 216, 0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
  outline: none;
}

.mockup-dot.active {
  background: #FEF1D8;
  transform: scale(1.2);
}

.mockup-dot:hover {
  background: rgba(254, 241, 216, 0.6);
  transform: scale(1.1);
}

@media (max-width: 700px) {
  .mobile-center-mockup {
    display: block !important;
    margin: 0 auto;
    width: 90vw;
    height: auto;
    max-width: 320px;
    aspect-ratio: 1/2;
    object-fit: contain;
    border-radius: 24px;
    background: transparent;
    opacity: 1;
    transition: opacity 0.5s, transform 0.5s;
  }
  
  .mobile-mockup-dots {
    display: flex !important;
    margin: 1rem 0;
    position: static;
  }

  /* Updated static container for hero section */
  .hero-sizzle {
    min-height: 100vh;
    padding: 120px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }

  .hero-sizzle-inner {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .hero-sizzle-headline {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 1.2rem;
    position: static;
    width: 100%;
  }

  .hero-sizzle-downloads {
    position: static;
    margin-bottom: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  /* Updated image container styles */
  .hero-image-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    position: relative;
  }

  /* Hide desktop elements on mobile */
  .hero-phones-row,
  .hero-phones-animate {
    display: none !important;
  }
}

/* Ensure desktop view hides mobile elements */
@media (min-width: 701px) {
  .mobile-center-mockup,
  .mobile-mockup-dots,
  .hero-image-container {
    display: none !important;
  }
}

.hill-popup {
  position: absolute;
  left: 12vw;
  top: 40%;
  transform: translateY(-50%);
  z-index: 25;
  pointer-events: none;
  max-width: 520px;
  background: rgba(48, 36, 69, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hill-popup.visible {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.hill-popup-title {
  color: #FEF1D8;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hill-popup-intro {
  color: #FEF1D8;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0 0 2rem 0;
  opacity: 0.9;
}

.hill-popup-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hill-popup-feature {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.hill-popup-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.hill-popup-text {
  color: #FEF1D8;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 1200px) {
  .hill-popup {
    left: 8vw;
    max-width: 460px;
    padding: 2rem;
  }
  .hill-popup-title {
    font-size: 2.4rem;
  }
  .hill-popup-intro {
    font-size: 1.1rem;
  }
  .hill-popup-icon {
    font-size: 1.6rem;
  }
  .hill-popup-text {
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  .hill-popup {
    left: 5vw;
    max-width: 400px;
    padding: 1.8rem;
  }
  .hill-popup-title {
    font-size: 2rem;
  }
  .hill-popup-intro {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .hill-popup-features {
    gap: 1.2rem;
  }
  .hill-popup-feature {
    gap: 1rem;
  }
  .hill-popup-icon {
    font-size: 1.4rem;
  }
  .hill-popup-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .hill-section {
    padding-top: 4rem;
  }

  .hill-popup {
    position: static;
    transform: none;
    max-width: 92%;
    margin: 0 auto 2rem;
    padding: 1.2rem;
    opacity: 1;
    pointer-events: none;
  }

  .hill-popup.visible {
    transform: none;
  }

  .hill-overlay {
    margin-top: -2rem;
  }

  .hill-popup-title {
    font-size: 1.4rem;
    text-align: center;
  }

  .hill-popup-intro {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .hill-popup-features {
    gap: 0.8rem;
  }

  .hill-popup-feature {
    gap: 0.6rem;
  }

  .hill-popup-icon {
    font-size: 1.1rem;
  }

  .hill-popup-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 400px) {
  .hill-section {
    padding-top: 3rem;
  }

  .hill-popup {
    padding: 1rem;
    margin: 0 auto 2.5rem;
  }

  .hill-popup-title {
    font-size: 1.2rem;
  }

  .hill-popup-intro {
    font-size: 0.8rem;
  }

  .hill-popup-text {
    font-size: 0.75rem;
  }
}

.hill-popup-link, .hill-popup-link * {
  text-decoration: none !important;
}

.hill-popup-link:hover {
  transform: scale(1.02);
}

.hill-popup-link:active {
  transform: scale(0.98);
}

.hill-popup-link:hover .hill-popup-content {
  transform: scale(1.05);
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }
  .nav-menu {
    display: none;
  }
  .mobile-only {
    display: inline-block !important;
    margin-left: auto;
  }
  .nav-waitlist-btn.mobile-only {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
    height: 48px;
    line-height: 48px;
    font-size: 1.1rem;
    font-weight: 700;
    transform: none;
  }
}

/* Add mockup dot styles for sticky section */
.sticky-mockup-dots {
    display: none;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.sticky-mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(254, 241, 216, 0.3);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border: none;
    outline: none;
}

.sticky-mockup-dot.active {
    background: #FEF1D8;
    transform: scale(1.2);
}

.sticky-mockup-dot:hover {
    background: rgba(254, 241, 216, 0.6);
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .sticky-mockup-dots {
        display: flex !important;
        margin-top: -0.5rem; /* Move dots up */
    }
    
    /* Remove the pseudo-element dots since we're using real dots now */
    .sticky-horizontal-track::after {
        display: none !important;
    }
}

.support-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(48, 36, 69, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.support-popup.active {
    opacity: 1;
    visibility: visible;
}

.support-popup-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
}

.support-popup.active .support-popup-content {
    transform: scale(1);
    opacity: 1;
}

.support-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #FEF1D8;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: transform 0.2s;
}

.support-popup-close:hover {
    transform: scale(1.1);
}

.support-popup h2 {
    color: #FEF1D8;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.support-popup p {
    color: #FEF1D8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.support-popup-email {
    color: #FF7476;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.support-popup-email:hover {
    color: #FF0025;
}

@media (max-width: 600px) {
    .support-popup-content {
        padding: 2rem 1.5rem;
    }
    
    .support-popup h2 {
        font-size: 1.5rem;
    }
    
    .support-popup p {
        font-size: 1rem;
    }
    
    .support-popup-close {
        font-size: 1.2rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-section {
    padding: 8rem 0 4rem 0;
    background: transparent;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-container h1 {
    color: #FEF1D8;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.effective-date {
    color: #FEF1D8;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.privacy-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    line-height: 1.7;
}

.privacy-content h2 {
    color: #FEF1D8;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem 0;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content p {
    color: #FEF1D8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.privacy-content ul {
    color: #FEF1D8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.privacy-content strong {
    color: #FF7476;
    font-weight: 700;
}

.privacy-content a {
    color: #FF7476;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.privacy-content a:hover {
    color: #FF0025;
}

.acknowledgment {
    font-style: italic;
    opacity: 0.8;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 6rem 0 3rem 0;
    }
    
    .privacy-container {
        padding: 0 1rem;
    }
    
    .privacy-container h1 {
        font-size: 2.2rem;
    }
    
    .privacy-content {
        padding: 2rem 1.5rem;
    }
    
    .privacy-content h2 {
        font-size: 1.3rem;
    }
    
    .privacy-content p,
    .privacy-content ul {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .privacy-container h1 {
        font-size: 1.8rem;
    }
    
    .privacy-content {
        padding: 1.5rem 1rem;
    }
    
    .privacy-content h2 {
        font-size: 1.2rem;
    }
    
    .privacy-content p,
    .privacy-content ul {
        font-size: 0.9rem;
    }
    
    .privacy-content ul {
        padding-left: 1.5rem;
    }
} 