/* public/css/style.css */

/* ============== RESET & BASE STYLES ============== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1A1A1A;
    overflow-x: hidden;
    background: #FFFFFF;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    max-width: 100vw;
}

/* ============== COLOR VARIABLES ============== */
:root {
    /* Brand Colors - Pink Theme */
    --primary-pink: #FF6B9D;
    --light-pink: #FFE5F0;
    --soft-pink: #FFF8FB;
    --dark-pink: #E94B7B;
    --accent-pink: #FF8FB3;

    /* Neutral Colors */
    --text-dark: #1A1A1A;
    --text-gray: #64748B;
    --text-light: #94A3B8;
    --white: #FFFFFF;
    --bg-light: #FFFFFF;
    --bg-soft: #FAFAFA;
    --bg-section: #FFFFFF;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B9D 0%, #E94B7B 100%);
    --gradient-soft: linear-gradient(135deg, #FFF8FB 0%, #FFE5F0 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

/* ============== NAVIGATION ============== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    transition: all 0.3s ease;
    width: 100%;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0.7rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 800;
    filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.8));
}

.nav-brand span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}


.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-pink);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-pink);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-download-nav {
    padding: 0.7rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}

.btn-download-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2.5px;
    background: var(--primary-pink);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* ============== HERO SECTION ============== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    background: #000;
    width: 100%;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
    width: 100%;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    color: white;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(255, 107, 157, 0.6));
}

.hero-text p {
    font-size: clamp(0.95rem, 2vw, 1.25rem);
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 0 1rem;
}

/* Get Started Button */
.hero-cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.3rem);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.5);
    margin-bottom: 2rem;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.6);
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    flex-wrap: wrap;
    padding: 0 1rem;
}

