/* ========== VARIABLES Y RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta refinada y elegante */
    --primary: #4A5568;
    --primary-light: #718096;
    --primary-dark: #2D3748;

    --accent: #38A169;
    --accent-light: #48BB78;
    --accent-dark: #2F855A;
    --accent-bg: rgba(56, 161, 105, 0.08);

    --gold: #C69C6D;
    --gold-light: #D4AF7A;
    --gold-dark: #B8860B;
    --gold-bg: rgba(198, 156, 109, 0.08);

    --warm: #9F7E69;
    --rose: #C53030;
    --rose-bg: rgba(197, 48, 48, 0.06);

    /* Textos elegantes */
    --text-primary: #1A202C;
    --text-secondary: #4A5568;
    --text-muted: #718096;
    --text-subtle: #A0AEC0;
    --text-light: #CBD5E0;

    /* Fondos con vida */
    --bg-base: #F8F6F3;
    --bg-warm: #FAF8F5;
    --bg-cream: #FDFBF8;
    --bg-sand: #F5F2EE;
    --bg-stone: #EFECEA;
    --bg-elevated: #FFFFFE;
    --bg-dark: #1A202C;
    --bg-dark-soft: #2D3748;

    /* Bordes sutiles */
    --border-light: rgba(0,0,0,0.06);
    --border-medium: rgba(0,0,0,0.08);
    --border-warm: rgba(159, 126, 105, 0.15);

    /* Sombras elegantes multinivel */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.04);
    --shadow-inner: inset 0 2px 4px rgba(0,0,0,0.04);
    --shadow-glow: 0 0 60px rgba(56, 161, 105, 0.15);
    --shadow-gold: 0 0 40px rgba(198, 156, 109, 0.2);

    /* Transiciones suaves */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 150ms var(--ease-out);
    --transition-base: 300ms var(--ease-out);
    --transition-slow: 500ms var(--ease-out);

    /* Bordes elegantes */
    --radius-xs: 2px;
    --radius-sm: 3px;
    --radius-md: 4px;
    --radius-lg: 6px;
}

/* ========== BASE ========== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ========== FONDOS CON VIDA ========== */
.bg-living {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(56, 161, 105, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(198, 156, 109, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 50% 80%, rgba(74, 85, 104, 0.03) 0%, transparent 50%);
    animation: bgShift 25s ease-in-out infinite;
}

@keyframes bgShift {
    0%, 100% { opacity: 1; filter: hue-rotate(0deg); }
    33% { opacity: 0.85; filter: hue-rotate(5deg); }
    66% { opacity: 0.95; filter: hue-rotate(-5deg); }
}

/* Aurora */
.aurora {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(56, 161, 105, 0.02) 20%, rgba(198, 156, 109, 0.015) 40%, transparent 60%);
    animation: auroraWave 15s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes auroraWave {
    0%, 100% { transform: translateX(0) skewX(0deg); opacity: 0.5; }
    50% { transform: translateX(5%) skewX(2deg); opacity: 0.8; }
}

/* Orbes de luz */
.light-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.light-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 20s ease-in-out infinite;
}

.light-orb:nth-child(1) {
    width: 400px;
    height: 400px;
    background: rgba(56, 161, 105, 0.06);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.light-orb:nth-child(2) {
    width: 350px;
    height: 350px;
    background: rgba(198, 156, 109, 0.05);
    top: 50%;
    right: 10%;
    animation-delay: -7s;
}

.light-orb:nth-child(3) {
    width: 300px;
    height: 300px;
    background: rgba(74, 85, 104, 0.04);
    bottom: 20%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(30px, -30px) scale(1.1); opacity: 0.8; }
    50% { transform: translate(-20px, 20px) scale(0.95); opacity: 0.5; }
    75% { transform: translate(15px, 10px) scale(1.05); opacity: 0.7; }
}

/* Partículas */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 18s infinite;
}

.particle.gold { background: var(--gold); width: 4px; height: 4px; }
.particle.green { background: var(--accent); width: 3px; height: 3px; }
.particle.white { background: rgba(255, 255, 255, 0.8); width: 2px; height: 2px; box-shadow: 0 0 6px rgba(255, 255, 255, 0.5); }

.particle:nth-child(1) { left: 8%; animation-delay: 0s; }
.particle:nth-child(2) { left: 15%; animation-delay: 2s; }
.particle:nth-child(3) { left: 25%; animation-delay: 4s; }
.particle:nth-child(4) { left: 35%; animation-delay: 1s; }
.particle:nth-child(5) { left: 45%; animation-delay: 3s; }
.particle:nth-child(6) { left: 55%; animation-delay: 5s; }
.particle:nth-child(7) { left: 65%; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 75%; animation-delay: 1.5s; }
.particle:nth-child(9) { left: 85%; animation-delay: 3.5s; }
.particle:nth-child(10) { left: 92%; animation-delay: 4.5s; }

