/* ===========================
   SymphraAI Brand Colors
   =========================== */
:root {
    /* Primary Brand Colors */
    --navy-blue: #0A1E3C;
    --gold-bronze: #D4A03C;
    --white: #FFFFFF;
    --light-gray: #E8ECF0;
    --medium-gray: #2C3E50;
    
    /* Semantic Colors */
    --success-green: #2E7D32;
    --alert-red: #C62828;
    --warning-amber: #F57C00;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(10, 30, 60, 0.08);
    --shadow-md: 0 4px 12px rgba(10, 30, 60, 0.12);
    --shadow-lg: 0 8px 24px rgba(10, 30, 60, 0.16);
    
    /* Transitions */
    --transition: all 0.2s ease;
}

/* ===========================
   Global Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--navy-blue);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Sophisticated textured overlay - C-Suite executive aesthetic */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Layer 1: Diagonal stripe texture (subtle fabric weave effect) */
    background-image: 
        repeating-linear-gradient(
            45deg,
            rgba(10, 30, 60, 0.04) 0px,
            rgba(10, 30, 60, 0.04) 1px,
            transparent 1px,
            transparent 3px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(10, 30, 60, 0.04) 0px,
            rgba(10, 30, 60, 0.04) 1px,
            transparent 1px,
            transparent 3px
        ),
        /* Layer 2: Fine noise texture for depth */
        repeating-linear-gradient(
            0deg,
            rgba(10, 30, 60, 0.025) 0px,
            transparent 1px,
            transparent 2px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(10, 30, 60, 0.025) 0px,
            transparent 1px,
            transparent 2px
        ),
        /* Layer 3: Subtle radial gradient for premium depth */
        radial-gradient(
            ellipse at center,
            rgba(255, 255, 255, 0.05) 0%,
            transparent 70%
        );
    pointer-events: none;
    z-index: 1;
    opacity: 1;
}

/* Additional premium texture for hero and key sections */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Very subtle crosshatch pattern for executive feel */
    background-image: 
        linear-gradient(
            135deg,
            rgba(212, 160, 60, 0.02) 0%,
            transparent 50%,
            rgba(10, 30, 60, 0.03) 100%
        ),
        repeating-linear-gradient(
            30deg,
            transparent,
            transparent 2px,
            rgba(10, 30, 60, 0.015) 2px,
            rgba(10, 30, 60, 0.015) 4px
        ),
        repeating-linear-gradient(
            -30deg,
            transparent,
            transparent 2px,
            rgba(10, 30, 60, 0.015) 2px,
            rgba(10, 30, 60, 0.015) 4px
        );
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
    opacity: 0.6;
}

/* Ensure content sits above texture */
main, footer {
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1400px; /* Increased from 1200px for more expansive feel */
    margin: 0 auto;
    padding: 0 40px; /* Increased from 24px for more breathing room */
}

/* ===========================
   Navigation - Enterprise Authority
   =========================== */
.navbar {
    background-color: var(--navy-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* Subtle border for definition */
}

.nav-container {
    max-width: 1400px; /* Match container width */
    margin: 0 auto;
    padding: 0 40px; /* Match container padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px; /* Increased from 72px for more presence */
}

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

.logo-img {
    height: auto;
    width: 650px; /* Increased from 500px for better prominence */
    max-height: 140px; /* Increased from 110px to match */
    object-fit: contain;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-brand a:hover {
    opacity: 0.9;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-bronze);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 11px;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
    opacity: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px; /* Increased from 4px for better spacing and symmetry */
    align-items: center;
}

.nav-menu > li > a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 20px; /* Increased from 10px 16px for more presence */
    border-radius: 6px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap; /* Prevent text wrapping */
}

.nav-menu > li > a:hover {
    background-color: rgba(212, 160, 60, 0.1);
    color: var(--gold-bronze);
}

.nav-cta {
    background-color: var(--gold-bronze) !important;
    color: var(--navy-blue) !important;
    padding: 12px 24px !important;
    font-weight: 600;
    margin-left: 12px;
}

