:root {
    /* Colors - Alyna Capital Brand Identity (Refined) */
    --color-primary: #3c3c3b;
    --color-turquoise: #74bba0;
    --color-orange: #f9ba73;
    --color-coral: #ee706a;

    /* Sophisticated Dark Palette */
    --color-dark-bg: #0f1419;
    --color-dark-bg-elevated: #1a1f26;
    --color-dark-bg-subtle: #151b22;
    --color-accent-green: #2d4a3e;
    --color-accent-bronze: #8b6f47;
    --color-accent-warm: #c4a574;

    /* Shades */
    --color-turquoise-light: #8fcbb1;
    --color-turquoise-lighter: #aadcc3;
    --color-coral-light: #f18781;
    --color-coral-lighter: #f5a6a2;

    /* Neutrals */
    --color-text: #3c3c3b;
    --color-text-light: #5a5a59;
    --color-text-muted: #8a8a89;
    --color-bg: #FAFAFA;
    --color-bg-alt: #F5F5F5;
    --color-white: #FFFFFF;
    --color-border: #E5E5E5;

    /* Dark Mode Text */
    --color-text-dark: #e8e8e7;
    --color-text-dark-muted: #a0a0a0;

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(60, 60, 59, 0.08);
    --shadow-md: 0 4px 12px rgba(60, 60, 59, 0.12);
    --shadow-lg: 0 10px 40px rgba(60, 60, 59, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation - Luix Capsule Style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    padding: 1.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 1rem 2rem;
}

/* Glassmorphism Capsule */
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: fit-content;
    margin: 0 auto;
    padding: 0.5rem 2.5rem;
    gap: 3.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .container {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(60, 60, 59, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 0.45rem 2.35rem;
}

.navbar.scrolled .nav-link {
    color: #3c3c3b;
    opacity: 0.85;
    font-weight: 500;
}

.navbar.scrolled .nav-link:hover {
    color: #74bba0;
    opacity: 1;
}

.navbar.scrolled .nav-link-cta {
    background: #3c3c3b;
    border: 1px solid rgba(60, 60, 59, 0.8);
    color: #ffffff;
    font-weight: 600;
}

.navbar.scrolled .nav-link-cta:hover {
    background: #2d2d2c;
    border-color: rgba(116, 187, 160, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow:
        0 8px 24px rgba(60, 60, 59, 0.4),
        0 0 30px rgba(116, 187, 160, 0.25);
}

.logo-img {
    height: 32px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
}

.navbar.scrolled .logo-img {
    filter: none;
    height: 30px;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-brand:hover .logo-img {
    opacity: 0.8;
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Dropdown Navigation */
.nav-item-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 1.5rem);
    left: -1rem;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(116, 187, 160, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.nav-item-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.nav-dropdown-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.nav-dropdown-item:hover {
    background: var(--color-bg);
    border-color: rgba(116, 187, 160, 0.2);
    transform: translateX(4px);
}

.dropdown-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: color 0.2s ease;
}

.nav-dropdown-item:hover .dropdown-item-title {
    color: var(--color-turquoise);
}

.dropdown-item-desc {
    font-size: 0.8rem;
    color: var(--color-text-light);
    line-height: 1.4;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #7ba897;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #9ec4b3;
}

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

/* Duplicado eliminado - ver línea 122 */

.nav-link-cta {
    padding: 0.6rem 1.5rem;
    background: rgba(116, 187, 160, 0.15);
    color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    border: 1px solid rgba(116, 187, 160, 0.4);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

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

/* Textura sutil en navbar CTA */
.nav-link-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
    pointer-events: none;
    border-radius: inherit;
    z-index: 0;
}

.nav-link-cta:hover {
    background: rgba(116, 187, 160, 0.25);
    border-color: rgba(116, 187, 160, 0.7);
    color: #e8f5f0;
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(116, 187, 160, 0.3),
        0 4px 10px rgba(116, 187, 160, 0.2);
}

.nav-link-cta:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

/* NAVBAR SCROLLED - Negro corporativo */
.navbar.scrolled .nav-link-cta {
    background: #3c3c3b;
    border: 1px solid rgba(60, 60, 59, 0.8);
    color: #ffffff;
}

.navbar.scrolled .nav-link-cta:hover {
    background: #2d2d2c;
    border-color: rgba(116, 187, 160, 0.4);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow:
        0 8px 24px rgba(60, 60, 59, 0.4),
        0 0 30px rgba(116, 187, 160, 0.2);
}

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

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-fast);
}

/* Hero Section - Institutional Architecture */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 160px 0 120px 0;
    overflow: hidden;
    transition: transform 0.3s ease-out;
    background:
        radial-gradient(ellipse 70% 60% at 85% 45%, rgba(107, 149, 128, 0.18) 0%, transparent 60%),
        radial-gradient(circle at 95% 50%, rgba(123, 168, 151, 0.12) 0%, transparent 35%),
        radial-gradient(ellipse 40% 50% at 10% 85%, rgba(20, 35, 48, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(15, 25, 35, 0.3) 0%, transparent 40%),
        linear-gradient(145deg, #080d12 0%, #0f1820 30%, #162838 60%, #0a1218 100%);
    background-image:
        radial-gradient(ellipse 70% 60% at 85% 45%, rgba(107, 149, 128, 0.18) 0%, transparent 60%),
        radial-gradient(circle at 95% 50%, rgba(123, 168, 151, 0.12) 0%, transparent 35%),
        radial-gradient(ellipse 40% 50% at 10% 85%, rgba(20, 35, 48, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(15, 25, 35, 0.3) 0%, transparent 40%),
        linear-gradient(145deg, #080d12 0%, #0f1820 30%, #162838 60%, #0a1218 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px);
    background-size: 200% 200%;
    animation: breathingGradient 15s ease-in-out infinite;
}

/* Animated Gradient - Breathing Effect */
@keyframes breathingGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Particles Canvas - Desactivado (solo pilares arquitectónicos) */
/* #particles-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
} */

.hero .container {
    margin: 0 auto;
    max-width: 920px;
    padding: 0 2rem;
}

/* Architectural Geometry - Institutional Power */
.hero-architecture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

/* Vertical pillars - skyscraper columns */
.arch-pillar {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(245, 245, 240, 0.12) 30%,
        rgba(245, 245, 240, 0.22) 50%,
        rgba(245, 245, 240, 0.12) 70%,
        transparent 100%
    );
    animation: pillarPulse 14s ease-in-out infinite;
}

.arch-pillar-1 {
    left: 15%;
    animation-delay: 0s;
}

.arch-pillar-2 {
    left: 35%;
    animation-delay: 4s;
    opacity: 0.7;
}

.arch-pillar-3 {
    right: 20%;
    animation-delay: 8s;
    opacity: 0.5;
}

.arch-pillar-4 {
    right: 8%;
    animation-delay: 12s;
    opacity: 0.6;
}

/* Horizontal lines - architectural levels */
.arch-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(245, 245, 240, 0.08) 20%,
        rgba(245, 245, 240, 0.14) 50%,
        rgba(245, 245, 240, 0.08) 80%,
        transparent 100%
    );
    animation: linePulse 16s ease-in-out infinite;
}

.arch-line-1 {
    top: 25%;
    animation-delay: 0s;
}

.arch-line-2 {
    top: 50%;
    animation-delay: 5s;
    opacity: 0.6;
}

.arch-line-3 {
    top: 75%;
    animation-delay: 10s;
    opacity: 0.4;
}

/* Rectangular frames - documents/contracts */
.arch-frame {
    position: absolute;
    border: 1px solid rgba(245, 245, 240, 0.1);
    background: linear-gradient(135deg,
        rgba(245, 245, 240, 0.02) 0%,
        transparent 50%,
        rgba(245, 245, 240, 0.03) 100%
    );
    backdrop-filter: blur(1px);
    animation: frameDrift 22s ease-in-out infinite;
}

.arch-frame-1 {
    width: 500px;
    height: 350px;
    top: 8%;
    left: 5%;
    animation-delay: 0s;
}

.arch-frame-2 {
    width: 400px;
    height: 280px;
    bottom: 12%;
    left: 25%;
    opacity: 0.6;
    animation-delay: 11s;
}

.arch-frame-3 {
    width: 550px;
    height: 380px;
    top: 15%;
    right: 8%;
    opacity: 0.5;
    animation-delay: 7s;
}

/* SPECTACULAR: Abstract Financial Sculpture - Concentric Rings */
.hero-sculpture {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 600px;
    height: 600px;
    z-index: 1;
    pointer-events: none;
    perspective: 1200px;
    transform-style: preserve-3d;
    animation: sculpture3DRotate 50s linear infinite;
    transform-origin: center center;
}

.sculpture-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(245, 245, 240, 0.15);
    animation: sculptureRotate 30s linear infinite;
    transform-style: preserve-3d;
}

.sculpture-ring-1 {
    width: 600px;
    height: 600px;
    top: 0;
    left: 0;
    border-width: 2px;
    border-color: rgba(245, 245, 240, 0.28);
    box-shadow:
        inset 0 0 80px rgba(245, 245, 240, 0.025),
        0 0 120px rgba(245, 245, 240, 0.05);
    animation-duration: 25s;
}

.sculpture-ring-2 {
    width: 450px;
    height: 450px;
    top: 75px;
    left: 75px;
    animation-direction: reverse;
    animation-duration: 35s;
    border-color: rgba(245, 245, 240, 0.22);
    box-shadow:
        inset 0 0 60px rgba(245, 245, 240, 0.02),
        0 0 100px rgba(245, 245, 240, 0.04);
}

.sculpture-ring-3 {
    width: 300px;
    height: 300px;
    top: 150px;
    left: 150px;
    animation-duration: 45s;
    border-color: rgba(245, 245, 240, 0.18);
    box-shadow:
        inset 0 0 40px rgba(245, 245, 240, 0.02),
        0 0 80px rgba(245, 245, 240, 0.03);
}

/* Precision markers - like Swiss watch ticks */
.ring-marker {
    position: absolute;
    width: 2px;
    height: 20px;
    background: rgba(245, 245, 240, 0.35);
    top: -10px;
    left: 50%;
    transform-origin: center 310px;
}

.sculpture-ring-1 .ring-marker {
    transform-origin: center 310px;
}

.sculpture-ring-2 .ring-marker {
    transform-origin: center 235px;
    height: 15px;
    background: rgba(245, 245, 240, 0.28);
}

.sculpture-ring-3 .ring-marker {
    transform-origin: center 160px;
    height: 12px;
    background: rgba(245, 245, 240, 0.22);
}

.ring-marker-1 {
    transform: rotate(0deg);
}

.ring-marker-2 {
    transform: rotate(90deg);
}

.ring-marker-3 {
    transform: rotate(180deg);
}

.ring-marker-4 {
    transform: rotate(270deg);
}

.sculpture-core {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 240px;
    left: 240px;
    background: radial-gradient(circle,
        rgba(245, 245, 240, 0.18) 0%,
        rgba(245, 245, 240, 0.06) 50%,
        transparent 100%
    );
    border-radius: 50%;
    border: 2px solid rgba(245, 245, 240, 0.35);
    box-shadow:
        inset 0 0 40px rgba(245, 245, 240, 0.12),
        0 0 80px rgba(245, 245, 240, 0.1);
    animation: coreGlow 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-pulse {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(245, 245, 240, 0.25) 0%,
        transparent 70%
    );
    animation: corePulseExpand 3s ease-in-out infinite;
}

@keyframes pillarPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.8;
        transform: scaleY(1.01);
    }
}

