/* ============================================
   DELTATECH - THE ULTIMATE COMPANY LANDING
   ============================================ */

/* Scrollbar Personalizado - Translúcido con Colores de Marca */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(248, 250, 252, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, 
        rgba(30, 64, 175, 0.4) 0%, 
        rgba(26, 95, 63, 0.4) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, 
        rgba(30, 64, 175, 0.6) 0%, 
        rgba(26, 95, 63, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    transform: scaleY(1.05);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, 
        rgba(30, 64, 175, 0.7) 0%, 
        rgba(26, 95, 63, 0.7) 100%);
    box-shadow: 0 2px 6px rgba(30, 64, 175, 0.4);
}

/* Modo Oscuro - Scrollbar Translúcido */
[data-theme="dark"] ::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

[data-theme="dark"] ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, 
        rgba(59, 130, 246, 0.35) 0%, 
        rgba(34, 197, 94, 0.35) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, 
        rgba(59, 130, 246, 0.55) 0%, 
        rgba(34, 197, 94, 0.55) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

[data-theme="dark"] ::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, 
        rgba(59, 130, 246, 0.65) 0%, 
        rgba(34, 197, 94, 0.65) 100%);
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.4);
}

/* Firefox Scrollbar - Translúcido */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(30, 64, 175, 0.4) rgba(248, 250, 252, 0.3);
}

[data-theme="dark"] * {
    scrollbar-color: rgba(59, 130, 246, 0.35) rgba(15, 23, 42, 0.4);
}

/* CSS Variables - Colores de marca DeltaTech */
:root {
    --primary: #1e40af; /* Azul DELTA del logo */
    --primary-dark: #1a5f3f; /* Verde oscuro del fondo del logo */
    --primary-light: #3b82f6;
    --accent: #1a5f3f; /* Verde oscuro del logo */
    --accent-light: #22c55e;
    --brand-green: #1a5f3f;
    --brand-blue: #1e40af;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #94a3b8;
    --bg-main: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --primary: #3b82f6; /* Azul más claro para modo oscuro */
    --primary-dark: #1e40af; /* Azul DELTA */
    --primary-light: #60a5fa;
    --accent: #22c55e; /* Verde más claro para modo oscuro */
    --accent-light: #34d399;
    --brand-green: #22c55e;
    --brand-blue: #3b82f6;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-light: #94a3b8;
    --bg-main: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --border: #334155;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5), 0 4px 6px -4px rgb(0 0 0 / 0.4);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.6), 0 8px 10px -6px rgb(0 0 0 / 0.5);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.7);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-main);
    background-image: 
        radial-gradient(120% 120% at 100% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 55%),
        radial-gradient(110% 110% at -20% 20%, rgba(16, 185, 129, 0.06) 0%, transparent 60%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(16, 185, 129, 0.01) 2px, rgba(16, 185, 129, 0.01) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(16, 185, 129, 0.01) 2px, rgba(16, 185, 129, 0.01) 4px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
}

[data-theme="dark"] body {
    background-image: 
        radial-gradient(120% 120% at 100% 0%, rgba(59, 130, 246, 0.05) 0%, transparent 55%),
        radial-gradient(110% 110% at -20% 20%, rgba(16, 185, 129, 0.04) 0%, transparent 60%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(16, 185, 129, 0.015) 2px, rgba(16, 185, 129, 0.015) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(16, 185, 129, 0.015) 2px, rgba(16, 185, 129, 0.015) 4px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
}

[data-theme="dark"] .header {
    background: rgba(15, 23, 42, 0.8);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition);
}

.brand-logo {
    height: 36px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

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

.brand-link:hover .brand-text {
    opacity: 0.8;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-primary);
    position: relative;
}

.theme-toggle:hover {
    background: var(--bg-tertiary);
    transform: scale(1.05);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    position: absolute;
    transition: var(--transition);
}

.theme-toggle .icon-sun {
    opacity: 1;
    transform: rotate(0deg);
}

.theme-toggle .icon-moon {
    opacity: 0;
    transform: rotate(90deg);
}

[data-theme="dark"] .theme-toggle .icon-sun {
    opacity: 0;
    transform: rotate(90deg);
}

[data-theme="dark"] .theme-toggle .icon-moon {
    opacity: 1;
    transform: rotate(0deg);
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.navbar-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: var(--transition);
}

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

.theme-toggle-item {
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid var(--border);
    pointer-events: auto;
}

.theme-toggle-item .theme-toggle {
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    pointer-events: auto !important;
    position: relative;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle-item .theme-toggle * {
    pointer-events: none;
}

.theme-toggle-item {
    pointer-events: auto !important;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
}

.navbar-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
}

[data-theme="dark"] .hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #14532d 100%);
}