@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg) scale(0); opacity: 0; }
    5% { opacity: 0.4; transform: translateY(90vh) rotate(45deg) scale(1); }
    50% { opacity: 0.6; }
    95% { opacity: 0.3; }
    100% { transform: translateY(-50px) rotate(360deg) scale(0.5); opacity: 0; }
}

/* Grain */
.grain {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 3;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    animation: grainShift 8s steps(10) infinite;
}

@keyframes grainShift {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-2%, -2%); }
    20% { transform: translate(2%, 2%); }
    30% { transform: translate(-1%, 1%); }
    40% { transform: translate(1%, -1%); }
    50% { transform: translate(-2%, 2%); }
    60% { transform: translate(2%, -2%); }
    70% { transform: translate(0%, 2%); }
    80% { transform: translate(-2%, 0%); }
    90% { transform: translate(2%, 0%); }
}

/* Líneas decorativas */
.decorative-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.012;
    background-image:
        linear-gradient(90deg, var(--gold) 1px, transparent 1px),
        linear-gradient(var(--gold) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: linesShift 60s linear infinite;
}

@keyframes linesShift {
    0% { background-position: 0 0; }
    100% { background-position: 80px 80px; }
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

/* ========== NAVEGACIÓN ========== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-base);
}

nav.scrolled {
    padding: 12px 0;
    background: rgba(248, 246, 243, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.logo:hover { transform: translateY(-1px); }

.logo-mark {
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md), var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.logo-mark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: logoShine 4s ease-in-out infinite;
}

@keyframes logoShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.logo-mark svg {
    width: 26px;
    height: 26px;
    stroke: white;
    stroke-width: 1.5;
    position: relative;
    z-index: 1;
}

.logo-text {
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

.logo-text span {
    font-weight: 400;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transition: var(--transition-fast);
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--accent); font-weight: 600; }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
    background: var(--text-primary) !important;
    color: white !important;
    padding: 12px 28px !important;
    border-radius: var(--radius-md) !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base) !important;
}

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

.nav-cta:hover {
    background: var(--accent) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), var(--shadow-glow) !important;
}

.nav-cta-secondary {
    background: transparent !important;
    color: var(--accent) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-md) !important;
    font-weight: 600 !important;
    border: 1px solid var(--accent) !important;
    transition: var(--transition-base) !important;
}

.nav-cta-secondary::after { display: none !important; }

.nav-cta-secondary:hover {
    background: var(--accent-bg) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm) !important;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.hero-waves svg {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 100%;
    animation: waveMove 25s linear infinite;
}

.hero-waves svg:nth-child(2) {
    animation-delay: -5s;
    opacity: 0.5;
}

@keyframes waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-circles {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border-warm);
    animation: circleFloat 8s ease-in-out infinite;
}

.hero-circle:nth-child(1) { width: 100%; height: 100%; top: 0; left: 0; animation-delay: 0s; }
.hero-circle:nth-child(2) { width: 80%; height: 80%; top: 10%; left: 10%; animation-delay: -2s; }
.hero-circle:nth-child(3) { width: 60%; height: 60%; top: 20%; left: 20%; animation-delay: -4s; }

@keyframes circleFloat {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.02) rotate(5deg); opacity: 0.5; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-content { max-width: 560px; }

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-md);
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm), var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(198, 156, 109, 0.15), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px var(--accent);
}

.hero-badge-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    animation: dotPulse 2s ease-out infinite;
}

@keyframes dotPulse {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.hero-badge span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: 0.02em;
}

.hero h1 {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
    margin-bottom: 28px;
    color: var(--text-primary);
}

.hero h1 .highlight {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--accent-bg), var(--gold-bg));
    z-index: -1;
    border-radius: 2px;
    opacity: 0.7;
}

.hero-subtitle {
    font-size: 1.1875rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
}

/* ========== BOTONES ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    box-shadow: var(--shadow-md), 0 4px 20px rgba(56, 161, 105, 0.25);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 8px 30px rgba(56, 161, 105, 0.35);
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--bg-cream);
    border-color: var(--border-warm);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

/* ========== TRUST BADGES ========== */
.trust-row {
    display: flex;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-bg) 0%, var(--gold-bg) 100%);
    opacity: 0;
    transition: var(--transition-base);
}

.trust-item:hover {
    border-color: var(--border-warm);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.trust-item:hover::before { opacity: 1; }

.trust-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, var(--bg-cream), var(--bg-sand));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

.trust-item:hover .trust-icon {
    background: linear-gradient(145deg, var(--accent), var(--accent-light));
}

.trust-item:hover .trust-icon svg { stroke: white; }

.trust-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    transition: var(--transition-fast);
}

.trust-text {
    font-size: 0.8125rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.trust-text strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-primary);
    font-weight: 700;
}