@keyframes linePulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.7;
        transform: scaleX(1.01);
    }
}

@keyframes frameDrift {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(15px, -20px);
    }
    50% {
        transform: translate(-10px, -30px);
    }
    75% {
        transform: translate(10px, -15px);
    }
}

@keyframes sculptureRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sculpture3DRotate {
    0% {
        transform: translateY(-50%) rotateY(0deg) rotateX(5deg);
    }
    25% {
        transform: translateY(-50%) rotateY(90deg) rotateX(8deg);
    }
    50% {
        transform: translateY(-50%) rotateY(180deg) rotateX(5deg);
    }
    75% {
        transform: translateY(-50%) rotateY(270deg) rotateX(2deg);
    }
    100% {
        transform: translateY(-50%) rotateY(360deg) rotateX(5deg);
    }
}

@keyframes coreGlow {
    0%, 100% {
        box-shadow:
            inset 0 0 40px rgba(245, 245, 240, 0.12),
            0 0 80px rgba(245, 245, 240, 0.1);
    }
    50% {
        box-shadow:
            inset 0 0 60px rgba(245, 245, 240, 0.2),
            0 0 120px rgba(245, 245, 240, 0.16);
    }
}

@keyframes corePulseExpand {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}

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

@keyframes meshMove {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 50% 50%;
    }
}

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

.hero-content {
    max-width: 780px;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

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

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-turquoise);
    border: 1px solid rgba(116, 187, 160, 0.3);
    padding: 0.6rem 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
    backdrop-filter: blur(10px);
    background: rgba(116, 187, 160, 0.05);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-badge:hover {
    background: rgba(116, 187, 160, 0.15);
    border-color: rgba(116, 187, 160, 0.6);
    transform: translateY(-2px);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.25;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    animation: fadeInUp 1s ease 0.3s both;
}

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

.hero-tagline {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(232, 235, 233, 0.7);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 0.01em;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 700px;
    animation: fadeInUp 1s ease 0.6s both;
    font-style: italic;
}

.hero-subtitle strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-style: normal;
}

/* Hero Hook - Conversational Questions */
.hero-hook {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.25rem;
    margin-top: 1.5rem;
    letter-spacing: 0.01em;
    animation: fadeInUp 1s ease 0.5s both;
    text-transform: none;
    font-style: normal;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero CTA Dual */
.hero-cta-dual {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease 1.1s both;
    margin-bottom: 0;
}

.hero-microcopy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    margin-top: 1.5rem;
    animation: fadeInUp 1s ease 1.3s both;
    line-height: 1.8;
    font-weight: 400;
}

.btn.btn-primary-filled {
    background: linear-gradient(135deg, #ee706a 0%, #e55b54 100%) !important;
    border: 1px solid rgba(238, 112, 106, 0.4) !important;
    color: #ffffff !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 20px rgba(238, 112, 106, 0.35),
        0 2px 8px rgba(238, 112, 106, 0.2) !important;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    font-size: 1rem;
    padding: 1.1rem 2.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    animation: none !important;
}

/* Textura sutil en el fondo del botón */
.btn-primary-filled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    pointer-events: none;
    border-radius: inherit;
}

/* Efecto de brillo que se desplaza */
.btn-primary-filled::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.btn-primary-filled:hover::after {
    left: 100%;
}

.btn.btn-primary-filled:hover {
    background: linear-gradient(135deg, #f17d78 0%, #ee706a 100%) !important;
    border-color: rgba(238, 112, 106, 0.6) !important;
    transform: translateY(-4px) !important;
    box-shadow:
        0 12px 40px rgba(238, 112, 106, 0.45),
        0 6px 20px rgba(238, 112, 106, 0.3) !important;
    color: #ffffff !important;
}

/* Ripple effect al hacer clic */
.btn.btn-primary-filled:active {
    transform: translateY(-2px) scale(0.98) !important;
    transition: all 0.1s ease;
}

.btn.btn-secondary-outline {
    background: rgba(116, 187, 160, 0.08) !important;
    border: 2px solid rgba(116, 187, 160, 0.5) !important;
    color: rgba(255, 255, 255, 0.95) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    font-size: 1rem;
    padding: 1.1rem 2.5rem;
    box-shadow: none !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    animation: none !important;
}

/* Textura sutil */
.btn-secondary-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(116, 187, 160, 0.02) 2px, rgba(116, 187, 160, 0.02) 4px);
    pointer-events: none;
    border-radius: inherit;
}

.btn.btn-secondary-outline:hover {
    background: rgba(116, 187, 160, 0.18) !important;
    border-color: rgba(116, 187, 160, 0.8) !important;
    transform: translateY(-4px) !important;
    box-shadow:
        0 8px 30px rgba(116, 187, 160, 0.3),
        0 4px 12px rgba(116, 187, 160, 0.2) !important;
    color: #e8f5f0 !important;
}

.btn.btn-secondary-outline:active {
    transform: translateY(-2px) scale(0.98) !important;
    transition: all 0.1s ease;
}

.btn-icon {
    margin-left: 0.5rem;
    font-size: 1.1em;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    z-index: 1;
}

