:root {
    --primary: #FF8BA7;
    --primary-dark: #FF5E89;
    --secondary: #8BE7FF;
    --text-main: #2D3748;
    --text-light: #718096;
    --bg-light: #FAFCFE;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-padding-top: 120px;
    /* Offset for fixed navbar on anchor scroll */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar.glass {
    background: rgba(255, 255, 255, 0.95);
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 5px 0;
}

.logo img {
    height: 120px;
    /* Match Flutter app logo size - prominent branding */
    width: auto;
    object-fit: contain;
    display: block;
    background: transparent !important;
    transition: transform 0.2s ease;
}

.logo:hover img {
    transform: scale(1.03);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.highlight {
    color: var(--primary);
}

.navbar nav {
    display: none;
}

@media (min-width: 768px) {
    .navbar nav {
        display: flex;
        gap: 2rem;
    }
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 139, 167, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 139, 167, 0.4);
}

/* Nav Actions Grouping */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .nav-actions {
        gap: 0.5rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8rem 5% 5rem;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.hero-visual {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

.comparison-slider {
    aspect-ratio: 16/9;
}

@media (min-width: 992px) {
    .hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        align-items: center;
        text-align: left;
        padding-top: 10rem;
        gap: 2rem;
    }

    .hero-content {
        grid-column: 1;
        grid-row: 1;
        margin: 0;
        max-width: 600px;
    }

    .hero-visual {
        grid-column: 2;
        grid-row: 1 / 3;
        max-width: 100%;
    }

    .trust-indicators {
        grid-column: 1;
        grid-row: 2;
        justify-content: flex-start !important;
    }

    .glow-bg {
        grid-column: 1 / -1;
    }
}

.badge {
    display: inline-block;
    background: rgba(139, 231, 255, 0.2);
    color: #007EA7;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #2D3748, #4A5568);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #1A202C;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    transition: transform 0.2s;
}

.store-btn:hover {
    transform: translateY(-2px);
}

.trust-indicators {
    display: flex;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-light);
    align-items: center;
    flex-wrap: wrap;
}

.glow-bg {
    position: absolute;
    width: 120%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 231, 255, 0.4) 0%, rgba(255, 139, 167, 0.2) 50%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    transform: translate(-10%, -10%);
    filter: blur(40px);
    pointer-events: none;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

/* Features */
.features {
    padding: 5rem 5%;
    background: white;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.feature-card {
    padding: 2rem;
    border-radius: 20px;
    background: var(--bg-light);
    border: 1px solid #EDF2F7;
    transition: transform 0.3s;
}

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

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* SEO Content / How it Works */
.seo-content {
    padding: 5rem 5%;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.steps {
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-num {
    background: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* FAQ Styles */
.faq-section {
    padding: 5rem 5%;
    background: #FAFCFE;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #EDF2F7;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    margin-bottom: 0.8rem;
    color: #2D3748;
}

.faq-item p {
    color: var(--text-light);
}

/* CTA */
.cta-section {
    padding: 5rem 5%;
    text-align: center;
    background: linear-gradient(135deg, #FFF5F7, #E3F8FF);
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.btn-primary.large {
    font-size: 1.1rem;
    padding: 1rem 3rem;
}

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

/* Footer */
footer {
    padding: 4rem 5% 2rem;
    background: white;
    border-top: 1px solid #EDF2F7;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid #EDF2F7;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero {
        padding-top: 9rem;
        padding-bottom: 3rem;
        gap: 1.5rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-sub {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-visual {
        width: 95%;
        margin: 0 auto;
    }

    .comparison-slider {
        aspect-ratio: 4/3;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    .trust-indicators {
        flex-wrap: wrap;
        gap: 0.5rem;
        font-size: 0.8rem;
        padding: 0 1rem;
    }

    .trust-indicators span:contains('•') {
        display: none;
    }

    .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* Default hidden state for mobile navigation */
    .mobile-nav-overlay,
    .mobile-menu-btn {
        display: none;
    }

    /* Responsive Logo for Mobile */
    .logo img {
        height: 80px;
        /* Proportionally smaller on mobile */
    }

    /* Mobile Menu styles */
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 1.8rem;
        cursor: pointer;
        color: var(--text-main);
        padding: 0.5rem;
        z-index: 101;
    }

    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        z-index: 99;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        opacity: 0;
        padding-top: 4rem;
        /* Offset for close button */
    }

    .mobile-nav-overlay.active {
        transform: translateY(0);
        opacity: 1;
    }

    .mobile-nav-overlay a {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-main);
    }
}

@media (min-width: 769px) {

    .mobile-menu-btn,
    .mobile-nav-overlay {
        display: none;
        /* Hide on desktop */
    }
}

/* Comparison Slider Hero */
.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
    background: #000;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-before,
.image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a2e;
    overflow: hidden;
}

.image-before {
    background-image: url('assets/hero-before.jpg');
    z-index: 10;
    width: 50%;
    border-right: 2px solid white;
}

.image-after {
    background-image: url('assets/baby karosell/diapers_awake_without_hat.webp');
    z-index: 5;
    transition: background-image 1s ease-in-out;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 40px;
    margin-left: -20px;
    z-index: 20;
    cursor: col-resize;
    display: flex;
    align-items: center;
    justify-content: center;
}

.handle-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.handle-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: #FF5E89;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    font-size: 14px;
    z-index: 21;
}

.slider-label {
    position: absolute;
    bottom: 20px;
    padding: 5px 15px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
    pointer-events: none;
}

.label-before {
    left: 20px;
    z-index: 11;
}

.label-after {
    right: 20px;
    z-index: 6;
}

@media (max-width: 768px) {
    .comparison-slider {
        aspect-ratio: 1/1;
    }
}

/* =========================================
   Language Selector - Professional Design
   ========================================= */
.lang-selector {
    position: relative;
    margin-left: 1rem;
    cursor: pointer;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.lang-current:hover {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lang-arrow {
    font-size: 0.6rem;
    color: #666;
    transition: transform 0.2s ease;
}

.lang-selector:hover .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 180px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0.5rem 0;
    padding-top: 1rem;
    margin-top: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 9999;
}

.lang-selector:hover .lang-dropdown {
    display: block;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.15s ease;
}

.lang-dropdown a:hover {
    background: #FFF0F3;
    color: #FF5E89;
}

.lang-flag-img {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .lang-selector {
        margin-left: 0.5rem;
    }

    .lang-current {
        padding: 0.4rem 0.5rem;
    }

    .lang-dropdown {
        left: auto;
        right: 0;
        transform: none;
        min-width: 160px;
    }
}

/* =========================================
   SEO Intro Block (Clean & Visible)
   ========================================= */
.seo-intro-block {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 800px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
}

.seo-intro-block h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-weight: 700;
}

.seo-intro-block p {
    margin: 0;
    color: var(--text-light);
}

/* =========================================
   Cookie Consent Banner - GDPR Compliant
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    font-family: 'Outfit', sans-serif;
}

.cookie-banner-visible {
    transform: translateY(0);
}

.cookie-banner-hidden {
    transform: translateY(100%);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.cookie-banner-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.cookie-privacy-link {
    color: var(--primary-dark);
    font-size: 0.85rem;
    text-decoration: underline;
}

.cookie-privacy-link:hover {
    color: var(--primary);
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.7rem 1.4rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    font-family: 'Outfit', sans-serif;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 12px rgba(255, 139, 167, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 139, 167, 0.4);
}

.cookie-btn-necessary {
    background: #f0f0f0;
    color: var(--text-main);
}

.cookie-btn-necessary:hover {
    background: #e0e0e0;
}

.cookie-btn-settings {
    background: transparent;
    color: var(--text-light);
    border: 1px solid #ddd;
}

.cookie-btn-settings:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.cookie-btn-save {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    margin-top: 1rem;
}

/* Cookie Settings Panel */
.cookie-settings-panel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 1.5rem;
    border-top: 1px solid #eee;
}

.cookie-setting {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.cookie-setting:last-of-type {
    border-bottom: none;
}

.cookie-setting-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-setting-title {
    font-weight: 600;
    color: var(--text-main);
}

.cookie-setting-required {
    font-size: 0.8rem;
    color: var(--text-light);
}

.cookie-setting-desc {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    padding-left: 3.5rem;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked+.cookie-toggle-slider {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.cookie-toggle input:checked+.cookie-toggle-slider:before {
    transform: translateX(20px);
}

.cookie-toggle input:disabled+.cookie-toggle-slider {
    background-color: var(--primary);
    opacity: 0.7;
    cursor: not-allowed;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner-content {
        padding: 1.25rem 1rem;
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-text {
        min-width: auto;
    }

    .cookie-banner-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }

    .cookie-settings-panel {
        padding: 0 1rem 1rem;
    }

    .cookie-setting-desc {
        padding-left: 0;
        margin-top: 0.75rem;
    }
}

/* =========================================
   Scroll Reveal Animations
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Staggered delays for grid items */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

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

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

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* Fade in from left */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in from right */
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up animation */
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =========================================
   Hero Entrance Animations (Page Load)
   ========================================= */

/* Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

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

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(139, 231, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(139, 231, 255, 0.6);
    }
}

@keyframes float {

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

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

/* Navbar entrance */
.navbar {
    animation: fadeInDown 0.6s ease-out;
}

/* Hero elements with staggered delays */
.hero .badge {
    animation: fadeInUp 0.8s ease-out 0.2s both, pulseGlow 3s ease-in-out 1.5s infinite;
}

.hero h1 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero .hero-sub {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero .trust-indicators {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-visual {
    animation: scaleIn 1s ease-out 0.5s both;
}

/* Floating effect for slider */
.comparison-slider {
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

/* SEO intro block */
.seo-intro-block {
    animation: fadeInUp 0.8s ease-out 1s both;
}

/* Disable entrance animations for reduced motion */
@media (prefers-reduced-motion: reduce) {

    .navbar,
    .hero .badge,
    .hero h1,
    .hero .hero-sub,
    .hero .trust-indicators,
    .hero-visual,
    .comparison-slider,
    .seo-intro-block {
        animation: none;
    }
}

/* =========================================
   About Us / Our Story Section
   Personal & Authentic Design
   ========================================= */
.about-us-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #FFF9FA 0%, #F0F7FF 100%);
    position: relative;
    overflow: hidden;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 139, 167, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.about-us-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-us-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-us-header .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-us-header h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.about-us-header .subtitle {
    font-size: 1.2rem;
    color: var(--primary-dark);
    font-weight: 600;
}

/* Story Card - The Main Content */
.story-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 139, 167, 0.15);
    position: relative;
}

.story-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    color: rgba(255, 139, 167, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

/* Handwritten-style Font for Personal Quotes */
.story-highlight {
    font-family: 'Caveat', cursive;
    font-size: 1.6rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin: 1.5rem 0;
    padding-left: 1rem;
    border-left: 3px solid var(--primary);
    line-height: 1.4;
}

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

.story-section h3 {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.story-section h3 .emoji {
    font-size: 1.5rem;
}

.story-section p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.story-section p strong {
    color: var(--text-main);
}

.story-section p em {
    color: var(--primary-dark);
    font-style: italic;
}

/* Story Flex Layout (Image + Text) */
.story-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.story-row {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.story-row.reverse {
    flex-direction: row-reverse;
}

.story-text {
    flex: 1;
}

.story-image {
    flex: 1;
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
    border: 5px solid white;
}

.story-row.reverse .story-image img {
    transform: rotate(2deg);
}

.story-image:hover img {
    transform: rotate(0);
    scale: 1.02;
}

/* Quote Section Special Styling */
.story-quote-container {
    text-align: center;
    margin: 4rem 0;
    position: relative;
}

.story-quote-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(255, 139, 167, 0.15);
    display: inline-block;
    position: relative;
    max-width: 800px;
}

.story-quote-card p {
    font-family: 'Caveat', cursive;
    font-size: 2.2rem;
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {

    .story-row,
    .story-row.reverse {
        flex-direction: column;
        gap: 1.5rem;
    }

    .story-image img {
        transform: rotate(0) !important;
        max-height: 300px;
        object-fit: cover;
    }

    .story-quote-card {
        padding: 2rem;
    }

    .story-quote-card p {
        font-size: 1.6rem;
    }
}

/* Founder Signature */
.story-signature {
    text-align: right;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.story-signature p {
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    color: var(--text-main);
    margin: 0;
}

.story-signature .signature-icon {
    font-size: 1.5rem;
    margin-left: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-us-section {
        padding: 3rem 5%;
    }

    .story-card {
        padding: 2rem 1.5rem;
    }

    .story-card::before {
        font-size: 5rem;
        top: -10px;
        left: 15px;
    }

    .about-us-header h2 {
        font-size: 2rem;
    }

    .story-highlight {
        font-size: 1.3rem;
    }

    .story-quote p {
        font-size: 1.4rem;
    }

    .story-signature p {
        font-size: 1.2rem;
    }
}

/* =========================================
   New Story Grid Layout (Zig-Zag)
   ========================================= */
.story-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.story-row {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.story-row.reverse {
    flex-direction: row-reverse;
}

.story-text {
    flex: 1;
}

.story-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.story-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 8px solid white;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.story-row.reverse .story-image img {
    transform: rotate(2deg);
}

.story-image:hover img {
    transform: rotate(0) scale(1.02);
}

.story-highlight {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin: 1.5rem 0;
    line-height: 1.4;
    padding-left: 1rem;
    border-left: 3px solid var(--primary);
}

.story-quote-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.story-quote-card {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 139, 167, 0.15);
    max-width: 800px;
    border: 1px solid rgba(255, 139, 167, 0.2);
}

.story-quote-card p {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin: 0;
}

@media (max-width: 768px) {

    .story-row,
    .story-row.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .story-image img {
        transform: rotate(0) !important;
        max-width: 100%;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-main);
    padding: 0.5rem;
    z-index: 110;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-overlay.active {
    display: flex;
}

.mobile-nav-overlay a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s;
}

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