/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
    /* Gold Palette */
    --gold-light: #F4E4BA;
    --gold: #D4AF37;
    --gold-rich: #C5A028;
    --gold-deep: #B8860B;
    --gold-gradient: linear-gradient(135deg, #F4E4BA 0%, #D4AF37 25%, #C5A028 50%, #D4AF37 75%, #F4E4BA 100%);
    --gold-text-gradient: linear-gradient(90deg, #F4E4BA, #D4AF37, #F4E4BA);
    
    /* Dark Palette */
    --black-pure: #000000;
    --black-rich: #0A0A0A;
    --black-soft: #121212;
    --black-lighter: #1A1A1A;
    --black-card: #0F0F0F;
    
    /* Accent */
    --white: #FFFFFF;
    --white-muted: rgba(255, 255, 255, 0.85);
    --white-soft: rgba(255, 255, 255, 0.6);
    
    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: clamp(80px, 12vw, 160px);
    --container-width: min(90%, 1400px);
    
    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--black-rich);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--gold);
    color: var(--black-pure);
}

img, video {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    width: var(--container-width);
    margin: 0 auto;
}

.gold-text {
    background: var(--gold-text-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s var(--ease-out-expo);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   DECORATIVE ELEMENTS
   ======================================== */
.gold-line {
    width: 80px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 24px auto;
}

.gold-line-left {
    margin-left: 0;
}

.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 32px 0;
}

.ornament::before,
.ornament::after {
    content: '';
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornament-icon {
    width: 12px;
    height: 12px;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
    position: relative;
}

.ornament-icon::before {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1px solid var(--gold);
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out-quart);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.logo-flag {
    width: 32px;
    height: 24px;
    display: flex;
    flex-direction: column;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    margin-top: 6px;
}

.logo-flag span:nth-child(1),
.logo-flag span:nth-child(3) {
    flex: 1;
    background: #c60b1e;
}

.logo-flag span:nth-child(2) {
    flex: 2;
    background: #ffc400;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.logo-year {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.25em;
    text-align: right;
    margin-top: -2px;
    line-height: 1;
}

.nav-cta {
    padding: 12px 28px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-quart);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease-out-quart);
}

.nav-cta span {
    position: relative;
    z-index: 1;
}

.nav-cta:hover {
    color: var(--black-pure);
}

.nav-cta:hover::before {
    transform: translateX(0);
}

/* ========================================
   HERO SECTION
   ======================================== */
.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-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
        linear-gradient(180deg, var(--black-rich) 0%, var(--black-pure) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        linear-gradient(var(--gold) 1px, transparent 1px),
        linear-gradient(90deg, var(--gold) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 20px 0 rgba(212, 175, 55, 0.2); }
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--white-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--gold-gradient);
    background-size: 200% auto;
    color: var(--black-pure);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-quart);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.btn-primary-arrow {
    transition: transform 0.3s var(--ease-out-quart);
}

.btn-primary:hover .btn-primary-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: transparent;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s var(--ease-out-quart);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-video-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 55, 0.1);
}

.hero-video-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gold-gradient);
    z-index: -1;
    border-radius: 10px;
    opacity: 0.5;
}

.hero-video {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--black-pure);
    display: block;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s var(--ease-out-expo);
    backdrop-filter: blur(2px);
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.2);
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(0);
}

.play-button {
    width: 90px;
    height: 90px;
    background: var(--gold-gradient);
    background-size: 200% auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: 
        0 10px 40px rgba(212, 175, 55, 0.5),
        0 0 0 0 rgba(212, 175, 55, 0.4);
    animation: play-pulse 2s ease-in-out infinite;
}

@keyframes play-pulse {
    0%, 100% { 
        box-shadow: 
            0 10px 40px rgba(212, 175, 55, 0.5),
            0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    50% { 
        box-shadow: 
            0 10px 40px rgba(212, 175, 55, 0.5),
            0 0 0 15px rgba(212, 175, 55, 0);
    }
}

.video-overlay:hover .play-button {
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
}

.play-button svg {
    width: 28px;
    height: 28px;
    fill: var(--black-pure);
    margin-left: 4px;
    transition: transform 0.3s var(--ease-out-quart);
}

.video-overlay:hover .play-button svg {
    transform: scale(1.1);
}

/* Indicador de pausa al hacer hover sobre video en reproducción */
.hero-video-wrapper:hover .pause-indicator {
    opacity: 1;
}

.pause-indicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s var(--ease-out-quart);
    pointer-events: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--white-muted);
}

.pause-indicator svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
}