.btn.btn-primary-filled:hover .btn-icon {
    transform: translateX(6px);
    animation: chevron-bounce 0.8s ease infinite;
}

@keyframes chevron-bounce {
    0%, 100% {
        transform: translateX(6px);
    }
    50% {
        transform: translateX(10px);
    }
}

.btn-text {
    display: inline-block;
    position: relative;
    z-index: 1;
}

/* ========== RIPPLE EFFECT ANIMATION ========== */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.hero-stats-inline {
    display: flex;
    gap: 2rem;
    margin: 3rem 0 2.5rem 0;
    padding: 0;
    border: none;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-stat-divider {
    font-size: 1.2rem;
    color: rgba(232, 235, 233, 0.3);
    font-weight: 300;
}

.hero-stat-text {
    font-size: 0.9rem;
    color: rgba(232, 235, 233, 0.75);
    text-transform: none;
    letter-spacing: 0.02em;
    font-weight: 400;
    line-height: 1.4;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #74bba0 0%, #5fa98a 100%);
    color: var(--color-white);
    box-shadow:
        0 4px 20px rgba(116, 187, 160, 0.45),
        0 2px 8px rgba(116, 187, 160, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: subtle-pulse 3s ease-in-out infinite;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5fa98a 0%, #4d9278 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 10px 35px rgba(116, 187, 160, 0.5),
        0 5px 15px rgba(116, 187, 160, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    border: 2px solid var(--color-white);
    backdrop-filter: blur(10px);
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--color-turquoise), transparent);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

@keyframes subtle-pulse {
    0%, 100% {
        box-shadow:
            0 4px 20px rgba(116, 187, 160, 0.45),
            0 2px 8px rgba(116, 187, 160, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow:
            0 6px 28px rgba(116, 187, 160, 0.55),
            0 3px 12px rgba(116, 187, 160, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

/* National Presence Section */
.national-presence {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg,
        #1a1d23 0%,
        #252a31 50%,
        #1f252c 100%
    );
    position: relative;
    overflow: hidden;
}

.national-presence::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(116, 187, 160, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(249, 186, 115, 0.06) 0%, transparent 40%);
    z-index: 0;
}

.national-presence .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.presence-content {
    animation: fadeInUp 1s ease;
}

.presence-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(116, 187, 160, 0.15);
    border: 1px solid rgba(116, 187, 160, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-turquoise);
    margin-bottom: 1.5rem;
}

.presence-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.presence-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 500px;
}

.presence-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.presence-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.presence-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-turquoise);
    line-height: 1;
}

.presence-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Interactive Spain Map Container */
.presence-map {
    position: relative;
    height: 600px;
    background: var(--color-white);
    border-radius: 16px;
    border: 2px solid rgba(116, 187, 160, 0.2);
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(116, 187, 160, 0.15);
    animation: fadeInUp 1s ease 0.3s both;
}

#spain-interactive-map {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* Leaflet map styling */
.leaflet-container {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.leaflet-control-attribution {
    font-size: 10px !important;
    opacity: 0.7;
}

/* Animated dot markers that will appear on the map */
.map-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--color-turquoise);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 0 0 0 rgba(116, 187, 160, 0.7),
        0 4px 8px rgba(0, 0, 0, 0.3);
    animation: pulse-marker 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.map-marker.ma {
    background: var(--color-orange);
    box-shadow:
        0 0 0 0 rgba(249, 186, 115, 0.7),
        0 4px 8px rgba(0, 0, 0, 0.3);
}

.map-marker:hover {
    transform: scale(1.3);
    z-index: 20;
}

@keyframes pulse-marker {
    0%, 100% {
        box-shadow:
            0 0 0 0 rgba(116, 187, 160, 0.7),
            0 4px 8px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow:
            0 0 0 15px rgba(116, 187, 160, 0),
            0 4px 12px rgba(0, 0, 0, 0.4);
    }
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .national-presence .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .presence-map {
        height: 500px;
    }

    .presence-description {
        max-width: 100%;
    }

    .hero-stats-inline {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .presence-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .presence-map {
        height: 400px;
    }

    .hero-stats-inline {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero-stat-divider {
        display: none;
    }
}

/* Pain Points Section */
.pain-points {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: var(--spacing-lg);
}

.pain-card {
    padding: 2.5rem;
    background: var(--color-white);
    border-radius: 16px;
    border: 2px solid rgba(116, 187, 160, 0.15);
    transition: all 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-turquoise);
}

.pain-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
}

.pain-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.pain-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
}

.pain-solution {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(116, 187, 160, 0.08), rgba(249, 186, 115, 0.08));
    border-radius: 12px;
    font-size: 1.15rem;
    line-height: 1.8;
}

.pain-solution strong {
    color: var(--color-turquoise);
    font-weight: 700;
}

/* Transformation Section */
.transformation {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg,
        rgba(116, 187, 160, 0.03) 0%,
        rgba(249, 186, 115, 0.02) 50%,
        rgba(238, 112, 106, 0.03) 100%
    );
}

.transformation-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.case-carousel {
    display: grid;
    gap: 2.5rem;
    margin-top: var(--spacing-lg);
}

.case-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.case-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.case-badge-fondos {
    background: rgba(116, 187, 160, 0.15);
    color: var(--color-turquoise);
    border: 1px solid rgba(116, 187, 160, 0.3);
}

.case-badge-ma {
    background: rgba(249, 186, 115, 0.15);
    color: var(--color-orange);
    border: 1px solid rgba(249, 186, 115, 0.3);
}

.case-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.case-before,
.case-after {
    padding: 1.5rem;
    border-radius: 12px;
}

.case-before {
    background: rgba(238, 112, 106, 0.08);
}

.case-after {
    background: rgba(116, 187, 160, 0.08);
}

.case-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    opacity: 0.6;
}

.case-arrow {
    font-size: 2rem;
    color: var(--color-turquoise);
    font-weight: 700;
}

.case-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text);
}

.transformation-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* Method Section */
.method-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.method-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.method-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.method-stat {
    background: linear-gradient(135deg, rgba(116, 187, 160, 0.1), rgba(249, 186, 115, 0.1));
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(116, 187, 160, 0.2);
    transition: all 0.3s ease;
}

.method-stat:hover {
    transform: scale(1.05);
    border-color: var(--color-turquoise);
}

.method-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-turquoise);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.method-stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.method-content {
    max-width: 600px;
}

.method-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.method-list {
    list-style: none;
    counter-reset: method-counter;
    margin: 1.5rem 0;
    padding: 0;
}

.method-list li {
    counter-increment: method-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text);
}

.method-list li::before {
    content: counter(method-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--color-turquoise);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.method-result {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-top: 1.5rem;
}

.method-badge {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(116, 187, 160, 0.15), rgba(249, 186, 115, 0.15));
    border: 2px solid rgba(116, 187, 160, 0.3);
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-dark);
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg,
        rgba(116, 187, 160, 0.03) 0%,
        rgba(249, 186, 115, 0.02) 50%,
        rgba(238, 112, 106, 0.03) 100%
    );
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.testimonial-badge-fondos {
    background: rgba(116, 187, 160, 0.15);
    color: var(--color-turquoise);
}

.testimonial-badge-ma {
    background: rgba(249, 186, 115, 0.15);
    color: var(--color-orange);
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 2rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-turquoise), var(--color-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-info strong {
    font-size: 1rem;
    color: var(--color-dark);
}

.testimonial-info span {
    font-size: 0.9rem;
    color: var(--color-text);
    opacity: 0.8;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

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

.faq-item {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(116, 187, 160, 0.05), rgba(249, 186, 115, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(116, 187, 160, 0.15);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-turquoise);
    box-shadow: 0 4px 20px rgba(116, 187, 160, 0.1);
}

.faq-question {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
}

.faq-answer strong {
    color: var(--color-turquoise);
    font-weight: 600;
}

/* Final CTA Section */
.final-cta {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg,
        #1a1d23 0%,
        #252a31 50%,
        #1f252c 100%
    );
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(116, 187, 160, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(249, 186, 115, 0.08) 0%, transparent 50%);
    z-index: 0;
}

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

.cta-urgency-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(238, 112, 106, 0.2);
    border: 1px solid rgba(238, 112, 106, 0.4);
    border-radius: 50px;
    color: var(--color-coral);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    animation: pulseCTA 2s ease-in-out infinite;
}

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

