/* ITC Avant Garde Self-hosted Fonts */
@font-face {
    font-family: 'ITC Avant Garde';
    src: url('ITC/ITCAvantGardeStd-XLt.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ITC Avant Garde';
    src: url('ITC/ITCAvantGardeStd-Bk.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ITC Avant Garde';
    src: url('ITC/ITCAvantGardeStd-Md.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ITC Avant Garde';
    src: url('ITC/ITCAvantGardeStd-Demi.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ITC Avant Garde';
    src: url('ITC/ITCAvantGardeStd-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ITC Avant Garde';
    src: url('ITC/ITCAvantGardeStd-BkObl.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'ITC Avant Garde';
    src: url('ITC/ITCAvantGardeStd-BoldObl.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

:root {
    --primary: #00B8E6;
    --secondary: #E6007E;
    --accent: #5B3A8F;
    --bg-dark: #FFFFFF;
    --bg-card: #252538;
    --bg-card-gradient: linear-gradient(135deg, #0D3040, #3D1535);
    --text-primary: #1A1A2E;
    --text-muted: #5A5A6E;
    --text-on-card: #FFFFFF;
    --text-on-card-muted: #A0A0B8;
}

/* SVG Icons */
.icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.icon-lg {
    width: 48px;
    height: 48px;
}

.icon-cyan {
    stroke: var(--primary);
    fill: none;
}

.icon-magenta {
    stroke: var(--secondary);
    fill: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'ITC Avant Garde', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'ITC Avant Garde', sans-serif;
    font-weight: 700;
}


/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(180deg, var(--bg-dark) 0%, transparent 100%);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* Page Header */
.page-header {
    padding: 10rem 5% 4rem;
    text-align: center;
}

.page-tag {
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
}

.page-header h1 .highlight,
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

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

.header-stat .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.header-stat .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-stat-featured .stat-value.highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

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

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    border-left: 2px solid var(--primary);
    padding-left: 1rem;
}

.stat-number {
    font-family: 'ITC Avant Garde', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* ============================================
   NEW SECTIONS FROM FEEDBACK
   ============================================ */

/* Positioning Section */
.positioning-section {
    padding: 4rem 5%;
    background: linear-gradient(135deg, rgba(0, 184, 230, 0.05) 0%, rgba(230, 0, 126, 0.05) 100%);
    border-top: 1px solid rgba(0, 184, 230, 0.1);
    border-bottom: 1px solid rgba(0, 184, 230, 0.1);
}

.positioning-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.positioning-statement {
    font-size: 1.5rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.positioning-statement strong {
    color: var(--primary);
}

.positioning-pillars {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pillar-label {
    background: var(--bg-card-gradient);
    color: var(--text-on-card);
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 184, 230, 0.3);
}

/* What We Don't Do Section */
.what-we-dont-do {
    padding: 5rem 5%;
    background: var(--bg-card-gradient);
}

.dont-do-container {
    max-width: 1000px;
    margin: 0 auto;
}

.dont-do-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.dont-do-column h3,
.do-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-on-card);
}

.dont-list,
.do-list {
    list-style: none;
}

.dont-list li,
.do-list li {
    color: var(--text-on-card-muted);
    font-size: 0.95rem;
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dont-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 2px;
    background: var(--secondary);
}

.do-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
}

.do-list li strong {
    color: var(--primary);
}

@media (max-width: 768px) {
    .dont-do-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Foundation Section */
.foundation-section {
    padding: 5rem 5%;
    text-align: center;
}

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

.foundation-container h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 1rem;
}

.foundation-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.foundation-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.foundation-item {
    background: var(--bg-card-gradient);
    border: 1px solid rgba(0, 184, 230, 0.2);
    padding: 1.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 150px;
}

.foundation-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.foundation-icon {
    display: block;
    font-family: 'ITC Avant Garde', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.foundation-label {
    color: var(--text-on-card-muted);
    font-size: 0.85rem;
}

/* Outcomes Inline (for Academy section) */
.outcomes-inline {
    margin-top: 4rem;
    padding: 2.5rem;
    background: var(--bg-card-gradient);
    border: 1px solid rgba(0, 184, 230, 0.2);
}

.outcomes-inline h3 {
    font-size: 1.25rem;
    color: var(--text-on-card);
    margin-bottom: 1.5rem;
    text-align: center;
}

.outcomes-grid-inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.outcome-item strong {
    display: block;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.outcome-item p {
    color: var(--text-on-card-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .outcomes-grid-inline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Quantum Outcomes */
.quantum-outcomes {
    background: var(--bg-card-gradient);
    border: 1px solid rgba(0, 184, 230, 0.2);
    padding: 2.5rem;
    margin-top: 2rem;
}

.quantum-outcomes h3 {
    font-size: 1.25rem;
    color: var(--text-on-card);
    margin-bottom: 1.5rem;
    text-align: center;
}

.quantum-outcomes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.quantum-outcome {
    text-align: center;
    padding: 1rem;
}

.quantum-outcome strong {
    display: block;
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.quantum-outcome p {
    color: var(--text-on-card-muted);
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .quantum-outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .quantum-outcomes-grid {
        grid-template-columns: 1fr;
    }
}

/* Monday Quote */
.monday-quote {
    background: rgba(0, 184, 230, 0.1);
    border-left: 3px solid var(--primary);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-on-card);
    font-size: 1.1rem;
}

/* Who Need subtitle */
.who-need {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* 4-column grid for Quantum */
.services-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
    .services-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ORIGINAL STYLES
   ============================================ */

/* Section Styles */
.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-on-card);
}

.section-intro {
    color: var(--text-muted);
    max-width: 700px;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 6rem 5%;
}

.services-subsection {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.subsection-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.subsection-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.services-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1100px) {
    .services-grid-3 {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.service-card-featured {
    border-top: 3px solid var(--primary);
}

.service-card-featured:nth-child(2) {
    border-top-color: var(--secondary);
}

.service-card-featured:nth-child(3) {
    border-top-color: var(--accent);
}

.service-card {
    background: var(--bg-card-gradient);
    border: 1px solid rgba(0, 184, 230, 0.2);
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.service-number {
    font-family: 'ITC Avant Garde', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 184, 230, 0.2);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-on-card);
}

.service-card p {
    color: var(--text-on-card-muted);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 1rem;
}

.service-deliverables {
    color: var(--text-on-card);
    font-size: 0.9rem;
    background: rgba(0, 184, 230, 0.1);
    padding: 0.75rem 1rem;
    border-left: 2px solid var(--primary);
    margin-bottom: 1.5rem;
}

/* Who We Help Section */
.who-we-help {
    padding: 6rem 5%;
}

.who-we-help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.who-card {
    background: var(--bg-card-gradient);
    border: 1px solid rgba(0, 184, 230, 0.2);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.who-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.who-card h3 {
    font-size: 1.25rem;
    color: var(--text-on-card);
    margin-bottom: 0.5rem;
}

.who-card ul {
    list-style: none;
}

.who-card li {
    color: var(--text-on-card-muted);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
}

.who-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
}

@media (max-width: 900px) {
    .who-we-help-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Benefits & Course Tags */
.service-benefit {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.course-highlights {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.course-tag {
    background: rgba(0, 184, 230, 0.15);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    border-radius: 2px;
    border: 1px solid rgba(0, 184, 230, 0.3);
}

/* Expertise Section */
.expertise {
    padding: 6rem 5%;
    background: var(--bg-card-gradient);
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.expertise-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-on-card);
}

.expertise-content p {
    color: var(--text-on-card-muted);
    margin-bottom: 1.5rem;
}

.code-block {
    background: #1A1A2E;
    border: 1px solid rgba(0, 184, 230, 0.3);
    padding: 2rem;
    font-family: 'ITC Avant Garde', sans-serif;
    font-size: 0.85rem;
    overflow-x: auto;
    color: var(--text-on-card);
}

.code-block .comment {
    color: var(--text-on-card-muted);
}

.code-block .keyword {
    color: var(--secondary);
}

.code-block .string {
    color: var(--primary);
}

/* CTA Section */
.cta {
    padding: 8rem 5%;
    text-align: center;
}

.cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'ITC Avant Garde', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-primary);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 184, 230, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.btn-compact {
    padding: 0.65rem 1.6rem;
    font-size: 0.9rem;
}

.btn-outline.btn-compact {
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-outline.btn-compact:hover {
    background: var(--secondary);
    color: #FFFFFF;
}

/* Contact Form */
.contact-form {
    max-width: 500px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row input {
    flex: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    font-family: 'ITC Avant Garde', sans-serif;
    font-size: 0.9rem;
    background: var(--bg-card-gradient);
    border: 1px solid rgba(0, 184, 230, 0.3);
    color: var(--text-on-card);
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-on-card-muted);
}

.contact-form select {
    cursor: pointer;
}

.contact-form select option {
    background: var(--bg-card-gradient);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button {
    align-self: center;
    margin-top: 0.5rem;
}

/* Spinner for form submission */
.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: var(--text-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 0.5rem;
}

.spinner.active {
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

#send-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#send-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-response {
    display: none;
    margin-top: 1.5rem;
    padding: 1rem;
    font-size: 0.95rem;
    text-align: center;
}

.form-response.show {
    display: block;
}

.form-response.success {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.form-response.error {
    color: #f87171;
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.3);
}

/* Footer */
footer {
    padding: 3rem 5%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-card-gradient);
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
}

.mobile-menu a {
    color: var(--text-on-card);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--primary);
}

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Quantum Page Styles */
.threat-section {
    padding: 4rem 5%;
    background: var(--bg-card-gradient);
}

.threat-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.threat-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--text-primary);
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.threat-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-on-card);
}

.threat-container p {
    color: var(--text-on-card-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Deliverables */
.deliverables {
    background: #1A1A2E;
    border-left: 3px solid var(--primary);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.deliverables h4 {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.deliverables-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.deliverables-list li {
    color: var(--text-on-card-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.deliverables-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        flex-direction: column;
    }

    .positioning-pillars {
        flex-direction: column;
        gap: 1rem;
    }

    .foundation-grid {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#plexus-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
