/* ========================================
   YOLO TV - Side-by-Side Layout Version
   ======================================== */

/* CSS Variables */
:root {
    /* Brand Colors - Clean Platinum Palette */
    --color-primary: #E8E8E8;        /* Platinum - clean premium feel */
    --color-primary-dark: #B8B8B8;
    --color-primary-light: #FFFFFF;
    --color-accent: #FF3366;         /* Premium Red - energy & power */
    --color-accent-dark: #CC0033;
    --color-blue: #1FA7E0;
    --color-blue-dark: #0B6FB6;
    --color-blue-light: #7CCFF2;
    --color-green: #0F8F3A;
    --color-green-bright: #6BCB2D;
    --color-red: #E60000;
    --color-orange: #F5A000;
    --color-orange-red: #E24A1A;
    
    /* Legacy gold kept for gradual transition */
    --color-gold: #E8E8E8;
    --color-gold-dark: #B8B8B8;
    --color-gold-darker: #888888;
    
    /* Base Colors */
    --color-black: #000000;
    --color-charcoal: #0B0B0B;
    --color-dark-gray: #1a1a1a;
    --color-medium-gray: #3a3a3a;
    --color-light-gray: #C0C0C0;
    --color-off-white: #F2F2F2;
    --color-white: #FFFFFF;
    
    /* Typography */
    --font-headline: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--color-off-white);
    background-color: var(--color-black);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--color-white);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
}

h4 {
    font-size: 1.375rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-blue-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-blue);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Section Spacing */
section {
    padding: var(--spacing-xl) 0;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
}

/* Lead Text */
.lead-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

/* Section Backgrounds */
.section-dark {
    background-color: var(--color-charcoal);
}

.section-light {
    background-color: var(--color-dark-gray);
}

/* HEADER & NAVIGATION */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 210, 0, 0.15);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0.875rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 55px;
    width: auto;
    display: block;
    max-width: 340px;
}

@media (max-width: 640px) {
    .logo img {
        height: 42px;
        max-width: 260px;
    }
}

/* Architect Mode Toggle - Small & Elegant */
.architect-mode-toggle {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.architect-mode-toggle:hover {
    opacity: 1;
}

.architect-toggle {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
}

.architect-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.15);
    transition: var(--transition-fast);
    border-radius: 20px;
}

.toggle-slider::before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: rgba(255,255,255,0.8);
    transition: var(--transition-fast);
    border-radius: 50%;
}

.architect-toggle input:checked + .toggle-slider {
    background-color: var(--color-blue);
}

.architect-toggle input:checked + .toggle-slider::before {
    transform: translateX(16px);
    background-color: white;
}

.toggle-label {
    font-family: var(--font-headline);
    font-size: 0.625rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 1.35rem;
    margin: 0;
    flex-grow: 1;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    font-family: var(--font-headline);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-off-white);
    text-transform: uppercase;
    letter-spacing: 0.35px;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--color-primary);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.nav-cta {
    flex-shrink: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #E8E8E8 0%, #FFFFFF 100%);
    border-radius: 2px;
    transition: var(--transition-fast);
    box-shadow: 0 0 10px rgba(232, 232, 232, 0.4);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0.875rem 1.25rem;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-120%);
        transition: transform var(--transition-smooth);
        border-bottom: 1px solid rgba(255, 210, 0, 0.15);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links a {
        font-size: 1rem;
        display: block;
        padding: 0.5rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-cta {
        display: block;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-headline);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-green-bright) 0%, var(--color-green) 100%);
    color: var(--color-white);
    border-color: var(--color-green-bright);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7FD940 0%, #0AA032 100%);
    border-color: #7FD940;
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 203, 45, 0.35);
}

