/* ===========================================
   VIVAE LIFE - LANDING PAGE STYLES
   Brand Colors: Deep Blue (#2A3F8F), Sky Blue, White
   =========================================== */

/* === CSS Variables === */
:root {
    /* Brand Colors - Extracted from logo */
    --primary: #2A3F8F;
    --primary-dark: #1E2F6D;
    --primary-light: #3D5AAF;
    --secondary: #4A90D9;
    --accent: #7CB9E8;
    --accent-light: #B4D7F0;

    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-hero: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 50%, #0A1628 100%);
    --gradient-text: linear-gradient(90deg, var(--accent-light) 0%, var(--white) 50%, var(--accent-light) 100%);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Typography */
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;
    --font-size-6xl: 4.5rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(74, 144, 217, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* === Reset & Base === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

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

ul {
    list-style: none;
}

/* === Container === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(42, 63, 143, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: var(--radius-md);
    transition: transform var(--transition-base);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: var(--space-sm) 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-light);
    transition: width var(--transition-base);
}

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

.nav-cta {
    background: rgba(255, 255, 255, 0.15);
    padding: var(--space-sm) var(--space-lg) !important;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.25);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-base);
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), 0 0 60px rgba(74, 144, 217, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* === Section Styles === */
.section {
    padding: var(--space-4xl) 0;
}

.section-tag {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

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

/* === Hero Section === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--primary-dark);
    overflow: hidden;
    padding: var(--space-4xl) var(--space-xl);
}

/* Video Background - REPLACED with Animated Gradient */
/* Animated Mesh Gradient Background */
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(74, 144, 217, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(124, 185, 232, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 40% 80%, rgba(42, 63, 143, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse 70% 40% at 70% 20%, rgba(180, 215, 240, 0.25) 0%, transparent 50%),
        linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 40%, #0A1628 100%);
    animation: gradientShift 15s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes gradientShift {
    0% {
        filter: hue-rotate(0deg) brightness(1);
    }

    50% {
        filter: hue-rotate(10deg) brightness(1.1);
    }

    100% {
        filter: hue-rotate(-5deg) brightness(0.95);
    }
}

/* Floating Particles/Bubbles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5), rgba(124, 185, 232, 0.3));
    box-shadow: 0 0 20px rgba(124, 185, 232, 0.4);
    animation: floatUp linear infinite;
}

.particle-1 {
    width: 20px;
    height: 20px;
    left: 10%;
    bottom: -30px;
    animation-duration: 12s;
    animation-delay: 0s;
    opacity: 0.7;
}

.particle-2 {
    width: 35px;
    height: 35px;
    left: 25%;
    bottom: -50px;
    animation-duration: 18s;
    animation-delay: 2s;
    opacity: 0.5;
}

.particle-3 {
    width: 15px;
    height: 15px;
    left: 45%;
    bottom: -25px;
    animation-duration: 14s;
    animation-delay: 4s;
    opacity: 0.8;
}

.particle-4 {
    width: 25px;
    height: 25px;
    left: 65%;
    bottom: -40px;
    animation-duration: 16s;
    animation-delay: 1s;
    opacity: 0.6;
}

.particle-5 {
    width: 18px;
    height: 18px;
    left: 80%;
    bottom: -30px;
    animation-duration: 20s;
    animation-delay: 3s;
    opacity: 0.4;
}

.particle-6 {
    width: 30px;
    height: 30px;
    left: 90%;
    bottom: -45px;
    animation-duration: 15s;
    animation-delay: 5s;
    opacity: 0.5;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-110vh) rotate(360deg) scale(0.5);
        opacity: 0;
    }
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.08' d='M0,192L48,176C96,160,192,128,288,133.3C384,139,480,181,576,181.3C672,181,768,139,864,128C960,117,1056,139,1152,154.7C1248,171,1344,181,1392,186.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    animation: waveFloat 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes waveFloat {

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

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

.hero-content {
    max-width: 800px;
    z-index: 3;
    margin: 0 auto;
    text-align: center;
}

.hero-small {
    display: block;
    font-size: var(--font-size-xl);
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: var(--space-sm);
}

.hero-title {
    font-size: var(--font-size-6xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

.hero-title .gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.hero-visual {
    display: none;
}

.water-drop-container {
    position: relative;
    width: 280px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* GOTA ESTILO LLUVIA - Elegante y minimalista */
.drop {
    --size: 160px;
    width: var(--size);
    height: calc(var(--size) * 1.4);
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(100, 180, 255, 0.7) 20%,
            #3498db 50%,
            #2980b9 80%,
            #1a5276 100%);
    border-radius: 0 50% 50% 50%;
    transform: rotate(45deg);
    position: relative;
    box-shadow:
        0 20px 60px rgba(52, 152, 219, 0.5),
        0 0 80px rgba(52, 152, 219, 0.3),
        inset 10px 10px 30px rgba(255, 255, 255, 0.4),
        inset -5px -5px 20px rgba(26, 82, 118, 0.3);
    animation: floatDrop 4s ease-in-out infinite;
}

/* Reflejo principal */
.drop::before {
    content: "";
    position: absolute;
    width: 35%;
    height: 45%;
    top: 15%;
    left: 15%;
    background: radial-gradient(ellipse at center,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.5) 40%,
            transparent 70%);
    border-radius: 50%;
    transform: rotate(-45deg);
}

/* Reflejo secundario pequeño */
.drop::after {
    content: "";
    position: absolute;
    width: 15%;
    height: 20%;
    top: 50%;
    left: 25%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.8) 0%,
            transparent 70%);
    border-radius: 50%;
    transform: rotate(-45deg);
}

@keyframes floatDrop {

    0%,
    100% {
        transform: rotate(45deg) translateY(0) scale(1);
    }

    50% {
        transform: rotate(45deg) translateY(-15px) scale(1.02);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white);
    opacity: 0.6;
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--white);
    border-radius: 12px;
    position: relative;
}

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

@keyframes bounce {

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

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

@keyframes scroll {
    0% {
        opacity: 1;
        top: 6px;
    }

    100% {
        opacity: 0;
        top: 18px;
    }
}

/* === About Section === */
.about {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    padding: 0 var(--space-2xl);
}

.about-content {
    padding-right: var(--space-xl);
    padding-left: var(--space-lg);
}

.about-text {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--gray-200);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

.about-visual {
    position: relative;
}

.image-card {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42, 63, 143, 0.2) 0%, transparent 50%);
}