/* ========== HERO VISUAL ========== */
.hero-visual {
    position: relative;
    height: 560px;
}

.globe-container {
    position: absolute;
    width: 440px;
    height: 440px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-ring {
    position: absolute;
    border: 1px dashed var(--border-warm);
    border-radius: 50%;
    animation: orbitRotate 30s linear infinite;
}

.orbit-ring:nth-child(1) { width: 500px; height: 500px; top: -30px; left: -30px; }
.orbit-ring:nth-child(2) { width: 560px; height: 560px; top: -60px; left: -60px; animation-direction: reverse; animation-duration: 40s; }

.orbit-ring::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    box-shadow: 0 0 10px var(--gold);
}

@keyframes orbitRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.globe {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9) 0%, transparent 40%),
        linear-gradient(145deg, #E8F0E8 0%, #D4E4DC 40%, #C0D8C8 70%, #E0EBE4 100%);
    box-shadow:
        var(--shadow-xl),
        inset 0 -40px 80px rgba(56, 161, 105, 0.08),
        inset 0 40px 80px rgba(255, 255, 255, 0.9),
        0 0 100px rgba(56, 161, 105, 0.12);
    position: relative;
    overflow: hidden;
    animation: globeFloat 6s ease-in-out infinite, globeGlow 4s ease-in-out infinite;
}

@keyframes globeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes globeGlow {
    0%, 100% { box-shadow: var(--shadow-xl), inset 0 -40px 80px rgba(56, 161, 105, 0.08), inset 0 40px 80px rgba(255, 255, 255, 0.9), 0 0 80px rgba(56, 161, 105, 0.1); }
    50% { box-shadow: var(--shadow-xl), inset 0 -40px 80px rgba(56, 161, 105, 0.12), inset 0 40px 80px rgba(255, 255, 255, 0.95), 0 0 120px rgba(56, 161, 105, 0.18); }
}

.globe::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, transparent 60%);
    border-radius: 50%;
    animation: globeShine 3s ease-in-out infinite;
}

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

.globe-land {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.35;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath fill='%2338A169' d='M60 40c10-5 25-3 35 5s15 25 10 35-20 15-30 10-25-15-20-30 5-15 5-20zM120 80c8-3 18 0 25 8s10 20 5 28-15 12-23 8-15-12-12-22 5-18 5-22zM45 110c12 0 22 8 25 18s-2 22-12 27-24 2-30-8-3-22 7-30 10-7 10-7zM130 130c10 5 15 15 12 25s-12 18-22 18-20-8-22-18 5-20 15-25 17 0 17 0z'/%3E%3C/svg%3E") center/75% no-repeat;
    animation: continentRotate 60s linear infinite;
}

@keyframes continentRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.globe-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.15;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cellipse cx='100' cy='100' rx='90' ry='90' fill='none' stroke='%234A5568' stroke-width='0.3'/%3E%3Cellipse cx='100' cy='100' rx='90' ry='45' fill='none' stroke='%234A5568' stroke-width='0.3'/%3E%3Cellipse cx='100' cy='100' rx='45' ry='90' fill='none' stroke='%234A5568' stroke-width='0.3'/%3E%3Cline x1='10' y1='100' x2='190' y2='100' stroke='%234A5568' stroke-width='0.3'/%3E%3Cline x1='100' y1='10' x2='100' y2='190' stroke='%234A5568' stroke-width='0.3'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Connection dots */
.connection-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid white;
    box-shadow: var(--shadow-sm), 0 0 20px rgba(198, 156, 109, 0.5);
    z-index: 5;
    animation: dotBreathe 3s ease-in-out infinite;
}

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

.connection-dot::before,
.connection-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid var(--gold);
}

.connection-dot::before { width: 24px; height: 24px; animation: dotRipple 2s ease-out infinite; }
.connection-dot::after { width: 36px; height: 36px; animation: dotRipple 2s ease-out infinite 0.5s; }

@keyframes dotRipple {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

.dot-1 { top: 25%; left: 30%; background: var(--accent); box-shadow: var(--shadow-sm), 0 0 20px rgba(56, 161, 105, 0.5); animation-delay: 0s; }
.dot-1::before, .dot-1::after { border-color: var(--accent); }
.dot-2 { top: 40%; left: 65%; animation-delay: 0.7s; }
.dot-3 { top: 60%; left: 35%; background: var(--primary); box-shadow: var(--shadow-sm), 0 0 20px rgba(74, 85, 104, 0.5); animation-delay: 1.4s; }
.dot-3::before, .dot-3::after { border-color: var(--primary); }
.dot-4 { top: 50%; left: 52%; animation-delay: 0.3s; }

/* Float cards */
.float-card {
    position: absolute;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    gap: 14px;
    box-shadow: var(--shadow-lg);
    max-width: 230px;
    z-index: 10;
    animation: cardFloat 5s ease-in-out infinite;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.float-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--accent), var(--gold));
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    transition: var(--transition-base);
}

