:root {
    --font-family: 'Inter', sans-serif;

    /* Colors */
    --color-bg: #ffffff;
    --color-text: #1a1a1a;
    --color-text-light: #555555;
    --color-primary: #1a1a1a;
    /* Black buttons */
    --color-accent-green: #0fa968;
    /* Checkmarks, badges */
    --color-accent-pink: #f472b6;
    --color-accent-orange: #fb923c;
    --color-bg-dark: #3c1e1e;
    /* Deep brown/maroon for ReelUp section */

    --spacing-container: 1200px;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.1;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-ghost {
    background: transparent;
    color: var(--color-primary);
}

.btn-ghost:hover {
    color: #000;
    background: rgba(0, 0, 0, 0.03);
}

.btn-dark {
    background: #000;
    color: white;
    padding: 16px 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-outline {
    background: white;
    color: #000;
    border: 1px solid #e0e0e0;
    padding: 16px 32px;
}

.btn-outline:hover {
    border-color: #bbb;
    background: #fcfcfc;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.75rem;
    border-radius: 20px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.badge-orange {
    background: #ffe4d6;
    color: #ff6b2c;
}

.badge-blue {
    background: #d6e4ff;
    color: #2c6bff;
}

.badge-pink {
    background: #fadfea;
    color: #d63384;
}

.badge.outline {
    border: 1px solid #e0e0e0;
    color: #666;
    border-radius: 99px;
}

/* Grid & Layout System */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Typography styles */
h1 {
    font-size: 4.5rem;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: #111;
}

h2 {
    font-size: 3rem;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}


/* --- SECTIONS --- */

/* Header */
.site-header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #000;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.main-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #000;
}

.chevron {
    font-size: 0.7rem;
    margin-left: 4px;
    color: #999;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero-section {
    padding: 100px 0 160px;
    background: radial-gradient(circle at 70% 30%, rgba(240, 240, 240, 0.5) 0%, rgba(255, 255, 255, 1) 60%);
    overflow: hidden;
}

.hero-content {
    max-width: 580px;
    z-index: 2;
    position: relative;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 32px;
    background: white;
    padding: 8px 16px;
    border-radius: 99px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-badge .star {
    color: #0fa968;
}

.trust-badge .on-text {
    color: #888;
    font-weight: 400;
}

.hero-subtext {
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 90%;
    font-size: 1.15rem;
    color: #555;
    font-weight: 400;
}

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

/* Phone Mockup & Floating Cards */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1200px;
}

.phone-mockup {
    width: 320px;
    height: 620px;
    background: #000;
    border-radius: 44px;
    padding: 12px;
    position: relative;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.25);
    transform: rotateY(-8deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 2;
}

.phone-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg) translateY(-10px);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?w=600&h=1000&fit=crop');
    background-size: cover;
    background-position: center;
}

.phone-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
}

