/* ELITE CORPORATE DESIGN SYSTEM */
:root {
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --c-black: #050505;
    --c-dark-gray: #111111;
    --c-white: #ffffff;
    --c-off-white: #F8F8F8;
    --c-accent: #D4AF37; /* Champange Gold / High-end corporate */
    --c-accent-dark: #A68420;
    
    --glass-bg: rgba(15, 15, 20, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background-color: var(--c-black);
    color: var(--c-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-lg { max-width: 800px; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mt-8 { margin-top: 4rem; }
.mt-12 { margin-top: 6rem; }
.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: 2rem; }
.mb-8 { margin-bottom: 4rem; }
.opacity-50 { opacity: 0.5; }
.py-6 { padding-top: 3rem; padding-bottom: 3rem; }

/* Colors & Sections */
.premium-white { background-color: var(--c-off-white); color: var(--c-black); }
.bg-deep { background-color: var(--c-dark-gray); }
.content-section { padding: 160px 0; }
.p-huge { padding: 200px 0; }
.border-bottom { border-bottom: 1px solid rgba(0,0,0,0.05); }

/* Typography */
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.1; letter-spacing: -0.02em; }

h1 { font-size: 80px; font-weight: 200; }
h1 strong, h1 .text-accent { font-weight: 600; color: var(--c-accent); }

h2 { font-size: 56px; font-weight: 400; }
h3 { font-size: 24px; font-weight: 600; margin-bottom: 1rem; }

.massive-text { font-size: 72px; font-weight: 200; }

.editorial-kicker {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}
.editorial-kicker.center { justify-content: center; }
.editorial-kicker.dark-kicker { color: rgba(0,0,0,0.4); }

.body-large { font-size: 24px; font-weight: 300; line-height: 1.5; color: inherit; }
.body-text { font-size: 17px; font-weight: 400; color: rgba(255,255,255,0.7); }
.premium-white .body-text { color: rgba(0,0,0,0.6); }

.seo-subtext {
    font-size: 13px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-accent);
}
.premium-white .seo-subtext { color: rgba(0,0,0,0.4); }

/* Navigation */
.premium-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 30px 60px;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease;
}

.premium-nav {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-brand { display: flex; align-items: center; }
.brand-logo {
    height: 48px;
    object-fit: contain;
}
.nav-cr { font-family: var(--font-body); font-size: 12px; opacity: 0.6; letter-spacing: 1px; }

.nav-links { display: flex; gap: 40px; }
.nav-links a {
    color: var(--c-white); text-decoration: none;
    font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
    position: relative; padding-bottom: 6px;
}
.nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 0%; height: 1px; background: var(--c-accent);
    transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

/* Hero Sections */
.parallax {
    background-attachment: fixed; background-position: center;
    background-repeat: no-repeat; background-size: cover;
    position: relative;
}
.hero { 
    min-height: 100vh; 
    display: flex; 
    align-items: center; /* Changed from flex-end to center to fix vertical cropping */
    padding-top: 140px; /* Buffer for the fixed nav */
    padding-bottom: 60px; 
}
.hero-half { min-height: 70vh; display: flex; align-items: center; justify-content: center; }

.overlay-gradient {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(5,5,5,1) 0%, rgba(5,5,5,0.4) 50%, rgba(5,5,5,0.2) 100%);
    pointer-events: none;
}
.overlay-gradient-heavy {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5,5,5,0.6); pointer-events: none;
}

.hero-content { position: relative; z-index: 10; }

.hero-split {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    margin-top: 60px; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 40px;
}
.hero-split .sub-headline { font-size: 20px; font-weight: 300; line-height: 1.6; }
.hero-split .seo-keywords p { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; line-height: 2; }

/* Authorized Logos Strip */
.trust-banner {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}
.trust-logo-img {
    height: 20px;
    object-fit: contain;
    filter: grayscale(100%) brightness(500%); /* Turns clearbit logos stark white */
    opacity: 0.6;
    transition: opacity 0.4s ease;
}
.trust-logo-img:hover {
    opacity: 1;
}