.float-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-warm);
}

.float-card:hover::before { height: 100%; }

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.float-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, var(--bg-sand), var(--bg-stone));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.float-card:hover .float-card-icon {
    background: linear-gradient(145deg, var(--accent-bg), var(--gold-bg));
}

.float-card-icon svg { width: 22px; height: 22px; stroke: var(--accent); }
.float-card-icon.gold svg { stroke: var(--gold); }
.float-card-icon.primary svg { stroke: var(--primary); }

.float-card-content h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.float-card-content p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.verified-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-bg);
    padding: 3px 8px;
    border-radius: var(--radius-xs);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.verified-tag svg { width: 10px; height: 10px; }

.card-pos-1 { top: 5%; left: -5%; animation-delay: 0s; }
.card-pos-2 { top: 25%; right: -10%; animation-delay: -1.25s; }
.card-pos-3 { bottom: 25%; left: -10%; animation-delay: -2.5s; }
.card-pos-4 { bottom: 5%; right: -5%; animation-delay: -3.75s; }

/* ========== STATS ========== */
.stats-section {
    padding: 80px 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 24px;
    position: relative;
    transition: var(--transition-base);
}

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

.stat-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--border-medium), transparent);
}

.stat-card:last-child::after { display: none; }

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: numberGlow 3s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ========== QUOTE ========== */
.quote-section {
    padding: 120px 0;
    background: linear-gradient(145deg, var(--bg-dark) 0%, var(--bg-dark-soft) 100%);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(56, 161, 105, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(198, 156, 109, 0.1) 0%, transparent 40%);
    pointer-events: none;
    animation: quoteGlow 8s ease-in-out infinite;
}

@keyframes quoteGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.quote-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote-mark {
    font-size: 120px;
    font-family: Georgia, serif;
    color: var(--gold);
    opacity: 0.2;
    line-height: 0.5;
    margin-bottom: 20px;
    animation: quoteFloat 4s ease-in-out infinite;
}

@keyframes quoteFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.quote-content blockquote {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.quote-content cite {
    font-size: 0.9375rem;
    color: var(--text-subtle);
    font-style: normal;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.quote-content cite::before,
.quote-content cite::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ========== SECTION COMMON ========== */
.section {
    padding: 120px 0;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    box-shadow: var(--shadow-xs);
}

.section-tag svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.15;
}

.section-header p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== PAGE HERO ========== */
.page-hero {
    padding: 180px 0 100px;
    background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-warm) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    border: 1px solid var(--border-warm);
    border-radius: 50%;
    opacity: 0.3;
    animation: decorCircle 20s linear infinite;
}

@keyframes decorCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

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

.page-hero p {
    font-size: 1.1875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== MISSION ========== */
.mission-section {
    background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-warm) 50%, var(--bg-sand) 100%);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.15;
}

.mission-content h2 .accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission-content > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-features { margin-top: 36px; }

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.feature-item:hover {
    padding-left: 12px;
    border-bottom-color: var(--border-warm);
}

.feature-item:last-child { border-bottom: none; }

.feature-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(145deg, var(--accent-bg), var(--gold-bg));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.feature-item:hover .feature-icon {
    background: linear-gradient(145deg, var(--accent), var(--accent-light));
    transform: scale(1.1);
}

.feature-item:hover .feature-icon svg { stroke: white; }

.feature-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    transition: var(--transition-fast);
}

.feature-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Mission cards */
.mission-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mission-card {
    padding: 28px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--accent), var(--gold));
    transition: var(--transition-base);
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-warm);
}

.mission-card:hover::before { height: 100%; }

.mission-card.highlight {
    grid-column: span 2;
    background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
    border: none;
    color: white;
}

.mission-card.highlight::before { display: none; }

.mission-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, var(--bg-sand), var(--bg-stone));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-base);
}

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

.mission-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.mission-card.highlight .mission-card-icon {
    background: rgba(255, 255, 255, 0.15);
}

.mission-card.highlight .mission-card-icon svg { stroke: white; }

.mission-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.mission-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.mission-card.highlight p {
    color: rgba(255, 255, 255, 0.85);
}

/* ========== INFO CARDS ========== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-card {
    padding: 32px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.5) 100%);
    opacity: 0;
    transition: var(--transition-base);
    pointer-events: none;
}

.info-card.problem { border-left: 3px solid var(--rose); }
.info-card.solution { border-left: 3px solid var(--accent); }

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.info-card:hover::after { opacity: 1; }

.info-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.info-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.info-card:hover .info-card-icon { transform: scale(1.1); }

.info-card.problem .info-card-icon { background: var(--rose-bg); }
.info-card.problem .info-card-icon svg { stroke: var(--rose); }
.info-card.solution .info-card-icon { background: var(--accent-bg); }
.info-card.solution .info-card-icon svg { stroke: var(--accent); }

.info-card-icon svg { width: 22px; height: 22px; }

.info-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.info-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ========== PRINCIPLES ========== */
.principles-section {
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-light);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.principle-card {
    text-align: center;
    padding: 36px 20px;
    background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-warm) 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    position: relative;
}

