/* CSS Variables - Aegis Preflight Brand Colors (Light Mode) */
:root {
    --bg-primary: #FAFAFA;
    --bg-secondary: #FFFFFF;
    --bg-tertiary: #F4F4F5;
    --bg-dark: #0E3A5D;
    --text-primary: #18181B;
    --text-secondary: #52525B;
    --text-muted: #A1A1AA;
    --text-on-dark: #FFFFFF;
    --brand-blue: #0E3A5D;
    --brand-blue-hover: #0a2d4a;
    --brand-orange: #F7941D;
    --brand-orange-hover: #e5850a;
    --accent-color: var(--brand-orange);
    --accent-hover: var(--brand-orange-hover);
    --border-color: #E4E4E7;
    --border-light: #F4F4F5;
    --success: #16A34A;
    --warning: #F7941D;
    --danger: #DC2626;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

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

/* Base */
html {
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    background-color: rgba(250, 250, 250, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow 0.3s ease;
}

/* Utility bar (Sign in | Support) */
.nav-utility-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
}

.nav-utility-link {
    font-size: 0.8rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-utility-link:hover {
    color: var(--brand-blue);
}

.nav-utility-divider {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.navbar-scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.95);
}

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

.nav-logo {
    text-decoration: none;
}

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

@media (min-width: 768px) {
    .nav-logo-img {
        height: 44px;
    }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--brand-blue);
}

.nav-cta {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    background-color: var(--brand-blue);
    color: var(--text-on-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.nav-cta:hover {
    background-color: #0c3250;
    transform: translateY(-1px);
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 2rem 5rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative gradient blobs (Wiz-style) */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.hero-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 58, 93, 0.3) 0%, rgba(14, 58, 93, 0) 70%);
    top: -200px;
    right: -200px;
}

.hero-blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(247, 148, 29, 0.2) 0%, rgba(247, 148, 29, 0) 70%);
    bottom: -150px;
    left: -150px;
}

.hero-blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 58, 93, 0.15) 0%, rgba(14, 58, 93, 0) 70%);
    top: 40%;
    left: 10%;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Split hero layout (Wiz-style) */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    text-align: left;
}

.hero-left {
    max-width: 540px;
}

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

.hero-illustration {
    width: 100%;
    max-width: 500px;
}

.hero-svg {
    width: 100%;
    height: auto;
}

.hero-headline {
    font-size: 3.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--brand-blue);
}

.hero-subheadline {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

/* ==================== SIMPLE WIZ-STYLE ANIMATIONS ==================== */

/* Gentle floating for badges */
@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.badge-float {
    animation: gentleFloat 4s ease-in-out infinite;
}

.badge-1 { animation-delay: 0s; }
.badge-2 { animation-delay: 0.5s; }
.badge-3 { animation-delay: 1s; }
.badge-4 { animation-delay: 1.5s; }
.badge-5 { animation-delay: 2s; }

/* Subtle ring pulse */
@keyframes ringPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

.aegis-ring {
    animation: ringPulse 3s ease-in-out infinite;
}

/* Scan line animation */
@keyframes scanPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.scan-line {
    animation: scanPulse 2s ease-in-out infinite;
}

/* Aegis bean subtle float */
@keyframes beanFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.aegis-bean {
    animation: beanFloat 4s ease-in-out infinite;
}

/* ==================== GLASS ANIMATION ==================== */
.glass-animation-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.glass-tube-svg {
    width: 100%;
    height: 100%;
}

.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Rotating ring animation for Aegis chamber */
@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rotating-ring {
    animation: rotateRing 10s linear infinite;
    transform-origin: center;
}

/* Scan ring pulse animation */
@keyframes scanRingPulse {
    0%, 100% { opacity: 0.3; r: 38; }
    50% { opacity: 0.6; r: 42; }
}

.scan-ring {
    animation: scanRingPulse 2s ease-in-out infinite;
}

/* Reflection sweep animation on glass tubes */
@keyframes reflectionSweep {
    0% { offset-distance: 0%; opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { offset-distance: 100%; opacity: 0; }
}

/* Shield ring pulse */
@keyframes shieldPulse {
    0%, 100% {
        opacity: 0.15;
        stroke-width: 20;
    }
    50% {
        opacity: 0.25;
        stroke-width: 25;
    }
}

.shield-ring {
    animation: shieldPulse 3s ease-in-out infinite;
}

.aegis-shield {
    animation: beanFloat 5s ease-in-out infinite;
}

.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.headline-highlight {
    color: var(--brand-orange);
}

/* Hero Form */
.hero-form {
    max-width: 500px;
    margin: 0 auto 3rem;
}

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

.hero-input,
.cta-input {
    flex: 1;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-input::placeholder,
.cta-input::placeholder {
    color: var(--text-muted);
}

.hero-input:focus,
.cta-input:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(14, 58, 93, 0.1);
}

.hero-btn,
.cta-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--accent-color);
    color: var(--text-on-dark);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.hero-btn:hover,
.cta-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.hero-btn:active,
.cta-btn:active {
    transform: scale(0.98);
}

.hero-btn:disabled,
.cta-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    min-height: 1.25rem;
}

