/* =====================================================
   Vista Lake Estates - Investor Landing Page V2
   Inspired by: RealtyMogul, Fundrise, CrowdStreet, Stripe
   ===================================================== */

/* CSS Variables */
:root {
    /* Colors - Trust & Premium */
    --navy-900: #0a1628;
    --navy-800: #0f2240;
    --navy-700: #1e3a5f;
    --navy-600: #2a4a72;
    --navy-500: #3d6087;
    --navy-400: #5a7a9f;
    --navy-300: #8ba3bf;
    --navy-200: #b4c5d9;
    --navy-100: #dce4ed;
    --navy-50: #f0f4f8;

    --gold-500: #c9a961;
    --gold-400: #d4ba7a;
    --gold-300: #e0cb93;
    --gold-200: #ebddac;
    
    --green-500: #2ecc71;
    --green-400: #58d68d;
    --amber-500: #f39c12;
    --amber-400: #f5b041;
    --red-500: #e74c3c;
    --red-400: #ec7063;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-100: #f1f5f9;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: var(--navy-900);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    
    /* Borders */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 100px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--navy-800);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--navy-100);
    transition: all 0.3s ease;
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
    color: var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius-sm);
}

.nav-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    color: var(--navy-800);
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    padding: 8px 16px;
    color: var(--navy-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.nav-links a:hover {
    background: var(--navy-50);
    color: var(--navy-800);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(46, 204, 113, 0.1);
    color: var(--green-500);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy-700);
    border-radius: 2px;
    transition: all 0.3s;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--navy-700);
    color: white;
    border-color: var(--navy-700);
}

.btn-primary:hover {
    background: var(--navy-800);
    border-color: var(--navy-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--navy-700);
    border-color: var(--navy-300);
}

.btn-outline:hover {
    background: var(--navy-50);
    border-color: var(--navy-500);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* =====================================================
   BADGES
   ===================================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
}

.badge-verified {
    background: rgba(46, 204, 113, 0.15);
    color: var(--green-500);
}

.badge-progress {
    background: rgba(243, 156, 18, 0.15);
    color: var(--amber-500);
}

.badge-pending {
    background: rgba(231, 76, 60, 0.15);
    color: var(--red-500);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 30%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a962' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}

.hero .container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: start;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid rgba(201, 169, 97, 0.3);
    color: var(--gold-400);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero-title {
    margin-bottom: 24px;
}

.title-small {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--navy-300);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.title-main {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 400;
    color: white;
    line-height: 1.1;
}

.title-accent {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--navy-200);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Pitch Cards */
.pitch-cards {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pitch-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    flex: 1;
    min-width: 200px;
}

.pitch-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.2);
    color: var(--gold-400);
    border-radius: var(--radius-sm);
    font-size: 18px;
}

.pitch-content {
    flex: 1;
}

.pitch-label {
    display: block;
    font-size: 11px;
    color: var(--navy-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pitch-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

/* Strategy Preview Cards */
.strategy-preview {
    margin-bottom: 40px;
}

.strategy-preview h3 {
    font-size: 14px;
    color: var(--navy-300);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.strategy-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.strategy-card {
    position: relative;
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s;
}

.strategy-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}

.strategy-card.featured {
    background: rgba(201, 169, 97, 0.1);
    border-color: rgba(201, 169, 97, 0.3);
}

.strategy-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    padding: 4px 12px;
    background: var(--gold-500);
    color: var(--navy-900);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
}

.strategy-header {
    margin-bottom: 20px;
}

.strategy-label {
    font-size: 11px;
    color: var(--navy-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.strategy-header h4 {
    font-size: 20px;
    color: white;
    margin-top: 4px;
}

.strategy-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 600;
    color: var(--gold-400);
}

.metric-label {
    display: block;
    font-size: 10px;
    color: var(--navy-400);
    text-transform: uppercase;
    margin-top: 4px;
}

.strategy-desc {
    font-size: 14px;
    color: var(--navy-300);
    margin-bottom: 12px;
}

.strategy-timeline {
    font-size: 12px;
    color: var(--navy-400);
}

.strategy-timeline i {
    margin-right: 6px;
}

/* Investment Minimum */
.investment-min {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    margin-bottom: 32px;
}

.min-label {
    font-size: 13px;
    color: var(--navy-400);
}

.min-value {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.min-note {
    font-size: 12px;
    color: var(--navy-500);
    margin-left: auto;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-ctas .btn-primary {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: var(--navy-900);
}

.hero-ctas .btn-primary:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
}

.hero-ctas .btn-outline {
    color: white;
    border-color: rgba(255,255,255,0.3);
}

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

/* Hero Stats Sidebar */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
}

.stat-item {
    text-align: center;
    padding: 16px;
}

.stat-item:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold-400);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--navy-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--navy-400);
    font-size: 12px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* =====================================================
   SECTIONS - Consistent Layout System
   ===================================================== */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    border-radius: 2px;
    opacity: 0.5;
}