.hero-trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ============== SCROLL INDICATOR ============== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.scroll-indicator p {
    color: var(--primary-pink);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--primary-pink);
    border-radius: 15px;
    position: relative;
    margin: 0 auto;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-pink);
    border-radius: 2px;
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* ============== SECTIONS ============== */
.section {
    padding: 4rem 0;
    background: var(--white);
    width: 100%;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ============== FEATURES SECTION ============== */
.features-section {
    background: var(--bg-soft);
}

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

.feature-card {
    background: var(--white);
    border: 1px solid rgba(255, 107, 157, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(255, 107, 157, 0.15);
    border-color: rgba(255, 107, 157, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: var(--gradient-primary);
    color: white;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-align: center;
}

.feature-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

/* ============== SCREENSHOTS SECTION ============== */
.screenshots-section {
    background: var(--white);
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    padding: 2rem 0;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1rem 0;
    width: max-content;
}

.carousel-track {
    cursor: grab;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-slide img {
    user-select: none;
    pointer-events: none;
}

.carousel-slide {
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    text-align: center;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 2px solid rgba(255, 107, 157, 0.15);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.carousel-slide:hover img {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 157, 0.3);
    box-shadow: 0 12px 24px rgba(255, 107, 157, 0.2);
}

.slide-caption {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 107, 157, 0.4);
}

.carousel-btn.prev {
    left: 0.5rem;
}

.carousel-btn.next {
    right: 0.5rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 107, 157, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-dot:hover {
    background: rgba(255, 107, 157, 0.5);
}

.carousel-dot.active {
    width: 30px;
    border-radius: 5px;
    background: var(--primary-pink);
}

/* ============== ABOUT SECTION ============== */
.about-section {
    background: var(--bg-soft);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-description {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid rgba(255, 107, 157, 0.1);
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 157, 0.2);
}

.highlight-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 1.3rem;
}

.highlight-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.highlight-item p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9rem;
}

.stats-card {
    padding: 2rem;
    background: var(--white);
    border: 1px solid rgba(255, 107, 157, 0.1);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.stats-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 800;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 107, 157, 0.08);
    transition: all 0.3s ease;
}

.stat-row:hover {
    padding-left: 0.75rem;
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-row span:first-child {
    color: var(--text-gray);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.stat-row span:first-child i {
    color: var(--primary-pink);
}

.stat-value {
    font-weight: 900;
    font-size: 1.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============== DOWNLOAD SECTION ============== */
.download-section {
    background: var(--white);
}

.download-card {
    padding: 3rem 1.5rem;
    text-align: center;
    background: var(--bg-soft);
    border: 1px solid rgba(255, 107, 157, 0.1);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

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

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: var(--white);
    border: 1px solid rgba(255, 107, 157, 0.15);
    box-shadow: var(--shadow-sm);
}

.store-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.2);
    border-color: rgba(255, 107, 157, 0.3);
}

.store-btn i {
    font-size: 2.2rem;
    color: var(--primary-pink);
}

.store-label {
    display: block;
    font-size: 0.75rem;
    text-align: left;
    color: var(--text-gray);
}

.store-name {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    text-align: left;
    color: var(--text-dark);
}

.download-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.download-stats .stat-item {
    text-align: center;
}

.download-stats .stat-item i {
    font-size: 1.8rem;
    color: var(--primary-pink);
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ============== FOOTER ============== */
.footer {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem 0 1.5rem;
    width: 100%;
}

.footer-container {
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-tagline {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-newsletter h4 {
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 0.95rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0.85;
    font-size: 0.85rem;
}

.footer-bottom i {
    color: #FFD4E5;
}

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

/* Large Tablets */
@media (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Tablets & Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-link {
        text-shadow: none;
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
    }

    .navbar.scrolled .nav-link {
        text-shadow: none;
    }

    .btn-download-nav {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Hero Section */
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: 100vh;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-text h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: clamp(0.9rem, 3vw, 1.05rem) !important;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .hero-cta-button {
        padding: 0.9rem 2.5rem;
        font-size: 1rem;
        width: 90%;
        max-width: 280px;
    }

    .hero-trust-badges {
        font-size: 0.85rem;
        gap: 0.75rem;
    }

    /* Sections */
    .section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
    }

    .section-subtitle {
        font-size: 0.95rem !important;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-card {
        padding: 1.75rem;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }

    /* Carousel */
    .carousel-container {
        padding: 1rem 0;
    }

    .carousel-slide {
        min-width: 240px;
        max-width: 240px;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .carousel-btn.prev {
        left: 0.25rem;
    }

    .carousel-btn.next {
        right: 0.25rem;
    }

    /* About Section */
    .about-description {
        font-size: 0.95rem;
    }

    .highlight-item {
        padding: 1.25rem;
    }

    .stats-card {
        padding: 1.75rem;
    }

    /* Download Section */
    .download-card {
        padding: 2.5rem 1.25rem;
    }

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

    .store-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .download-stats {
        gap: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer {
        padding: 2.5rem 0 1.5rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-text h1 {
        font-size: 1.6rem !important;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 0.85rem !important;
        padding: 0;
    }

    .hero-cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 260px;
    }

    .hero-trust-badges {
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .section-title {
        font-size: 1.5rem !important;
    }

    .btn-download-nav {
        padding: 0.55rem 1rem;
        font-size: 0.8rem;
    }

    .btn-download-nav i {
        font-size: 0.85rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .carousel-slide {
        min-width: 220px;
        max-width: 220px;
    }

    .about-highlights {
        gap: 1rem;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .stats-card {
        padding: 1.5rem;
    }

    .download-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .store-btn {
        padding: 0.9rem 1.25rem;
    }

    .store-btn i {
        font-size: 2rem;
    }
}

/* Prevent horizontal overflow */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

/* ============== SECTION BADGES ============== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-pink);
    border-radius: 50px;
    color: var(--primary-pink);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.section-badge i {
    font-size: 1rem;
}

/* ============== CYCLE & HORMONE INTELLIGENCE SECTION ============== */
.cycle-section {
    background: var(--white);
}

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

.cycle-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.phase-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.phase-card {
    padding: 1.5rem;
    background: var(--white);
    border: 2px solid;
    border-radius: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.phase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transition: height 0.3s ease;
}

.phase-card.menstrual {
    border-color: #FF6B9D;
}

.phase-card.menstrual::before {
    background: #FF6B9D;
}

.phase-card.follicular {
    border-color: #FFB3D9;
}

.phase-card.follicular::before {
    background: #FFB3D9;
}

.phase-card.ovulation {
    border-color: #FF8FB3;
}

.phase-card.ovulation::before {
    background: #FF8FB3;
}

.phase-card.luteal {
    border-color: #FFC4DD;
}

.phase-card.luteal::before {
    background: #FFC4DD;
}

.phase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.phase-card:hover::before {
    height: 100%;
    opacity: 0.1;
}

.phase-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.phase-card.menstrual .phase-indicator {
    background: #FF6B9D;
}

.phase-card.follicular .phase-indicator {
    background: #FFB3D9;
}

.phase-card.ovulation .phase-indicator {
    background: #FF8FB3;
}

.phase-card.luteal .phase-indicator {
    background: #FFC4DD;
}

.phase-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.phase-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

.cycle-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cycle-circle {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.2);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

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

.cycle-center i {
    font-size: 4rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.cycle-center p {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* ============== ADAPTIVE FITNESS SECTION ============== */
.fitness-section {
    background: var(--bg-soft);
}

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

.fitness-card {
    background: var(--white);
    border: 1px solid rgba(255, 107, 157, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fitness-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 107, 157, 0.15);
    border-color: rgba(255, 107, 157, 0.3);
}

.fitness-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.fitness-card:hover .fitness-icon {
    transform: scale(1.1) rotate(5deg);
}

.fitness-icon.yoga {
    background: linear-gradient(135deg, #9D4EDD, #C77DFF);
}

.fitness-icon.strength {
    background: linear-gradient(135deg, #FF6B9D, #E94B7B);
}

.fitness-icon.pilates {
    background: linear-gradient(135deg, #FF9E00, #FFB800);
}

.fitness-icon.hiit {
    background: linear-gradient(135deg, #FF4D6D, #C9184A);
}

.fitness-icon.meditation {
    background: linear-gradient(135deg, #4CC9F0, #4895EF);
}

.fitness-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.fitness-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* ============== SMART NUTRITION SECTION ============== */
.nutrition-section {
    background: var(--white);
}

.nutrition-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.nutrition-visual {
    display: flex;
    justify-content: center;
}

.nutrition-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

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

.nutrition-stat {
    text-align: center;
    color: white;
}

.nutrition-stat h3 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.nutrition-stat p {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    opacity: 0.95;
}

.nutrition-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.nutrition-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nutrition-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-pink);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nutrition-feature-item:hover {
    transform: translateX(10px);
    background: var(--soft-pink);
}

.nutrition-feature-item i {
    font-size: 1.5rem;
    color: var(--primary-pink);
}

.nutrition-feature-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ============== COMMUNITY SECTION ============== */
.community-section {
    background: var(--bg-soft);
}

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

.community-card {
    background: var(--white);
    border: 1px solid rgba(255, 107, 157, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.community-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 107, 157, 0.15);
    border-color: rgba(255, 107, 157, 0.3);
}

.community-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.community-card:hover .community-icon {
    transform: scale(1.1) rotate(-5deg);
}

.community-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.community-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

/* ============== WHY QDBALANCE SECTION ============== */
.why-section {
    background: var(--white);
    padding: 5rem 0;
}

.why-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.why-pillars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 3rem 0;
}

.why-pillar {
    padding: 1.5rem;
    background: var(--gradient-soft);
    border: 2px solid rgba(255, 107, 157, 0.2);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.why-pillar:hover {
    transform: scale(1.02);
    border-color: rgba(255, 107, 157, 0.4);
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.15);
}

.why-pillar h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.why-tagline {
    margin-top: 2rem;
}

.why-tagline p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* ============== FINAL CTA SECTION ============== */
.final-cta-section {
    background: var(--gradient-primary);
    padding: 5rem 0;
}

.final-cta-content {
    text-align: center;
    color: white;
}

.final-cta-content .section-title {
    color: white;
}

.final-cta-subtitle {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.final-cta-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: white;
    color: var(--primary-pink);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.final-cta-button i {
    margin-right: 0.5rem;
}

.final-cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
}

.final-cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.final-cta-features i {
    font-size: 1rem;
}

/* ============== RESPONSIVE FOR NEW SECTIONS ============== */
@media (max-width: 968px) {

    .cycle-content-wrapper,
    .nutrition-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cycle-visual,
    .nutrition-visual {
        order: -1;
    }

    .fitness-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.9rem;
    }

    .phase-cards {
        grid-template-columns: 1fr;
    }

    .cycle-circle,
    .nutrition-circle {
        width: 240px;
        height: 240px;
    }

    .cycle-center i {
        font-size: 3rem;
    }

    .nutrition-stat h3 {
        font-size: 3rem;
    }

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

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

    .why-pillar h3 {
        font-size: 1.2rem;
    }

    .why-tagline p {
        font-size: 1.1rem;
    }

    .final-cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        width: 90%;
        max-width: 300px;
    }

    .final-cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {

    .cycle-circle,
    .nutrition-circle {
        width: 200px;
        height: 200px;
    }

    .cycle-center i {
        font-size: 2.5rem;
    }

    .nutrition-stat h3 {
        font-size: 2.5rem;
    }

    .nutrition-stat p {
        font-size: 1.1rem;
    }

    .why-pillar {
        padding: 1.25rem;
    }

    .why-pillar h3 {
        font-size: 1.1rem;
    }
}


/* ============== LANGUAGE TOGGLE ============== */
.language-toggle {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.2);
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 107, 157, 0.15);
    border-color: rgba(255, 107, 157, 0.4);
}

.lang-option {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-gray);
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

.lang-option.active {
    color: var(--primary-pink);
    background: rgba(255, 107, 157, 0.1);
}

.lang-option:hover {
    color: var(--primary-pink);
}

.lang-divider {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.85rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .language-toggle {
        margin-right: 0.5rem;
    }

    .lang-btn {
        padding: 0.35rem 0.6rem;
    }

    .lang-option {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .lang-btn {
        padding: 0.3rem 0.5rem;
    }

    .lang-option {
        font-size: 0.75rem;
        padding: 0.15rem 0.3rem;
    }
}