.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: floatOrb 20s ease-in-out infinite;
    z-index: 0;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.6) 0%, transparent 70%);
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 95, 63, 0.6) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.4) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 14s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pulse-badge {
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.gradient-text {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.magnetic {
    transition: transform 0.2s ease;
}

.magnetic:hover {
    transform: scale(1.05);
}

/* Countdown Container */
.countdown-container {
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.countdown-container.countdown-ready {
    cursor: pointer;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(0);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.countdown-container.countdown-ready:hover,
.countdown-container.countdown-ready:focus-visible {
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 4px;
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: white;
}

.countdown-icon {
    font-size: 2rem;
}

.countdown-header strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.countdown-header p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.countdown-item:first-child {
    min-width: auto;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 0.75rem;
    opacity: 0.8;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    opacity: 0.6;
    margin: 0 0.5rem;
}

.countdown-complete {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    padding: 1rem;
}

.countdown-complete .countdown-cta {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.75rem;
    opacity: 0.85;
}

/* Responsive Countdown */
@media (max-width: 768px) {
    .countdown-container {
        padding: 1.25rem 1.5rem;
    }
    
    .countdown-header {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
        margin: 0 0.25rem;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .countdown-value {
        font-size: 1.75rem;
    }
    
    .countdown-item {
        min-width: 50px;
    }
    
    .countdown-separator {
        font-size: 1.25rem;
        margin: 0 0.15rem;
    }
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: white;
    animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 0;
    margin-top: -100px; /* Mitad de la altura aproximada de la tarjeta */
    animation-delay: 2s;
}

.card-3 {
    bottom: 0;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(2deg); 
    }
}

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

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    font-size: 0.875rem;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: var(--bg-secondary);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background: var(--bg-main);
}

.about-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

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

/* Statement Box */
.statement-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem auto 4rem;
    max-width: 900px;
    box-shadow: var(--shadow-xl);
    color: white;
}

.statement-text {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.statement-text:last-child {
    margin-bottom: 0;
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Mission & Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.mission-vision-card {
    background: var(--bg-main);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.mission-vision-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
}

.card-icon-large {
    font-size: 3rem;
    line-height: 1;
}

.mission-vision-card .card-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.mission-vision-card .card-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.mission-vision-card .card-text:last-child {
    margin-bottom: 0;
}

/* Values Section - Compact */
.values-section {
    margin-top: 4rem;
}

.values-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.values-grid-compact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.value-item-compact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-main);
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    transition: var(--transition);
    flex: 0 0 auto;
}

.value-item-compact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--bg-main) 0%, rgba(30, 64, 175, 0.05) 100%);
}

.value-number-compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.value-name-compact {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.feature-box {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

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

.feature-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Products Section */
.products {
    background: var(--bg-secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--bg-main);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border);
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.product-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, var(--bg-main) 0%, rgba(37, 99, 235, 0.03) 100%);
}

.product-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.product-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.product-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    filter: blur(20px);
}

.product-card:hover .product-icon-glow {
    opacity: 0.3;
}