.section-dark {
    background: linear-gradient(180deg, var(--navy-900) 0%, #0d1e33 100%);
    color: white;
}

.section-dark::before {
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.section-light {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #f0f4f8 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(30, 58, 95, 0.1);
    color: var(--navy-600);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-dark .section-badge {
    background: rgba(201, 169, 97, 0.15);
    color: var(--gold-400);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--navy-500);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: var(--navy-300);
}

/* =====================================================
   TABS COMPONENT
   ===================================================== */
.expandable-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.tabs-container {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--navy-100);
    overflow-x: auto;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 28px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--navy-500);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.tab-btn:hover {
    color: var(--navy-700);
    background: var(--navy-50);
}

.tab-btn.active {
    color: var(--navy-800);
    border-bottom-color: var(--gold-500);
}

.tab-btn i {
    font-size: 16px;
}

.tabs-content {
    padding: 0;
}

.tab-panel {
    display: none;
    padding: 40px;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.panel-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.panel-main h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

/* Data Table */
.data-table {
    margin-bottom: 24px;
}

.data-row {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--navy-100);
}

.data-label {
    flex: 1;
    color: var(--navy-500);
    font-size: 14px;
}

.data-value {
    font-weight: 600;
    color: var(--navy-800);
    margin-right: 16px;
}

/* Source Citation */
.source-citation {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--navy-50);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--navy-500);
}

.source-citation a {
    color: var(--navy-700);
    text-decoration: underline;
}

.citation-date {
    margin-left: auto;
    font-size: 12px;
    color: var(--navy-400);
}

/* Map Preview */
.map-preview {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 300px;
}

.map-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-expand {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 8px 16px;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 13px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.map-expand:hover {
    background: rgba(0,0,0,0.9);
}

/* Timeline */
.status-timeline {
    position: relative;
    padding-left: 32px;
}

.status-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--navy-200);
}

.timeline-item {
    position: relative;
    padding-bottom: 24px;
}

.timeline-marker {
    position: absolute;
    left: -32px;
    width: 24px;
    height: 24px;
    background: var(--navy-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
}

.timeline-item.complete .timeline-marker {
    background: var(--green-500);
}

.timeline-item.highlight .timeline-marker {
    background: var(--gold-500);
    color: var(--navy-900);
}

.timeline-item.future .timeline-marker {
    background: var(--navy-400);
}

.timeline-date {
    font-size: 12px;
    color: var(--navy-400);
    font-weight: 600;
}

.timeline-content h4 {
    font-size: 16px;
    margin: 4px 0;
}

.timeline-content p {
    font-size: 14px;
    color: var(--navy-500);
}

/* Highlight Box */
.highlight-box {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: var(--radius-md);
    margin-top: 24px;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-500);
    color: var(--navy-900);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.highlight-content p {
    font-size: 14px;
    color: var(--navy-600);
}

/* CEQA Box */
.ceqa-box {
    padding: 24px;
    background: var(--navy-50);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.ceqa-box h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.ceqa-box h4 i {
    color: var(--green-500);
    margin-right: 8px;
}

.ceqa-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--navy-100);
    font-size: 14px;
}

.ceqa-row span:first-child {
    color: var(--navy-500);
}

.ceqa-link {
    display: block;
    margin-top: 16px;
    padding: 12px;
    background: white;
    border: 1px solid var(--navy-200);
    border-radius: var(--radius-sm);
    text-align: center;
    color: var(--navy-700);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.ceqa-link:hover {
    background: var(--navy-100);
}

/* Savings Callout */
.savings-callout {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, var(--green-500), #27ae60);
    color: white;
    border-radius: var(--radius-md);
}

.savings-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.8;
}

.savings-value {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin: 8px 0;
}

.savings-note {
    display: block;
    font-size: 13px;
    opacity: 0.9;
}

