/*

Tooplate 2159 Mochi Space

https://www.tooplate.com/view/2159-mochi-space

*/

:root {
    --lavender: #E8E0F0;
    --lavender-deep: #D4C8E8;
    --peachy: #FFE5E5;
    --peachy-deep: #FFCECE;
    --mint: #E0F5EE;
    --mint-deep: #C5EBE0;
    --cream: #FFFAF5;
    --coral: #FF9B9B;
    --coral-hover: #FF8585;
    --sage: #A9C4B0;
    --text-dark: #6B5252;
    --text-light: #8B7878;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Comfortaa', cursive;
}

/* Floating Background Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--lavender);
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--peachy);
    top: 60%;
    right: -3%;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--mint);
    top: 30%;
    right: 10%;
    animation-delay: -10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: var(--lavender-deep);
    bottom: 10%;
    left: 20%;
    animation-delay: -15s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(20px, -30px) rotate(5deg) scale(1.05); }
    50% { transform: translate(-10px, 20px) rotate(-5deg) scale(0.95); }
    75% { transform: translate(30px, 10px) rotate(3deg) scale(1.02); }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 30px;
    z-index: 1000;
    background: rgba(255, 250, 245, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 15px 30px;
    box-shadow: 0 5px 30px rgba(107, 82, 82, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #D97B7B;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-blob {
    width: 40px;
    height: 40px;
    background: #FFD2BA;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    animation: blobPulse 3s ease-in-out infinite;
}

/* Hair */
.logo-blob .hair {
    position: absolute;
    width: 40px;
    height: 17px;
    top: 0;
    left: 0;
    background: #111111;
    border-radius: 50% 50% 40% 40%;
    z-index: 2;
}

/* Bangs */
.logo-blob .hair::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 10px;
    top: 6px;
    left: 9px;
    background: #111111;
    border-radius: 0 0 50% 50%;
}

/* Eyes */
.logo-eye-one {
    content: '';
    position: absolute;
    width: 7px;
    height: 9px;
    top: 18px;
    left: 9px;
    background: #111111;
    border-radius: 50%;
    z-index: 5;
}

.logo-eye-two {
    content: '';
    position: absolute;
    width: 7px;
    height: 9px;
    top: 18px;
    right: 9px;
    background: #111111;
    border-radius: 50%;
    z-index: 5;
}

.logo-eye-one::after,
.logo-eye-two::after {
    content: '';
    position: absolute;

    width: 2px;
    height: 2px;
    top: 2px;
    left: 2px;

    background: white;
    border-radius: 50%;
}

/* Blush */
.logo-blob .blush {
    position: absolute;
    width: 8px;
    height: 4px;
    top: 27px;
    background: #F7A6A6;
    border-radius: 50%;
    z-index: 4;
}

.logo-blob .blush-left {
    left: 4px;
}

.logo-blob .blush-right {
    right: 4px;
}

/* Nose */
.logo-blob .nose {
    position: absolute;
    width: 4px;
    height: 3px;
    top: 24px;
    left: 18px;
    border-bottom: 1px solid #D98F82;
    border-radius: 50%;
    z-index: 5;
}

/* Mouth */
.logo-blob .mouth {
    position: absolute;
    width: 6px;
    height: 4px;
    top: 29px;
    left: 17px;
    border-bottom: 1px solid #A96565;
    border-radius: 50%;
    z-index: 5;
}



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

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 18px;
    border-radius: 50px;
}

.nav-links a:hover {
    color: var(--coral);
    background: rgba(255, 155, 155, 0.15);
}

.nav-cta {
    background: var(--coral);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 155, 155, 0.4);
}

.nav-cta:hover {
    background: var(--coral-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 155, 155, 0.5);
}

/* Navigation */
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    background: var(--coral-hover);
    backdrop-filter: blur(10px);

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    height: 70px;
    margin: auto;
    padding: 0 30px;

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