.nav-cta:hover {
    background-color: #C49234 !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ===========================
   Dropdown - Professional Design
   =========================== */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    cursor: pointer;
}

.dropdown-icon {
    transition: transform 0.2s ease;
    opacity: 0.8;
}

.nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 12px;
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 380px;
    max-width: 420px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    padding: 8px 0;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    z-index: 2000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-section {
    padding: 12px 0;
}

.dropdown-section:not(:last-child) {
    border-bottom: 1px solid var(--light-gray);
}

.dropdown-header {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gold-bronze);
    padding: 8px 20px 6px;
    margin: 0;
}

.dropdown-header-link:hover {
    color: var(--gold-bronze) !important;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: rgba(212, 160, 60, 0.08);
}

.item-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 4px;
}

.item-desc {
    display: block;
    font-size: 13px;
    color: var(--medium-gray);
    line-height: 1.4;
}

.dropdown-item:hover .item-title {
    color: var(--gold-bronze);
}

.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--light-gray);
    border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--medium-gray);
}

/* ===========================
   Hero Section - Authority & Trust
   =========================== */
.hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #061325 100%);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Enhanced multi-layer premium texture - more visible */
    background-image:
        /* Gold accent gradient */
        radial-gradient(circle at 30% 50%, rgba(212, 160, 60, 0.12) 0%, transparent 50%),
        /* Diagonal stripe texture for executive feel - enhanced */
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.06) 0px,
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px,
            transparent 4px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.06) 0px,
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px,
            transparent 4px
        ),
        /* Fine noise for depth - enhanced */
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.03) 0px,
            transparent 2px
        );
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 16px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 56px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.stat-card {
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.035);
    border: 2px solid var(--gold-bronze);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Premium glass texture for hero stat cards */
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.035) 0px,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px,
            transparent 3px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.035) 0px,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px,
            transparent 3px
        );
    pointer-events: none;
    z-index: 0;
}

.stat-card > * {
    position: relative;
    z-index: 1;
}