/* Location Highlights */
.panel-intro {
    font-size: 16px;
    color: var(--navy-600);
    margin-bottom: 24px;
}

.location-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.loc-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--navy-50);
    border-radius: var(--radius-sm);
}

.loc-item i {
    font-size: 20px;
    color: var(--gold-500);
}

.loc-item h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.loc-item p {
    font-size: 13px;
    color: var(--navy-500);
}

/* Comp Table */
.comp-table {
    background: var(--navy-50);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 16px;
}

.comp-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 16px;
    padding: 12px 16px;
    background: var(--navy-100);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--navy-600);
}

.comp-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 16px;
    padding: 14px 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--navy-100);
}

.comp-row .highlight {
    color: var(--green-500);
    font-weight: 600;
}

/* Market Snapshot */
.market-snapshot {
    padding: 24px;
    background: var(--navy-50);
    border-radius: var(--radius-md);
}

.market-snapshot h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.market-stat {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--navy-100);
    font-size: 14px;
}

.market-label {
    color: var(--navy-500);
}

.market-value {
    font-weight: 600;
}

/* Partner Card */
.partner-card {
    padding: 24px;
    background: var(--navy-50);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.partner-header {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.partner-logo {
    width: 60px;
    height: 60px;
    background: var(--navy-700);
    color: var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.partner-info h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.partner-info p {
    font-size: 13px;
    color: var(--navy-500);
    margin-bottom: 4px;
}

.partner-info a {
    font-size: 13px;
    color: var(--navy-700);
}

.partner-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--navy-200);
    border-bottom: 1px solid var(--navy-200);
}

.partner-stat {
    text-align: center;
}

.partner-stat .stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-800);
}

.partner-stat .stat-label {
    font-size: 11px;
    color: var(--navy-500);
}

.partner-recent {
    margin-top: 20px;
}

.partner-recent h5 {
    font-size: 12px;
    color: var(--navy-400);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.partner-recent p {
    font-size: 14px;
    color: var(--navy-600);
}

/* Scope List */
.scope-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.scope-list li {
    padding: 12px 0 12px 28px;
    border-bottom: 1px solid var(--navy-100);
    font-size: 14px;
    position: relative;
}

.scope-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-500);
    font-weight: 600;
}

.scope-list li strong {
    color: var(--navy-800);
}

/* Builders Grid */
.builders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.builder-item {
    padding: 16px;
    background: var(--navy-50);
    border-radius: var(--radius-sm);
}

.builder-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.builder-item span {
    font-size: 12px;
    color: var(--navy-500);
}

/* =====================================================
   RETURNS SECTION
   ===================================================== */
.strategy-toggle {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-btn {
    position: relative;
    padding: 20px 32px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    min-width: 200px;
}

.toggle-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}

.toggle-btn.active {
    background: rgba(201, 169, 97, 0.15);
    border-color: var(--gold-500);
}

.toggle-label {
    display: block;
    font-size: 11px;
    color: var(--navy-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.toggle-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-top: 4px;
}

.toggle-badge {
    position: absolute;
    top: -10px;
    right: 12px;
    padding: 4px 10px;
    background: var(--gold-500);
    color: var(--navy-900);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-full);
}

.strategy-panel {
    display: none;
}