/* Logo */
.nav-logo {
    text-decoration: none;
    font-family: 'Comfortaa', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Navigation links */
.nav-links {
    display: flex;
    gap: 30px;
    margin-left: auto;
    margin-right: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Authentication buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-btn,
.register-btn {
    text-decoration: none;
    padding: 9px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Log In */
.login-btn {
    color: var(--coral);
    border: 1px solid var(--primary-color);
    background: transparent;
}

.login-btn:hover {
    background: var(--primary-color);
    color: var(--coral);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
}

/* Register */
.register-btn {
    background: transparent;
    color: var(--coral-hover);
    border: 1px solid var(--primary-color);
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
    background: var(--primary-color);
    color: var(--coral);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 30px 60px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFDBDB;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #D97B7B;
    margin-bottom: 25px;
}

.hero-badge .sparkle {
    font-size: 1.1rem;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero h1 span {
    background: linear-gradient(135deg, var(--coral) 0%, var(--sage) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(255, 155, 155, 0.4);
}

.btn-primary:hover {
    background: var(--coral-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 155, 155, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--lavender-deep);
}

.btn-secondary:hover {
    background: var(--lavender);
    border-color: var(--lavender);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
}

/* Mascot - Mochi the Blob */
/* ================================
   FLOWVERA GIRL CHARACTER
   ================================ */

.mochi {
    position: absolute;
    z-index: 10;
    pointer-events: none;
}

/* Main character position */
.mochi-main {
    top: 15px;
    right: 15px;
    width: 120px;
    animation: girlFloat 4s ease-in-out infinite;
}

/* Character image */
.mochi-body {width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 20px;
    filter: drop-shadow(0 10px 15px rgba(80, 60, 40, 0.15));
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Cute hover effect */
.mochi-main:hover .mochi-body {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 20px 25px rgba(80, 60, 40, 0.2));
}


/* ================================
   FLOATING ANIMATION
   ================================ */

@keyframes girlFloat {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}


/* ================================
   SPARKLES
   ================================ */

.mochi-sparkle {
    position: absolute;
    font-size: 1.3rem;
    z-index: 2;
    animation: sparkleFloat 2.5s ease-in-out infinite;
}

.mochi-sparkle:nth-child(1) {
    top: 5px;
    left: -15px;
    animation-delay: 0s;
}

.mochi-sparkle:nth-child(2) {
    top: 50px;
    right: -20px;
    animation-delay: 0.7s;
}

.mochi-sparkle:nth-child(3) {
    bottom: 70px;
    left: -25px;
    animation-delay: 1.2s;
}

@keyframes sparkleFloat {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8) rotate(15deg);
    }
}


/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 768px) {
    .mochi-main {
        width: 140px;
        top: 15px;
        right: 10px;
    }

    .mochi-sparkle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .mochi-main {
        width: 110px;
        top: 10px;
        right: 5px;
    }

    .mochi-sparkle {
        display: none;
    }
}

/* Phone Mockup */
/* =========================================
   FLOWVERA PHONE MOCKUP
   ========================================= */

.flowvera-phone {
    width: 350px;
    height: 720px;

    margin: 50px auto;

    padding: 10px;

    background: #2c2733;

    border-radius: 45px;

    box-shadow:
        0 25px 60px rgba(60, 45, 70, 0.25),
        inset 0 0 0 2px rgba(255, 255, 255, 0.25);

    position: relative;
}


/* PHONE SCREEN */

.flowvera-screen {
    width: 100%;
    height: 100%;

    background: linear-gradient(
        180deg,
        #fff7fb 0%,
        #fff 100%
    );

    border-radius: 36px;

    overflow: hidden;

    position: relative;

    font-family: 'Comfortaa', cursive;

    color: #51455f;
}


/* =========================================
   HEADER
   ========================================= */

.flowvera-header {
    display: flex;

    justify-content: space-between;
    align-items: center;

    padding: 28px 22px 10px;
}

.flowvera-logo {
    font-size: 1.8rem;

    font-weight: 700;

    color: #72508e;

    letter-spacing: -1px;
}

.flowvera-tagline {
    margin-top: 4px;

    font-family: Arial, sans-serif;

    font-size: 0.65rem;

    color: #8c8193;
}

.notification {
    font-size: 1.5rem;

    color: #72508e;
}


/* =========================================
   GREETING
   ========================================= */

.flowvera-greeting {
    padding: 18px 22px 15px;
}

.flowvera-greeting h2 {
    margin: 0;

    font-size: 1.25rem;

    color: #4f3c5f;
}

.flowvera-greeting p {
    margin: 7px 0 0;

    font-family: Arial, sans-serif;

    font-size: 0.75rem;

    color: #807486;
}


/* =========================================
   CYCLE CARD
   ========================================= */

.cycle-card {
    display: flex;

    justify-content: space-between;
    align-items: center;

    margin: 0 18px;

    padding: 18px;

    background: rgba(255, 255, 255, 0.9);

    border-radius: 22px;

    box-shadow: 0 8px 25px rgba(105, 78, 120, 0.08);
}

.cycle-info {
    flex: 1;
}

.cycle-label {
    font-family: Arial, sans-serif;

    font-size: 0.7rem;

    color: #8d8292;
}

.cycle-info h3 {
    margin: 5px 0;

    font-size: 1rem;

    color: #624573;
}

.cycle-day {
    margin: 0 0 10px;

    font-family: Arial, sans-serif;

    font-size: 0.7rem;

    color: #85778c;
}


/* PROGRESS */

.cycle-progress {
    width: 150px;

    height: 7px;

    background: #f1e7f1;

    border-radius: 10px;

    overflow: hidden;
}

.cycle-progress-fill {
    width: 45%;

    height: 100%;

    background: #b78bd0;

    border-radius: 10px;
}


/* DATE */

.cycle-date {
    margin-top: 14px;

    font-family: Arial, sans-serif;

    font-size: 0.6rem;

    color: #756a7d;
}


/* =========================================
   COUNTDOWN
   ========================================= */

.period-countdown {
    display: flex;

    justify-content: center;

    align-items: center;
}

.countdown-circle {
    width: 95px;
    height: 95px;

    border-radius: 50%;

    border: 8px solid #f7dce9;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;
}

.countdown-circle span {
    font-size: 0.55rem;

    color: #766a7c;
}

.countdown-circle strong {
    margin: 3px 0;

    font-size: 1.6rem;

    color: #624573;
}

.countdown-circle small {
    font-size: 0.5rem;

    color: #766a7c;
}


/* =========================================
   QUICK ACTIONS
   ========================================= */

.quick-actions {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 8px;

    margin: 18px;
    padding: 15px 8px;

    background: rgba(255, 255, 255, 0.9);

    border-radius: 20px;

    box-shadow: 0 8px 25px rgba(105, 78, 120, 0.06);
}

.quick-action {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 7px;

    font-size: 0.5rem;

    color: #665a6e;

    text-align: center;
}

.quick-icon {
    width: 42px;
    height: 42px;

    border-radius: 14px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 1.1rem;
}

.period-icon {
    background: #fde4ed;
}

.mood-icon {
    background: #eadcf6;
}

.calendar-icon {
    background: #dff1ed;
}

.insight-icon {
    background: #fcebcf;
}


/* =========================================
   SYMPTOMS
   ========================================= */

.symptoms-card {
    margin: 0 18px;

    padding: 15px;

    background: #f7e8f5;

    border-radius: 20px;
}

.symptoms-header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 12px;
}

.symptoms-header h3 {
    margin: 0;

    font-size: 0.75rem;

    color: #4f3c5f;
}

.symptoms-header span {
    font-size: 0.55rem;

    color: #72508e;
}

.symptoms-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 7px;
}