.stat-header {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 44px;
    font-weight: 700;
    color: var(--gold-bronze);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.stat-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.stat-highlight {
    font-size: 20px;
    font-weight: 600;
    color: #D4A03C;
    margin: 0.5rem 0;
}

.stat-sublabel {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.stat-note {
    font-size: 13px;
    font-style: italic;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.75);
}

.hero-cta {
    display: flex;
    gap: 20px; /* Increased from 16px for better spacing */
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 100%; /* Allow buttons to size naturally */
}

.design-partner-cta {
    margin: 1.5rem auto 0 auto; /* Reduced from 2rem for tighter spacing */
    padding: 20px 40px; /* Match button padding approach */
    background: var(--gold-bronze) !important;
    border: none !important;
    border-radius: 8px;
    text-align: center;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 580px; /* Matches combined button width with gap: ~260+20+260=540, add buffer */
    width: auto;
}

.design-partner-cta p {
    margin: 0;
}

.design-partner-cta p:first-child {
    font-size: 18px; /* Match button font size */
    font-weight: 600;
    color: var(--navy-blue) !important;
    margin-bottom: 0.5rem;
}

.design-partner-cta p:last-child {
    font-size: 15px; /* Slightly smaller for hierarchy */
    color: var(--navy-blue) !important;
}

/* Add hover effect for design partner CTA */
a.design-partner-cta:hover {
    background: #C49234 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(212, 160, 60, 0.3);
}

/* ===========================
   Buttons - Brand CTA Styling
   =========================== */
.btn {
    display: inline-block;
    padding: 20px 56px; /* Increased for larger, more prominent buttons */
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-primary {
    background-color: var(--gold-bronze) !important; /* Force solid gold */
    color: var(--navy-blue) !important;
    border: none !important;
}

.btn-primary:hover {
    background-color: #C49234 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(212, 160, 60, 0.3);
}

.btn-secondary {
    background-color: var(--gold-bronze) !important; /* Force solid gold */
    color: var(--navy-blue) !important;
    border: none !important; /* No border */
}

.btn-secondary:hover {
    background-color: #C49234 !important; /* Darker gold on hover */
    color: var(--navy-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(212, 160, 60, 0.3);
}

/* Button color fixes for light backgrounds */
.about-section .btn-secondary,
.leader-card .btn-secondary {
    background-color: transparent;
    color: #000000;
    border: 2px solid var(--gold-bronze);
}

.about-section .btn-secondary:hover,
.leader-card .btn-secondary:hover {
    background-color: var(--gold-bronze);
    color: var(--navy-blue);
    border-color: var(--gold-bronze);
    transform: translateY(-2px);
}

/* Back to Overview button fix - dark blue on light backgrounds */
.btn-back-overview {
    background-color: #2d5f7a;
    color: var(--white);
    border: 2px solid #2d5f7a;
}

.btn-back-overview:hover {
    background-color: #1f4459;
    border-color: #1f4459;
}

.btn-large {
    padding: 18px 48px;
    font-size: 17px;
    width: auto;
}

/* ===========================
   Platform Section
   =========================== */
.platform-section {
    padding: 100px 0;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

/* Premium textured background for content sections */
.platform-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Subtle linen/fabric texture */
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(10, 30, 60, 0.025) 0px,
            rgba(10, 30, 60, 0.025) 1px,
            transparent 1px,
            transparent 3px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(10, 30, 60, 0.025) 0px,
            rgba(10, 30, 60, 0.025) 1px,
            transparent 1px,
            transparent 3px
        ),
        /* Very subtle paper grain */
        repeating-linear-gradient(
            0deg,
            rgba(10, 30, 60, 0.015) 0px,
            transparent 1px,
            transparent 2px
        );
    pointer-events: none;
    z-index: 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: var(--navy-blue);
}

.section-header p {
    font-size: 19px;
    color: var(--medium-gray);
    line-height: 1.6;
}

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

.grid-item {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid var(--gold-bronze);
    position: relative;
    overflow: hidden;
}

/* Subtle card texture for premium feel */
.grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(10, 30, 60, 0.02) 0px,
            rgba(10, 30, 60, 0.02) 1px,
            transparent 1px,
            transparent 4px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(10, 30, 60, 0.02) 0px,
            rgba(10, 30, 60, 0.02) 1px,
            transparent 1px,
            transparent 4px
        );
    pointer-events: none;
    z-index: 0;
}

.grid-item > * {
    position: relative;
    z-index: 1;
}

.icon-wrapper {
    margin-bottom: 24px;
}

.grid-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--navy-blue);
}

.grid-item p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 15px;
}

/* ===========================
   About Section
   =========================== */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

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

.leader-card {
    background-color: var(--light-gray);
    padding: 32px 28px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--gold-bronze);
    position: relative;
    overflow: hidden;
    /* Add flex layout for equal heights and button alignment */
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

/* Subtle premium texture for team cards */
.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            30deg,
            rgba(10, 30, 60, 0.025) 0px,
            rgba(10, 30, 60, 0.025) 1px,
            transparent 1px,
            transparent 3px
        ),
        repeating-linear-gradient(
            -30deg,
            rgba(10, 30, 60, 0.025) 0px,
            rgba(10, 30, 60, 0.025) 1px,
            transparent 1px,
            transparent 3px
        );
    pointer-events: none;
    z-index: 0;
}

.leader-card > * {
    position: relative;
    z-index: 1;
}

.leader-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.leader-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--gold-bronze);
    margin-bottom: 20px;
}

.leader-bio {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.6;
    text-align: left;
    /* Allow bio to grow and push button to bottom */
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

/* Ensure buttons stay at bottom and are aligned */
.leader-card .btn {
    margin-top: auto !important;
    align-self: stretch;
}

/* ===========================
   Contact Section
   =========================== */
.contact-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-size: 15px;
    font-family: var(--font-primary);
    transition: var(--transition);
    background-color: var(--white);
    color: var(--navy-blue);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230A1E3C' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.form-group select option {
    padding: 12px;
    background-color: var(--white);
    color: var(--navy-blue);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-bronze);
    box-shadow: 0 0 0 3px rgba(212, 160, 60, 0.1);
}