.video-overlay-item {
    position: absolute;
    left: 20px;
    top: 100px;
    background: white;
    padding: 10px;
    border-radius: 12px;
    transform: rotate(-6deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    z-index: 5;
    width: 90px;
}

.video-overlay-item .tag {
    display: block;
    font-weight: 900;
    font-size: 1.4rem;
    line-height: 0.9;
    margin-bottom: 8px;
    color: #e11d48;
    transform: skew(-2deg);
}

.video-overlay-item .btn-sm {
    font-size: 0.6rem;
    padding: 6px 10px;
    width: 100%;
    border-radius: 6px;
}

.product-popup {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: white;
    padding: 16px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
    z-index: 5;
}

.product-thumb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.product-info strong {
    display: block;
    font-size: 0.85rem;
    line-height: 1.25;
    margin-top: 14px;
    color: #000;
}

.product-info span {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.btn-shop {
    width: 100%;
    background: #000;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 6px;
}

/* Floating Cards around Phone */
.float-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.card-top-right {
    top: 80px;
    right: -90px;
    width: 190px;
    animation-delay: 1s;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.check-item .check {
    color: white;
    background: #000;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6em;
}

.card-bottom-right {
    bottom: 160px;
    right: -110px;
    background: var(--color-accent-green);
    color: white;
    width: 150px;
    padding: 24px;
    text-align: left;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(15, 169, 104, 0.25);
    animation-delay: 2s;
    border: none;
}

.card-bottom-right .label {
    font-size: 0.65rem;
    opacity: 0.8;
    display: block;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.card-bottom-right .stat-number {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 0.9;
    display: block;
    margin-bottom: 12px;
}

.card-bottom-right .stat-desc {
    font-size: 0.8rem;
    opacity: 1;
    line-height: 1.3;
    font-weight: 500;
}

.card-bottom-left {
    bottom: 110px;
    left: -70px;
    border-radius: 99px;
    flex-direction: row;
    padding: 12px 20px;
    gap: 16px;
    animation-delay: 0.5s;
}

.card-bottom-left span {
    font-size: 0.8rem;
    color: #333;
    font-weight: 500;
}

@keyframes float {

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

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

/* Logos */
.logos-section {
    padding: 80px 0;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
}

.logo-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.logos-section:hover .logo-grid {
    opacity: 0.8;
    filter: grayscale(0%);
}

.brand-logo {
    font-weight: 700;
    font-size: 1.3rem;
    color: #000;
    transition: all 0.3s;
}

.logo-heiress {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.2rem;
    font-weight: 900;
}

.logo-tozo {
    font-family: sans-serif;
    font-weight: 900;
    letter-spacing: -0.05em;
    font-size: 1.5rem;
}

.logo-hellbaby {
    font-family: cursive;
    font-weight: 700;
}

.logo-cocokind {
    font-family: monospace;
    letter-spacing: 0.1em;
    font-weight: 500;
    text-transform: lowercase;
}

.logo-oxyfresh {
    font-family: sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #555;
}

.logo-dotkey {
    font-family: serif;
    font-weight: 800;
    font-size: 1.4rem;
}

.logo-skylight {
    font-family: sans-serif;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.logo-bellefit {
    font-family: cursive;
    font-weight: 700;
}

.logo-amazing {
    font-family: 'Impact', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 1.4rem;
}

/* Stats */
.stats-section {
    padding: 100px 0;
    background: #fafafa;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h2 {
    margin-bottom: 12px;
    font-size: 4rem;
    color: #111;
}

.stat-card p {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    margin-top: 16px;
}

/* Features */
.feature-section {
    padding: 140px 0;
}

.center-header {
    text-align: center;
    margin-bottom: 100px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.center-header h2 {
    font-size: 3.5rem;
    letter-spacing: -0.03em;
}

.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.reversed {
    direction: rtl;
}

.reversed>* {
    direction: ltr;
}

.feature-text h3 {
    font-size: 3rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.feature-text p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

.learn-more {
    font-weight: 600;
    border-bottom: 2px solid #000;
    padding-bottom: 2px;
}

/* Feature Visuals */
.mockup-card {
    background: #fdf2f8;
    /* Soft pink bg for interactive */
    border-radius: 32px;
    padding: 40px;
    position: relative;
    height: 400px;
}

/* Placeholders for feature mockups */
.floating-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-right {
    top: 40px;
    right: 40px;
}

.center-left {
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
}

.bottom-center {
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.radio {
    color: #0fa968;
    background: #e6f6ec;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7em;
}

.stream-mockup {
    background: #eff6ff;
    border-radius: 32px;
    height: 450px;
    position: relative;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1517841905240-472988babdf9?w=600&h=600&fit=crop');
    background-size: cover;
}

.stream-header {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    color: white;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.live-tag {
    background: #e11d48;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.stream-chat-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 16px;
    border-radius: 16px;
    width: 200px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stats-bars {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bar {
    background: #f3f4f6;
    padding: 4px 8px;
    font-size: 0.7rem;
    border-radius: 4px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    background: #d6e4ff;
    z-index: -1;
}

/* Dark Section */
.relayy-section {
    background: var(--color-bg-dark);
    color: white;
    padding: 120px 0;
}

.relayy-content {
    max-width: 500px;
}

.relayy-section h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.relayy-section .sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.stool-mockup img {
    border-radius: 16px;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.relayy-stat h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.relayy-stat p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 1rem;
    max-width: 400px;
}

.relayy-section .btn-white {
    background: white;
    color: var(--color-bg-dark);
    padding: 14px 32px;
    border-radius: 99px;
    font-weight: 600;
}

.reelup-section .btn-white:hover {
    background: #f0f0f0;
}

/* Social Proof */
.social-proof-section {
    padding: 140px 0;
    text-align: center;
}

.huge-number {
    font-size: 12vw;
    font-weight: 300;
    line-height: 1;
    margin: 40px 0;
    letter-spacing: -0.05em;
    font-variant-numeric: tabular-nums;
}

.label-small {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #888;
}

.testimonial-grid {
    margin-top: 80px;
}

.testimonial-card {
    height: 450px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.card-red {
    background: #e11d48;
    background-image: url('https://images.unsplash.com/photo-1534528741775-53994a69daeb?w=600&h=800&fit=crop');
    background-size: cover;
}

.card-content {
    padding: 40px;
    z-index: 2;
    position: relative;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.floating-stat {
    background: #fbbf24;
    color: #000;
    padding: 10px 20px;
    font-weight: 800;
    border-radius: 12px;
    font-size: 2rem;
    margin-bottom: 20px;
    transform: rotate(-5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.love-btn {
    background: white;
    border: none;
    padding: 12px 24px;
    border-radius: 99px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-dark {
    background: #000;
    color: white;
    padding: 60px;
    justify-content: center;
    align-items: center;
}

.card-dark h3 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.analytics-card {
    background: #222;
    border-radius: 16px;
    padding: 20px;
    width: 100%;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    font-family: monospace;
    color: #4ade80;
    font-size: 1.2rem;
}

/* Responsive Grid */
@media (max-width: 968px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .grid-layout,
    .feature-split {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .hero-visual {
        display: none;
    }

    /* On mobile, the complexity of floaty cards is hard to manage without more time, hiding for now or simplify */
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .main-nav,
    .header-actions {
        display: none;
    }

    /* Simplified mobile header */
    .mobile-menu-toggle {
        display: block;
    }

    .huge-number {
        font-size: 15vw;
    }
}

/* Animation Utilities */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: opacity, transform;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-delay-1 {
    transition-delay: 0.1s;
}

.stagger-delay-2 {
    transition-delay: 0.2s;
}

.stagger-delay-3 {
    transition-delay: 0.3s;
}

/* --- Pre-Footer CTA --- */
.cta-section {
    background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    border-radius: 40px 40px 0 0;
    /* Modern curved top */
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    transform: rotate(30deg);
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* --- Global Footer --- */
.site-footer {
    background: #000;
    color: white;
    padding: 80px 0 40px;
}

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

.footer-brand p {
    color: #666;
    margin-top: 16px;
    font-size: 0.9rem;
    max-width: 250px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 24px;
    color: white;
}

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

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

.footer-col a {
    color: #888;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #444;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #666;
    font-weight: 600;
}

.social-links a:hover {
    color: white;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .social-links {
        justify-content: center;
    }

    .cta-section {
        border-radius: 0;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    background: #fdfdfd;
}

/* Subtle off-white base */


/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 9999;
    padding: 80px 20px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
    padding: 0;
}

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

.mobile-menu a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}


/* === Single Page Additional Styles === */

/* Stories Section */
.stories-section {
    padding: 100px 0;
    background: #fafafa;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.story-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.story-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.story-content {
    padding: 30px;
}

.brand-logo-text {
    display: block;
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.quote {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #333;
}

.stat-row {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.stat-item h4 {
    font-size: 1.8rem;
    color: #0fa968;
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: #666;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.author-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details strong {
    display: block;
    font-size: 0.9rem;
}

.author-details span {
    font-size: 0.8rem;
    color: #666;
}

/* Resources Section */
.resources-section {
    padding: 100px 0;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.resource-card {
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    background: white;
}

.resource-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.res-img {
    height: 160px;
    background: #eee;
    background-size: cover;
    background-position: center;
    position: relative;
}

.res-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.res-body {
    padding: 20px;
}

.res-cat {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #666;
    margin-bottom: 8px;
    display: block;
}

.res-body h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.res-body p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
}

.res-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #999;
}

.res-meta img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.pricing-card {
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 32px;
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid #000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: scale(1.03);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-8px);
}

.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: white;
    padding: 6px 16px;
    font-size: 0.7rem;
    border-radius: 99px;
    text-transform: uppercase;
    font-weight: 700;
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.plan-desc {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 16px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1;
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
}

.price-note {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 20px;
}

.features {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}

.features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.features li .check {
    color: #0fa968;
    font-weight: bold;
    flex-shrink: 0;
}

.features li.disabled {
    color: #999;
}

.features li.disabled .check {
    color: #ccc;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .resource-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 600px) {
    .resource-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-section,
    .resources-section,
    .pricing-section {
        padding: 60px 0;
    }
}