.product-card:hover .product-icon {
    background: var(--primary);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.product-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: center;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-feature {
    background: var(--bg-secondary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.product-status {
    text-align: center;
    margin-top: 1.5rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-soon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.status-coming {
    background: #fef3c7;
    color: #92400e;
}

[data-theme="dark"] .status-coming {
    background: #78350f;
    color: #fcd34d;
}

/* Modo Oscuro - Elementos adicionales */
[data-theme="dark"] .section-badge {
    background: var(--bg-tertiary);
    color: var(--primary-light);
    border-color: var(--border);
}

[data-theme="dark"] .feature-box {
    background: var(--bg-secondary);
    border-color: var(--border);
}

[data-theme="dark"] .product-card {
    background: var(--bg-secondary);
    border-color: var(--border);
}

[data-theme="dark"] .product-icon {
    background: var(--bg-tertiary);
}

[data-theme="dark"] .product-feature {
    background: var(--bg-tertiary);
    border-color: var(--border);
}

[data-theme="dark"] .careers-cta {
    background: var(--bg-secondary);
    border-color: var(--border);
}

[data-theme="dark"] .contact-form-container {
    background: var(--bg-secondary);
    border-color: var(--border);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
    background: var(--bg-main);
    border-color: var(--border);
    color: var(--text-primary);
}

[data-theme="dark"] .footer {
    background: var(--bg-main);
    border-top-color: var(--border);
}

/* Modo Oscuro - Hero */
[data-theme="dark"] .hero-gradient-orb.orb-1 {
    background: radial-gradient(circle, rgba(30, 64, 175, 0.6) 0%, transparent 70%);
}

[data-theme="dark"] .hero-gradient-orb.orb-2 {
    background: radial-gradient(circle, rgba(20, 83, 45, 0.6) 0%, transparent 70%);
}

[data-theme="dark"] .hero-gradient-orb.orb-3 {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.4) 0%, transparent 70%);
}

/* Modo Oscuro - Botones */
[data-theme="dark"] .btn-primary {
    background: var(--primary);
    color: white;
}

[data-theme="dark"] .btn-primary:hover {
    background: var(--primary-light);
}

/* Modo Oscuro - Gradientes de texto */
[data-theme="dark"] .brand-text {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modo Oscuro - Secciones */
[data-theme="dark"] .about {
    background: var(--bg-main);
}

[data-theme="dark"] .products {
    background: var(--bg-secondary);
}

[data-theme="dark"] .careers {
    background: var(--bg-main);
}

[data-theme="dark"] .contact {
    background: var(--bg-secondary);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-link-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
    color: var(--primary);
}

.product-link:hover .product-link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.product-link-arrow svg {
    width: 20px;
    height: 20px;
}

/* Careers Section */
.careers {
    background: var(--bg-main);
}

.careers-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.careers-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.careers-cta {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
}

.careers-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.careers-cta > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.careers-note {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.careers-link {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
}

.careers-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Careers Hero */
.careers-hero {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
    color: white;
    text-align: center;
    padding: 8rem 0 6rem;
    min-height: auto;
}

.careers-hero .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.careers-hero .section-title {
    color: white;
}

.careers-hero .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Careers Benefits */
.careers-benefits {
    margin-top: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    background: var(--bg-main);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.benefit-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    max-width: 100%;
}

[data-theme="dark"] .careers-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #14532d 100%);
}

/* Contact Section */
.contact {
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-container {
    background: var(--bg-main);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.contact-form .btn span {
    display: inline-block;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-main);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

[data-theme="dark"] .faq {
    background: rgba(15, 23, 42, 0.45);
}

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

.faq-item {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 64, 175, 0.3);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq {
        padding: 4rem 0;
    }

    .faq-grid {
        margin-top: 2rem;
    }

    .faq-item {
        padding: 1.5rem;
    }
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.form-message svg {
    flex-shrink: 0;
}

.form-message p {
    margin: 0;
}

[data-theme="dark"] .form-message.success {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
}

[data-theme="dark"] .form-message.error {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
}

/* Footer */
.footer {
    background: var(--bg-main);
    color: var(--text-primary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition);
    background: var(--bg-secondary);
}

.footer-social a:hover {
    border-color: transparent;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
    color: #fff;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-main);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        border-top: 1px solid var(--border);
    }

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

    .navbar-toggle {
        display: flex;
    }

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

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

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

    .theme-toggle-item {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid var(--border);
        padding-top: 1rem;
        margin-top: 1rem;
    }

    /* Hero Mobile Fixes */
    .hero {
        min-height: auto;
        padding: 5rem 0 3rem;
        align-items: flex-start;
    }

    .hero-grid {
        gap: 2rem;
        padding: 0 1rem;
    }

    .hero-content {
        padding: 1.5rem 0;
        width: 100%;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding: 0;
    }

    .countdown-container {
        margin-bottom: 1.5rem;
        padding: 1rem 1.25rem;
    }

    .countdown-header {
        margin-bottom: 1rem;
    }

    .countdown-header strong {
        font-size: 1rem;
    }

    .countdown-header p {
        font-size: 0.85rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-visual {
        height: 350px;
        margin-top: 1rem;
    }

    .floating-card {
        padding: 1.25rem;
        font-size: 0.9rem;
    }

    .card-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .card-subtitle {
        font-size: 0.8rem;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }

    /* Statement Box Mobile */
    .statement-box {
        padding: 2rem 1.5rem;
        margin: 2rem auto 3rem;
    }

    .statement-text {
        font-size: 1.25rem;
    }

    .statement-text:last-child {
        font-size: 1.1rem;
    }

    /* Mission & Vision Mobile */
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .mission-vision-card {
        padding: 2rem 1.5rem;
    }

    .card-icon-large {
        font-size: 2.5rem;
    }

    .mission-vision-card .card-title {
        font-size: 1.5rem;
    }

    .mission-vision-card .card-text {
        font-size: 1rem;
    }

    /* Values Mobile */
    .values-section {
        margin-top: 3rem;
    }

    .values-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .values-grid-compact {
        gap: 0.75rem;
    }

    .value-item-compact {
        padding: 0.75rem 1.25rem;
    }

    .value-number-compact {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }

    .value-name-compact {
        font-size: 0.95rem;
    }

    .careers-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .careers-hero {
        padding: 6rem 0 4rem;
    }

    .careers-hero .section-title {
        font-size: 2.25rem !important;
    }

    .careers-hero .section-subtitle {
        font-size: 1.25rem !important;
    }

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

    .careers-benefits h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .careers-hero {
        padding: 5rem 0 3rem;
    }

    .careers-hero .section-title {
        font-size: 1.75rem !important;
    }

    .careers-hero .section-subtitle {
        font-size: 1.1rem !important;
    }

    .benefits-grid {
        gap: 1rem;
    }

    .benefit-item {
        padding: 1.5rem;
    }

    .benefit-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 0;
    }

    .hero {
        min-height: auto;
        padding: 4rem 0 2.5rem;
    }

    .hero-grid {
        gap: 1.5rem;
        padding: 0 0.75rem;
    }

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

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.875rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .countdown-container {
        padding: 0.875rem 1rem;
        margin-bottom: 1.25rem;
    }

    .countdown-header {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 0.875rem;
    }

    .countdown-icon {
        font-size: 1.5rem;
    }

    .countdown-header strong {
        font-size: 0.95rem;
    }

    .countdown-header p {
        font-size: 0.8rem;
    }

    .countdown-timer {
        gap: 0.5rem;
    }

    .countdown-value {
        font-size: 1.75rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    .countdown-separator {
        font-size: 1.25rem;
        margin: 0 0.15rem;
    }

    .countdown-item {
        min-width: 50px;
    }

    .hero-actions {
        margin-bottom: 1.5rem;
        gap: 0.625rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .hero-visual {
        height: 280px;
        margin-top: 0.75rem;
    }

    .floating-card {
        padding: 1rem;
    }

    .card-icon {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .card-title {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .card-subtitle {
        font-size: 0.75rem;
    }

    /* Statement Box Small Mobile */
    .statement-box {
        padding: 1.5rem 1.25rem;
        margin: 1.5rem auto 2rem;
    }

    .statement-text {
        font-size: 1.1rem;
    }

    .statement-text:last-child {
        font-size: 1rem;
    }

    /* Mission & Vision Small Mobile */
    .mission-vision-card {
        padding: 1.5rem 1.25rem;
    }

    .card-icon-large {
        font-size: 2rem;
    }

    .mission-vision-card .card-title {
        font-size: 1.35rem;
    }

    .mission-vision-card .card-text {
        font-size: 0.95rem;
    }

    /* Values Small Mobile */
    .values-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .values-grid-compact {
        gap: 0.625rem;
    }

    .value-item-compact {
        padding: 0.625rem 1rem;
    }

    .value-number-compact {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
    }

    .value-name-compact {
        font-size: 0.875rem;
    }
}