.trust-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 6px;
    color: rgba(255,255,255,0.2);
    transition: color 0.4s ease;
    cursor: default;
}
.trust-logo:hover {
    color: var(--c-accent);
}


/* Elite CTA Links */
.elite-cta {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--c-white);
    text-decoration: none;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--c-accent);
    transition: all 0.3s ease;
}
.elite-cta:hover { color: var(--c-accent); padding-right: 10px; }
.premium-white .elite-cta { color: var(--c-black); border-bottom: 1px solid var(--c-black); }
.premium-white .elite-cta:hover { color: var(--c-accent); padding-right: 10px; border-bottom: 1px solid var(--c-accent); }


/* Layout Offsets */
.layout-offset { display: grid; grid-template-columns: 5fr 7fr; gap: 100px; align-items: start; }
.border-left-accent { border-left: 1px solid rgba(0,0,0,0.1); padding-left: 60px; }

/* Grids & Cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    padding: 60px 40px;
    border-radius: 2px;
}
.card-number {
    font-family: var(--font-heading); font-size: 64px; font-weight: 200;
    color: var(--c-accent); margin-bottom: 20px; line-height: 1;
}

/* Elegant Lists */
.elite-list { list-style: none; text-align: left; }
.elite-list li {
    font-family: var(--font-heading); font-size: 32px; font-weight: 300;
    padding: 24px 0; border-bottom: 1px solid rgba(0,0,0,0.1);
    display: flex; align-items: center; gap: 30px;
}
.elite-list .list-line { width: 40px; height: 1px; background: var(--c-accent); display: inline-block; }

.small-list li { font-size: 20px; padding: 16px 0; }
.small-list .list-line { width: 20px; }

/* Minimal Matrix */
.minimal-matrix {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    background: rgba(255,255,255,0.05); /* 1px gaps act as borders */
    border: 1px solid rgba(255,255,255,0.05);
}
.matrix-item {
    background: var(--c-dark-gray); padding: 50px 30px;
    font-family: var(--font-heading); font-size: 20px; font-weight: 400; letter-spacing: 1px;
}

/* Footer Focus */
.footer-elite {
    padding: 160px 0 60px;
    background: var(--c-black);
    position: relative;
}
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col .label { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--c-accent); }
.footer-col .value { font-size: 18px; font-weight: 300; line-height: 1.5; color: rgba(255,255,255,0.8); }
.footer-col .link-style { font-family: var(--font-heading); font-weight: 500; color: var(--c-white); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 4px; display: inline-block; margin-top: 4px; transition: border-color 0.3s ease; }
.footer-col .link-style:hover { border-bottom: 1px solid var(--c-accent); color: var(--c-accent); }

/* Floating WhatsApp Link */
.floating-wa {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
}
.floating-wa:hover { transform: scale(1.1); background-color: #128C7E; }


/* --- LEAD POPUP OVERLAY --- */
.lead-popup-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s ease;
}
.lead-popup-overlay.show-popup { opacity: 1; pointer-events: auto; }

.lead-popup-modal {
    width: 90%; max-width: 380px;
    background: #333; border-radius: 16px; overflow: hidden;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.lead-popup-overlay.show-popup .lead-popup-modal { transform: translateY(0) scale(1); }

.lead-popup-close {
    position: absolute; top: 15px; right: 15px;
    background: #fff; border: none; border-radius: 50%; width: 32px; height: 32px;
    font-size: 24px; line-height: 1; color: #333; cursor: pointer;
    display: flex; justify-content: center; align-items: center; z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2); transition: transform 0.2s;
}
.lead-popup-close:hover { transform: scale(1.1); }