.symptom-item {
    padding: 10px 4px;

    background: rgba(255, 255, 255, 0.8);

    border-radius: 12px;

    text-align: center;
}

.symptom-emoji {
    font-size: 1.1rem;

    margin-bottom: 5px;
}

.symptom-item span {
    display: block;

    font-family: Arial, sans-serif;

    font-size: 0.5rem;

    color: #756979;
}


/* SYMPTOM LEVEL */

.symptom-level {
    display: flex;

    justify-content: center;

    gap: 2px;

    margin-top: 6px;
}

.symptom-level i {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #f3a7bd;
}

.symptom-level i:last-child {
    background: #eadce9;
}


/* =========================================
   ENCOURAGEMENT
   ========================================= */

.encouragement-card {
    display: flex;

    align-items: center;

    gap: 10px;

    margin: 12px 18px;

    padding: 10px 14px;

    background: rgba(255, 255, 255, 0.85);

    border-radius: 15px;
}

.encouragement-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f6dff0;

    border-radius: 50%;

    font-size: 1rem;
}

.encouragement-card strong {
    font-size: 0.65rem;

    color: #4f3c5f;
}

.encouragement-card p {
    margin: 3px 0 0;

    font-family: Arial, sans-serif;

    font-size: 0.5rem;

    color: #8a7d8e;
}


/* =========================================
   AGE-BASED GUIDE
   ========================================= */

.age-guide {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin: 0 18px 90px;

    padding: 14px;

    background: #e4f3ee;

    border-radius: 20px;

    overflow: hidden;
}

.age-guide-content h3 {
    margin: 0 0 6px;

    font-size: 0.7rem;

    color: #38544d;
}

.age-guide-content p {
    margin: 0 0 10px;

    font-family: Arial, sans-serif;

    font-size: 0.55rem;

    line-height: 1.5;

    color: #6d7e79;
}

.age-guide button {
    border: none;

    padding: 7px 12px;

    background: #a9ded2;

    border-radius: 15px;

    font-family: 'Comfortaa', cursive;

    font-size: 0.5rem;

    color: #315c54;

    cursor: pointer;
}

.guide-illustration {
    font-size: 3rem;

    margin-right: 5px;
}


/* =========================================
   BOTTOM NAVIGATION
   ========================================= */

.bottom-navigation {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;

    height: 70px;

    display: flex;

    justify-content: space-around;

    align-items: center;

    background: rgba(255, 255, 255, 0.97);

    border-top: 1px solid #eee5ed;

    z-index: 10;
}

.nav-item {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 4px;

    font-size: 0.5rem;

    color: #99909d;
}

.nav-item.active {
    color: #76509a;
}

.nav-icon {
    font-size: 1.3rem;
}

.nav-log {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 2px;

    margin-top: -22px;

    font-size: 0.5rem;

    color: #76509a;
}

.log-button {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #a978ca;

    color: white;

    font-size: 2rem;

    box-shadow: 0 7px 18px rgba(130, 83, 155, 0.25);
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 500px) {

    .flowvera-phone {
        transform: scale(0.9);

        transform-origin: top center;

        margin-bottom: -70px;
    }

}