.strategy-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Returns Hero */
.returns-hero {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.return-card {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
}

.return-card.featured {
    background: rgba(201, 169, 97, 0.15);
    border-color: rgba(201, 169, 97, 0.3);
}

.return-label {
    display: block;
    font-size: 12px;
    color: var(--navy-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.return-value {
    display: block;
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-400);
    margin-top: 8px;
}

/* Vertical Advantage */
.vertical-advantage {
    padding: 32px;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: var(--radius-md);
    margin-bottom: 48px;
}

.vertical-advantage h4 {
    font-size: 16px;
    color: var(--green-400);
    margin-bottom: 20px;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.adv-number {
    display: block;
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.adv-label {
    display: block;
    font-size: 13px;
    color: var(--navy-300);
    margin-top: 4px;
}

/* =====================================================
   ACCORDION
   ===================================================== */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.section:not(.section-dark) .accordion-item {
    background: white;
    border-color: var(--navy-100);
    box-shadow: var(--shadow-sm);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
}

.section:not(.section-dark) .accordion-trigger {
    color: var(--navy-800);
}

.accordion-trigger:hover {
    background: rgba(255,255,255,0.05);
}

.section:not(.section-dark) .accordion-trigger:hover {
    background: var(--navy-50);
}

.accordion-trigger span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-trigger i:last-child {
    transition: transform 0.3s;
}

.accordion-item.open .accordion-trigger i:last-child {
    transform: rotate(180deg);
}

.accordion-status {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 400;
    color: var(--navy-400);
}

.progress-mini {
    width: 60px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-mini::after {
    content: '';
    display: block;
    height: 100%;
    width: var(--progress);
    background: var(--gold-500);
}

.accordion-content {
    display: none;
    padding: 0 24px 24px;
}

.accordion-item.open .accordion-content {
    display: block;
    animation: slideDown 0.3s ease;
}

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

/* Capital Stack */
.capital-stack {
    margin-bottom: 24px;
}

.stack-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.section:not(.section-dark) .stack-row {
    border-color: var(--navy-100);
}

.stack-label {
    color: var(--navy-300);
}

.section:not(.section-dark) .stack-label {
    color: var(--navy-500);
}

.stack-value {
    font-family: var(--font-mono);
    font-weight: 600;
    color: white;
}

.section:not(.section-dark) .stack-value {
    color: var(--navy-800);
}

.stack-pct {
    color: var(--navy-400);
    font-size: 13px;
}

.stack-row.total {
    border-top: 2px solid var(--gold-500);
    margin-top: 8px;
    padding-top: 16px;
}

.stack-row.total .stack-label,
.stack-row.total .stack-value {
    font-weight: 700;
}

.stack-sources {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stack-sources h5 {
    font-size: 14px;
    color: var(--navy-300);
    margin-bottom: 12px;
}

/* Scenarios Table */
.scenarios-table {
    background: rgba(0,0,0,0.2);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.section:not(.section-dark) .scenarios-table {
    background: var(--navy-50);
}

.scenario-header,
.scenario-row {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 16px;
}

.scenario-header {
    padding: 16px 20px;
    background: rgba(0,0,0,0.3);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.section:not(.section-dark) .scenario-header {
    background: var(--navy-100);
}

.scenario-col {
    text-align: center;
}

.scenario-col.downside { color: var(--red-400); }
.scenario-col.base { color: var(--gold-400); }
.scenario-col.upside { color: var(--green-400); }

.scenario-row {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
}

.section:not(.section-dark) .scenario-row {
    border-color: var(--navy-100);
}

.scenario-row span {
    text-align: center;
}

.scenario-row span:first-child {
    text-align: left;
    color: var(--navy-300);
}

.section:not(.section-dark) .scenario-row span:first-child {
    color: var(--navy-500);
}

.scenario-row.highlight {
    background: rgba(201, 169, 97, 0.1);
}

.scenario-row.highlight span {
    font-weight: 700;
}

/* Tax Benefits */
.tax-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.tax-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(0,0,0,0.2);
    border-radius: var(--radius-md);
}

.section:not(.section-dark) .tax-item {
    background: var(--navy-50);
}

.tax-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 169, 97, 0.2);
    color: var(--gold-400);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.tax-content h5 {
    font-size: 16px;
    margin-bottom: 4px;
}

.tax-content p {
    font-size: 14px;
    color: var(--navy-300);
}

.section:not(.section-dark) .tax-content p {
    color: var(--navy-500);
}

.tax-example {
    margin-top: 12px;
    padding: 12px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--green-400);
}

/* Download Box */
.download-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(0,0,0,0.2);
    border-radius: var(--radius-md);
}

.download-icon {
    width: 56px;
    height: 56px;
    background: rgba(34, 139, 34, 0.2);
    color: var(--green-400);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.download-info {
    flex: 1;
}

.download-info h5 {
    font-size: 16px;
    margin-bottom: 4px;
}

.download-info p {
    font-size: 14px;
    color: var(--navy-300);
}

.file-meta {
    display: block;
    font-size: 12px;
    color: var(--navy-400);
    margin-top: 8px;
}

/* Phase Timeline */
.phase-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.phase-item {
    padding: 20px;
    background: rgba(0,0,0,0.2);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold-500);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.phase-num {
    width: 28px;
    height: 28px;
    background: var(--gold-500);
    color: var(--navy-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.phase-header h5 {
    flex: 1;
    font-size: 16px;
}

.phase-time {
    font-size: 13px;
    color: var(--navy-400);
}

.phase-item p {
    font-size: 14px;
    color: var(--navy-300);
    margin-left: 40px;
}

.phase-capital {
    display: inline-block;
    margin-left: 40px;
    margin-top: 8px;
    padding: 4px 12px;
    background: rgba(201, 169, 97, 0.2);
    color: var(--gold-400);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* =====================================================
   TIMELINE SECTION
   ===================================================== */
.timeline-hero {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
}

.timeline-stat {
    text-align: center;
}

.timeline-stat .stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--navy-800);
}

.timeline-stat .stat-label {
    display: block;
    font-size: 14px;
    color: var(--navy-500);
    margin-top: 8px;
}

/* Gantt Chart */
.gantt-container {
    background: var(--navy-50);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 48px;
    overflow-x: auto;
}

.gantt-header {
    display: grid;
    grid-template-columns: 200px repeat(4, 1fr);
    gap: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--navy-200);
    margin-bottom: 16px;
}

.gantt-header span {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy-500);
    text-transform: uppercase;
}

.gantt-header span:not(:first-child) {
    text-align: center;
}

.gantt-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
    min-height: 48px;
    position: relative;
}

.gantt-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy-700);
}

.gantt-bar {
    position: absolute;
    height: 24px;
    background: var(--navy-600);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gantt-bar.milestone {
    background: var(--gold-500);
    color: var(--navy-900);
}

.gantt-bar.revenue {
    background: var(--green-500);
}

/* Checklist */
.checklist {
    padding: 16px 0;
}

.checklist h5 {
    font-size: 14px;
    color: var(--navy-600);
    margin: 20px 0 12px;
}

.checklist h5:first-child {
    margin-top: 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--navy-50);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.check-item:hover {
    background: var(--navy-100);
}

.check-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--green-500);
}