.principle-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transform: scaleX(0);
    transition: var(--transition-base);
}

.principle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-warm);
}

.principle-card:hover::after { transform: scaleX(1); }

.principle-num {
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-sm), 0 4px 15px rgba(56, 161, 105, 0.2);
    transition: var(--transition-base);
}

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

.principle-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.principle-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ========== CATEGORIES ========== */
.categories-section {
    background: var(--bg-sand);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.category-card {
    padding: 32px 20px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--cat-color, var(--accent));
    transform: scaleX(0);
    transition: var(--transition-base);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.category-card:hover::before { transform: scaleX(1); }

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, var(--bg-cream), var(--bg-sand));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-base);
}

.category-card:hover .category-icon {
    background: linear-gradient(145deg, var(--accent-bg), var(--gold-bg));
    transform: scale(1.1);
}

.category-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--cat-color, var(--accent));
}

.category-percent {
    font-size: 2rem;
    font-weight: 800;
    color: var(--cat-color, var(--accent));
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.category-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.category-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ========== CTA ========== */
.cta-section {
    padding: 140px 0;
    background: linear-gradient(145deg, var(--bg-dark) 0%, var(--bg-dark-soft) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(56, 161, 105, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(198, 156, 109, 0.12) 0%, transparent 40%);
    pointer-events: none;
    animation: ctaGlow 6s ease-in-out infinite;
}

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

.cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 50%;
    animation: ctaCircle 30s linear infinite;
}

@keyframes ctaCircle {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(198, 156, 109, 0.1);
    border: 1px solid rgba(198, 156, 109, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 36px;
    animation: ctaIconFloat 4s ease-in-out infinite;
}

@keyframes ctaIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.cta-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--gold);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.cta-content h2 .glow {
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.0625rem;
    color: var(--text-subtle);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ========== FOOTER ========== */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-dark);
    color: var(--text-subtle);
}

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

.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo-text { color: white; }
.footer-brand > p { font-size: 0.875rem; line-height: 1.7; }

.footer-links h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: var(--text-subtle);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition-fast);
}

.footer-links a:hover { color: white; }
.footer-links a:hover::after { width: 100%; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p { font-size: 0.8125rem; }

/* ========== SCROLL REVEAL ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* ========== TOOLTIPS PARA TÉRMINOS TÉCNICOS ========== */
.tooltip-term {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-bottom: 1px dashed var(--accent);
    cursor: help;
    transition: var(--transition-fast);
}

.tooltip-term:hover {
    color: var(--accent);
}

.tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: var(--accent-bg);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}

.tooltip-content {
    position: fixed;
    width: 280px;
    max-width: calc(100vw - 20px);
    padding: 16px;
    background: #1a202c;
    color: #fff;
    border-radius: 12px;
    font-size: 0.8125rem;
    line-height: 1.6;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 8px 20px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 999999;
    pointer-events: none;
    transform: scale(0.95);
    text-align: left;
}

.tooltip-content::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
}

/* Flecha arriba (tooltip abajo del icono) */
.tooltip-content.show-below::before {
    bottom: 100%;
    border-bottom-color: #1a202c;
}

/* Flecha abajo (tooltip arriba del icono) */
.tooltip-content.show-above::before {
    top: 100%;
    border-top-color: #1a202c;
}

.tooltip-content strong {
    display: block;
    color: #c69c6d;
    margin-bottom: 6px;
    font-size: 0.875rem;
}

.tooltip-content.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
}

/* ========== IMPACT NUMBERS ========== */
.impact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-sand) 100%);
}

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

.impact-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.impact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-warm);
}

.impact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, var(--accent-bg), var(--gold-bg));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition-base);
}

.impact-card:hover .impact-icon {
    background: linear-gradient(145deg, var(--accent), var(--accent-light));
    transform: scale(1.1);
}

.impact-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent);
    transition: var(--transition-fast);
}

.impact-card:hover .impact-icon svg {
    stroke: white;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.impact-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.impact-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== TESTIMONIAL / STORY SECTION ========== */
.story-section {
    padding: 120px 0;
    background: var(--bg-elevated);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content {
    max-width: 520px;
}

.story-content h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.story-content h2 .accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-content blockquote {
    padding: 20px 24px;
    background: var(--accent-bg);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-primary);
    margin: 24px 0;
}

.story-visual {
    position: relative;
}

.story-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, var(--bg-sand), var(--bg-stone));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
}

.story-image-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: var(--accent);
    opacity: 0.5;
    margin-bottom: 16px;
}