.contact-form .btn-large {
    width: 100%;
    margin-top: 8px;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 150px;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--gold-bronze);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--gold-bronze);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ===========================
   Modal - Secure Implementation
   =========================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

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

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

.modal-content {
    position: relative;
    background-color: var(--white);
    border-radius: 12px;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px;
    box-shadow: var(--shadow-lg);
    z-index: 2001;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--medium-gray);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
}

.modal-close:hover {
    color: var(--navy-blue);
}

#modalBody h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 12px;
}

.persona-role {
    font-size: 15px;
    font-weight: 600;
    color: var(--gold-bronze);
    margin-bottom: 32px;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 16px;
}

.persona-hero {
    background: linear-gradient(135deg, rgba(10, 30, 60, 0.05) 0%, rgba(212, 160, 60, 0.05) 100%);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    border-left: 4px solid var(--gold-bronze);
}

.persona-hero h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 12px;
}

.persona-hero p {
    font-size: 16px;
    color: var(--navy-blue);
    line-height: 1.6;
    margin: 0;
}

.persona-section {
    margin-bottom: 32px;
}

.persona-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 16px;
}

.persona-section ul {
    margin-left: 0;
    list-style: none;
}

.persona-section li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 12px;
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 15px;
}

.persona-section li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--gold-bronze);
    font-weight: bold;
    font-size: 18px;
}

.persona-cta {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px solid var(--light-gray);
    text-align: center;
}

.persona-cta .btn {
    padding: 18px 48px;
    font-size: 17px;
}

#modalBody h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-top: 32px;
    margin-bottom: 16px;
}

#modalBody p {
    color: var(--medium-gray);
    font-size: 17px;
    margin-bottom: 32px;
}

#modalBody ul {
    margin-left: 0;
    list-style: none;
    margin-bottom: 24px;
}

#modalBody li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 14px;
    color: var(--medium-gray);
    line-height: 1.6;
}

#modalBody li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--gold-bronze);
    font-weight: bold;
    font-size: 18px;
}

/* ===========================
   Responsive Design
   =========================== */
/* ===========================
   Mobile Menu
   =========================== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 2001;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #D4A03C; /* Gold/bronze color */
    margin: 0; /* No margin - using flex gap instead */
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Scroll Indicator */
/* Subtle Scroll Chevrons - Dynamically Positioned by JS */
.scroll-chevrons {
    position: absolute;
    /* bottom: set dynamically by JavaScript based on viewport */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
    transition: bottom 0.3s ease;
}

@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: translateX(-50%) translateY(-8px);
        opacity: 1;
    }
}

.scroll-chevrons svg {
    display: block;
}

/* ============================================
   PREREQUISITES LIST - HANGING INDENT (ALL DEVICES)
   ============================================ */
.prerequisites-list li {
    padding-left: 1.75rem;
    text-indent: -1.75rem;
}

.prerequisites-list li span {
    text-indent: 0;
}

