/* ═══════════════════════════════════════════════════════════════
   INBURSA PREMIUM - Diseño Patrimonial de Élite
   ═══════════════════════════════════════════════════════════════ */

/* === CSS Variables === */
:root {
    /* Colores Premium */
    --gold: #C9A962;
    --gold-light: #E0C988;
    --gold-dark: #8B7355;
    --navy: #0A1628;
    --navy-light: #132039;
    --navy-dark: #060E1A;
    --charcoal: #1A2332;
    --slate: #2D3748;
    --silver: #A0AEC0;
    --white: #FFFFFF;
    --off-white: #F7F8FA;
    
    /* Gradientes */
    --gradient-gold: linear-gradient(135deg, var(--gold), var(--gold-dark));
    --gradient-navy: linear-gradient(180deg, var(--navy), var(--navy-dark));
    --gradient-premium: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 50%, var(--navy-dark) 100%);
    
    /* Tipografía */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Espaciado */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Bordes */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 30px rgba(201, 169, 98, 0.3);
    
    /* Transiciones */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* WhatsApp */
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* === Container === */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* === Typography === */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-lg);
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.text-gold {
    color: var(--gold);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--silver);
    max-width: 600px;
}

/* === Loader === */
.loader {
    position: fixed;
    inset: 0;
    background: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo svg {
    width: 80px;
    height: 80px;
    animation: loader-pulse 2s ease-in-out infinite;
}

.loader-check {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: loader-check 1.5s ease forwards 0.5s;
}

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

@keyframes loader-check {
    to { stroke-dashoffset: 0; }
}

.loader-text {
    margin-top: var(--space-lg);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
}

/* === Custom Cursor === */
.cursor, .cursor-follower {
    display: none;
}

@media (pointer: fine) {
    .cursor {
        display: block;
        position: fixed;
        width: 8px;
        height: 8px;
        background: var(--gold);
        border-radius: 50%;
        pointer-events: none;
        z-index: 10000;
        transform: translate(-50%, -50%);
        transition: transform 0.1s, opacity 0.3s;
    }

    .cursor-follower {
        display: block;
        position: fixed;
        width: 30px;
        height: 30px;
        border: 1px solid var(--gold);
        border-radius: 50%;
        pointer-events: none;
        z-index: 10000;
        transform: translate(-50%, -50%);
        transition: transform 0.15s, width 0.3s, height 0.3s, border-color 0.3s;
        opacity: 0.5;
    }

    body:hover .cursor,
    body:hover .cursor-follower {
        opacity: 1;
    }

    a:hover ~ .cursor,
    button:hover ~ .cursor {
        transform: translate(-50%, -50%) scale(2);
    }
}

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 1000;
    transition: var(--transition-base);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--whatsapp);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--charcoal);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-md) 0;
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.logo-mark {
    width: 45px;
    height: 45px;
    color: var(--gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--white);
}

.logo-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--silver);
    transition: var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition-base);
}

.nav-link:hover {
    color: var(--white);
}

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

.nav-cta {
    background: var(--gradient-gold);
    color: var(--navy) !important;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
}

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

.nav-cta:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-base);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 20%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 30% 80%, rgba(201, 169, 98, 0.05) 0%, transparent 40%),
                var(--gradient-premium);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(201, 169, 98, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 98, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xl);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.badge-line {
    width: 20px;
    height: 1px;
    background: rgba(201, 169, 98, 0.5);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

.title-line {
    display: block;
}

.title-accent {
    color: var(--gold);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--silver);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    max-width: 520px;
}

.hero-description strong {
    color: var(--white);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gold);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--silver);
    line-height: 1.4;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(201, 169, 98, 0.3);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1), rgba(201, 169, 98, 0.02));
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-shine {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(201, 169, 98, 0.1) 50%,
        transparent 60%
    );
    animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { transform: translateX(-50%) translateY(-50%) rotate(0deg); }
    50% { transform: translateX(50%) translateY(50%) rotate(0deg); }
}

.card-content {
    text-align: center;
    padding: var(--space-2xl);
}

.card-icon svg {
    width: 120px;
    height: 120px;
    margin-bottom: var(--space-lg);
}

.card-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.card-content p {
    font-size: 0.875rem;
    color: var(--silver);
}

/* Visual Floats */
.visual-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(10, 22, 40, 0.9);
    border: 1px solid rgba(201, 169, 98, 0.2);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    animation: float 6s ease-in-out infinite;
}

.float-icon {
    font-size: 1rem;
}

.visual-float-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.visual-float-2 {
    bottom: 30%;
    left: -15%;
    animation-delay: 2s;
}