.story-image-placeholder span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ========== COMPARISON TABLE ========== */
.comparison-section {
    padding: 120px 0;
    background: var(--bg-sand);
}

.comparison-table-wrapper {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
    background: var(--bg-sand);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.comparison-table th.highlight {
    background: var(--accent);
    color: white;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: var(--bg-cream);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.table-badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: var(--radius-xs);
    font-size: 0.75rem;
    font-weight: 600;
}

.table-badge.negative {
    background: var(--rose-bg);
    color: var(--rose);
}

.table-badge.positive {
    background: var(--accent-bg);
    color: var(--accent);
}

.table-badge.neutral {
    background: var(--gold-bg);
    color: var(--gold-dark);
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 120px 0;
    background: var(--bg-warm);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    padding: 28px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: var(--border-warm);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-item h3::before {
    content: '?';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--accent-bg);
    color: var(--accent);
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.faq-item p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 40px;
}

/* ========== PROCESS STEPS ========== */
.process-section {
    padding: 120px 0;
    background: var(--bg-elevated);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    padding: 32px 0;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 39px;
    top: 80px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--gold));
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    box-shadow: var(--shadow-md), 0 4px 20px rgba(56, 161, 105, 0.25);
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.step-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.step-detail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--accent-bg);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    color: var(--accent-dark);
}

.step-detail svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent);
}

/* ========== HIGHLIGHT BOX ========== */
.highlight-box {
    padding: 32px;
    background: linear-gradient(145deg, var(--accent-bg), var(--gold-bg));
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-lg);
    margin: 40px 0;
}

.highlight-box.dark {
    background: linear-gradient(145deg, var(--bg-dark), var(--bg-dark-soft));
    border-color: rgba(255,255,255,0.1);
    color: white;
}

.highlight-box h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-box h3 svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.highlight-box.dark h3 svg {
    stroke: var(--gold);
}

.highlight-box p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.highlight-box.dark p {
    color: var(--text-subtle);
}

/* ========== RESPONSIVE ADDITIONS ========== */
@media (max-width: 992px) {
    .impact-grid { grid-template-columns: 1fr; }
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .faq-grid { grid-template-columns: 1fr; }
    .process-step { grid-template-columns: 60px 1fr; gap: 24px; }
    .step-number { width: 60px; height: 60px; font-size: 1.5rem; }
    .process-step:not(:last-child)::after { left: 29px; }
}

@media (max-width: 768px) {
    .tooltip-content { width: 240px; font-size: 0.75rem; padding: 12px; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .principles-grid, .categories-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .hero-grid, .mission-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { height: 480px; }
    .hero-circles { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .hero h1 { font-size: 2.5rem; }
    .page-hero h1 { font-size: 2.25rem; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-elevated);
        flex-direction: column;
        padding: 100px 24px 24px;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s var(--ease-out);
        z-index: 1000;
        overflow-y: auto;
    }
    .nav-links.active { right: 0; }
    .nav-links li { width: 100%; }
    .nav-links a {
        padding: 16px 0;
        border-bottom: 1px solid var(--border-light);
        width: 100%;
        display: block;
    }
    .nav-links a::after { display: none; }
    .nav-cta, .nav-cta-secondary {
        margin-top: 16px;
        text-align: center;
        width: 100%;
    }
    .principles-grid, .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .cards-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 2rem; }
    .cta-content h2 { font-size: 1.875rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .trust-row { flex-direction: column; gap: 16px; }
    .section { padding: 80px 0; }
}

/* Menú hamburguesa */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-base);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
}
.nav-overlay.active { opacity: 1; visibility: visible; }

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
}
@media (min-width: 769px) {
    .nav-toggle, .nav-overlay { display: none; }
}