.final-cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.final-cta-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-benefit svg {
    flex-shrink: 0;
    color: var(--color-turquoise);
}

.cta-benefit span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.btn-giant {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-giant:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(116, 187, 160, 0.4);
}

.cta-availability {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2rem;
}

/* Responsive for New Sections */
@media (max-width: 968px) {
    .case-content {
        grid-template-columns: 1fr;
    }

    .case-arrow {
        transform: rotate(90deg);
        text-align: center;
    }

    .method-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .btn-giant {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .pain-grid {
        grid-template-columns: 1fr;
    }

    .method-visual {
        grid-template-columns: 1fr;
    }

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

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

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

/* Value Proposition Section */
.value-prop {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg,
        rgba(116, 187, 160, 0.03) 0%,
        rgba(249, 186, 115, 0.02) 50%,
        rgba(238, 112, 106, 0.03) 100%
    );
}

.section-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-turquoise);
    border: 2px solid var(--color-turquoise);
    padding: 0.5rem 1.2rem;
    margin-bottom: 1.5rem;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
}

.section-intro.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
}

.section-description {
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

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

.service-card {
    position: relative;
    padding: 3.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border-radius: 20px;
    border: none;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Fondos sutiles con color rebajado */
.card-fondos {
    background: linear-gradient(135deg,
        rgba(116, 187, 160, 0.08) 0%,
        rgba(95, 169, 138, 0.12) 100%),
        #ffffff;
    color: #3c3c3b;
    border: 1px solid rgba(116, 187, 160, 0.2);
}

.card-ma {
    background: linear-gradient(135deg,
        rgba(238, 112, 106, 0.08) 0%,
        rgba(229, 91, 84, 0.12) 100%),
        #ffffff;
    color: #3c3c3b;
    border: 1px solid rgba(238, 112, 106, 0.2);
}

/* Borde de color en la parte superior */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

.card-fondos::before {
    background: linear-gradient(90deg, #74bba0 0%, #5fa98a 100%);
}

.card-ma::before {
    background: linear-gradient(90deg, #ee706a 0%, #e55b54 100%);
}

/* Overlay de brillo en hover */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(116, 187, 160, 0.05) 0%,
        transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Hover con color más intenso */
.card-fondos:hover {
    background: linear-gradient(135deg,
        rgba(116, 187, 160, 0.12) 0%,
        rgba(95, 169, 138, 0.16) 100%),
        #ffffff;
    border-color: rgba(116, 187, 160, 0.35);
}

.card-ma:hover {
    background: linear-gradient(135deg,
        rgba(238, 112, 106, 0.12) 0%,
        rgba(229, 91, 84, 0.16) 100%),
        #ffffff;
    border-color: rgba(238, 112, 106, 0.35);
}

/* Hover effects ya definidos en las secciones principales */

.card-number {
    font-family: var(--font-primary);
    font-size: 7rem;
    font-weight: 100;
    line-height: 1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    z-index: 0;
}

.card-fondos .card-number {
    color: rgba(116, 187, 160, 0.08);
}

.card-ma .card-number {
    color: rgba(238, 112, 106, 0.08);
}

.service-card:hover .card-number {
    transform: scale(1.05) translateY(-4px);
}

.card-fondos:hover .card-number {
    color: rgba(116, 187, 160, 0.12);
}

.card-ma:hover .card-number {
    color: rgba(238, 112, 106, 0.12);
}

.card-icon {
    margin-bottom: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.card-fondos .card-icon {
    color: #74bba0;
}

.card-ma .card-icon {
    color: #ee706a;
}

.service-card:hover .card-icon {
    transform: translateY(-4px) scale(1.05);
}

.card-title {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 600;
    color: #3c3c3b;
    margin-bottom: 0.75rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.card-subtitle {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: none;
    letter-spacing: 0.01em;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    line-height: 1.5;
}

.card-fondos .card-subtitle {
    color: #5fa98a;
}

.card-ma .card-subtitle {
    color: #e55b54;
}

.card-description {
    font-size: 0.98rem;
    transition: color 0.4s ease;
    line-height: 1.7;
    color: rgba(60, 60, 59, 0.8);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.card-benefits {
    list-style: none;
    margin-bottom: auto;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.card-benefits li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(60, 60, 59, 0.08);
    color: rgba(60, 60, 59, 0.85);
    font-weight: 400;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.card-benefits li:last-child {
    border-bottom: none;
}

.service-card:hover .card-benefits li {
    padding-left: 1.75rem;
}

.card-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-fondos .card-benefits li::before {
    color: #74bba0;
}

.card-ma .card-benefits li::before {
    color: #ee706a;
}

.service-card:hover .card-benefits li::before {
    transform: translateX(3px);
}

/* Bordes de las listas ya actualizados arriba */

.card-stats {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--color-bg);
    border-left: 4px solid var(--color-orange);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 2rem;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    text-align: center;
    align-self: center;
    width: fit-content;
}

.card-fondos .card-link {
    background: #74bba0;
    color: #ffffff;
    border: 1px solid #74bba0;
}

.card-ma .card-link {
    background: #ee706a;
    color: #ffffff;
    border: 1px solid #ee706a;
}

.card-link svg {
    transition: transform 0.3s ease;
    width: 18px;
    height: 18px;
}

.card-fondos .card-link:hover {
    background: #5fa98a;
    border-color: #5fa98a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(116, 187, 160, 0.3);
}

.card-ma .card-link:hover {
    background: #e55b54;
    border-color: #e55b54;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(238, 112, 106, 0.3);
}

.card-link:hover svg {
    transform: translateX(4px);
}

.card-link:active {
    transform: translateY(0);
}

/* Process Section */
/* ========================================
   PROCESS SECTION - Método de trabajo
   ======================================== */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg,
        rgba(116, 187, 160, 0.02) 0%,
        rgba(249, 186, 115, 0.015) 50%,
        rgba(238, 112, 106, 0.02) 100%
    );
}

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

.process-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(116, 187, 160, 0.15);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #74bba0, #5fa98a);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(116, 187, 160, 0.15);
    border-color: rgba(116, 187, 160, 0.3);
}

/* Número del paso */
.process-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(116, 187, 160, 0.08);
    line-height: 1;
    transition: all 0.4s ease;
}

.process-card:hover .process-number {
    color: rgba(116, 187, 160, 0.15);
    transform: scale(1.1);
}

/* Icono - Efecto negro-verdoso sofisticado */
.process-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2d3e38 0%, #3c4f47 100%);
    border-radius: 12px;
    color: #74bba0;
    margin-bottom: 1.5rem;
    box-shadow:
        0 4px 15px rgba(45, 62, 56, 0.4),
        inset 0 1px 0 rgba(116, 187, 160, 0.2);
    border: 1px solid rgba(116, 187, 160, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.process-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(116, 187, 160, 0.2), transparent);
    transition: left 0.5s ease;
}

.process-card:hover .process-icon::before {
    left: 100%;
}

.process-card:hover .process-icon {
    transform: scale(1.08) translateY(-3px);
    box-shadow:
        0 8px 30px rgba(45, 62, 56, 0.6),
        0 0 40px rgba(116, 187, 160, 0.3),
        inset 0 1px 0 rgba(116, 187, 160, 0.4);
    border-color: rgba(116, 187, 160, 0.5);
    background: linear-gradient(135deg, #3c4f47 0%, #2d3e38 100%);
    color: #8dd4b5;
}

/* Textos */
.process-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: #3c3c3b;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.process-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #74bba0;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.process-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(60, 60, 59, 0.75);
    margin-bottom: 1.5rem;
}

/* Detalles específicos */
.process-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.process-details li {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(60, 60, 59, 0.7);
    padding-left: 1.5rem;
    position: relative;
}

.process-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #74bba0;
    font-weight: 600;
}

.process-details li strong {
    color: #3c3c3b;
    font-weight: 600;
}

/* Stats Section */
.stats {
    padding: var(--spacing-lg) 0;
    background: var(--color-primary);
    color: var(--color-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-value {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-turquoise);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: none;
    letter-spacing: normal;
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg,
        rgba(116, 187, 160, 0.03) 0%,
        rgba(249, 186, 115, 0.02) 50%,
        rgba(238, 112, 106, 0.03) 100%
    );
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    padding: 2rem 0;
}

.contact-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-text);
    font-size: 1rem;
}