.visual-float-3 {
    bottom: 5%;
    right: 5%;
    animation-delay: 4s;
}

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

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--silver);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.scroll-indicator {
    width: 20px;
    height: 32px;
    border: 1px solid var(--gold);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: var(--radius-full);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
}

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

.btn-primary {
    background: var(--gradient-gold);
    color: var(--navy);
}

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

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

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

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gold);
}

.btn-outline-light:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    justify-content: center;
    width: 100%;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

/* === Marquee === */
.marquee-section {
    background: rgba(201, 169, 98, 0.05);
    border-top: 1px solid rgba(201, 169, 98, 0.1);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    padding: var(--space-md) 0;
    overflow: hidden;
}

.marquee {
    display: flex;
    width: 100%;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    white-space: nowrap;
    padding: 0 var(--space-2xl);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    text-transform: uppercase;
}

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

/* === About Section === */
.about {
    padding: var(--space-4xl) 0;
    background: var(--navy-light);
}

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

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

.about-text strong {
    color: var(--white);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.feature {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.feature h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.feature p {
    font-size: 0.875rem;
    color: var(--silver);
}

/* Timeline */
.visual-timeline {
    position: relative;
    padding-left: var(--space-2xl);
}

.timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-item {
    position: relative;
    padding-bottom: var(--space-xl);
    padding-left: var(--space-lg);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--space-2xl) - 5px);
    top: 4px;
    width: 12px;
    height: 12px;
    background: var(--navy-light);
    border: 2px solid var(--gold);
    border-radius: 50%;
}

.timeline-item.active::before {
    background: var(--gold);
    box-shadow: 0 0 20px var(--gold);
}

.timeline-year {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.timeline-item p {
    font-size: 0.9375rem;
    color: var(--silver);
}

/* === Solutions Section === */
.solutions {
    padding: var(--space-4xl) 0;
    background: var(--navy);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header .section-subtitle {
    margin: 0 auto;
}

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

.solution-card {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.05), transparent);
    border: 1px solid rgba(201, 169, 98, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 98, 0.4);
    box-shadow: var(--shadow-lg);
}

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

.solution-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1), rgba(201, 169, 98, 0.02));
}

.card-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--gold);
    color: var(--navy);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.card-header h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
}

.card-description {
    font-size: 0.9375rem;
    color: var(--silver);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.card-features {
    margin-bottom: var(--space-lg);
}

.card-features li {
    font-size: 0.875rem;
    color: var(--silver);
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition-base);
}

.card-cta:hover {
    gap: var(--space-md);
}

.card-cta svg {
    transition: var(--transition-base);
}

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

/* === Backing Section === */
.backing {
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.backing-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.backing-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--navy-dark) 100%);
}

.section-header.light {
    color: var(--white);
}

.backing-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.backing-stat {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(201, 169, 98, 0.05);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: var(--radius-xl);
}

.backing-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
    display: block;
}

.backing-number .unit {
    font-size: 1rem;
    font-weight: 400;
}

.backing-label {
    font-size: 0.875rem;
    color: var(--silver);
    margin-top: var(--space-sm);
    display: block;
}

.backing-logos {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.logo-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(201, 169, 98, 0.05);
    border: 1px solid rgba(201, 169, 98, 0.15);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--silver);
}

.logo-icon {
    font-size: 1.25rem;
}

.backing-quote {
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
    text-align: center;
}

.backing-quote blockquote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.backing-quote cite {
    font-size: 0.875rem;
    color: var(--gold);
}

.backing-cta {
    text-align: center;
}

/* === Value Proposition Section === */
.value-prop {
    padding: var(--space-3xl) 0;
    background: var(--navy-light);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

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

.value-item {
    text-align: center;
    padding: var(--space-xl);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.2);
    color: var(--gold);
    margin-bottom: var(--space-lg);
}

.value-item h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.value-item p {
    font-size: 0.9375rem;
    color: var(--silver);
    line-height: 1.6;
}

/* Float icons with SVG */
.float-icon-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