.check-item span:first-of-type {
    flex: 1;
    font-size: 14px;
}

/* Phases Detail */
.phases-detail {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.phase-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--navy-50);
    border-radius: var(--radius-md);
}

.phase-card .phase-num {
    width: 40px;
    height: 40px;
    font-size: 18px;
    flex-shrink: 0;
}

.phase-info {
    flex: 1;
}

.phase-info h5 {
    font-size: 16px;
    margin-bottom: 4px;
}

.phase-duration {
    display: inline-block;
    padding: 2px 10px;
    background: var(--navy-200);
    color: var(--navy-700);
    font-size: 12px;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
}

.phase-info p {
    font-size: 14px;
    color: var(--navy-500);
}

/* Critical Items */
.critical-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.critical-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--navy-50);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--navy-300);
}

.critical-item.high {
    border-left-color: var(--red-500);
}

.critical-item.medium {
    border-left-color: var(--amber-500);
}

.critical-priority {
    padding: 4px 10px;
    background: var(--red-500);
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.critical-item.medium .critical-priority {
    background: var(--amber-500);
}

.critical-info {
    flex: 1;
}

.critical-info h5 {
    font-size: 15px;
    margin-bottom: 4px;
}

.critical-info p {
    font-size: 14px;
    color: var(--navy-500);
}

.critical-action {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--navy-600);
    font-weight: 500;
}

/* =====================================================
   WHY THIS DEAL SECTION
   ===================================================== */
.why-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.why-card {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border: 1px solid var(--navy-100);
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-400);
}

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
    color: var(--gold-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.why-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14px;
    color: var(--navy-500);
}

/* Comparison Section */
.comparison-section {
    margin-bottom: 60px;
}

.comparison-section h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 32px;
}

.comparison-table {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table .comp-header {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    background: var(--navy-800);
    color: white;
}

.comparison-table .comp-header span {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
}

.comparison-table .comp-vista {
    background: var(--navy-700);
    color: var(--gold-400);
}

.comparison-table .comp-row {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    border-bottom: 1px solid var(--navy-100);
}

.comparison-table .comp-row span {
    padding: 16px 20px;
    font-size: 14px;
}

.comparison-table .comp-row span:first-child {
    font-weight: 500;
    color: var(--navy-600);
}

.comparison-table .comp-row .comp-vista {
    background: rgba(201, 169, 97, 0.1);
    font-weight: 600;
}

.comparison-table .comp-row .comp-vista.highlight {
    color: var(--green-500);
}

.text-green { color: var(--green-500); }
.text-red { color: var(--red-500); }

/* Verification Section */
.verification-section h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 32px;
}