.form-message.success {
    color: var(--success);
}

.form-message.error {
    color: var(--danger);
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-blue);
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    line-height: 1.3;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background-color: var(--border-color);
}

.stats-source {
    display: none; /* Hidden in split layout */
}

/* ==================== SECTION COMMON ==================== */
.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--brand-blue);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

/* Section decorative blobs */
.section-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.section-blob-right {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 58, 93, 0.2) 0%, rgba(14, 58, 93, 0) 70%);
    top: -100px;
    right: -200px;
}

/* Pillars */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.pillar {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pillar:hover {
    border-color: var(--brand-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    padding: 14px;
    background-color: var(--brand-blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--text-on-dark);
}

.pillar-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pillar-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Flow Diagram */
.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.flow-box {
    padding: 1.25rem 1.75rem;
    border-radius: 12px;
    text-align: center;
    min-width: 130px;
}

.flow-source {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
}

.flow-aegis {
    background-color: var(--brand-blue);
    padding: 1.5rem 2.5rem;
    box-shadow: var(--shadow-md);
}

.flow-dest {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
}

.flow-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.flow-aegis .flow-label {
    color: var(--text-on-dark);
}

.flow-sublabel {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.flow-aegis .flow-sublabel {
    color: rgba(255, 255, 255, 0.8);
}

.flow-arrow {
    color: var(--accent-color);
}

.flow-arrow svg {
    width: 28px;
    height: 28px;
}

/* Outcomes */
.outcomes {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.outcome {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: box-shadow 0.2s ease;
}

.outcome:hover {
    box-shadow: var(--shadow-sm);
}

.outcome-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.outcome-allowed .outcome-icon {
    background-color: rgba(22, 163, 74, 0.1);
    color: var(--success);
}

.outcome-masked .outcome-icon {
    background-color: rgba(247, 148, 29, 0.1);
    color: var(--warning);
}

.outcome-blocked .outcome-icon {
    background-color: rgba(220, 38, 38, 0.1);
    color: var(--danger);
}

.outcome-text {
    display: flex;
    flex-direction: column;
}

.outcome-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.outcome-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==================== PROOF POINTS ==================== */
.proof {
    padding: 5rem 0;
    background-color: var(--bg-primary);
}

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

.proof-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background-color: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.2s ease;
}

.proof-item:hover {
    box-shadow: var(--shadow-md);
}

.proof-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-blue);
    letter-spacing: -0.03em;
    line-height: 1;
}

.proof-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
    line-height: 1.4;
}