.contact-item svg {
    color: var(--color-turquoise);
    flex-shrink: 0;
}

.contact-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-turquoise);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-bg);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

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

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-turquoise);
    box-shadow: 0 0 0 3px rgba(116, 187, 160, 0.1);
}

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

/* Placeholder styling - más discreto */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(60, 60, 59, 0.35);
    font-style: italic;
    font-size: 0.95rem;
}

.form-hint {
    font-size: 0.8rem;
    color: rgba(60, 60, 59, 0.6);
    font-style: italic;
    margin-top: -0.25rem;
    line-height: 1.4;
}

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

/* Footer */
.footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.7);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

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

.footer-brand {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 350px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-turquoise);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        min-height: auto;
        padding: 2.5rem;
    }

    .card-number {
        font-size: 5rem;
        top: 1rem;
        right: 1.5rem;
    }

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

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

    .card-description {
        font-size: 0.92rem;
    }

    .card-benefits li {
        font-size: 0.88rem;
    }

    .card-link {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
    }

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

    .footer-col:first-child {
        grid-column: 1 / -1;
    }

    /* Hide 3D cube on tablets and mobile */
    .hero-3d-element {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Capsule navbar becomes full width on mobile */
    .navbar .container {
        max-width: 100%;
        border-radius: 0;
        padding: 0.75rem 1.5rem;
        gap: 1rem;
    }

    .navbar.scrolled .container {
        padding: 0.65rem 1.5rem;
    }

    .logo-img {
        height: 32px;
    }

    .navbar.scrolled .logo-img {
        height: 30px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right var(--transition-base);
        box-shadow: var(--shadow-lg);
        border-radius: 0;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    /* Overlay oscuro cuando menu está abierto */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle span {
        background: var(--color-white);
    }

    .navbar.scrolled .mobile-toggle span {
        background: var(--color-primary);
    }

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

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

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

    .hero {
        min-height: 90vh;
        padding-top: 120px;
    }

    .hero-cta {
        flex-direction: column;
    }

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

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

    .footer-col:first-child {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-number {
        font-size: 4rem;
        top: 0.75rem;
        right: 1rem;
    }

    .card-icon {
        margin-bottom: 1.5rem;
    }

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

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

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

    .card-description {
        font-size: 0.88rem;
    }

    .card-benefits li {
        font-size: 0.85rem;
        padding: 0.6rem 0;
    }

    .card-link {
        font-size: 0.88rem;
        padding: 0.75rem 1.25rem;
    }

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

    .stat-value {
        font-size: 3rem;
    }

    .logo-img {
        height: 32px;
    }
}

/* About Section with Image */
/* ========================================
   ABOUT SECTION - Estilo Mako Pool
   ======================================== */
.about-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(116, 187, 160, 0.02) 0%,
        rgba(249, 186, 115, 0.015) 50%,
        rgba(238, 112, 106, 0.02) 100%
    );
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Imagen wrapper con stat flotante */
.about-image-wrapper {
    position: relative;
    height: 650px;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover {
    transform: translateY(-8px);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(116, 187, 160, 0.15) 0%,
        rgba(60, 60, 59, 0.1) 100%
    );
}

/* Caja de cita sobre imagen */
.about-quote-box {
    position: absolute;
    bottom: 25px;
    left: 25px;
    max-width: 400px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.75) 100%
    );
    backdrop-filter: blur(12px);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-left: 3px solid rgba(116, 187, 160, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-quote-box:hover {
    transform: translateY(-3px);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.8) 100%
    );
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.quote-icon {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    color: rgba(116, 187, 160, 0.35);
    line-height: 1;
    margin-bottom: -0.75rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.quote-text {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    color: #2d2d2c;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
}

/* Stat flotante sobre imagen */
.about-floating-stat {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid rgba(116, 187, 160, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-floating-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.floating-stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: #74bba0;
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.floating-stat-label {
    font-size: 0.85rem;
    color: #3c3c3b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* Contenido */
.about-content {
    padding: 2rem 0;
}

.about-text-lead {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #3c3c3b;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-text-lead strong {
    color: #74bba0;
    font-weight: 600;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(60, 60, 59, 0.75);
    margin-bottom: 2.5rem;
}

.about-text strong {
    color: #3c3c3b;
    font-weight: 600;
}

/* Pilares con iconos */
.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.about-pillar {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background: rgba(116, 187, 160, 0.03);
    border: 1px solid rgba(116, 187, 160, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-pillar:hover {
    background: rgba(116, 187, 160, 0.06);
    border-color: rgba(116, 187, 160, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(116, 187, 160, 0.15);
}

.pillar-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #74bba0 0%, #5fa98a 100%);
    border-radius: 12px;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(116, 187, 160, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-pillar:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(116, 187, 160, 0.4);
}

.pillar-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #3c3c3b;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.pillar-desc {
    font-size: 0.9rem;
    color: rgba(60, 60, 59, 0.7);
    line-height: 1.6;
}

/* Stats inline finales */
.about-stats-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg,
        rgba(116, 187, 160, 0.08) 0%,
        rgba(95, 169, 138, 0.12) 100%
    );
    border-radius: 12px;
    border-left: 4px solid #74bba0;
}

.about-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    text-align: center;
}

.about-stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: #74bba0;
    line-height: 1;
}

.about-stat-label {
    font-size: 0.85rem;
    color: rgba(60, 60, 59, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.about-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(116, 187, 160, 0.3);
}

/* About CTA */
.about-cta {
    margin-top: 3rem;
    text-align: center;
}

.btn-about-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    background: #c55550;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(197, 85, 80, 0.3);
    position: relative;
    overflow: hidden;
}

/* Brillo sutil base */
.btn-about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

/* Efecto monedas/éxito al hover */
.btn-about-cta::after {
    content: '€';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(249, 186, 115, 0.4);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.btn-about-cta:hover::after {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 1;
}

.btn-about-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 30px rgba(197, 85, 80, 0.5),
        0 0 40px rgba(249, 186, 115, 0.3);
    background: linear-gradient(135deg, #c55550 0%, #d67065 100%);
}

.btn-about-cta span,
.btn-about-cta svg {
    position: relative;
    z-index: 1;
}

.btn-about-cta svg {
    transition: transform 0.3s ease;
}

.btn-about-cta:hover svg {
    transform: translateX(5px);
}

/* Map Section */
.map-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: linear-gradient(135deg, #1f2d28 0%, #263530 100%);
    overflow: hidden;
}

.map-section .section-title,
.map-section .section-description {
    color: var(--color-white);
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(116, 187, 160, 0.2) 50%,
        transparent 100%
    );
}

.map-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(116, 187, 160, 0.2) 50%,
        transparent 100%
    );
}

.map-container {
    position: relative;
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(116, 187, 160, 0.1);
    border: 1px solid rgba(116, 187, 160, 0.15);
    background: var(--color-white);
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        rgba(116, 187, 160, 0.02) 0%,
        transparent 50%,
        rgba(249, 186, 115, 0.02) 100%
    );
    pointer-events: none;
    z-index: 999;
}

#spain-map {
    height: 600px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    filter: saturate(0.75) brightness(1.03) contrast(1.08) sepia(0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

#spain-map:hover {
    filter: saturate(0.9) brightness(1.05) contrast(1.1) sepia(0.05);
    transform: scale(1.002);
}

/* Custom map tile styling with dramatic effect */
#spain-map .leaflet-tile-pane {
    filter: hue-rotate(8deg);
    mix-blend-mode: normal;
}

/* Add glow effect to map container on hover */
.map-container:hover {
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.12),
        0 5px 15px rgba(116, 187, 160, 0.25),
        0 0 30px rgba(116, 187, 160, 0.1);
    border-color: rgba(116, 187, 160, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#spain-map .leaflet-control-zoom {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

#spain-map .leaflet-control-zoom a {
    background: var(--color-white);
    color: var(--color-primary);
    border: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

#spain-map .leaflet-control-zoom a:hover {
    background: var(--color-turquoise);
    color: var(--color-white);
}