.video-overlay:not(.hidden) + .pause-indicator,
.hero-video-wrapper:has(.video-overlay:not(.hidden)) .pause-indicator {
    display: none;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats {
    padding: 60px 0;
    background: var(--black-pure);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-soft);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: var(--section-padding) 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-text {
    color: var(--white-muted);
    font-weight: 300;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 0.875rem;
    color: var(--white-soft);
    font-weight: 300;
}

.about-visual {
    position: relative;
}

.about-card {
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 48px;
    position: relative;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: var(--gold-gradient);
}

.about-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--gold-light);
}

.benefit-grid {
    display: grid;
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(212, 175, 55, 0.03);
    border-left: 2px solid var(--gold);
    transition: all 0.3s var(--ease-out-quart);
}

.benefit-item:hover {
    background: rgba(212, 175, 55, 0.08);
    transform: translateX(8px);
}

.benefit-check {
    width: 24px;
    height: 24px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-check svg {
    width: 12px;
    height: 12px;
    stroke: var(--black-pure);
    stroke-width: 3;
}

.benefit-text {
    font-size: 0.95rem;
    font-weight: 400;
}

/* ========================================
   OPPORTUNITY SECTION
   ======================================== */
.opportunity {
    padding: var(--section-padding) 0;
    background: var(--black-pure);
    position: relative;
    overflow: hidden;
}

.opportunity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.opportunity-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.opportunity-card {
    background: var(--black-soft);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-quart);
}

.opportunity-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-quart);
}

.opportunity-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
}

.opportunity-card:hover::before {
    opacity: 0.03;
}

.opportunity-card > * {
    position: relative;
    z-index: 1;
}

.card-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 600;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
    margin-bottom: 24px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.card-text {
    color: var(--white-soft);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
}

/* ========================================
   FORM SECTION
   ======================================== */
.form-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--black-rich) 0%, var(--black-pure) 100%);
    position: relative;
}

.form-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: radial-gradient(ellipse at center bottom, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.form-info {
    position: sticky;
    top: 120px;
}

.form-quote {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-style: italic;
    color: var(--gold-light);
    margin-top: 40px;
    padding-left: 24px;
    border-left: 2px solid var(--gold);
}

.urgency-box {
    margin-top: 48px;
    padding: 32px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.urgency-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.urgency-text {
    font-size: 0.95rem;
    color: var(--white-muted);
    font-weight: 300;
}

.form-container {
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 56px;
    position: relative;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--white-soft);
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-soft);
    margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--black-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-out-quart);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23D4AF37' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-select option {
    background: var(--black-soft);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    margin-top: 16px;
    padding: 20px;
    background: var(--gold-gradient);
    background-size: 200% auto;
    border: none;
    color: var(--black-pure);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-quart);
}

.form-submit:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-privacy {
    margin-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--white-soft);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 48px 0;
    background: var(--black-pure);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--white-soft);
}

.footer-legal {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   SUCCESS MODAL
   ======================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out-quart);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    max-width: 800px;
    width: 100%;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.5s var(--ease-out-expo);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.modal-video {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--black-pure);
}

.modal-content {
    padding: 40px;
    text-align: center;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.modal-text {
    color: var(--white-muted);
    font-weight: 300;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-badge {
        margin: 0 auto 32px;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .opportunity-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .form-info {
        position: static;
        text-align: center;
    }

    .form-quote {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid var(--gold);
        padding-top: 24px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 12px;
    }

    .header {
        padding: 16px 0;
    }

    .header.scrolled {
        padding: 10px 0;
    }

    .hero {
        padding-top: 160px;
    }

    .logo {
        align-items: center;
    }

    .logo-flag {
        margin-top: 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item::after {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 32px 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .btn-primary,
    .btn-secondary {
        padding: 16px 28px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 220px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .header-content {
        gap: 20px;
    }

    .logo {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .logo-flag {
        width: 70px;
        height: 50px;
        border-radius: 4px;
        box-shadow: 
            0 4px 15px rgba(0,0,0,0.4),
            0 0 0 2px rgba(212, 175, 55, 0.3);
    }

    .logo > div:last-child {
        text-align: center;
    }

    .logo-text {
        font-size: 1.6rem;
        letter-spacing: 0.12em;
    }

    .logo-year {
        font-size: 1.8rem;
        text-align: center;
        letter-spacing: 0.35em;
        margin-top: 2px;
    }

    .nav-cta {
        padding: 14px 32px;
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }

    .hero-badge {
        margin-top: 20px;
    }
}

/* ========================================
   LOADING STATE
   ======================================== */
.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