/* ========== BREAKPOINT 480px - MÓVILES PEQUEÑOS ========== */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding: 100px 0 60px; }
    .hero h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions { flex-direction: column; gap: 12px; }
    .hero-badge { padding: 8px 12px; font-size: 0.75rem; }
    .page-hero { padding: 120px 0 60px; }
    .page-hero h1 { font-size: 1.75rem; }
    .page-hero p { font-size: 1rem; }
    .section { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 1.625rem; }
    .section-header p { font-size: 0.9375rem; }
    .stats-grid { grid-template-columns: 1fr; gap: 16px; }
    .stat-number { font-size: 2.25rem; }
    .stat-card::after { display: none; }
    .principles-grid, .categories-grid { grid-template-columns: 1fr; }
    .principle-card { padding: 24px 16px; }
    .btn { width: 100%; justify-content: center; }
    .btn-lg { padding: 14px 24px; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .mission-cards { grid-template-columns: 1fr; }
    .mission-card.highlight { grid-column: span 1; }
    .impact-grid { gap: 16px; }
    .impact-card { padding: 24px 20px; }
    .impact-number { font-size: 2rem; }
    .quote-section { padding: 60px 0; }
    .quote-content blockquote { font-size: 1.375rem; }
    .quote-mark { font-size: 80px; }
    .cta-section { padding: 80px 0; }
    .cta-content h2 { font-size: 1.5rem; }
    .cta-icon { width: 60px; height: 60px; }
    .cta-icon svg { width: 28px; height: 28px; }
    .process-step { grid-template-columns: 50px 1fr; gap: 16px; }
    .step-number { width: 50px; height: 50px; font-size: 1.25rem; }
    .process-step:not(:last-child)::after { left: 24px; }
    .faq-item { padding: 20px; }
    .faq-item p { padding-left: 0; }
    .comparison-table-wrapper { overflow-x: auto; }
    .comparison-table th, .comparison-table td { padding: 12px 16px; font-size: 0.8125rem; }
    .footer { padding: 60px 0 30px; }
    .footer-grid { gap: 32px; }
    .hero-visual { height: 320px; }
    .globe-container { width: 280px; height: 280px; }
    .float-card { display: none; }
    .trust-row { gap: 12px; }
    .trust-item { padding: 10px 12px; }
    .trust-icon { width: 36px; height: 36px; }
    .trust-text { font-size: 0.75rem; }
    .trust-text strong { font-size: 0.8125rem; }
    .tooltip-content { width: 220px; font-size: 0.75rem; }
}

/* ========== CLASES UTILITARIAS ========== */
/* Espaciado */
.py-60 { padding-top: 60px; padding-bottom: 60px; }
.py-80 { padding-top: 80px; padding-bottom: 80px; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.pl-40 { padding-left: 40px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.gap-6 { gap: 6px; }
.gap-8 { gap: 8px; }
.gap-10 { gap: 10px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }

/* Backgrounds */
.bg-sand { background: var(--bg-sand); }
.bg-stone { background: var(--bg-stone); }
.bg-warm { background: var(--bg-warm); }
.bg-elevated { background: var(--bg-elevated); }
.bg-accent-light { background: var(--accent-bg); }
.bg-gold-light { background: var(--gold-bg); }
.bg-gradient-sand { background: linear-gradient(180deg, var(--bg-sand) 0%, var(--bg-warm) 100%); }
.bg-gradient-accent { background: linear-gradient(180deg, var(--accent-bg) 0%, var(--bg-warm) 100%); }
.bg-gradient-accent-gold { background: linear-gradient(145deg, var(--accent-bg), var(--gold-bg)); }

/* Texto */
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-accent { color: var(--accent); }
.text-rose { color: var(--rose); }
.text-center { text-align: center; }
.font-normal { font-style: normal; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Layout */
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-column { flex-direction: column; }
.align-start { align-items: flex-start; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.direction-rtl { direction: rtl; }
.direction-ltr { direction: ltr; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* Componentes específicos */
.icon-rose { stroke: var(--rose); }
.icon-accent { stroke: var(--accent); }
.icon-shrink-0 { flex-shrink: 0; }
.section-tag--rose { border-color: rgba(197, 48, 48, 0.15); }
.list-none { list-style: none; padding: 0; }
.list-item-row { padding: 8px 0; display: flex; gap: 10px; align-items: flex-start; }
.border-left-accent { border-left: 3px solid var(--accent); }

/* Cards info grandes */
.info-card--large { padding: 40px; }
.info-card-icon--large { width: 60px; height: 60px; }
.info-card-title--large { font-size: 1.375rem; }

/* Highlight boxes */
.highlight-box--accent { padding: 16px; background: var(--accent-bg); border-radius: var(--radius-md); }
.highlight-box--gold { padding: 16px; background: var(--gold-bg); border-radius: var(--radius-md); }
.highlight-box--info { padding: 20px; background: var(--gold-bg); border-radius: var(--radius-md); margin: 24px 0; }

/* ========== LOGIN PAGE ========== */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.login-container {
    width: 100%;
    max-width: 440px;
    text-align: center;
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.login-logo .logo-mark {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.login-logo .logo-mark svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 1.5;
}

.login-logo .logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.login-logo .logo-text span {
    color: var(--accent);
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-bg);
    border: 1px solid rgba(198, 156, 109, 0.2);
    color: var(--gold-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse-soft 2s ease-in-out infinite;
}

@keyframes pulse-soft {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.login-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.login-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    background: var(--bg-warm);
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-bg);
    background: white;
}

.form-group input::placeholder {
    color: var(--text-subtle);
}

.login-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    margin-top: 0.5rem;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.login-btn:active {
    transform: translateY(0);
}

.error-message {
    background: var(--rose-bg);
    border: 1px solid rgba(197, 48, 48, 0.2);
    color: var(--rose);
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.login-footer {
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.login-footer p {
    margin-bottom: 0.5rem;
}

.features-preview {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature-item {
    padding: 1rem;
    background: var(--bg-warm);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    text-align: center;
}

.feature-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    margin-bottom: 0.5rem;
}

.feature-item span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Login responsive */
@media (max-width: 480px) {
    .login-page { padding: 1rem; }
    .login-container { max-width: 100%; }
    .login-card { padding: 1.5rem; }
    .login-title { font-size: 1.25rem; }
    .login-subtitle { font-size: 0.875rem; }
    .features-preview { grid-template-columns: 1fr; gap: 0.75rem; }
    .feature-item { padding: 0.75rem; }
    .login-logo .logo-text { font-size: 1.5rem; }
    .login-logo .logo-mark { width: 40px; height: 40px; }
}

/* ========== SELECTOR DE IDIOMA CON BANDERAS ========== */
.language-selector {
    margin-left: 1rem;
    display: flex;
    gap: 8px;
}

.language-selector .lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
}

.language-selector .lang-btn:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

.language-selector .lang-btn.active {
    background: var(--accent-bg);
    border-color: var(--accent);
    color: var(--accent-dark);
    font-weight: 500;
}

.language-selector .lang-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}

.language-selector .lang-flag svg {
    width: 100%;
    height: 100%;
    display: block;
}

.language-selector .lang-code {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.footer .language-selector {
    margin-left: 0;
    margin-top: 1rem;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .language-selector {
        margin: 16px 0;
        width: 100%;
        justify-content: center;
    }
    .language-selector .lang-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 16px;
    }
}

/* ========== PANEL ACCESS SECTION ========== */
.section-panel-access {
    padding: 2rem 0 3rem;
}

.panel-access-card {
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    border: 2px solid var(--accent);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.15), 
                0 0 0 1px rgba(var(--accent-rgb), 0.1);
    position: relative;
    overflow: hidden;
}

.panel-access-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
}

.panel-access-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.panel-access-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background: var(--accent-bg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-access-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent);
}

.panel-access-text {
    flex: 1;
}

.panel-access-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.panel-access-text p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.panel-access-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

.panel-access-btn svg {
    width: 20px;
    height: 20px;
}

.panel-access-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.panel-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.panel-feature svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.panel-feature span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 900px) {
    .panel-access-content {
        flex-direction: column;
        text-align: center;
    }
    
    .panel-access-text {
        text-align: center;
    }
    
    .panel-access-features {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .panel-feature {
        min-width: 80px;
    }
}

@media (max-width: 600px) {
    .panel-access-card {
        padding: 1.5rem;
    }
    
    .panel-access-text h2 {
        font-size: 1.25rem;
    }
    
    .panel-access-btn {
        width: 100%;
        justify-content: center;
    }
    
    .panel-access-features {
        gap: 1rem;
    }
    
    .panel-feature {
        min-width: 70px;
    }
}

/* ========== IMMUTABILITY & COMMUNITY LISTS ========== */
.immutability-list,
.community-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.immutability-item,
.community-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.immutability-icon,
.community-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.immutability-icon {
    stroke: var(--rose);
}

.community-icon {
    stroke: var(--accent);
}

.immutability-item span,
.community-item span {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.4;
}

/* ========== CHECK LIST ========== */
.check-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--accent);
    margin-top: 2px;
}