.btn-primary:active {
    background: linear-gradient(135deg, #6BCB2D 0%, #0F8F3A 100%);
    color: var(--color-black);
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(107, 203, 45, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.btn-large {
    font-size: 0.875rem;
    padding: 1.125rem 2.5rem;
}

/* Orange Arrow Button */
.btn-arrow-orange {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-headline);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-orange);
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.btn-arrow-orange:hover {
    gap: 1rem;
    color: #FF6E40;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding-top: 80px;
    background-color: #000;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

/* Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-title {
    font-family: var(--font-headline);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(232, 232, 232, 0.2);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: var(--color-off-white);
    margin: 0 auto 3rem;
    max-width: 850px;
    text-align: center;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

.scroll-arrow {
    font-size: 2rem;
    color: var(--color-primary);
    animation: bounce 2s infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

/* Hero Responsive */
@media (max-width: 968px) {
    .hero {
        min-height: 90vh;
    }
    
    .hero-video {
        /* Maintain aspect ratio on mobile */
        min-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-ctas .btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 100vh;
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .scroll-indicator {
        bottom: 2rem;
    }
}

/* PROOF STRIP */
.proof-strip {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(11, 11, 11, 0.95) 100%);
    border-top: 2px solid var(--color-primary);
    border-bottom: 1px solid rgba(232, 232, 232, 0.2);
    padding: 2.5rem 0;
    position: relative;
}

.proof-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #E8E8E8 50%, transparent 100%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.proof-items {
    display: flex;
    justify-content: center;
    align-items: center;
}

.proof-item {
    text-align: center;
    position: relative;
}

.proof-text {
    font-family: var(--font-headline);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(232, 232, 232, 0.2);
    display: inline-block;
    padding: 0 2rem;
    position: relative;
}

.proof-text::before,
.proof-text::after {
    content: '—';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
    opacity: 0.4;
    font-weight: 300;
}

.proof-text::before {
    left: 0;
}

.proof-text::after {
    right: 0;
}

@media (max-width: 968px) {
    .proof-strip {
        padding: 2rem 1rem;
    }
    
    .proof-text {
        font-size: 0.875rem;
        letter-spacing: 0.1em;
        padding: 0 1.5rem;
    }
}

@media (max-width: 640px) {
    .proof-strip::before {
        width: 80%;
    }
    
    .proof-text {
        font-size: 0.75rem;
        letter-spacing: 0.08em;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 85vh;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-ctas .btn {
        width: 100%;
        max-width: 280px;
        font-size: 0.75rem;
        padding: 0.875rem 1.25rem;
    }
}

/* ========================================
   PIONEER SECTION - Side by Side
   ======================================== */

.pioneer-section {
    background-color: var(--color-charcoal);
    padding: 5rem 0;
    border-bottom: 1px solid rgba(232, 232, 232, 0.1);
}

.pioneer-section .split-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.pioneer-section .accent-subheading {
    color: var(--color-primary-light);
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.pioneer-section .description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #D0D0D0;
    margin-bottom: 2rem;
}

.pioneer-callout {
    background: linear-gradient(135deg, rgba(232, 232, 232, 0.08) 0%, rgba(232, 232, 232, 0.04) 100%);
    border-left: 3px solid var(--color-primary);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.pioneer-callout p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-white);
    margin: 0;
    font-weight: 500;
}

.pioneer-features-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 2rem;
    margin-bottom: 2rem;
}

.pioneer-features-compact.three-col {
    grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 968px) {
    .pioneer-features-compact,
    .pioneer-features-compact.three-col {
        grid-template-columns: 1fr;
    }
}

.pioneer-feature-compact {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pioneer-feature-compact i {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-top: 0.2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

.pioneer-feature-compact span {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #E0E0E0;
}

.pioneer-cta {
    background: linear-gradient(135deg, rgba(232, 232, 232, 0.12) 0%, rgba(232, 232, 232, 0.06) 100%);
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.12);
}

.pioneer-cta p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Pioneer Image Grid - Two Images Side by Side */
.pioneer-image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.pioneer-image-item {
    position: relative;
}

.pioneer-image-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pioneer-image-item img:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.image-caption {
    font-size: 0.8125rem;
    color: #C0C0C0;
    margin-top: 0.75rem;
    font-style: italic;
    text-align: center;
}

@media (max-width: 968px) {
    .pioneer-image-grid {
        gap: 1.5rem;
    }
}

.pioneer-cta p:last-child {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-primary-light);
    margin: 0;
}

@media (max-width: 968px) {
    .pioneer-section {
        padding: 3rem 0;
    }
    
    .pioneer-features-compact {
        grid-template-columns: 1fr;
    }
    
    .pioneer-cta {
        padding: 1.25rem;
    }
}

/* ========================================
   SIDE-BY-SIDE LAYOUT SECTIONS
   ======================================== */

/* Split Layout Container */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 0;
}

.split-layout.reverse {
    direction: rtl;
}

.split-layout.reverse > * {
    direction: ltr;
}

.split-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.image-caption {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #C0C0C0;
    font-style: italic;
    text-align: center;
    letter-spacing: 0.02em;
}

.split-content {
    padding: 2rem 0;
}

.split-content h2 {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.accent-subheading {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-orange);
    margin-bottom: 2rem;
    display: block;
}

.split-content .description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #D0D0D0;
    margin-bottom: 2.5rem;
}