.map-legend {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(116, 187, 160, 0.08);
    border: 1px solid rgba(116, 187, 160, 0.2);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-legend:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(116, 187, 160, 0.15);
    border-color: rgba(116, 187, 160, 0.35);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.legend-item:last-child {
    margin-bottom: 0;
}

.legend-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid var(--color-white);
    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.legend-item:hover .legend-dot {
    transform: scale(1.15);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.25),
        0 2px 6px rgba(0, 0, 0, 0.15);
}

.legend-dot.fondos {
    background: linear-gradient(135deg, #74bba0 0%, #5da68a 100%);
}

.legend-dot.fondos::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent);
}

.legend-dot.ma {
    background: linear-gradient(135deg, #f9ba73 0%, #f7a855 100%);
}

.legend-dot.ma::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent);
}

/* Custom marker styling */
.custom-marker {
    cursor: pointer;
}

.custom-marker:hover > div {
    transform: scale(1.15) !important;
}

/* Custom popup styling */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 0;
    overflow: hidden;
}

.leaflet-popup-content {
    margin: 1rem;
    font-family: var(--font-primary);
}

.leaflet-popup-tip {
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for new sections */
@media (max-width: 968px) {
    .about-section {
        padding: 60px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrapper {
        height: 450px;
    }

    .about-image {
        height: 100%;
    }

    .about-quote-box {
        bottom: 15px;
        left: 15px;
        max-width: 320px;
        padding: 1rem 1.25rem;
    }

    .quote-icon {
        font-size: 2rem;
        margin-bottom: -0.5rem;
    }

    .quote-text {
        font-size: 0.85rem;
    }

    .about-floating-stat {
        bottom: 20px;
        right: 20px;
        padding: 1.5rem 2rem;
    }

    .floating-stat-number {
        font-size: 2.5rem;
    }

    .floating-stat-label {
        font-size: 0.75rem;
    }

    .about-pillars {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-stats-inline {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .about-stat-divider {
        width: 100%;
        height: 1px;
    }

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

    /* Process section responsive */
    .process-section {
        padding: 60px 0;
    }

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

    .process-card {
        padding: 2rem;
    }

    .process-number {
        font-size: 3rem;
        top: 1.5rem;
        right: 1.5rem;
    }

    .process-icon {
        width: 64px;
        height: 64px;
    }

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

    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .about-stats-mini {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    #spain-map {
        height: 400px;
    }

    .map-legend {
        position: static;
        margin-top: 1rem;
    }
}

/* Service Pages Styles */

/* Service Hero */
.service-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg,
        rgba(35, 40, 40, 0.92) 0%,
        rgba(45, 55, 52, 0.94) 50%,
        rgba(55, 80, 70, 0.90) 100%
    );
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Geometric animated elements */
.service-hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: rgba(116, 187, 160, 0.03);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float-geometric-1 20s ease-in-out infinite;
    z-index: 0;
}

.service-hero::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: -3%;
    width: 350px;
    height: 350px;
    background: rgba(116, 187, 160, 0.04);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: float-geometric-2 25s ease-in-out infinite;
    z-index: 0;
}

@keyframes float-geometric-1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        transform: translate(-30px, -40px) rotate(90deg);
        border-radius: 50% 50% 30% 70% / 40% 60% 40% 60%;
    }
    50% {
        transform: translate(-50px, 20px) rotate(180deg);
        border-radius: 70% 30% 50% 50% / 30% 70% 30% 70%;
    }
    75% {
        transform: translate(-20px, 40px) rotate(270deg);
        border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
    }
}

@keyframes float-geometric-2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    33% {
        transform: translate(40px, -30px) rotate(-90deg);
        border-radius: 40% 60% 50% 50% / 50% 50% 40% 60%;
    }
    66% {
        transform: translate(20px, 30px) rotate(-180deg);
        border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
    }
}

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

.service-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(116, 187, 160, 0.15);
    border: 1px solid rgba(116, 187, 160, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-turquoise);
    margin-bottom: 1.5rem;
}

.service-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.service-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-turquoise);
}

.hero-stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Service Overview */
.service-overview {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.overview-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.overview-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.overview-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Programs Section */
.programs-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg,
        rgba(35, 40, 40, 0.92) 0%,
        rgba(45, 55, 52, 0.94) 50%,
        rgba(55, 80, 70, 0.90) 100%
    );
    position: relative;
    overflow: hidden;
}

.programs-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: rgba(116, 187, 160, 0.025);
    border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
    animation: float-geometric-3 18s ease-in-out infinite;
    z-index: 0;
}

.programs-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 8%;
    width: 280px;
    height: 280px;
    background: rgba(116, 187, 160, 0.03);
    border-radius: 50% 50% 40% 60% / 40% 60% 50% 50%;
    animation: float-geometric-4 22s ease-in-out infinite;
    z-index: 0;
}

@keyframes float-geometric-3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(30px, -30px) rotate(180deg);
    }
}

@keyframes float-geometric-4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-25px, 25px) rotate(-180deg);
    }
}

.programs-section .section-intro,
.programs-section .section-title,
.programs-section .section-description {
    position: relative;
    z-index: 1;
    color: var(--color-white);
}

.programs-section .programs-grid {
    position: relative;
    z-index: 1;
}

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

.program-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--color-turquoise);
}

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

.program-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.program-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* Process Detail */
.process-detail {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg,
        rgba(35, 40, 40, 0.92) 0%,
        rgba(45, 55, 52, 0.94) 50%,
        rgba(55, 80, 70, 0.90) 100%
    );
    position: relative;
    overflow: hidden;
}

.process-detail::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 10%;
    width: 320px;
    height: 320px;
    background: rgba(116, 187, 160, 0.03);
    border-radius: 45% 55% 60% 40% / 50% 50% 50% 50%;
    animation: float-geometric-5 24s ease-in-out infinite;
    z-index: 0;
}

.process-detail::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 290px;
    height: 290px;
    background: rgba(116, 187, 160, 0.025);
    border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
    animation: float-geometric-6 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes float-geometric-5 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 45% 55% 60% 40% / 50% 50% 50% 50%;
    }
    50% {
        transform: translate(-35px, 35px) rotate(180deg);
        border-radius: 55% 45% 40% 60% / 50% 50% 50% 50%;
    }
}

@keyframes float-geometric-6 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(40px, -30px) rotate(-180deg);
    }
}

.process-detail .section-intro,
.process-detail .section-title,
.process-detail .section-description {
    position: relative;
    z-index: 1;
    color: var(--color-white);
}

.process-detail .process-steps {
    position: relative;
    z-index: 1;
}

.process-detail .step-title {
    color: var(--color-white);
}

.process-detail .step-desc {
    color: rgba(255, 255, 255, 0.85);
}

.process-detail .step-number {
    color: var(--color-turquoise);
    opacity: 0.4;
}

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

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-turquoise);
    opacity: 0.3;
    line-height: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.step-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2d2d2d 100%);
    color: var(--color-white);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

/* Responsive - Service Pages */
@media (max-width: 968px) {
    .service-hero-title {
        font-size: 2.5rem;
    }

    .service-hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 60px;
    }

    .service-hero-title {
        font-size: 2rem;
    }

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

/* M&A Specific Styles */

.ma-phases {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.ma-phase {
    background: var(--color-white);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.ma-phase:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--color-turquoise);
}

.phase-header {
    padding: 2rem;
    background: linear-gradient(135deg, var(--color-bg) 0%, #fafafa 100%);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phase-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    background: var(--color-turquoise);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    min-width: 80px;
    text-align: center;
}

.phase-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
}

.phase-content {
    padding: 2rem;
}

.phase-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.phase-tasks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.phase-tasks li {
    padding-left: 2rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text);
}

.phase-tasks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-turquoise);
    font-weight: 700;
    font-size: 1.2rem;
}

.phase-tasks li strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* Why Choose Us Section */
.why-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg);
}

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

.benefit-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--color-turquoise);
}

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

.benefit-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.benefit-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* Responsive - M&A Pages */
@media (max-width: 968px) {
    .phase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

@media (max-width: 768px) {
    .ma-phases {
        gap: 2rem;
    }

    .phase-header {
        padding: 1.5rem;
    }

    .phase-content {
        padding: 1.5rem;
    }

    .phase-title {
        font-size: 1.35rem;
    }

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

/* Valuation Calculator Section */
.valuation-calculator-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg,
        rgba(35, 40, 40, 0.92) 0%,
        rgba(45, 55, 52, 0.94) 50%,
        rgba(55, 80, 70, 0.90) 100%
    );
    position: relative;
    overflow: hidden;
}