.verification-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.verify-item {
    padding: 24px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.verify-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.verify-header span:first-child {
    font-weight: 600;
}

.verify-pct {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--navy-800);
}

.progress-bar {
    height: 8px;
    background: var(--navy-100);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
}

.progress-fill {
    height: 100%;
    background: var(--green-500);
    border-radius: 4px;
    transition: width 1s ease;
}

.progress-fill.warning {
    background: var(--amber-500);
}

.verify-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* =====================================================
   DATA ROOM SECTION
   ===================================================== */
.email-gate {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
}

.gate-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(201, 169, 97, 0.2);
    color: var(--gold-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.email-gate h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.email-gate p {
    color: var(--navy-300);
    margin-bottom: 24px;
}

.gate-form {
    display: flex;
    gap: 12px;
}

.gate-form input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 16px;
}

.gate-form input::placeholder {
    color: var(--navy-400);
}

.gate-note {
    margin-top: 16px;
    font-size: 12px;
    color: var(--navy-400);
}

/* Data Room Content */
.data-room-content {
    margin-top: 48px;
}

.room-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.room-category {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: rgba(0,0,0,0.2);
}

.category-header i {
    font-size: 20px;
    color: var(--gold-400);
}

.category-header h4 {
    font-size: 16px;
}

.doc-list {
    padding: 12px;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-sm);
    color: white;
    text-decoration: none;
    transition: all 0.2s;
}

.doc-item:hover {
    background: rgba(255,255,255,0.05);
}

.doc-item > i:first-child {
    font-size: 24px;
    color: var(--navy-400);
}

.doc-info {
    flex: 1;
}

.doc-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
}

.doc-meta {
    display: block;
    font-size: 12px;
    color: var(--navy-400);
}

.doc-item > i:last-child {
    font-size: 14px;
    color: var(--navy-400);
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.cta-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.cta-card {
    text-align: center;
    padding: 48px 32px;
    background: white;
    border: 1px solid var(--navy-100);
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

.cta-card.primary {
    background: var(--navy-800);
    border-color: var(--navy-800);
    color: white;
}

.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.cta-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: var(--navy-50);
    color: var(--navy-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.cta-card.primary .cta-icon {
    background: var(--gold-500);
    color: var(--navy-900);
}

.cta-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.cta-card p {
    font-size: 14px;
    color: var(--navy-500);
    margin-bottom: 24px;
}

.cta-card.primary p {
    color: var(--navy-300);
}

.cta-card.primary .btn-primary {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: var(--navy-900);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--navy-600);
}

.contact-item i {
    font-size: 20px;
    color: var(--navy-400);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--navy-900);
    color: var(--navy-300);
    padding: 60px 0 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    background: var(--gold-500);
    color: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius-sm);
}

.footer-brand span:last-child {
    font-family: var(--font-display);
    font-size: 18px;
    color: white;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--navy-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-disclaimer {
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-md);
    margin-bottom: 32px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: var(--navy-400);
    margin-bottom: 12px;
}

.footer-disclaimer p:first-child {
    font-weight: 700;
    color: var(--navy-300);
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--navy-500);
}

/* =====================================================
   MOBILE STICKY CTA
   ===================================================== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    background: white;
    border-top: 1px solid var(--navy-100);
    gap: 8px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.mobile-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: var(--navy-50);
    color: var(--navy-700);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
}

.mobile-btn.primary {
    flex: 2;
    background: var(--navy-800);
    color: white;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stat-item:not(:last-child) {
        border-bottom: none;
        border-right: 1px solid rgba(255,255,255,0.1);
    }
    
    .panel-grid {
        grid-template-columns: 1fr;
    }
    
    .returns-hero {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .verification-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-badge {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-actions .btn {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .pitch-cards {
        flex-direction: column;
    }
    
    .strategy-cards {
        grid-template-columns: 1fr;
    }
    
    .strategy-toggle {
        flex-direction: column;
    }
    
    .returns-hero {
        grid-template-columns: 1fr 1fr;
    }
    
    .timeline-hero {
        flex-direction: column;
        gap: 24px;
    }
    
    .gantt-container {
        display: none;
    }
    
    .why-cards {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 12px;
    }
    
    .room-categories {
        grid-template-columns: 1fr;
    }
    
    .mobile-cta {
        display: flex;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-meta {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-title .title-main {
        font-size: 36px;
    }
    
    .investment-min {
        flex-direction: column;
        text-align: center;
    }
    
    .min-note {
        margin-left: 0;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-btn {
        border-bottom: 1px solid var(--navy-100);
    }
    
    .tab-btn.active {
        border-bottom-color: var(--navy-100);
        background: var(--navy-50);
    }
    
    .strategy-metrics {
        grid-template-columns: 1fr;
    }
    
    .advantage-grid {
        grid-template-columns: 1fr;
    }
    
    .gate-form {
        flex-direction: column;
    }
}

/* =====================================================
   VIDEO PITCH SECTION
   ===================================================== */