/* Video Card Styles */
.video-card {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 9/16;
    max-height: 500px;
    margin: 0 auto;
}

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

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-2xl);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42, 63, 143, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* === Benefits Section === */
.benefits {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.benefit-card {
    background: var(--off-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: var(--white);
    border-color: var(--gray-200);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

.benefit-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.benefit-card p {
    color: var(--gray-500);
    line-height: 1.7;
}

/* === Community Section === */
.community {
    background: var(--off-white);
}

.community .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.community-text {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.social-card {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
}

.social-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 26px;
    height: 26px;
}

.instagram .social-icon {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram .social-icon svg {
    stroke: var(--white);
}

.tiktok .social-icon {
    background: var(--gray-900);
}

.tiktok .social-icon svg {
    fill: var(--white);
}

.facebook .social-icon {
    background: #1877F2;
}

.facebook .social-icon svg {
    fill: var(--white);
}

.social-info {
    flex: 1;
}

.social-name {
    display: block;
    font-weight: 600;
    color: var(--gray-900);
}

.social-handle {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

.social-arrow {
    font-size: var(--font-size-xl);
    color: var(--gray-400);
    transition: transform var(--transition-base);
}

.social-card:hover .social-arrow {
    transform: translateX(5px);
    color: var(--primary);
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.gallery-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    background: linear-gradient(to top, rgba(42, 63, 143, 0.9) 0%, transparent 100%);
}

.gallery-tag {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

/* === CTA Section === */
.cta-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-waves {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath fill='%23f8fafc' d='M0,0 L0,40 Q720,80 1440,40 L1440,0 Z'%3E%3C/path%3E%3C/svg%3E") no-repeat top;
    background-size: 100% 100%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding-top: var(--space-2xl);
}

.cta-content h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.cta-content p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-2xl);
}

/* === Footer === */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo {
    height: 60px;
    width: auto;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.footer-brand p {
    color: var(--gray-400);
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: var(--gray-400);
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-contact p {
    color: var(--gray-400);
    font-size: var(--font-size-sm);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: var(--font-size-sm);
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .hero-title {
        font-size: var(--font-size-5xl);
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        margin: 0 auto;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

    .about-grid,
    .community .container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-content {
        padding-right: 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    :root {
        --font-size-5xl: 2.5rem;
        --font-size-6xl: 3rem;
        --font-size-4xl: 2rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(42, 63, 143, 0.98);
        flex-direction: column;
        padding: var(--space-xl);
        gap: var(--space-md);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

    .about-stats {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .stat {
        padding: var(--space-md);
        background: var(--white);
        border-radius: var(--radius-lg);
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    .hero {
        padding: var(--space-3xl) var(--space-md);
    }

    .container {
        padding: 0 var(--space-md);
    }

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

    .footer-brand p {
        max-width: none;
    }

    .community-visual {
        order: -1;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --font-size-5xl: 2rem;
        --font-size-6xl: 2.25rem;
        --font-size-4xl: 1.75rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .social-card {
        padding: var(--space-md);
    }
}

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* === Print Styles === */
@media print {

    .navbar,
    .hero-visual,
    .scroll-indicator,
    .cta-section {
        display: none;
    }

    .hero {
        min-height: auto;
        background: none;
        color: var(--gray-900);
    }

    .hero-title {
        color: var(--gray-900);
    }
}