.proof-highlight {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.proof-highlight .proof-number {
    color: var(--accent-color);
}

.proof-highlight .proof-label {
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== SOCIAL PROOF ==================== */
.social-proof {
    padding: 5rem 0;
    background-color: var(--bg-secondary);
}

.quote-card {
    max-width: 750px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 3rem;
    background-color: var(--bg-primary);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.quote-highlight {
    color: var(--brand-blue);
    font-weight: 600;
    font-style: normal;
}

.quote-cite {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: normal;
}

.industries {
    text-align: center;
}

.industries-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.industry-pills {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.industry-pill {
    padding: 0.6rem 1.25rem;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.industry-pill:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
    background-color: rgba(14, 58, 93, 0.05);
}

/* ==================== DIFFERENTIATOR ==================== */
.differentiator {
    padding: 6rem 0;
    background-color: var(--bg-primary);
}

.diff-headline {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-primary);
}

.diff-highlight {
    color: var(--brand-blue);
}

.comparison {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.comparison-col {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.comparison-col:last-child {
    background-color: var(--brand-blue);
}

.comparison-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-title-highlight {
    color: var(--text-on-dark);
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list-highlight li {
    color: var(--text-on-dark);
    border-color: rgba(255, 255, 255, 0.2);
}

.comparison-divider {
    display: none;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 5rem 0 4rem;
    background-color: var(--bg-secondary);
}

.badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 1rem;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.badge svg {
    width: 64px;
    height: 64px;
}

.badge-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.badges-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.final-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-headline {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--brand-blue);
}

.cta-subheadline {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

/* Demo Form Grid */
.demo-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: left;
}

.demo-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.demo-form .form-group {
    margin-bottom: 0;
}

.demo-form-full {
    grid-column: 1 / -1;
}

.demo-form .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.demo-form .form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-family: inherit;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.demo-form .form-group input:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(14, 58, 93, 0.1);
}

.demo-submit-btn {
    display: block;
    margin: 1rem auto 0;
    padding: 0.625rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    color: white;
    background-color: var(--brand-blue);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.demo-submit-btn:hover {
    background-color: var(--brand-blue-hover);
}

.demo-submit-btn:active {
    transform: scale(0.98);
}

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

    .demo-submit-btn {
        margin-top: 0.5rem;
    }
}

.contact-email {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-email a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-email a:hover {
    color: var(--brand-blue);
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 1.5rem 2rem;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--text-primary);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social {
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-social:hover {
    color: var(--brand-blue);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* ==================== RESPONSIVE ==================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-split {
        gap: 2rem;
    }

    .hero-headline {
        font-size: 2.75rem;
    }

    .hero-illustration {
        max-width: 400px;
    }

    .pillars {
        gap: 1.5rem;
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .nav-utility-bar {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 5rem 1.5rem 3rem;
        min-height: auto;
    }

    /* Stack split hero on mobile */
    .hero-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
        order: 1;
    }

    .hero-right {
        order: 0; /* Show illustration first on mobile */
    }

    .hero-illustration {
        max-width: 320px;
        margin: 0 auto;
    }

    .stats-bar {
        justify-content: center;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }

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

    .hero-btn,
    .cta-btn {
        width: 100%;
    }

    .stats-bar {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.25rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

    .flow-diagram {
        flex-direction: column;
        gap: 0.75rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

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

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .proof-number {
        font-size: 2.25rem;
    }

    .quote-card {
        padding: 2rem 1.5rem;
    }

    .quote-text {
        font-size: 1.25rem;
    }

    .diff-headline {
        font-size: 1.75rem;
    }

    .comparison {
        flex-direction: column;
    }

    .comparison-col:last-child {
        border-radius: 0 0 16px 16px;
    }

    .badges {
        gap: 1.5rem;
    }

    .badge svg {
        width: 52px;
        height: 52px;
    }

    .cta-headline {
        font-size: 1.5rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-illustration {
        max-width: 280px;
    }

    .hero-svg {
        transform: scale(0.85);
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .stats-bar {
        gap: 1rem;
    }

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

    .industry-pills {
        flex-direction: column;
        align-items: center;
    }
}

/* ==================== PRICING PAGE ==================== */

/* Pricing Hero */
.pricing-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.pricing-headline {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.pricing-subheadline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Value Props */
.pricing-value-props {
    padding: 4rem 2rem;
    background-color: var(--bg-primary);
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.value-prop {
    text-align: center;
    padding: 2rem;
}

.value-prop-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--brand-blue);
}

.value-prop-icon svg {
    width: 100%;
    height: 100%;
}

.value-prop-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.value-prop-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Features Grid */
.pricing-features {
    padding: 4rem 2rem;
    background-color: var(--bg-secondary);
}

.pricing-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
}

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

.feature-col {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.feature-category {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--brand-blue);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.feature-check {
    color: var(--success);
    font-weight: 600;
    flex-shrink: 0;
}

/* Pricing Form Section */
.pricing-form-section {
    padding: 5rem 2rem;
    background-color: var(--bg-primary);
}

.pricing-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.pricing-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.pricing-form-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pricing-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.highlight-icon {
    font-size: 1.25rem;
}

/* Pricing Form */
.pricing-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-family: inherit;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.pricing-submit-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: white;
    background-color: var(--brand-blue);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.pricing-submit-btn:hover {
    background-color: var(--brand-blue-hover);
}

.pricing-submit-btn:active {
    transform: scale(0.98);
}

.pricing-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* FAQ Section */
.pricing-faq {
    padding: 5rem 2rem;
    background-color: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.faq-answer {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Nav active state */
.nav-link-active {
    color: var(--brand-blue);
}

/* Pricing Page Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .pricing-headline {
        font-size: 2rem;
    }

    .pricing-subheadline {
        font-size: 1rem;
    }

    .value-props-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-prop {
        padding: 1.5rem;
    }

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

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

    .pricing-form-left {
        text-align: center;
    }

    .pricing-highlights {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .pricing-headline {
        font-size: 1.75rem;
    }

    .pricing-form {
        padding: 1.5rem;
    }
}