.video-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #ffffff 100%);
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
    border-radius: 2px;
}

.video-header {
    text-align: center;
    margin-bottom: 48px;
}

.video-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 169, 97, 0.15);
    color: var(--gold-500);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.video-header .section-badge i {
    font-size: 1rem;
}

.video-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 16px;
}

.video-header p {
    font-size: 1.15rem;
    color: var(--slate-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    background: var(--navy-900);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.video-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.video-cta .btn-outline {
    background: transparent;
    border: 2px solid var(--navy-300);
    color: var(--navy-700);
}

.video-cta .btn-outline:hover {
    background: var(--navy-700);
    border-color: var(--navy-700);
    color: white;
}

.video-cta .btn-outline i {
    color: #FF0000;
}

.video-cta .btn-outline:hover i {
    color: white;
}

.video-cta .btn-primary {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    border: none;
}

.video-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.4);
}

@media (max-width: 768px) {
    .video-section {
        padding: 60px 0 80px;
    }
    
    .video-header h2 {
        font-size: 1.75rem;
    }
    
    .video-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .video-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* =====================================================
   SCARCITY, SCALE, STATUS SECTION - The Wow Factor
   ===================================================== */
.sss-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    overflow: hidden;
}

.sss-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50m-40 0a40,40 0 1,0 80,0a40,40 0 1,0 -80,0' fill='none' stroke='%23c9a961' stroke-width='0.5' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
}

.sss-section .container {
    position: relative;
    z-index: 1;
}

/* Hero Statement */
.sss-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.sss-label {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(201, 169, 97, 0.1));
    border: 1px solid var(--gold-500);
    color: var(--gold-400);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 32px;
}

.sss-headline {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    color: white;
    line-height: 1.3;
    margin-bottom: 24px;
}

.sss-subhead {
    font-size: 18px;
    color: var(--navy-300);
    line-height: 1.8;
}

/* Scarcity Stats */
.sss-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 100px;
    padding: 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
}

.sss-stat {
    text-align: center;
    padding: 20px 32px;
    min-width: 120px;
}

.sss-stat:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.1);
}

.sss-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.sss-stat.highlight .sss-stat-value {
    color: var(--gold-400);
}

.sss-stat-label {
    display: block;
    font-size: 12px;
    color: var(--navy-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* Scale Section */
.sss-scale {
    margin-bottom: 100px;
}

.sss-section-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: white;
    margin-bottom: 48px;
}

.scale-tiers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.scale-tier {
    position: relative;
    padding: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.scale-tier:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-8px);
}

.scale-tier.featured {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(201, 169, 97, 0.05));
    border-color: var(--gold-500);
}

.scale-tier.featured:hover {
    border-color: var(--gold-400);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
}

.tier-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tier-amount {
    display: block;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold-400);
    line-height: 1;
}

.tier-label {
    display: block;
    font-size: 14px;
    color: var(--navy-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.tier-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.tier-content li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--navy-200);
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.tier-content li strong {
    color: white;
}

.tier-outcome {
    text-align: center;
    padding: 16px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: var(--radius-sm);
}

.tier-outcome span {
    color: var(--green-400);
    font-weight: 600;
    font-size: 14px;
}

/* Status Section */
.sss-status {
    margin-bottom: 100px;
}

.sss-status-intro {
    text-align: center;
    font-size: 20px;
    color: var(--navy-200);
    max-width: 700px;
    margin: -24px auto 48px;
    font-style: italic;
}

.status-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.status-card {
    text-align: center;
    padding: 48px 32px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.status-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--gold-500);
    transform: translateY(-8px);
}

.status-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(201, 169, 97, 0.1));
    border: 1px solid var(--gold-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--gold-400);
}

.status-card h4 {
    font-size: 20px;
    color: white;
    margin-bottom: 12px;
}

.status-card p {
    font-size: 14px;
    color: var(--navy-300);
    line-height: 1.7;
}