/* Features Section */
.features {
    padding: 80px 30px;
    background: var(--white);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, var(--cream) 0%, transparent 100%);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mint);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #5BA88B;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--cream);
    border-radius: 30px;
    padding: 25px;
    display: flex;
    gap: 30px;
    align-items: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 155, 155, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(93, 84, 117, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-image {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(93, 84, 117, 0.15);
}

.feature-image-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-card:nth-child(1) .feature-image-inner {
    background: linear-gradient(180deg, var(--peachy) 0%, #FFCECE 100%);
}

.feature-card:nth-child(2) .feature-image-inner {
    background: linear-gradient(180deg, var(--mint) 0%, var(--mint-deep) 100%);
}

.feature-card:nth-child(3) .feature-image-inner {
    background: linear-gradient(180deg, var(--lavender) 0%, var(--lavender-deep) 100%);
}

.feature-card:nth-child(4) .feature-image-inner {
    background: linear-gradient(180deg, #E8F0FF 0%, #C5D8F5 100%);
}

/* Feature Screenshot Mockups */
.feature-screenshot {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
}

/* Mood Tracking Screenshot */
.mood-screenshot {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mood-screenshot-title {
    font-family: 'Comfortaa', cursive;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.mood-screenshot {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mood-screenshot-emojis {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: px 0 12px 0;
    padding: 0;
}

.mood-screenshot-emoji {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--white);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 0.7rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);

    position: relative;
}

/* Line beside each circle */
.mood-screenshot-emoji::after {
    content: "";
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 2px;
    background: #faf5f8;
}

.feature-card {
    position: relative;
}

.floating-smiley {
    position: absolute;
    right: 10px;
    bottom: 1px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    z-index: 999;
}

/* Breathing Screenshot */
.calendar-screenshot {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.calendar-screenshot-text {
    position: absolute;
    top: 8px;
    left: px;
    font-family: 'Comfortaa', cursive;
    font-size: 0.7rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Smaller calendar */
.calendar-screenshot-box {
    margin-top: 5px;
    width: 135px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 10px;
    padding: 6px;
    box-sizing: border-box;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.calendar-month {
    font-family: 'Comfortaa', cursive;
    font-size: 0.55rem;
    color: var(--text-dark);
    font-weight: 600;
}

.calendar-arrow {
    font-size: 0.5rem;
    color: var(--text-light);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.5rem;
    color: var(--text-light);
    margin-bottom: 3px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    text-align: center;
}

.calendar-day {
    width: 13px;
    height: 13px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 0.5rem;
    color: var(--text-dark);
    border-radius: 50%;
}

.calendar-day.active {
    background: var(--primary-color);
    color: rgb(121, 0, 0);
}

.calendar-day.marked {
    position: relative;
}

.calendar-day.marked::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 50%;
    bottom: 0;
}

/* Prediction at bottom */
.calendar-screenshot-info {
    position: absolute;
    bottom: 2px;
    left: 6px;

    font-size: 0.7rem;
    color: var(--text-light);
}

/* Journal Screenshot */
.journal-screenshot {
    width: 100%;
}

.journal-screenshot-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.journal-screenshot-date {
    font-size: 0.5rem;
    color: var(--text-light);
}

.journal-screenshot-mood {
    font-size: 0.7rem;
}

.journal-screenshot-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.journal-screenshot-label {
    font-size: 0.65rem;
    color: var(--coral);
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.journal-screenshot-line {
    height: 6px;
    background: var(--lavender);
    border-radius: 3px;
    margin-bottom: 5px;
}

.journal-screenshot-line:nth-child(2) { width: 100%; }
.journal-screenshot-line:nth-child(3) { width: 85%; }
.journal-screenshot-line:nth-child(4) { width: 60%; }

/* Sleep Screenshot */
.sleep-screenshot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.sleep-screenshot-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    animation: floatElement 3s ease-in-out infinite;
}

.sleep-screenshot-title {
    font-family: 'Comfortaa', cursive;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.sleep-screenshot-waves {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 7px;
    height: 100px;
    padding: 10px 5px 0;
}

/* Each chart column */
.sleep-chart-bar {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
}

/* Day labels */
.sleep-chart-bar span {
    font-size: 7px;
    color: var(--coral-hover);
    opacity: 0.8;
}

/* Bars */
.sleep-bar {
    width: 9px;
    border-radius: 5px 5px 2px 2px;
    background: var(--white);
    animation: sleepBarGrow 1s ease-out;
    transform-origin: bottom;
}

/* Different bar heights */
.bar-1 {
    height: 42px;
}

.bar-2 {
    height: 65px;
}

.bar-3 {
    height: 80px;
}

.bar-4 {
    height: 50px;
}

.bar-5 {
    height: 70px;
}

.bar-6 {
    height: 55px;
}

.bar-7 {
    height: 75px;
}

/* Bar animation */
@keyframes sleepBarGrow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

/* Affirmations Screenshot */
.profile-screenshot {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    height: 100%;

    padding: 15px;

}


/* Profile Icon */

.profile-icon {

    font-size: 2rem;

    margin-bottom: 10px;

}


/* Profile Card */

.profile-card {

    background: var(--white);

    border-radius: 15px;

    padding: 15px;

    width: 100%;

    box-sizing: border-box;

    text-align: center;

    box-shadow: 0 5px 15px rgba(0,0,0,0.08);

}


/* Name */

.profile-name {

    font-family: 'Comfortaa', cursive;

    font-size: 0.9rem;

    font-weight: 700;

    color: var(--text-dark);

}


/* Subtitle */

.profile-subtitle {

    font-size: 0.65rem;

    color: #9b8791;

    margin-top: 4px;

    margin-bottom: 12px;

}


/* Information Boxes */

.profile-info-row {
    display: flex;
    justify-content: center;
    gap: 6px;

}


.profile-info-box {

    flex: 1;

    background: #faf3f7;

    border-radius: 10px;

    padding: 7px 4px;

    display: flex;

    flex-direction: column;

    align-items: center;

}


.profile-info-box span {

    font-size: 0.85rem;

    margin-bottom: 3px;

}


.profile-info-box strong {

    font-size: 0.7rem;

    color: var(--text-dark);

}


.profile-info-box small {

    font-size: 0.5rem;

    color: #9b8791;

    margin-top: 2px;

}


/* Profile Status */

.profile-status {

    margin-top: 10px;

    padding: 7px;

    border-radius: 8px;

    background: #f8e9f0;

    font-size: 0.55rem;

    color: var(--text-dark);

}

/* Habit Tracker Screenshot */
.education-screenshot {

    padding: 15px;

    height: 100%;

    box-sizing: border-box;

}

.education-title {

    font-family: 'Comfortaa', cursive;

    font-size: 0.8rem;

    color: var(--text-dark);

    margin-bottom: 12px;

    text-align: center;

    font-weight: 600;

}

.education-list {

    display: flex;

    flex-direction: column;

    gap: 8px;

}

.education-item {

    display: flex;

    align-items: center;

    gap: 9px;

    background: var(--white);

    padding: 10px 11px;

    border-radius: 12px;

    color: var(--text-dark);

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);

}

.education-icon {

    width: 28px;

    height: 28px;

    border-radius: 9px;

    background: #FFE5F0;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 0.85rem;

    flex-shrink: 0;

}

.education-text {

    display: flex;

    flex-direction: column;

    gap: 3px;

    flex: 1;

}

.education-text strong {

    font-size: 0.65rem;

    color: var(--text-dark);

}

.education-text span {

    font-size: 0.52rem;

    color: var(--text-light);

    line-height: 1.3;

}

.education-arrow {

    font-size: 1rem;

    color: var(--text-light);

}

/* How It Works */
.how-it-works {
    padding: 80px 30px;
    background: linear-gradient(180deg, var(--white) 0%, var(--mint) 100%);
}

.steps {
  display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 40px;
    max-width: 1200px;
    margin: 50px auto 0;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 20%;
    right: 20%;
    height: 4px;
    background: linear-gradient(90deg, var(--peachy) 0%, var(--mint) 50%, var(--lavender-deep) 100%);
    border-radius: 2px;
    z-index: 0;
}

.step {
   text-align: center;
    position: relative;
    z-index: 1;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-family: 'Comfortaa', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: var(--coral);
    box-shadow: 0 10px 40px rgba(93, 84, 117, 0.15);
    transition: all 0.4s ease;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(10deg);
    background: var(--coral);
    color: var(--white);
}

.step-blob {
    width: 160px;
    height: 140px;
    margin: 0 auto 25px;
    position: relative;
}

.step h3 {
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
    font-size: 1rem;
}

/* =========================
   FLOWVERA APP PREVIEWS
   ========================= */

.preview-screens {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: center;
}

.preview-phone {
    position: relative;
    width: 100%;
    max-width: 260px;
    height: 480px;
    margin: auto;

    padding: 8px;

    background: #f8f4f6;
    border-radius: 35px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.preview-screen {
    width: 100%;
    height: 100%;

    background: #fff;
    border-radius: 28px;

    padding: 25px 18px;
    box-sizing: border-box;

    overflow: hidden;
}


/* =========================
   DASHBOARD
   ========================= */

.preview-screen-1 {
    display: flex;
    flex-direction: column;
}

.flowvera-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-family: 'Comfortaa', cursive;
    font-size: 0.8rem;
    color: var(--text-dark);

    margin-bottom: 25px;
}

.preview-cycle-card {
    padding: 20px 15px;

    background: rgba(255, 255, 255, 0.8);
    border-radius: 18px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.preview-small-label {
    font-size: 0.65rem;
    color: var(--text-light);
}

.preview-cycle-number {
    font-family: 'Comfortaa', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);

    margin: 5px 0;
}

.preview-cycle-text {
    font-size: 0.6rem;
    color: var(--text-light);
}

.preview-cycle-progress {
    height: 6px;
    margin-top: 15px;

    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.preview-cycle-progress-fill {
    width: 45%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 10px;
}

.preview-mini-title {
    margin-top: 25px;

    font-size: 0.7rem;
    color: var(--text-dark);
}

.preview-mini-moods {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.preview-mini-moods span {
    width: 35px;
    height: 35px;

    background: #faf7f8;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1rem;
}


/* =========================
   CALENDAR
   ========================= */

.preview-screen-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preview-calendar-title {
    align-self: flex-start;

    font-family: 'Comfortaa', cursive;
    font-size: 0.8rem;
    font-weight: 600;

    color: var(--text-dark);
    margin-bottom: 20px;
}

.preview-calendar {
    width: 100%;
    padding: 15px;

    background: #faf7f8;
    border-radius: 18px;

    box-sizing: border-box;
}

.preview-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 15px;

    font-size: 0.6rem;
    color: var(--text-dark);
}

.preview-calendar-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);

    text-align: center;

    font-size: 0.5rem;
    color: var(--text-light);

    margin-bottom: 8px;
}

.preview-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);

    gap: 7px;

    text-align: center;
}

.preview-calendar-days span {
    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 0.5rem;
    color: var(--text-dark);
}

.preview-calendar-days .period-day {
    background: var(--primary-color);
    color: red;
}

.preview-calendar-days .today {
    border: 2px solid var(--primary-color);
}

.preview-period-info {
    margin-top: auto;

    width: 100%;
    padding: 12px;

    box-sizing: border-box;

    background: #faf7f8;
    border-radius: 12px;

    font-size: 0.55rem;
    color: var(--text-light);

    text-align: center;
}


/* =========================
   SYMPTOM CHECK-IN
   ========================= */

.preview-screen-3 {
    display: flex;
    flex-direction: column;
}

.preview-symptom-title {
    font-family: 'Comfortaa', cursive;
    font-size: 0.8rem;
    font-weight: 600;

    color: var(--text-dark);

    margin-bottom: 20px;
}

.preview-symptom-question {
    font-size: 0.7rem;
    color: var(--text-dark);

    margin-bottom: 15px;
}

.preview-symptoms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.preview-symptom {
    padding: 15px 8px;

    background: #faf7f8;
    border-radius: 14px;

    text-align: center;
}

.preview-symptom span {
    font-size: 1.2rem;
}

.preview-symptom p {
    margin: 6px 0 0;

    font-size: 0.55rem;
    color: var(--text-light);
}

.preview-symptom-result {
    margin-top: auto;

    padding: 15px;

    background: #faf7f8;
    border-radius: 14px;

    display: flex;
    flex-direction: column;
    gap: 5px;
}

.preview-symptom-result span {
    font-size: 0.55rem;
    color: var(--text-light);
}

.preview-symptom-result strong {
    font-size: 0.65rem;
    color: var(--text-dark);
}

/* Testimonials */
.testimonials {
    padding: 80px 30px;
    background: var(--cream);
}

.author-container {
    max-width: 1000px;
    margin: 50px auto 0;

    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;

    align-items: center;
}

.testimonial-card {
    background: var(--white);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(93, 84, 117, 0.08);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(93, 84, 117, 0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: 'Comfortaa', cursive;
    font-size: 5rem;
    color: var(--lavender);
    line-height: 1;
}

.about-author {
    padding: 100px 30px;
    background: linear-gradient(
        180deg,
        var(--mint) 0%,
        var(--white) 100%
    );
}

.author-container {
    max-width: 1000px;
    margin: 50px auto 0;

    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 70px;

    align-items: center;
}

/* Author Image */
.author-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.author-avatar {
    width: 220px;
    height: 220px;

    background: var(--white);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 6rem;

    box-shadow: 0 15px 40px rgba(93, 84, 117, 0.15);

    border: 8px solid rgba(255, 255, 255, 0.7);
}

/* Author Content */
.author-content {
    text-align: left;
}

.author-label {
    display: inline-block;

    font-family: 'Comfortaa', cursive;
    font-size: 0.8rem;
    font-weight: 600;

    color: var(--coral);

    margin-bottom: 10px;
}

.author-content h3 {
    font-family: 'Comfortaa', cursive;
    font-size: 2rem;

    color: var(--text-dark);

    margin-bottom: 18px;
}

.author-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;

    margin-bottom: 15px;
}

/* Author Details */
.author-details {
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin-top: 25px;
}

.author-detail {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 10px 15px;

    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;

    width: fit-content;
}

.author-detail > span {
    font-size: 1.3rem;
}

.author-detail div {
    display: flex;
    flex-direction: column;
}

.author-detail strong {
    font-size: 0.75rem;
    color: var(--text-dark);
}

.author-detail small {
    font-size: 0.6rem;
    color: var(--text-light);
}

.author-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.author-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-shadow: 0 8px 25px rgba(93, 84, 117, 0.15);
    border: 5px solid var(--white);
}

/* =========================================
   FLOATING ELEMENTS
   ========================================= */
.float-element {
    position: absolute;

    z-index: 20;

    pointer-events: none;

    user-select: none;

    animation: floating 4s ease-in-out infinite;
}


/* Heart */
.float-heart {
    top: 150px;
    left: 35px;

    font-size: 1.8rem;

    animation-delay: 0s;
}


/* Flower */
.float-flower {
    bottom: 100px;
    left: 45px;

    font-size: 2rem;

    animation-delay: 1s;
}


/* Cloud */
.float-cloud {
    top: 250px;
    left: 270px;

    font-size: 1.8rem;

    animation-delay: 2s;
}


/* Floating Animation */
@keyframes floating {

    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }

}


/* Download CTA */
.download-cta {
    padding: 80px 30px;
    background: linear-gradient(180deg, var(--peachy) 0%, var(--lavender) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* =========================================
   FLOWVERA CTA BLOB
   ========================================= */

.cta-character {
    position: relative;

    width: 150px;
    height: 130px;

    margin: 0 auto 40px;
}

.cta-mochi {
    width: 150px;
    height: 130px;

    /* Flowvera soft pastel blob */
    background: #FFD2BA;

    /* Organic blob shape */
    border-radius: 50%;

    margin: 0 auto 40px;

    position: relative;

    animation: flowveraFloat 4s ease-in-out infinite;

    box-shadow:
        0 20px 40px rgba(120, 95, 140, 0.15);

    z-index: 2;
}

/* =========================================
   FLOWVERA CTA BLOB
   ========================================= */

.cta-mochi {
    width: 150px;
    height: 130px;

    background: #FFD2BA;

    border-radius: 50% 50% 45% 45% / 60% 60% 40% 40%;

    position: relative;

    overflow: hidden;

    animation: blobPulse 3s ease-in-out infinite;

    box-shadow: 0 20px 40px rgba(255, 155, 155, 0.25);
}



/* =========================================
   HAIR
   ========================================= */

.cta-hair {
    position: absolute;

    width: 150px;
    height: 55px;

    top: 0;
    left: 0;

    background: #111111;

    border-radius: 50% 50% 40% 40%;

    z-index: 2;
}


/* Bangs */

.cta-hair::after {
    content: '';

    position: absolute;

    width: 105px;
    height: 32px;

    top: 18px;
    left: 32px;

    background: #111111;

    border-radius: 0 0 50% 50%;
}


/* =========================================
   EYES
   ========================================= */

.cta-eye-one {
    position: absolute;

    width: 18px;
    height: 23px;

    top: 58px;
    left: 34px;

    background: #111111;

    border-radius: 50%;

    z-index: 5;
}

.cta-eye-two {
    position: absolute;

    width: 18px;
    height: 23px;

    top: 58px;
    right: 34px;

    background: #111111;

    border-radius: 50%;

    z-index: 5;
}


/* Eye shine */

.cta-eye-one::after,
.cta-eye-two::after {
    content: '';

    position: absolute;

    width: 5px;
    height: 5px;

    top: 5px;
    left: 5px;

    background: white;

    border-radius: 50%;
}


/* =========================================
   BLUSH
   ========================================= */

.cta-blush {
    position: absolute;

    width: 22px;
    height: 11px;

    top: 82px;

    background: #F7A6A6;

    border-radius: 50%;

    z-index: 4;
}

.cta-blush-left {
    left: 18px;
}

.cta-blush-right {
    right: 18px;
}


/* =========================================
   NOSE
   ========================================= */

.cta-nose {
    position: absolute;

    width: 10px;
    height: 7px;

    top: 76px;
    left: 70px;

    border-bottom: 2px solid #D98F82;

    border-radius: 50%;

    z-index: 5;
}


/* =========================================
   MOUTH
   ========================================= */

.cta-mouth {
    position: absolute;

    width: 15px;
    height: 10px;

    top: 90px;
    left: 67px;

    border-bottom: 2px solid #A96565;

    border-radius: 50%;

    z-index: 5;
}

.cta-mochi-hand {
    position: absolute;

    width: 38px;
    height: 30px;

    /* RIGHT BESIDE THE BLOB */
    left: 137px;
    top: 52px;

    background: #FFD2BA;

    border-radius: 50%;

    z-index: 10;

    transform: rotate(-15deg);

    transform-origin: left center;

    animation: handWave 1.5s ease-in-out infinite;

    box-shadow: 0 5px 15px rgba(120, 95, 140, 0.1);

}

@keyframes handWave {

    0% {
        transform: rotate(-20deg);
    }

    50% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(-20deg);
    }

}

/* =========================================
   BLOB ANIMATION
   ========================================= */

@keyframes blobPulse {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }

}


/* FLOATING DECORATION */
@keyframes flowerFloat {

    0% {
        transform: translateY(0) rotate(-15deg);
    }

    50% {
        transform: translateY(-7px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(-15deg);
    }

}

.download-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.download-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #C07878;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-btn:hover {
    background: #A86868;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(192, 120, 120, 0.4);
}

.app-btn-icon {
    font-size: 2rem;
}

.app-btn-text {
    text-align: left;
}

.app-btn-small {
    font-size: 0.75rem;
    opacity: 0.8;
}

.app-btn-large {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #F5AFAF 0%, #FDDDDD 100%);
    color: var(--text-dark);
    padding: 60px 30px 30px;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    color: #D97B7B;
    margin-bottom: 20px;
}

.footer-brand .logo-blob {
    background: linear-gradient(135deg, var(--peachy) 0%, var(--coral) 100%);
}

.footer-brand p {
    color: var(--text-dark);
    opacity: 0.8;
    font-size: 1rem;
    line-height: 1.7;
}

.footer-column h4 {
    font-family: 'Comfortaa', cursive;
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-dark);
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--coral);
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--coral);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(107, 82, 82, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--coral);
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Active nav link */
.nav-links a.active {
    color: var(--coral);
    background: rgba(255, 155, 155, 0.2);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(93, 84, 117, 0.5);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Menu Panel */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100%;
    background: var(--cream);
    z-index: 999;
    padding: 80px 25px 30px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(107, 82, 82, 0.2);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-links {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-menu-links li {
    margin-bottom: 6px;
}

.mobile-menu-links a {
    display: block;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
    background: var(--lavender);
    color: var(--coral);
}

.mobile-menu-cta {
    display: block;
    background: var(--coral);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 155, 155, 0.4);
    transition: all 0.3s ease;
}

.mobile-menu-cta:hover {
    background: var(--coral-hover);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1200px) {
    .features-grid {
        gap: 30px;
    }

    .feature-image {
        width: 160px;
        height: 160px;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    nav {
        padding: 15px 30px;
    }

    .nav-links, .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-overlay,
    .mobile-menu {
        display: block;
    }

    .hero {
        padding: 100px 30px 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .mochi-main {
        top: 10px;
        right: 50%;
        transform: translateX(100px);
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .feature-card {
        flex-direction: row;
    }

    .feature-image {
        width: 150px;
        height: 150px;
    }

    .steps {
        flex-direction: column;
        gap: 50px;
    }

    .steps::before {
        display: none;
    }

    .preview-screens {
        flex-direction: column;
        align-items: center;
    }

    .preview-phone:nth-child(2) {
        transform: none;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
    }

    .feature-image {
        width: 200px;
        height: 200px;
    }

    .feature-content h3 {
        justify-content: center;
    }

    .phone-mockup {
        width: 320px;
        height: 640px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .download-cta h2 {
        font-size: 2.2rem;
    }

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

@media (max-width: 480px) {
    nav {
        padding: 15px 20px;
    }

    .hero, .features, .how-it-works, .app-preview, .testimonials, .download-cta {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-image {
        width: 180px;
        height: 180px;
    }

    footer {
        padding: 40px 20px 20px;
    }
}

.auth-modal {
    display: none;

    position: fixed;
    inset: 0;

    background: rgba(93, 84, 117, 0.35);
    backdrop-filter: blur(6px);

    align-items: center;
    justify-content: center;

    z-index: 9999;

    padding: 20px;
}

.auth-modal.active {
    display: flex;
}

.auth-box {
    position: relative;

    width: 100%;
    max-width: 400px;

    background: var(--white);

    border-radius: 25px;

    padding: 35px;

    box-sizing: border-box;

    box-shadow: 0 20px 60px rgba(93, 84, 117, 0.2);

    animation: modalAppear 0.3s ease;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    position: absolute;

    top: 15px;
    right: 18px;

    width: 30px;
    height: 30px;

    border: none;
    background: transparent;

    font-size: 1.5rem;

    color: var(--text-light);

    cursor: pointer;
}

.close-modal:hover {
    color: var(--coral);
}

.auth-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
}

.auth-box h2 {
    font-family: 'Comfortaa', cursive;

    text-align: center;

    color: var(--text-dark);

    margin-bottom: 8px;
}

.auth-box > p {
    text-align: center;

    color: var(--text-light);

    font-size: 0.8rem;

    margin-bottom: 25px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;

    margin-bottom: 6px;

    font-size: 0.75rem;

    color: var(--text-dark);
}

.input-group input {
    width: 100%;

    padding: 12px 14px;

    box-sizing: border-box;

    border: 1px solid #e5e0e5;

    border-radius: 12px;

    outline: none;

    font-family: inherit;

    font-size: 0.8rem;

    transition: 0.3s ease;
}

.input-group input:focus {
    border-color: var(--primary-color);

    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}

.auth-submit {
    width: 100%;

    padding: 12px;

    border: none;

    border-radius: 15px;

    background: var(--primary-color);

    color: white;

    font-family: 'Comfortaa', cursive;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;
}

.auth-submit:hover {
    transform: translateY(-2px);

    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.auth-switch {
    margin-top: 20px !important;
    margin-bottom: 0 !important;
}

.auth-switch button {
    border: none;

    background: none;

    color: var(--primary-color);

    font-weight: 600;

    cursor: pointer;

    padding: 0;
}