/* Compact 2x2 Feature Grid */
.features-compact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
    margin-bottom: 2.5rem;
}

.feature-compact {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-compact i {
    font-size: 1.25rem;
    color: var(--color-orange);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.feature-compact span {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #E0E0E0;
}

/* Indoor Section - Blue Accents */
.section-indoor .feature-compact i {
    color: var(--color-blue-light);
}

.section-indoor .accent-subheading {
    color: var(--color-blue-light);
}

.section-indoor .btn-arrow-orange {
    color: var(--color-blue-light);
}

.section-indoor .btn-arrow-orange:hover {
    color: var(--color-blue);
}

/* Responsive */
@media (max-width: 968px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .split-layout.reverse {
        direction: ltr;
    }
    
    .features-compact-grid {
        grid-template-columns: 1fr;
    }
}

/* INDOOR TECH NOTE TABLE */
.tech-note {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(232, 232, 232, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0 3rem;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.tech-note h5 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Side-by-Side Tables Container */
.tables-side-by-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.tables-side-by-side .tech-note {
    margin: 0;
}

@media (max-width: 1200px) {
    .tables-side-by-side {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.pitch-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.pitch-table th,
.pitch-table td {
    text-align: left;
    padding: 0.875rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pitch-table th {
    font-family: var(--font-headline);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    background: rgba(232, 232, 232, 0.06);
    text-shadow: none;
    padding: 0.75rem 1rem;
}

.pitch-table td {
    font-size: 0.875rem;
    color: var(--color-off-white);
}

.pitch-table tbody tr:hover {
    background: rgba(232, 232, 232, 0.03);
}

.pitch-table tr:last-child td {
    border-bottom: none;
}

.tech-note p {
    font-size: 0.8125rem;
    color: var(--color-light-gray);
    margin: 0;
}

/* INVESTMENT FACTORS SECTION */
.investment-factors {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(232, 232, 232, 0.15);
    border-radius: 12px;
    padding: 4rem;
}

.investment-split {
    display: grid;
    grid-template-columns: 0.9fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.investment-copy h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    font-weight: 600;
    line-height: 1.2;
}

.investment-copy p {
    color: var(--color-off-white);
    max-width: 45ch;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
}

.investment-copy .muted {
    color: #D0D0D0;
    font-size: 1rem;
    margin-top: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.investment-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 600px;
}

.investment-visual img {
    max-width: 100%;
    min-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.micro-note {
    font-size: 0.9375rem;
    color: #C0C0C0;
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
}

/* Investment Factors Box */
.investment-factors-box {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(232, 232, 232, 0.2);
    border-radius: 8px;
    padding: 3rem 3.5rem;
}

.factors-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: #F5A000;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 2.5rem;
}

.factors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2.5rem;
}

.factor-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.factor-item i {
    color: #F5A000;
    font-size: 1.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.factor-item span {
    color: #E8E8E8;
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 968px) {
    .investment-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .investment-factors-box {
        padding: 2rem 1.5rem;
    }
    
    .factors-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .investment-factors {
        padding: 3rem 2rem;
    }
    
    .investment-copy p {
        max-width: none;
    }
    
    .investment-copy h3 {
        font-size: 1.75rem;
    }
    
    .investment-visual {
        min-width: auto;
    }
    
    .investment-visual img {
        min-width: 100%;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .investment-factors {
        padding: 2rem 1.5rem;
    }
    
    .investment-copy h3 {
        font-size: 1.5rem;
    }
    
    .investment-copy p {
        font-size: 1rem;
    }
    
    .investment-copy .muted {
        font-size: 0.9375rem;
    }
    
    .investment-visual {
        min-width: auto;
    }
    
    .investment-visual img {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .pitch-table {
        font-size: 0.75rem;
    }
    
    .pitch-table th,
    .pitch-table td {
        padding: 0.625rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .pitch-table th {
        font-size: 0.625rem;
    }
}

/* SIZE PLANNING SECTION */
.section-size-planning {
    position: relative;
    background-color: var(--color-charcoal);
}

.section-size-planning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1600') center/cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

.section-size-planning > * {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .eyebrow {
    font-family: var(--font-headline);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    display: block;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

.section-header h2 {
    margin-bottom: 1.5rem;
}

.section-header .intro-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-off-white);
    max-width: 800px;
    margin: 0 auto;
}

.size-planning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.size-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(232, 232, 232, 0.15);
    border-radius: 8px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.size-card:hover {
    background: rgba(232, 232, 232, 0.08);
    border-color: rgba(232, 232, 232, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.size-card h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.size-card .size-range {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    display: block;
}

.size-card ul {
    list-style: none;
    padding: 0;
}

.size-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.875rem;
}

.size-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

/* PRICING SECTION */
.pricing-overview {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.pricing-ranges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.price-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(232, 232, 232, 0.15);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.price-card:hover {
    background: rgba(232, 232, 232, 0.08);
    border-color: rgba(232, 232, 232, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.price-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.price-range {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    display: block;
}

.price-note {
    font-size: 1rem;
    color: var(--color-off-white);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.price-includes {
    text-align: left;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.price-includes h5 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.price-includes ul {
    list-style: none;
    padding: 0;
}

.price-includes li {
    padding: 0.375rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.875rem;
}

.price-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-green-bright);
    font-weight: 700;
}

/* THE RISE SECTION */
.rise-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.rise-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

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

.rise-content h3 {
    margin-bottom: 1.5rem;
}

.rise-specs {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(232, 232, 232, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.rise-specs h5 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.rise-specs ul {
    list-style: none;
    padding: 0;
}

.rise-specs li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.875rem;
}

.rise-specs li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

/* 2x2 Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border: 1px solid rgba(232, 232, 232, 0.15);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background: rgba(232, 232, 232, 0.08);
    border-color: rgba(232, 232, 232, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

.feature-item h4 {
    font-family: var(--font-headline);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

@media (max-width: 968px) {
    .rise-hero {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* GALLERY SECTION */
.gallery-section {
    background-color: var(--color-charcoal);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
    z-index: 10;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.95) 100%);
    transition: var(--transition-smooth);
}

.gallery-item:hover::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.9) 100%);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-caption {
    padding-bottom: 2.5rem;
}

.gallery-caption h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.gallery-caption p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
    color: var(--color-off-white);
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

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

/* SUCCESS STORIES - VIDEO CARDS */
.video-story-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(232,232,232,0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.video-story-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245,160,0,0.4);
    box-shadow: 0 8px 30px rgba(245,160,0,0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

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

.video-story-card h4 {
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.video-story-card:hover h4 {
    color: var(--color-orange);
}

.video-story-card p {
    margin: 0;
}

/* Responsive video grid */
@media (max-width: 1024px) {
    #success-stories .container > div[style*="grid"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    #success-stories .container > div[style*="grid"] {
        grid-template-columns: 1fr !important;
    }
    
    .video-story-card {
        padding: 1rem;
    }
}

/* WARRANTY SECTION */
.warranty-section {
    background-color: var(--color-dark-gray);
}

.warranty-section h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.warranty-section h2 .fa-shield-check {
    color: var(--color-green);
    font-size: 0.9em;
}

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

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

.warranty-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(15,143,58,0.2);
    border-radius: 8px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.warranty-item:hover {
    background: rgba(15,143,58,0.05);
    border-color: rgba(15,143,58,0.4);
    transform: translateY(-5px);
}

.warranty-item .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-green);
}

.warranty-item h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.warranty-item p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-off-white);
    margin: 0;
}

/* CONTACT SECTION */
.contact-section {
    background-color: var(--color-charcoal);
}

.contact-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(232, 232, 232, 0.15);
    border-radius: 8px;
    padding: 2rem;
}

.contact-info h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail i {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-top: 0.25rem;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
}

.contact-detail div h5 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.contact-detail div p {
    font-size: 0.875rem;
    color: var(--color-off-white);
    margin: 0;
}

.contact-detail div a {
    color: var(--color-blue-light);
    transition: var(--transition-fast);
}

.contact-detail div a:hover {
    color: var(--color-blue);
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.phone-numbers a {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-blue-light);
}

.phone-numbers .secondary {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-off-white);
}

.contact-form {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(232, 232, 232, 0.15);
    border-radius: 8px;
    padding: 2rem;
}

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

.form-group label {
    display: block;
    font-family: var(--font-headline);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-white);
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: rgba(255,255,255,0.08);
    box-shadow: 0 0 15px rgba(232, 232, 232, 0.2);
}

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

.form-group .optional {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-light-gray);
    margin-left: 0.5rem;
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
.site-footer {
    background-color: var(--color-black);
    border-top: 1px solid rgba(255,210,0,0.15);
    padding: 3rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    max-width: 300px;
}

@media (max-width: 640px) {
    .footer-logo img {
        height: 42px;
        max-width: 240px;
    }
}

.footer-logo p {
    font-size: 0.875rem;
    color: var(--color-light-gray);
    line-height: 1.6;
    text-align: center;
}

.footer-column h5 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column a {
    font-size: 0.875rem;
    color: var(--color-off-white);
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-primary);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
}

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

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--color-light-gray);
    margin: 0;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column ul {
        text-align: center;
    }
}

/* CONTENT TOGGLE (Architect Mode) */
.homeowner-content {
    display: block;
}

.architect-content {
    display: none;
}

body.architect-mode .homeowner-content {
    display: none;
}

body.architect-mode .architect-content {
    display: block;
}

/* UTILITY CLASSES */
.text-center {
    text-align: center;
}

/* ARCHITECT/BUILDER RESOURCES MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    margin: auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 16px;
    border: 1px solid rgba(232, 232, 232, 0.2);
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    z-index: 10001;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(232, 232, 232, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    z-index: 10002;
}

.modal-close:hover {
    background: rgba(232, 232, 232, 0.2);
    transform: rotate(90deg);
}

.modal-header {
    padding: 3rem 3rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(232, 232, 232, 0.1);
}

.modal-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(232, 232, 232, 0.3);
}

.modal-subtitle {
    font-size: 1.125rem;
    color: var(--color-off-white);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.modal-body {
    padding: 3rem;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.resource-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(232, 232, 232, 0.15);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.resource-card:hover {
    background: rgba(232, 232, 232, 0.05);
    border-color: rgba(232, 232, 232, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(232, 232, 232, 0.1);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(232, 232, 232, 0.1) 0%, rgba(232, 232, 232, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--color-primary);
}

.resource-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.resource-card > p {
    font-size: 0.9375rem;
    color: var(--color-off-white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.resource-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.resource-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #D0D0D0;
}

.resource-list li i {
    color: #6BCB2D;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.resource-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(232, 232, 232, 0.1);
    color: var(--color-primary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(232, 232, 232, 0.2);
}

.resource-btn:hover {
    background: rgba(232, 232, 232, 0.15);
    border-color: rgba(232, 232, 232, 0.4);
    transform: translateX(4px);
}

.additional-resources {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(232, 232, 232, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

/* ==========================================
   MOBILE BUTTON CENTERING
   ========================================== */

/* Center all buttons on mobile devices */
@media (max-width: 768px) {
    /* Center buttons in sections */
    .section-cta {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .section-cta .btn,
    .section-cta a.btn {
        margin: 0 auto;
        display: inline-block;
    }
    
    /* Center hero buttons */
    .hero-cta,
    .hero-ctas {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-cta .btn,
    .hero-ctas .btn {
        margin: 0 auto;
        width: auto;
        max-width: 90%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Center header navigation button */
    .site-header .btn {
        margin: 0 auto;
    }
    
    /* Center all standalone buttons */
    .btn {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    /* Ensure button containers are centered */
    div:has(> .btn),
    div:has(> a.btn) {
        text-align: center;
    }
    
    /* Center buttons within any container */
    .container .btn,
    .container a.btn {
        display: inline-block;
        text-align: center;
    }
}

/* Extra small devices - additional centering */
@media (max-width: 480px) {
    .btn {
        min-width: 200px;
        max-width: 90%;
        display: block;
        margin: 0 auto;
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 0.8125rem;
        line-height: 1.4;
        white-space: normal;
        text-align: center;
    }
    
    /* Better text wrapping for long button text */
    .hero-ctas .btn-secondary {
        white-space: normal;
        line-height: 1.5;
        padding: 1rem 1.25rem;
    }
}

.additional-resources h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.resource-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(232, 232, 232, 0.1);
    border-radius: 8px;
    color: var(--color-off-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: rgba(232, 232, 232, 0.08);
    border-color: rgba(232, 232, 232, 0.3);
    color: var(--color-white);
    transform: translateX(4px);
}

.resource-link i {
    font-size: 1.25rem;
    color: var(--color-primary);
}

.resource-link span {
    font-size: 0.9375rem;
    font-weight: 500;
}

.modal-footer {
    background: rgba(107, 203, 45, 0.05);
    border: 1px solid rgba(107, 203, 45, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
}

.modal-footer h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.modal-footer p {
    font-size: 1rem;
    color: var(--color-off-white);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Modal Responsive */
@media (max-width: 968px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 2.5rem 2rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 2rem;
    }
    
    .modal-body {
        padding: 2rem;
    }
    
    .resource-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .resource-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .modal-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-subtitle {
        font-size: 1rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .resource-card {
        padding: 1.5rem;
    }
    
    .additional-resources {
        padding: 1.5rem;
    }
    
    .modal-footer {
        padding: 2rem 1.5rem;
    }
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