.check-list li span {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.check-list li span strong {
    color: var(--text-primary);
}

/* ========== NUMBERED LIST ========== */
.numbered-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.numbered-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.numbered-list .list-num {
    font-weight: 700;
    color: var(--accent);
    font-size: 1rem;
    min-width: 1.5rem;
}

.numbered-list li > span:last-child {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.numbered-list li > span:last-child strong {
    color: var(--text-primary);
}

/* ========== LANGUAGE DROPDOWN ========== */
.language-dropdown {
    position: relative;
    margin-left: 1rem;
}

.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-dropdown-toggle:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

.lang-dropdown-toggle .lang-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}

.lang-dropdown-toggle .lang-flag svg {
    width: 100%;
    height: 100%;
    display: block;
}

.lang-dropdown-toggle .lang-code {
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.lang-dropdown-toggle .dropdown-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.language-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    overflow: hidden;
}

.language-dropdown.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-menu form {
    margin: 0;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    background: none;
    border: none;
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: left;
}

.lang-option:hover {
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.lang-option.active {
    background: var(--accent-bg);
    color: var(--accent-dark);
    font-weight: 500;
}

.lang-option .lang-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}

.lang-option .lang-flag svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .language-dropdown {
        margin: 16px 0;
        width: 100%;
    }
    
    .lang-dropdown-toggle {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }
    
    .lang-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        display: none;
    }
    
    .language-dropdown.open .lang-dropdown-menu {
        display: block;
    }
    
    .lang-option {
        justify-content: center;
        padding: 12px;
    }
}