/* === FAQ Section === */
.faq {
    padding: var(--space-4xl) 0;
    background: var(--navy-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.faq-item {
    background: rgba(201, 169, 98, 0.05);
    border: 1px solid rgba(201, 169, 98, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.faq-item h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.faq-item p {
    font-size: 0.9375rem;
    color: var(--silver);
    line-height: 1.7;
}

.faq-more {
    text-align: center;
}

.faq-more p {
    color: var(--silver);
    margin-bottom: var(--space-md);
}

/* === Solutions CTA === */
.solutions-cta {
    text-align: center;
    margin-top: var(--space-3xl);
    padding: var(--space-2xl);
    background: rgba(201, 169, 98, 0.08);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: var(--radius-xl);
}

.solutions-cta p {
    color: var(--silver);
    margin-bottom: var(--space-lg);
    font-size: 1.125rem;
}

/* === Card Ideal Section === */
.card-subtitle {
    font-size: 0.875rem;
    color: var(--gold);
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.card-ideal {
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
}

.ideal-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: var(--space-sm);
}

.card-ideal ul {
    list-style: none;
}

.card-ideal li {
    font-size: 0.8125rem;
    color: var(--silver);
    padding: var(--space-xs) 0;
    padding-left: var(--space-md);
    position: relative;
}

.card-ideal li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* === Backing Section (simplified) === */
.backing {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.backing-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.backing-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--navy-dark) 100%);
}

.backing-content {
    text-align: center;
}

.backing-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}

.backing-content > p {
    color: var(--silver);
    margin-bottom: var(--space-xl);
}

.backing-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.backing-badge {
    text-align: center;
    padding: var(--space-lg) var(--space-xl);
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.25);
    border-radius: var(--radius-lg);
    min-width: 150px;
}

.badge-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--gold);
    font-weight: 600;
}

.badge-label {
    font-size: 0.8125rem;
    color: var(--silver);
}

/* === Process Section === */
.process {
    padding: var(--space-4xl) 0;
    background: var(--navy);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--silver);
    line-height: 1.7;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: var(--space-lg) auto 0;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.process-connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-top: 80px;
    opacity: 0.3;
}

/* === Contact Section === */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--navy);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-description {
    font-size: 1.0625rem;
    color: var(--silver);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.info-item {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.info-item p {
    font-size: 0.9375rem;
    color: var(--silver);
    line-height: 1.6;
}

.info-item em {
    color: var(--gold);
    font-style: normal;
}

/* Contact Card */
.contact-card {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.08), rgba(201, 169, 98, 0.02));
    border: 1px solid rgba(201, 169, 98, 0.25);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.card-header-contact {
    background: rgba(201, 169, 98, 0.1);
    padding: var(--space-2xl);
    text-align: center;
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.whatsapp-icon-large {
    width: 80px;
    height: 80px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

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

.card-header-contact h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.phone-display {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.card-body-contact {
    padding: var(--space-xl);
}

.card-body-contact > p {
    font-size: 0.9375rem;
    color: var(--silver);
    margin-bottom: var(--space-md);
}

.card-body-contact ul {
    margin-bottom: var(--space-xl);
}

.card-body-contact li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
    font-size: 0.9375rem;
    color: var(--silver);
}

.card-body-contact li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.card-footer-contact {
    padding: var(--space-md) var(--space-xl);
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 0.75rem;
    color: var(--silver);
}

.security-badge svg {
    color: var(--gold);
}

/* === Footer === */
.footer {
    background: var(--navy-dark);
    padding: var(--space-4xl) 0 var(--space-xl);
    border-top: 1px solid rgba(201, 169, 98, 0.1);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer-logo .logo-mark {
    width: 40px;
    height: 40px;
}

.footer-description {
    font-size: 0.9375rem;
    color: var(--silver);
    line-height: 1.8;
}

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

.footer-column h4 {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    color: var(--gold);
}

.footer-column li {
    margin-bottom: var(--space-sm);
}

.footer-column a {
    font-size: 0.9375rem;
    color: var(--silver);
    transition: var(--transition-base);
}

.footer-column a:hover {
    color: var(--white);
    padding-left: var(--space-sm);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(201, 169, 98, 0.1);
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.footer-legal p {
    font-size: 0.8125rem;
    color: var(--silver);
    margin-bottom: var(--space-xs);
}

.disclaimer {
    font-size: 0.75rem !important;
    opacity: 0.7;
}

.footer-badges {
    display: flex;
    gap: var(--space-sm);
}

.footer-badges .badge {
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* === Animations (AOS-like) === */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

/* === Responsive === */
/* === Btn Outline === */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--navy-dark);
        flex-direction: column;
        padding: 100px var(--space-xl) var(--space-xl);
        gap: var(--space-lg);
        transition: var(--transition-base);
        border-left: 1px solid rgba(201, 169, 98, 0.2);
    }

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

    .nav-toggle {
        display: flex;
        z-index: 101;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

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

    .backing-badges {
        flex-direction: column;
        align-items: center;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-connector {
        width: 2px;
        height: 40px;
        margin: 0;
        background: linear-gradient(180deg, var(--gold), transparent);
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

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

    .section-title {
        font-size: 1.75rem;
    }

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

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