@media (max-width: 768px) {
    /* Make navbar static so it doesn't stick to top when scrolling */
    .navbar {
        position: static;
    }
    
    /* Make nav-container relative so logo and hamburger stay at top */
    .nav-container {
        position: relative;
        height: 80px;
        padding: 0;
    }
    
    .scroll-chevrons {
        opacity: 0.8;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        position: absolute;
        right: 16px;
        top: 16px;
        z-index: 2002;
        width: 44px;
        height: 44px;
        padding: 10px;
        background: transparent;
        border: none;
    }
    
    /* Mobile logo - larger size, transparent */
    .logo-img {
        width: 240px;
        max-height: 80px;
    }
    
    /* Align mobile logo to ABSOLUTE FAR LEFT - stays at top, doesn't scroll */
    .nav-brand {
        position: absolute !important;
        left: 0px !important;
        top: 0px !important;
        z-index: 2001;
        padding: 0 !important;
        background: transparent;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--navy-blue);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        overflow-y: auto;
        z-index: 2000;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu > li > a {
        padding: 16px 0;
        display: block;
        width: 100%;
        font-size: 18px;
        font-weight: 600;
        color: #FFFFFF;
    }
    
    .nav-menu .nav-dropdown {
        position: relative;
    }
    
    .nav-menu .dropdown-trigger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 16px 0;
        font-size: 18px;
        font-weight: 600;
        color: #FFFFFF;
    }
    
    .nav-menu .dropdown-icon {
        transition: transform 0.3s ease;
    }
    
    .nav-menu .nav-dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }
    
    .nav-menu .dropdown-menu {
        position: static;
        width: 100%;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        padding: 0;
        margin: 8px 0;
        box-shadow: none;
        display: none;
        max-height: none;
        overflow: visible;
    }
    
    .nav-menu .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .nav-menu .dropdown-section {
        border-right: none;
        padding: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu .dropdown-section:last-child {
        border-bottom: none;
    }
    
    .nav-menu .dropdown-header {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--gold-bronze);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .nav-menu .dropdown-item {
        padding: 12px 0;
        border-left: none;
        display: block;
    }
    
    .nav-menu .item-title {
        font-size: 16px;
        font-weight: 700;
        color: #FFFFFF;
        line-height: 1.4;
        margin-bottom: 4px;
    }
    
    .nav-menu .item-desc {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.5;
    }
    
    .nav-menu .nav-cta {
        margin-top: 16px;
        width: 100%;
        text-align: center;
        display: block;
        padding: 16px;
        font-weight: 700;
    }
    
    /* Hide desktop dropdown behavior on mobile */
    .nav-menu .nav-dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .nav-menu .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    /* Mobile navigation improvements for Android and iOS */
    .nav-menu {
        -webkit-overflow-scrolling: touch; /* iOS momentum scrolling */
        will-change: transform;
        transform: translateZ(0);
        /* Improve scrolling performance on mobile */
    }
    
    /* Fix for navigation bug - ensure dropdown content is visible */
    .nav-menu .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        min-height: auto;
    }
    
    .nav-menu .nav-dropdown.active .dropdown-menu {
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            max-height: 0;
        }
        to {
            opacity: 1;
            max-height: 2000px;
        }
    }
    
    /* Enhanced texture visibility on mobile */
    .hero::before {
        background-image:
            radial-gradient(circle at 30% 50%, rgba(212, 160, 60, 0.15) 0%, transparent 50%),
            repeating-linear-gradient(
                45deg,
                rgba(255, 255, 255, 0.08) 0px,
                rgba(255, 255, 255, 0.08) 1px,
                transparent 1px,
                transparent 4px
            ),
            repeating-linear-gradient(
                -45deg,
                rgba(255, 255, 255, 0.08) 0px,
                rgba(255, 255, 255, 0.08) 1px,
                transparent 1px,
                transparent 4px
            ),
            repeating-linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.04) 0px,
                transparent 2px
            );
    }
    
    .stat-card::before {
        background-image:
            repeating-linear-gradient(
                45deg,
                rgba(255, 255, 255, 0.049) 0px,
                rgba(255, 255, 255, 0.049) 1px,
                transparent 1px,
                transparent 3px
            ),
            repeating-linear-gradient(
                -45deg,
                rgba(255, 255, 255, 0.049) 0px,
                rgba(255, 255, 255, 0.049) 1px,
                transparent 1px,
                transparent 3px
            );
    }


    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .modal-content {
        padding: 32px 24px;
        margin: 16px;
    }
}

/* ===========================
   Smooth Scrolling
   =========================== */
html {
    scroll-behavior: smooth;
}

/* ===========================
   Accessibility
   =========================== */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold-bronze);
    outline-offset: 2px;
}
/* ============================================
   MOBILE & BROWSER OPTIMIZATION
   ============================================ */

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    /* Fix for iOS Safari viewport height issue */
    body {
        min-height: -webkit-fill-available;
    }
    
    /* Prevent zoom on input focus */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* Android Chrome specific optimizations */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    select:focus,
    textarea:focus,
    input:focus {
        font-size: 16px;
    }
}

/* Tablet optimizations (iPad, Android tablets) */
@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Large phone optimizations (iPhone 14 Pro Max, Pixel 7 Pro, etc) */
@media (min-width: 428px) and (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
}