.lead-popup-top {
    position: relative; height: 240px;
    background: linear-gradient(to bottom, rgba(16, 116, 126, 0.7), rgba(0, 150, 136, 1)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=600&auto=format&fit=crop') center/cover;
    background-blend-mode: overlay;
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
    padding-bottom: 25px;
}

.lead-popup-avatar-wrapper {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%);
    width: 90px; height: 90px;
}
.lead-popup-avatar-wrapper::before,
.lead-popup-avatar-wrapper::after {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    border-radius: 50%; background: rgba(255,255,255,0.15); pointer-events: none;
}
.lead-popup-avatar-wrapper::before { width: 150px; height: 150px; }
.lead-popup-avatar-wrapper::after { width: 220px; height: 220px; }

.lead-popup-avatar {
    width: 90px; height: 90px; border-radius: 14px;
    border: 3px solid #fff; overflow: hidden; position: relative; z-index: 2;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.lead-popup-avatar img { width: 100%; height: 100%; object-fit: cover; }

.lead-popup-top p {
    color: #fff; font-family: var(--font-heading); font-size: 14px; font-weight: 600; 
    z-index: 2; position: relative;
}

.lead-popup-bottom {
    padding: 30px; text-align: center; background: #333;
}
.lead-popup-bottom h3 {
    font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px;
}
.lead-popup-bottom .subtitle {
    font-size: 17px; font-weight: 600; color: #00E5FF; margin-bottom: 25px; line-height: 1.4;
}
.lead-popup-bottom .preference {
    font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 15px;
}

.lead-popup-actions { display: flex; flex-direction: column; gap: 12px; }
.lead-popup-actions .btn {
    background: #e5e5e5; color: #111; text-decoration: none; font-family: var(--font-heading); font-weight: 700; font-size: 16px;
    padding: 14px 20px; border-radius: 6px; display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: background 0.2s ease, transform 0.2s ease; border: none; cursor: pointer;
}
.lead-popup-actions .btn:hover { background: #fff; transform: translateY(-2px); }

/* Animations Engine */
.reveal-up, .reveal-fade, .reveal-nav {
    opacity: 0;
    will-change: transform, opacity;
}
.reveal-up { transform: translateY(40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-fade { transition: opacity 1.5s ease; }
.reveal-nav { transform: translateY(-30px); transition: all 0.8s ease 0.2s; }

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

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    h1 { font-size: 60px; }
    h2 { font-size: 48px; }
    .hero-split { grid-template-columns: 1fr; gap: 40px; }
    .layout-offset { grid-template-columns: 1fr; gap: 60px; }
    .grid-3 { grid-template-columns: 1fr; }
    .border-left-accent { border-left: none; padding-left: 0; border-top: 1px solid rgba(0,0,0,0.1); padding-top: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: left;}
    .trust-logo { font-size: 22px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .premium-nav { padding: 15px 20px; }
    .nav-links { display: none; }
    .nav-cr { display: none; } /* Clear up space for purely the logo on mobile */
    .hero { padding-top: 100px; padding-bottom: 60px; }
    .hero-split { margin-top: 40px; padding-top: 20px; gap: 30px; }
    .content-section { padding: 80px 0; }
    .p-huge { padding: 80px 0; }
    h1 { font-size: 36px; }
    h2, .massive-text { font-size: 32px; font-weight: 300; }
    .body-large { font-size: 18px; }
    .editorial-kicker { margin-bottom: 1rem; letter-spacing: 2px; }
    .elite-list li { font-size: 18px; padding: 16px 0; flex-direction: row; align-items: center; gap: 15px;}
    .elite-list .list-line { width: 20px; }
    .minimal-matrix { grid-template-columns: 1fr; }
    .matrix-item { padding: 25px 15px; font-size: 16px; }
    .trust-banner .container { gap: 15px; justify-content: center; }
    .trust-logo { font-size: 14px; letter-spacing: 2px; }
    .trust-logo-img { height: 16px; margin: 4px; }
    .glass-card { padding: 30px 20px; }
    .card-number { font-size: 48px; }
    .footer-elite { padding: 80px 0 40px; }
    .footer-grid { gap: 30px; }
    .floating-wa { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .floating-wa svg { transform: scale(0.85); }
}