.valuation-calculator-section::before {
    content: '';
    position: absolute;
    top: 25%;
    right: 5%;
    width: 380px;
    height: 380px;
    background: rgba(116, 187, 160, 0.025);
    border-radius: 45% 55% 50% 50% / 50% 60% 40% 50%;
    animation: float-geometric-7 26s ease-in-out infinite;
    z-index: 0;
}

.valuation-calculator-section::after {
    content: '';
    position: absolute;
    bottom: 25%;
    left: 8%;
    width: 350px;
    height: 350px;
    background: rgba(116, 187, 160, 0.03);
    border-radius: 60% 40% 45% 55% / 55% 50% 50% 45%;
    animation: float-geometric-8 23s ease-in-out infinite;
    z-index: 0;
}

@keyframes float-geometric-7 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-40px, 30px) rotate(180deg);
    }
}

@keyframes float-geometric-8 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(35px, -35px) rotate(-180deg);
    }
}

.valuation-calculator-section .section-intro,
.valuation-calculator-section .section-title,
.valuation-calculator-section .section-description {
    position: relative;
    z-index: 1;
    color: var(--color-white);
}

.calculator-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 3rem auto 0;
}

.calculator-form {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

.form-group input,
.form-group select {
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-turquoise);
    box-shadow: 0 0 0 3px rgba(116, 187, 160, 0.1);
}

.form-help {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-style: italic;
}

.calculator-actions {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.calculator-disclaimer {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(116, 187, 160, 0.05);
    border-left: 4px solid var(--color-turquoise);
    border-radius: 8px;
}

.calculator-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0;
}

/* Calculator Results */
.calculator-results {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.results-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-border);
}

.results-header h3 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.results-sector {
    font-size: 1.1rem;
    color: var(--color-turquoise);
    font-weight: 600;
}

.results-main {
    margin-bottom: 2.5rem;
}

.result-card {
    background: linear-gradient(135deg,
        rgba(116, 187, 160, 0.08) 0%,
        rgba(116, 187, 160, 0.12) 100%
    );
    border: 2px solid var(--color-turquoise);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
}