.status-visual {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: var(--radius-lg);
    max-width: 700px;
    margin: 0 auto;
}

.visual-icon {
    width: 64px;
    height: 64px;
    background: var(--gold-500);
    color: var(--navy-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.visual-content h4 {
    font-size: 18px;
    color: white;
    margin-bottom: 8px;
}

.visual-content p {
    font-size: 15px;
    color: var(--navy-200);
}

/* Exclusive Invitation */
.sss-invitation {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.invitation-border {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    margin: 40px 0;
}

.invitation-content {
    padding: 40px;
}

.invitation-label {
    display: block;
    font-size: 12px;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.invitation-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-style: italic;
    color: white;
    line-height: 1.6;
    margin-bottom: 32px;
}

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

.btn-gold {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    border: none;
    font-weight: 700;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.3);
}

/* SSS Responsive */
@media (max-width: 1024px) {
    .scale-tiers {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .status-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .sss-section {
        padding: 80px 0;
    }
    
    .sss-stats {
        padding: 24px;
        gap: 16px;
    }
    
    .sss-stat {
        padding: 16px;
        min-width: auto;
        flex: 1 1 40%;
    }
    
    .sss-stat:not(:last-child) {
        border-right: none;
    }
    
    .sss-stat-value {
        font-size: 32px;
    }
    
    .status-visual {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .invitation-text {
        font-size: 20px;
    }
}

/* =====================================================
   Vision Gallery - Future/Current Toggle
   ===================================================== */

.vision-gallery {
    background: var(--navy-800);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 1px solid rgba(201, 169, 97, 0.2);
    min-height: 340px;
    max-height: 340px;
}

.vision-tabs {
    display: flex;
    background: var(--navy-900);
    padding: 4px;
    gap: 4px;
}

.vision-tab {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: var(--slate-400);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.vision-tab:hover {
    color: var(--gold-400);
    background: rgba(201, 169, 97, 0.1);
}

.vision-tab.active {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
}

.vision-tab.active i {
    color: var(--navy-900);
}

.vision-view {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.vision-gallery .vision-view img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vision-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.vision-label i {
    font-size: 10px;
}

/* Featured Document Styling */
.doc-item.featured-doc {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(201, 169, 97, 0.05));
    border: 2px solid var(--gold-500) !important;
    position: relative;
}

.doc-item.featured-doc::before {
    content: '★ NEW';
    position: absolute;
    top: -8px;
    right: 12px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    font-size: 9px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 10px;
    letter-spacing: 0.5px;
}

.doc-item.featured-doc:hover {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.25), rgba(201, 169, 97, 0.15));
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
}

.doc-item.featured-doc i:first-child {
    color: var(--gold-500);
}

/* =====================================================
   Enhanced Image Gallery Showcase
   ===================================================== */

.image-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.showcase-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}

.showcase-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: all 0.3s ease;
}

.showcase-item:hover .showcase-overlay {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.2) 0%, rgba(10, 22, 40, 0.95) 100%);
}

.showcase-title {
    font-family: var(--font-display);
    font-size: 20px;
    color: white;
    font-weight: 600;
    margin-bottom: 4px;
}

.showcase-desc {
    font-size: 13px;
    color: var(--navy-300);
}

.showcase-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.showcase-expand {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.showcase-item:hover .showcase-expand {
    opacity: 1;
    transform: scale(1);
}

.showcase-expand:hover {
    background: var(--gold-500);
    color: var(--navy-900);
}

/* Full-width featured image */
.showcase-item.featured {
    grid-column: span 2;
    aspect-ratio: 21/9;
}

@media (max-width: 768px) {
    .image-showcase {
        grid-template-columns: 1fr;
    }
    
    .showcase-item.featured {
        grid-column: span 1;
        aspect-ratio: 16/10;
    }
    
    .showcase-title {
        font-size: 18px;
    }
}

/* Vision Gallery Responsive */
@media (max-width: 768px) {
    .vision-tabs {
        padding: 3px;
    }
    
    .vision-tab {
        padding: 10px 12px;
        font-size: 11px;
    }
    
    .vision-label {
        font-size: 10px;
        padding: 4px 10px;
    }
}

/* Print Styles */
@media print {
    .nav,
    .mobile-cta,
    .scroll-indicator,
    .accordion-trigger i:last-child {
        display: none !important;
    }
    
    .accordion-content {
        display: block !important;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