/* Small phone optimizations */
@media (max-width: 375px) {
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Prevent horizontal scrolling on all devices */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
    a, button, input[type="submit"], .btn {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Fix for image responsiveness */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Improve text readability on mobile */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    p {
        margin-bottom: 1rem;
    }
}

/* Fix for sticky elements on iOS */
@supports (-webkit-overflow-scrolling: touch) {
    .sticky-element {
        -webkit-overflow-scrolling: touch;
    }
}

/* Optimize for high DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        background-size: cover;
    }
}

/* Edge browser specific fixes */
@supports (-ms-ime-align: auto) {
    .flex-container {
        display: -ms-flexbox;
        display: flex;
    }
}

/* Firefox mobile specific */
@-moz-document url-prefix() {
    @media (max-width: 768px) {
        select {
            padding-right: 30px;
        }
    }
}

/* Opera browser compatibility */
@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {
    selector:not(*:root), .opera-specific {
        /* Opera-specific styles */
    }
}

/* Landscape orientation optimizations */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 3rem 0;
    }
    
    section {
        padding: 3rem 0;
    }
}

/* Print styles */
@media print {
    .nav-menu,
    .footer,
    .btn {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
/* ============================================
   MOBILE OPTIMIZATION ENHANCEMENTS
   Award-Winning Mobile Experience
   ============================================ */

/* Base Mobile Improvements - Apply to ALL screen sizes */
* {
    -webkit-tap-highlight-color: rgba(212, 160, 60, 0.3);
    -webkit-touch-callout: none;
}

/* Improve touch targets across the board */
a, button, input, select, textarea {
    min-height: 44px; /* Apple iOS Human Interface Guidelines */
    min-width: 44px;
}

/* ============================================
   ENHANCED MOBILE NAVIGATION (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    /* Mobile styles already defined in main section above */
    
    /* Enhanced mobile menu - cleaner like Stripe */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh; /* iOS dynamic viewport */
        background: rgba(10, 30, 60, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 24px 40px;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        z-index: 2000;
        gap: 0;
        animation: slideInFromRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes slideInFromRight {
        from {
            opacity: 0;
            transform: translateX(100%);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    /* Menu items - cleaner touch targets */
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        margin: 0;
    }
    
    .nav-menu > li:last-child {
        border-bottom: none;
    }
    
    .nav-menu > li > a,
    .nav-menu .dropdown-trigger {
        padding: 20px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        font-size: 18px;
        font-weight: 600;
        color: #FFFFFF;
        text-decoration: none;
        transition: all 0.2s ease;
        position: relative;
    }
    
    .nav-menu > li > a:active,
    .nav-menu .dropdown-trigger:active {
        opacity: 0.7;
    }
    
    /* Dropdown enhancements */
    .nav-menu .dropdown-icon {
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        width: 16px;
        height: 16px;
    }
    
    .nav-menu .nav-dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }
    
    .nav-menu .dropdown-menu {
        position: static;
        width: 100%;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
        padding: 8px 0;
        margin: 8px 0 16px 0;
        box-shadow: none;
        display: none;
        max-height: none;
        overflow: visible;
        animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-menu .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .nav-menu .dropdown-section {
        border-right: none;
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu .dropdown-section:last-child {
        border-bottom: none;
    }
    
    .nav-menu .dropdown-header {
        font-size: 11px;
        font-weight: 700;
        margin-bottom: 12px;
        color: rgba(212, 160, 60, 0.8);
        text-transform: uppercase;
        letter-spacing: 1.2px;
    }
    
    .nav-menu .dropdown-item {
        padding: 14px 0;
        border-left: none;
        display: block;
        border-radius: 0;
        margin-bottom: 4px;
        transition: all 0.2s ease;
    }
    
    .nav-menu .dropdown-item:active {
        opacity: 0.7;
    }
    
    .nav-menu .item-title {
        font-size: 16px;
        font-weight: 600;
        color: #FFFFFF;
        line-height: 1.4;
        margin-bottom: 6px;
        display: block;
    }
    
    .nav-menu .item-desc {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.5;
        display: block;
    }
    
    .nav-menu .nav-cta {
        margin-top: 24px;
        margin-bottom: 24px;
        width: 100%;
        text-align: center;
        display: block;
        padding: 18px 24px;
        font-weight: 600;
        font-size: 17px;
        background: var(--gold-bronze);
        color: var(--navy-blue);
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(212, 160, 60, 0.25);
        transition: all 0.2s ease;
        border: none;
    }
    
    .nav-menu .nav-cta:active {
        transform: scale(0.98);
        box-shadow: 0 1px 4px rgba(212, 160, 60, 0.3);
    }
    
    /* ============================================
       HERO SECTION MOBILE OPTIMIZATION
       ============================================ */
    .hero {
        min-height: 100vh;
        min-height: 100dvh; /* iOS dynamic viewport */
        padding: 120px 24px 60px;
        display: flex;
        align-items: center;
    }
    
    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 32px;
    }
    
    /* Stats cards - full-width vertical stack like Stripe */
    .hero-stats {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 40px;
        width: 100%;
    }
    
    .stat-card {
        padding: 32px 24px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(212, 160, 60, 0.15);
        transition: all 0.3s ease;
        width: 100%;
        box-sizing: border-box;
    }
    
    .stat-card:active {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        border-color: rgba(212, 160, 60, 0.3);
    }
    
    .stat-header {
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--gold-bronze);
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .stat-description {
        font-size: 16px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.95);
    }
    
    /* Stat card content - better hierarchy */
    .stat-card > div {
        margin: 0;
    }
    
    .stat-card span {
        display: inline;
    }
    
    /* Stat card numbers - make more readable on mobile */
    .stat-card > div[style*="font-size: 48px"] {
        font-size: 56px !important;
        font-weight: 700 !important;
        color: var(--gold-bronze) !important;
        line-height: 1.1 !important;
        margin: 12px 0 !important;
    }
    
    .stat-card > div[style*="font-size: 18px"] {
        font-size: 17px !important;
        line-height: 1.6 !important;
        color: rgba(255, 255, 255, 0.95) !important;
    }
    
    /* CTA buttons - Stripe-inspired bold styling */
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-cta .btn {
        width: 100%;
        padding: 18px 24px;
        font-size: 17px;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        text-align: center;
        border: none;
    }
    
    .btn-primary {
        background: var(--gold-bronze);
        color: var(--navy-blue);
        box-shadow: 0 2px 8px rgba(212, 160, 60, 0.25);
    }
    
    .btn-primary:active {
        transform: scale(0.98);
        box-shadow: 0 1px 4px rgba(212, 160, 60, 0.3);
    }
    
    .btn-secondary {
        background: transparent;
        color: var(--white);
        border: 1.5px solid rgba(255, 255, 255, 0.3);
    }
    
    .btn-secondary:active {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.5);
        transform: scale(0.98);
    }
    
    /* Design partner CTA - minimal styling */
    .design-partner-cta {
        display: block;
        margin-top: 32px;
        padding: 24px 20px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(212, 160, 60, 0.2);
        border-radius: 8px;
        text-align: center;
        color: var(--white);
        transition: all 0.2s ease;
    }
    
    .design-partner-cta:active {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(212, 160, 60, 0.3);
        transform: scale(0.99);
    }
    
    .design-partner-cta p {
        margin: 6px 0;
        font-size: 15px;
        line-height: 1.5;
    }
    
    .design-partner-cta p:first-child {
        font-weight: 600;
        color: var(--gold-bronze);
    }
    
    /* Scroll chevrons - optimized for mobile */
    .scroll-chevrons {
        opacity: 0.6;
        bottom: 40px;
    }
    
    /* ============================================
       PREREQUISITES LIST - HANGING INDENT
       ============================================ */
    .prerequisites-list li {
        padding-left: 1.75rem;
        text-indent: -1.75rem;
    }
    
    .prerequisites-list li span {
        text-indent: 0;
    }
    
    /* ============================================
       CONTENT SECTIONS MOBILE OPTIMIZATION
       ============================================ */
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .section-header h2 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .section-header p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Content grid - single column */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .leader-card,
    .feature-card {
        padding: 24px;
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .leader-card:active,
    .feature-card:active {
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }
    
    /* Leadership grid - single column */
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .leader-photo {
        width: 120px;
        height: 120px;
        margin: 0 auto 16px;
    }
    
    /* ============================================
       FORMS MOBILE OPTIMIZATION
       ============================================ */
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        width: 100%;
        padding: 16px;
        font-size: 16px !important; /* Prevents iOS zoom on focus */
        border-radius: 8px;
        border: 2px solid rgba(212, 160, 60, 0.3);
        background: rgba(255, 255, 255, 0.05);
        color: var(--white);
        transition: all 0.3s ease;
    }
    
    input:focus,
    textarea:focus,
    select:focus {
        outline: none;
        border-color: var(--gold-bronze);
        box-shadow: 0 0 0 3px rgba(212, 160, 60, 0.2);
    }
    
    /* ============================================
       MODAL MOBILE OPTIMIZATION
       ============================================ */
    .modal-content {
        padding: 24px 20px;
        margin: 16px;
        max-height: 90vh;
        max-height: 90dvh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 16px;
    }
    
    .modal-close {
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
        font-size: 32px;
        border-radius: 50%;
        background: rgba(10, 30, 60, 0.9);
        border: 2px solid var(--gold-bronze);
    }
    
    .modal-close:active {
        transform: scale(0.95);
    }
    
    /* ============================================
       FOOTER MOBILE OPTIMIZATION
       ============================================ */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-logo {
        width: 120px;
        height: auto;
        margin: 0 auto 16px;
    }
    
    .footer-section ul {
        padding: 0;
    }
    
    .footer-section li {
        margin: 12px 0;
    }
    
    .footer-section a {
        padding: 12px;
        display: inline-block;
        min-height: 44px;
        line-height: 1.5;
    }
}

/* ============================================
   TABLET OPTIMIZATION (428px - 767px)
   ============================================ */
@media (min-width: 428px) and (max-width: 767px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    /* Keep stats single column on tablets too for consistency */
    .hero-stats {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
}

/* ============================================
   SMALL PHONES (max-width: 375px)
   ============================================ */
@media (max-width: 375px) {
    .logo-img {
        width: 200px;
        max-height: 66px;
    }
    
    .nav-brand {
        left: 0px !important;
        top: 0px !important;
        padding: 0 !important;
    }
    
    .mobile-menu-toggle {
        right: 12px;
        top: 14px;
        display: flex !important;
        visibility: visible !important;
    }
    
    .hero {
        padding: 100px 16px 40px;
    }
    
    .hero h1 {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .stat-card {
        padding: 28px 20px;
    }
    
    .stat-card > div[style*="font-size: 48px"] {
        font-size: 48px !important;
    }
    
    .container {
        padding: 0 16px;
    }
}

/* ============================================
   iOS SAFARI SPECIFIC FIXES
   ============================================ */
@supports (-webkit-touch-callout: none) {
    body {
        min-height: -webkit-fill-available;
    }
    
    .hero,
    .nav-menu {
        min-height: -webkit-fill-available;
    }
    
    /* Prevent input zoom on iOS */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
    }
    
    /* Fix iOS Safari button appearance */
    button,
    .btn {
        -webkit-appearance: none;
        appearance: none;
    }
}

/* ============================================
   LANDSCAPE ORIENTATION OPTIMIZATION
   ============================================ */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 24px 40px;
    }
    
    .nav-menu {
        padding: 80px 24px 24px;
    }
    
    /* Keep single column even in landscape for consistency */
    .hero-stats {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .stat-card {
        padding: 24px 20px;
    }
}

/* ============================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-color-scheme: dark) {
    /* Already optimized for dark mode */
}

/* ============================================
   PERFORMANCE OPTIMIZATION
   ============================================ */
@media (max-width: 768px) {
    /* Use transform instead of position for better performance */
    .nav-menu,
    .modal-content {
        will-change: transform;
        transform: translateZ(0);
    }
    
    /* Optimize animations */
    .btn,
    .dropdown-item,
    .stat-card {
        will-change: transform;
    }
}