.result-label {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.result-range {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.result-min,
.result-max {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

.result-separator {
    font-size: 1.5rem;
    color: var(--color-text-light);
}

.result-avg-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.result-avg {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-turquoise);
}

.results-methodology {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
}

.results-methodology h4 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.methodology-item {
    text-align: center;
}

.methodology-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.methodology-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.results-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

/* Professional valuation button - Same dark gradient as map/hover cards */
.btn-professional {
    background: linear-gradient(135deg,
        rgba(50, 55, 55, 0.75) 0%,
        rgba(65, 75, 72, 0.80) 50%,
        rgba(75, 105, 95, 0.70) 100%
    );
    color: var(--color-white);
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow:
        0 6px 25px rgba(0, 0, 0, 0.3),
        0 2px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(116, 187, 160, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #74bba0 0%, #5fa98a 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn-professional:hover::before {
    left: 0;
}

.btn-professional:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 12px 40px rgba(116, 187, 160, 0.5),
        0 6px 20px rgba(116, 187, 160, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(116, 187, 160, 0.5);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Ensure text is always on top and readable */
.btn-professional > * {
    position: relative;
    z-index: 1;
}

.results-disclaimer {
    padding: 1.5rem;
    background: rgba(238, 112, 106, 0.05);
    border-left: 4px solid var(--color-coral);
    border-radius: 8px;
}

.results-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0;
}

/* Email Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--color-white);
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--color-border);
}

.modal-header h3 {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-text-light);
    transition: all 0.2s ease;
    border-radius: 8px;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-primary);
}

.modal-body {
    padding: 2rem;
}

.modal-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--color-turquoise);
    text-decoration: underline;
}

.modal-submit {
    width: 100%;
}

/* Input validation styles */
.input-error {
    border-color: var(--color-coral) !important;
    background: rgba(238, 112, 106, 0.05) !important;
}

.error-message {
    color: var(--color-coral);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
    animation: fadeInDown 0.3s ease-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive adjustments for calculator */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .calculator-form,
    .calculator-results {
        padding: 2rem 1.5rem;
    }

    .result-range {
        flex-direction: column;
        gap: 0.5rem;
    }

    .result-separator {
        display: none;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .results-actions {
        flex-direction: column;
    }

    .results-actions .btn {
        width: 100%;
    }
}

/* ========================================
   RESPONSIVE DESIGN - HERO & EFFECTS
   ======================================== */

/* Large Tablets & Small Desktops (768px - 1024px) */
@media (max-width: 1024px) {
    .hero {
        padding: 140px 0 100px 0;
    }

    .hero .container {
        max-width: 700px;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 2rem;
    }

    .hero-title {
        font-size: clamp(2rem, 4.5vw, 3.5rem);
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-stats-inline {
        gap: 2rem;
    }

    /* Reducir cantidad de partículas en tablets */
    #particles-hero {
        opacity: 0.7;
    }

    /* Geometrías más sutiles */
    .arch-pillar {
        opacity: 0.5;
    }

    .arch-line {
        opacity: 0.5;
    }
}

/* Tablets (768px - 968px) */
@media (max-width: 968px) {
    .hero .container {
        max-width: 600px;
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 4vw, 3rem);
        letter-spacing: 0;
    }

    .hero-tagline {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-stats-inline {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .hero-cta-dual {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta-dual .btn {
        width: 100%;
        text-align: center;
    }

    /* Navbar responsive */
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }
}

/* Mobile Landscape & Small Tablets (481px - 768px) */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px 0;
        min-height: 100vh;
    }

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

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .hero-hook {
        font-size: clamp(1.1rem, 4vw, 1.25rem);
        line-height: 1.4;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .hero-tagline {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .hero-stats-inline {
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }

    .hero-stat-text {
        font-size: 0.8rem;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-cta-dual {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .hero-cta-dual .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Geometrías simplificadas en móvil */
    .arch-pillar {
        display: none;
    }

    .arch-line {
        opacity: 0.3;
    }

    .arch-frame {
        display: none;
    }

    .hero-sculpture {
        opacity: 0.15;
        transform: translate(-50%, -50%) scale(0.6);
    }

    /* Navbar mobile */
    .navbar {
        padding: 0.8rem 1rem;
    }

    .navbar-logo {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none; /* Ocultar en móvil - implementar hamburger menu si es necesario */
    }

    .nav-link-cta {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    /* Partículas desactivadas en móvil para mejor rendimiento */
    #particles-hero {
        display: none;
    }
}

/* Mobile Portrait (320px - 480px) */
@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px 0;
    }

    .hero .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
        margin-bottom: 0.75rem;
        line-height: 1.25;
    }

    .hero-hook {
        font-size: 1rem;
        line-height: 1.35;
        margin-top: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .hero-tagline {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-microcopy {
        font-size: 0.75rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }

    .hero-stats-inline {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }

    .hero-stat-text {
        font-size: 0.75rem;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-cta-dual .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Navbar ultra-compacto */
    .navbar {
        padding: 0.6rem 0.8rem;
    }

    .navbar-logo {
        font-size: 1.1rem;
    }

    .nav-link-cta {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* Geometrías mínimas */
    .hero-architecture {
        opacity: 0.3;
    }

    .arch-line {
        display: none;
    }

    .hero-sculpture {
        display: none;
    }
}

/* Extra Small Devices (< 320px) */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.4rem;
    }

    .hero-tagline {
        font-size: 0.8rem;
    }

    .hero-cta-dual .btn {
        font-size: 0.85rem;
        padding: 0.7rem 1rem;
    }
}

/* Large Screens (> 1440px) */
@media (min-width: 1441px) {
    .hero .container {
        max-width: 1100px;
    }

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

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-tagline {
        font-size: 1.25rem;
    }

    .hero-stat-number {
        font-size: 2.5rem;
    }
}

/* Ultra Wide Screens (> 1920px) */
@media (min-width: 1921px) {
    .hero .container {
        max-width: 1400px;
    }

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

    .hero-title {
        font-size: 5rem;
    }
}

/* ========== MOBILE FIX - PRIORITY OVERRIDES ========== */
/* Estas reglas tienen prioridad sobre las anteriores para arreglar problemas móvil */

@media (max-width: 768px) {
    /* NAVBAR MOBILE FIX - Mantener estilo original */
    .navbar .container {
        padding: 0.75rem 1.5rem !important;
        max-width: 100% !important;
        border-radius: 0 !important;
    }

    .logo-img {
        height: 36px !important;
    }

    /* MOBILE TOGGLE BUTTON - Mantener colores originales */
    .mobile-toggle {
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0.5rem !important;
        position: relative !important;
        z-index: 1001 !important;
    }

    .mobile-toggle span {
        width: 25px !important;
        height: 2px !important;
        transition: all 0.3s ease !important;
        display: block !important;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px) !important;
    }

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

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

    /* MOBILE MENU - Más compacto */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        background: #ffffff !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        gap: 0 !important;
        padding: 70px 0 30px 0 !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15) !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
    }

    .nav-menu.active {
        right: 0 !important;
    }

    /* Overlay oscuro */
    .nav-menu.active::before {
        content: '' !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.6) !important;
        z-index: -1 !important;
        animation: fadeIn 0.3s ease !important;
    }

    /* NAV LINKS MOBILE - Más compactos */
    .nav-link {
        color: #3c3c3b !important;
        font-size: 0.95rem !important;
        padding: 0.85rem 1.5rem !important;
        text-transform: none !important;
        letter-spacing: 0.02em !important;
        border-bottom: 1px solid rgba(60, 60, 59, 0.08) !important;
        transition: all 0.3s ease !important;
        font-weight: 500 !important;
    }

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

    .nav-link:hover {
        background: rgba(116, 187, 160, 0.08) !important;
        color: #74bba0 !important;
        transform: none !important;
    }

    /* DROPDOWN MOBILE */
    .nav-item-dropdown {
        width: 100% !important;
    }

    .nav-dropdown-trigger {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .dropdown-icon {
        transition: transform 0.3s ease !important;
    }

    .nav-item-dropdown.active .dropdown-icon {
        transform: rotate(180deg) !important;
    }

    .nav-dropdown {
        position: static !important;
        background: rgba(116, 187, 160, 0.05) !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.4s ease !important;
    }

    .nav-item-dropdown.active .nav-dropdown {
        max-height: 500px !important;
    }

    .nav-dropdown-item {
        padding: 0.75rem 1.5rem 0.75rem 2.5rem !important;
        border-bottom: 1px solid rgba(60, 60, 59, 0.05) !important;
        display: block !important;
    }

    .nav-dropdown-item:hover {
        background: rgba(116, 187, 160, 0.1) !important;
    }

    .dropdown-item-title {
        color: #3c3c3b !important;
        font-weight: 500 !important;
        font-size: 0.9rem !important;
        display: block !important;
        margin-bottom: 0.2rem !important;
    }

    .dropdown-item-desc {
        color: rgba(60, 60, 59, 0.6) !important;
        font-size: 0.75rem !important;
        display: block !important;
        line-height: 1.4 !important;
    }

    /* CTA BUTTON MOBILE - Más compacto */
    .nav-link-cta {
        background: #74bba0 !important;
        color: #ffffff !important;
        border: none !important;
        margin: 0.75rem 1.5rem !important;
        padding: 0.75rem 1.25rem !important;
        border-radius: 8px !important;
        text-align: center !important;
        font-weight: 600 !important;
        font-size: 0.9rem !important;
    }

    .nav-link-cta:hover {
        background: #5fa98a !important;
        color: #ffffff !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(116, 187, 160, 0.3) !important;
    }

    /* HERO MOBILE FIX */
    .hero {
        padding: 100px 0 60px 0 !important;
        min-height: auto !important;
    }

    .hero .container {
        padding: 0 1.5rem !important;
    }

    .hero-content {
        text-align: center !important;
        padding: 0 !important;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }

    .hero-hook {
        font-size: clamp(1rem, 4vw, 1.2rem) !important;
        line-height: 1.4 !important;
        margin: 1rem 0 !important;
    }

    .hero-tagline {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-stats-inline {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 2rem !important;
        margin: 2rem 0 !important;
        flex-wrap: wrap !important;
    }

    .hero-stat-item {
        flex: 0 1 auto !important;
    }

    .hero-stat-text {
        font-size: 0.85rem !important;
    }

    .hero-stat-divider {
        font-size: 1rem !important;
    }

    .hero-cta-dual {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: stretch !important;
    }

    .hero-cta-dual .btn {
        width: 100% !important;
        padding: 1rem 1.5rem !important;
        font-size: 0.95rem !important;
        justify-content: center !important;
    }

    .hero-microcopy {
        font-size: 0.8rem !important;
        margin-top: 1.5rem !important;
    }

    /* Ondas de fondo simplificadas */
    .growth-waves {
        opacity: 0.3 !important;
    }
}

@media (max-width: 480px) {
    /* NAVBAR EXTRA SMALL */
    .logo-img {
        height: 32px !important;
    }

    .navbar .container {
        padding: 0.65rem 1rem !important;
    }

    /* HERO EXTRA SMALL */
    .hero {
        padding: 90px 0 50px 0 !important;
    }

    .hero .container {
        padding: 0 1rem !important;
    }

    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem) !important;
        line-height: 1.25 !important;
    }

    .hero-hook {
        font-size: 1rem !important;
        margin: 0.75rem 0 !important;
    }

    .hero-tagline {
        font-size: 0.88rem !important;
        margin-bottom: 1.25rem !important;
    }

    .hero-stats-inline {
        gap: 1.5rem !important;
        margin: 1.5rem 0 !important;
    }

    .hero-stat-text {
        font-size: 0.75rem !important;
    }

    .hero-stat-divider {
        display: none !important;
    }

    .hero-cta-dual .btn {
        padding: 0.9rem 1.25rem !important;
        font-size: 0.9rem !important;
    }

    .hero-microcopy {
        font-size: 0.75rem !important;
        line-height: 1.6 !important;
    }

    /* ABOUT SECTION MOBILE */
    .about-section {
        padding: 50px 0 !important;
    }

    .about-image-wrapper {
        height: 350px !important;
    }

    .about-quote-box {
        bottom: 12px !important;
        left: 12px !important;
        max-width: 280px !important;
        padding: 0.9rem 1.1rem !important;
    }

    .quote-icon {
        font-size: 1.8rem !important;
        margin-bottom: -0.4rem !important;
    }

    .quote-text {
        font-size: 0.8rem !important;
        line-height: 1.45 !important;
    }

    .about-floating-stat {
        bottom: 15px !important;
        right: 15px !important;
        padding: 1rem 1.5rem !important;
    }

    .floating-stat-number {
        font-size: 2rem !important;
    }

    .floating-stat-label {
        font-size: 0.7rem !important;
    }

    .about-text-lead {
        font-size: 1rem !important;
    }

    .about-text {
        font-size: 0.95rem !important;
    }

    .about-pillar {
        padding: 1.25rem !important;
    }

    .pillar-icon {
        width: 56px !important;
        height: 56px !important;
        margin-bottom: 1rem !important;
    }

    .pillar-title {
        font-size: 0.95rem !important;
    }

    .pillar-desc {
        font-size: 0.85rem !important;
    }

    .about-stats-inline {
        padding: 1.5rem !important;
    }

    .about-stat-number {
        font-size: 2rem !important;
    }

    .about-stat-label {
        font-size: 0.75rem !important;
    }

    .about-cta {
        margin-top: 2rem !important;
    }

    .btn-about-cta {
        width: 100% !important;
        padding: 0.9rem 2rem !important;
        font-size: 0.95rem !important;
    }

    /* Process section mobile */
    .process-section {
        padding: 50px 0 !important;
    }

    .process-grid {
        gap: 1.5rem !important;
    }

    .process-card {
        padding: 1.75rem !important;
    }

    .process-number {
        font-size: 2.5rem !important;
        top: 1.25rem !important;
        right: 1.25rem !important;
    }

    .process-icon {
        width: 56px !important;
        height: 56px !important;
    }

    .process-title {
        font-size: 1.25rem !important;
    }

    .process-subtitle {
        font-size: 0.9rem !important;
    }

    .process-description {
        font-size: 0.88rem !important;
    }

    .process-details li {
        font-size: 0.85rem !important;
    }
}

/* ========================================
   OCULTAR SCROLL INDICATOR
   ======================================== */
.scroll-indicator {
    display: none !important;
}
