/* 
 * Steward Security - High-density, real-company aesthetic
 * Typography: Space Grotesk (headings) + Inter (body) + JetBrains Mono (data)
 */

:root {
    /* Colors */
    --bg: #09090b;
    --bg-elevated: #0f0f12;
    --bg-card: #141418;
    --bg-hover: #1a1a1f;
    
    --text: #fafafa;
    --text-secondary: #c4c4cc;  /* Improved contrast */
    --text-muted: #71717a;      /* Improved contrast */
    
    --accent: #22c55e;
    --accent-dim: rgba(34, 197, 94, 0.15);
    --accent-glow: rgba(34, 197, 94, 0.25);
    
    --border: rgba(255, 255, 255, 0.06);
    --border-strong: rgba(255, 255, 255, 0.1);
    
    --red: #ef4444;
    --yellow: #eab308;
    --blue: #3b82f6;
    
    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Sizes - scaled down 10% for tighter feel */
    --text-xs: 0.8rem;      /* 12.8px */
    --text-sm: 0.9rem;      /* 14.4px */
    --text-base: 1rem;      /* 16px */
    --text-lg: 1.125rem;    /* 18px */
    --text-xl: 1.35rem;     /* 21.6px */
    --text-2xl: 1.8rem;     /* 28.8px */
    --text-3xl: 2.25rem;    /* 36px */
    --text-4xl: 3.15rem;    /* 50.4px */
    --text-5xl: 4rem;       /* 64px */

    /* Layout - tighter whitespace */
    --container: 1100px;
    --gap: 2rem;
    --section-gap: 6rem;  /* Between sections */
    --section-padding: 5rem; /* Inside sections */
    
    /* Misc */
    --radius: 8px;
    --transition: 0.2s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    letter-spacing: 0.01em;
}

/* Layout */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
}

/* Links & Buttons */
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; color: var(--text); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: #000;
}

.btn-primary:hover {
    background: #16a34a;
    transform: translateY(-1px);
}

.btn-text {
    background: none;
    color: var(--text-secondary);
    padding: 0.75rem 0;
}

.btn-text:hover { color: var(--text); }

.btn-lg {
    padding: 1rem 1.75rem;
    font-size: var(--text-base);
}

.btn-full { width: 100%; justify-content: center; }

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-strong);
}

.btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--text-muted);
}

.btn-emergency {
    background: var(--red);
    color: #fff;
    border: 1px solid rgba(239, 68, 68, 0.5);
    animation: pulse-emergency 2s infinite;
}

.btn-emergency:hover {
    background: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
}

.btn-emergency svg {
    flex-shrink: 0;
}

@keyframes pulse-emergency {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

/* Announcement Bar */
.announcement {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--accent-dim);
    border-bottom: 1px solid var(--accent-glow);
    padding: 0.625rem var(--gap);
    font-size: var(--text-sm);
    text-align: center;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.announcement-tag {
    background: var(--accent);
    color: #000;
    padding: 0.125rem 0.5rem;
    border-radius: 100px;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
}

.announcement a {
    color: var(--accent);
    font-weight: 500;
}

.announcement a:hover { text-decoration: underline; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 998;
    padding-top: 5.1rem; /* Account for announcement bar + news ticker */
    background: transparent;
    transition: all var(--transition);
}

.header-scrolled {
    background: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding-top: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.logo-mark {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #000;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--text-xs);
    border-radius: 6px;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--text-lg);
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    transition: color var(--transition);
}

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

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

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--text);
    transition: all var(--transition);
}

/* Hero */
.hero {
    padding: 16rem 0 6rem;
    margin-top: 5.1rem;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
}

.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);  /* Reduced from 5xl (72px) to 4xl (56px) */
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.hero-title-alt {
    color: var(--text-muted);
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Globe Visualization */
.globe-visualization {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 1.5rem;
}

.globe-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-sphere {
    position: relative;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 35% 35%, var(--accent-dim), var(--bg-card));
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.3));
}

.globe-content {
    display: block;
    line-height: 1;
}

.threat-indicator {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    filter: drop-shadow(0 0 6px var(--accent));
    animation: pulse-threat 2s ease-in-out infinite;
}

.threat-1 {
    top: 30%;
    left: 25%;
    animation-delay: 0s;
}

.threat-2 {
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

.threat-3 {
    bottom: 25%;
    right: 30%;
    animation-delay: 1s;
}

.globe-ring {
    position: absolute;
    inset: -15px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    opacity: 0.2;
    animation: rotate-ring 8s linear infinite;
}

@keyframes rotate-ring {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-threat {
    0%, 100% {
        width: 8px;
        height: 8px;
        opacity: 1;
    }
    50% {
        width: 12px;
        height: 12px;
        opacity: 0.6;
    }
}

/* Certifications */
.certifications {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.certifications-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: block;
}

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

.cert-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem;
    min-height: 80px;
    transition: all var(--transition);
}

.cert-logo:hover {
    border-color: var(--accent);
    background: var(--accent-dim);
}

.cert-logo img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    display: block;
}

/* Status Card */
.status-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.status-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.status-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-text {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

/* Metrics */
.metrics {
    padding: 3rem 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-family: var(--font-mono);
    font-size: var(--text-3xl);
    font-weight: 600;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.metric-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Proof */
.proof {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}

.proof-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1.5rem;
}

.proof-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem 3rem;
}

.proof-logos span {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.5;
    transition: opacity var(--transition);
}

.proof-logos span:hover { opacity: 1; }

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

.section-header-sm { margin-bottom: 2rem; }

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);  /* Reduced from 4xl (56px) to 3xl (40px) */
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 600px;
}

/* Case Studies */
.cases {
    padding: var(--section-gap) 0;
}

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

.case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.case-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.case-card:hover {
    border-color: var(--border-strong);
}

.case-card-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--accent-dim) 0%, var(--bg-card) 50%);
    border-color: var(--accent-glow);
}

.case-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.case-industry {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--accent);
    background: var(--accent-dim);
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
}

.case-date {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.case-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.case-description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-results {
    display: flex;
    gap: 2rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.result {
    display: flex;
    flex-direction: column;
}

.result-value {
    font-family: var(--font-mono);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text);
}

.result-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-top: 0.125rem;
}

.case-quote {
    font-size: var(--text-sm);
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
}

.case-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* Anti-pitch */
.antipitch {
    padding: 5rem 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.antipitch-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.antipitch-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.antipitch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: left;
    margin-bottom: 2.5rem;
}

.antipitch-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    font-size: var(--text-base);
    color: var(--text-secondary);
}

.antipitch-x {
    color: var(--red);
    font-weight: 700;
    flex-shrink: 0;
}

.antipitch-statement {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--accent);
}

/* Services */
.services {
    padding: var(--section-gap) 0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.service-item {
    display: grid;
    grid-template-columns: 400px 1fr;
    background: var(--bg-card);
    padding: 2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.service-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.service-item:hover {
    background: var(--bg-hover);
}

.service-number {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.service-header .service-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.service-tags {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.service-body p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-stats {
    display: flex;
    gap: 2rem;
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.service-stats strong {
    color: var(--accent);
    font-family: var(--font-mono);
}

/* Team */
.team {
    padding: var(--section-gap) 0;
    background: var(--bg-elevated);
}

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

.team-member {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.team-member.visible {
    opacity: 1;
    transform: translateY(0);
}

.member-avatar {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.member-avatar span {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-muted);
}

.member-name {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.member-role {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.member-bio {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.5;
}

/* Writing */
.writing {
    padding: var(--section-gap) 0;
}

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

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.article-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.article-card:hover {
    border-color: var(--border-strong);
}

.article-date {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.article-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    line-height: 1.3;
    margin: 0.75rem 0;
}

.article-excerpt {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--accent);
}

.article-link:hover { text-decoration: underline; }

/* Updates */
.updates {
    padding: 4rem 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}

.updates-feed {
    display: flex;
    flex-direction: column;
}

.update-item {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-size: var(--text-sm);
}

.update-item:last-child { border-bottom: none; }

.update-date {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--text-muted);
    flex-shrink: 0;
    width: 60px;
}

.update-text {
    color: var(--text-secondary);
}

.update-link {
    color: var(--accent);
    margin-left: auto;
    flex-shrink: 0;
}

.update-link:hover { text-decoration: underline; }

/* Contact */
.contact {
    padding: var(--section-gap) 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.contact-description {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    font-size: var(--text-base);
    color: var(--text);
}

a.contact-value { color: var(--accent); }
a.contact-value:hover { text-decoration: underline; }

.contact-availability {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    padding: 1rem;
    background: var(--accent-dim);
    border: 1px solid var(--accent-glow);
    border-radius: var(--radius);
}

/* Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

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

.form-note {
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer .container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-main .logo-mark,
.footer-main .logo-text {
    display: inline-block;
    vertical-align: middle;
}

.footer-description {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-description a {
    color: var(--text-secondary);
}

.footer-description a:hover { color: var(--text); }

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-col a {
    font-size: var(--text-sm);
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
    grid-column: 1 / -1;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero-aside { display: none; }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .cases-grid { grid-template-columns: 1fr; }
    .case-card-featured { grid-column: span 1; }
    .service-item { grid-template-columns: 1fr; gap: 1rem; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .articles-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --section-gap: 5rem; }
    
    .announcement { padding: 0.5rem var(--gap); gap: 0.5rem; }
    
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }
    
    .nav-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link { padding: 0.75rem 0; font-size: var(--text-base); }
    .nav .btn { width: 100%; margin-top: 0.5rem; }
    
    .mobile-menu-btn { display: flex; }
    .mobile-menu-btn.active span:first-child { transform: rotate(45deg) translate(4px, 4px); }
    .mobile-menu-btn.active span:last-child { transform: rotate(-45deg) translate(4px, -4px); }
    
    .hero { padding: 9rem 0 4rem; }
    .hero-title { font-size: var(--text-3xl); }
    .hero-cta { flex-direction: column; align-items: flex-start; }
    
    .metrics-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .proof-logos { gap: 1rem 2rem; }
    
    .section-title { font-size: var(--text-2xl); }
    
    .antipitch-grid { grid-template-columns: 1fr; }
    .case-results { flex-wrap: wrap; gap: 1rem; }
    
    .team-grid { grid-template-columns: 1fr; }
    
    .footer .container { grid-template-columns: 1fr; gap: 2rem; }
    .footer-links { gap: 2rem; }
}

@media (max-width: 480px) {
    .metrics-grid { grid-template-columns: 1fr; text-align: left; }
    .metric { display: flex; justify-content: space-between; align-items: baseline; padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
    .metric:last-child { border-bottom: none; }
    .metric-value { font-size: var(--text-xl); }
}

/* =============================================
   Pricing Section Styles
   ============================================= */

.pricing {
    padding: var(--section-gap) 0;
    background: var(--bg-elevated);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
}

.pricing-featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--accent-dim) 0%, var(--bg-card) 50%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.pricing-tagline {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.pricing-amount {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.price-range {
    display: block;
    font-family: var(--font-mono);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.price-type {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pricing-features li {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.pricing-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg);
    border-radius: calc(var(--radius) - 4px);
    margin-bottom: 1.5rem;
}

.timeline-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-value {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text);
}

.pricing-note {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.pricing-note p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   Events Section Styles
   ============================================= */

.events {
    padding: var(--section-gap) 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.event-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}

.event-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
}

.event-featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--accent-dim) 0%, var(--bg-card) 50%);
}

.event-type {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--accent);
    background: var(--accent-dim);
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.event-month {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.event-day {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.event-content {
    flex-grow: 1;
}

.event-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.event-location {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.event-description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-speaker {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-bottom: 1rem;
}

.speaker-avatar {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--text-muted);
}

.speaker-name {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.event-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--accent);
    margin-top: auto;
}

.event-link:hover {
    text-decoration: underline;
}

.events-cta {
    text-align: center;
    padding-top: 2rem;
}

.events-cta p {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.events-cta a {
    color: var(--accent);
    font-weight: 500;
}

.events-cta a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for Pricing and Events */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .pricing-card {
        padding: 1.5rem;
    }

    .price-range {
        font-size: var(--text-xl);
    }
}

/* =============================================
   Audit Timeline Visualization
   ============================================= */

.audit-timeline {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2rem;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.timeline-title {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
}

.timeline-legend {
    display: flex;
    gap: 1.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-dot.soc2 { background: var(--accent); }
.legend-dot.iso { background: #3b82f6; }
.legend-dot.hipaa { background: #8b5cf6; }

.timeline-chart {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    height: 200px;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    justify-content: flex-end;
}

.bar-fill {
    width: 60px;
    height: calc(200px * var(--bar-height, 0.5));
    background: var(--bg-elevated);
    border-radius: 4px 4px 0 0;
    display: flex;
    flex-direction: column-reverse;
    overflow: hidden;
}

.bar-segment {
    width: 100%;
    display: block;
    flex-shrink: 0;
}

.bar-segment.soc2 { background: var(--accent); }
.bar-segment.iso { background: #3b82f6; }
.bar-segment.hipaa { background: #8b5cf6; }

.bar-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.bar-count {
    position: absolute;
    top: -1.5rem;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text);
}

.chart-bar.current .bar-fill {
    border: 2px solid var(--accent);
}

.current-marker {
    position: absolute;
    bottom: -2rem;
    font-size: var(--text-xs);
    color: var(--accent);
    font-weight: 600;
}

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

.timeline-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.timeline-stat-value {
    font-family: var(--font-mono);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--accent);
}

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

/* =============================================
   Audit Results Table
   ============================================= */

.audits-table-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1rem;
}

.audits-table {
    width: 100%;
}

.audit-row {
    display: grid;
    grid-template-columns: 100px 1fr 180px 100px 120px;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
}

.audit-row:last-child {
    border-bottom: none;
}

.audit-row.audit-header {
    background: var(--bg-elevated);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.audit-date {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.date-month {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    font-weight: 600;
}

.date-year {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.audit-client {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.client-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--text-secondary);
}

.client-icon.yc { background: #ff6600; color: #fff; }
.client-icon.seed { background: var(--accent-dim); color: var(--accent); }

.client-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.client-name {
    font-size: var(--text-sm);
    font-weight: 500;
}

.client-detail {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.audit-framework {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.framework-badge {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.framework-badge.soc2 {
    background: var(--accent-dim);
    color: var(--accent);
}

.framework-badge.iso {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.framework-badge.hipaa {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.audit-duration {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.duration-value {
    font-family: var(--font-mono);
    font-size: var(--text-base);
    font-weight: 700;
}

.duration-unit {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

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

.audit-result.success {
    color: var(--accent);
}

.result-text {
    font-size: var(--text-sm);
    font-weight: 500;
}

.audits-note {
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

/* =============================================
   Events Section
   ============================================= */

.events {
    padding: var(--section-gap) 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.event-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.event-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.event-card:hover {
    border-color: var(--border-strong);
}

.event-type {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: #000;
    background: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    width: fit-content;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.125rem;
}

.event-month {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-day {
    font-family: var(--font-mono);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.event-content {
    flex: 1;
}

.event-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.event-location {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.event-description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

.event-speaker {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.speaker-avatar {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-secondary);
}

.speaker-name {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.event-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--accent);
    margin-top: auto;
}

.event-link:hover {
    text-decoration: underline;
}

.events-cta {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.events-cta a {
    color: var(--accent);
}

.events-cta a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .audit-row {
        grid-template-columns: 80px 1fr 150px 80px 100px;
    }

    .timeline-chart {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .audit-timeline {
        padding: 1.5rem;
    }

    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-chart {
        height: 120px;
        gap: 0.5rem;
    }

    .timeline-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .audits-table-wrapper {
        overflow-x: auto;
    }

    .audit-row {
        grid-template-columns: 70px 1fr 120px 70px 90px;
        min-width: 600px;
        padding: 0.75rem 1rem;
        font-size: var(--text-sm);
    }

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

/* =============================================
   Process Timeline
   ============================================= */

.process-section {
    padding: var(--section-gap) 0;
    background: var(--bg-elevated);
}

.timeline {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}

.timeline-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    position: relative;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--border) 0%, var(--border) 80%, transparent 100%);
    z-index: 0;
}

.timeline-phase {
    position: relative;
    z-index: 1;
}

.phase-marker {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition);
}

.phase-marker-ongoing {
    background: var(--accent-dim);
    border-color: var(--accent);
}

.phase-number {
    font-family: var(--font-mono);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text);
}

.phase-marker-ongoing .phase-number {
    color: var(--accent);
}

.phase-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    min-height: 200px;
}

.phase-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.phase-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 900;
}

.phase-duration {
    font-size: var(--text-sm);
    color: var(--text-muted);
    background: var(--bg-elevated);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    white-space: nowrap;
}

.phase-duration-ongoing {
    background: var(--accent-dim);
    color: var(--accent);
}

.phase-description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.phase-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.phase-deliverables span {
    font-size: var(--text-xs);
    background: var(--bg-elevated);
    color: var(--text-muted);
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
}

.timeline-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

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

.summary-value {
    display: block;
    font-family: var(--font-mono);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.summary-label {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .timeline-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-track::before {
        display: none;
    }

    .timeline-summary {
        grid-template-columns: 1fr;
    }
}

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

    .phase-marker {
        width: 60px;
        height: 60px;
    }

    .phase-number {
        font-size: var(--text-base);
    }

    .timeline-summary {
        gap: 1rem;
    }
}

/* =============================================
   Comparison Table
   ============================================= */

.comparison-section {
    padding: var(--section-gap) 0;
}

.comparison-table {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 200px repeat(3, 1fr);
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
}

.comparison-cell {
    padding: 1.25rem 1.5rem;
    border-right: 1px solid var(--border);
}

.comparison-cell:last-child {
    border-right: none;
}

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

.header-label {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    display: block;
}

.header-highlight {
    background: var(--accent-dim);
    border-left: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
}

.header-badge {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: #000;
    background: var(--accent);
    padding: 0.125rem 0.5rem;
    border-radius: 100px;
    margin-top: 0.5rem;
}

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

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

.row-label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-elevated);
}

.cell-value {
    display: block;
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cell-note {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.cell-good { color: var(--accent); }
.cell-neutral { color: var(--text); }
.cell-bad { color: var(--red); }

.cell-highlight {
    background: var(--accent-dim);
    border-left: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
}

.comparison-cta {
    text-align: center;
    margin-top: 3rem;
}

.comparison-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .comparison-header,
    .comparison-row {
        grid-template-columns: 150px repeat(3, 1fr);
    }

    .comparison-cell {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .comparison-table {
        overflow-x: auto;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 120px repeat(3, minmax(140px, 1fr));
        min-width: 600px;
    }

    .comparison-cell {
        padding: 0.75rem;
    }

    .header-label {
        font-size: var(--text-sm);
    }
}

/* =============================================
   News Ticker / Marquee
   ============================================= */

.news-ticker {
    position: absolute;
    top: 2.85rem; /* Below announcement bar */
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
    overflow: hidden;
}

.ticker-track {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    gap: 2rem;
    animation: ticker 40s linear infinite;
    white-space: nowrap;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    font-size: var(--text-xs);
    color: var(--text-secondary);
}

.ticker-source {
    color: var(--accent);
    font-weight: 600;
    margin-right: 0.5rem;
}

.ticker-divider {
    color: var(--text-muted);
}

/* =============================================
   Typing Animation
   ============================================= */

.typing-container {
    display: inline;
}

.typing-prefix {
    color: var(--text-secondary);
}

.typing-text {
    color: var(--accent);
    font-weight: 500;
}

.typing-cursor {
    color: var(--accent);
    animation: blink 1s step-end infinite;
    margin-left: -2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* =============================================
   Partners & Accreditations
   ============================================= */

.partners {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}

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

.partners-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.partners-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.partner-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    min-height: 100px;
    min-width: 140px;
    transition: all var(--transition);
}

.partner-badge:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.partner-logo {
    width: auto;
    height: 50px;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0.9);
}

.partner-text {
    display: block;
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.partner-aws:hover .partner-logo {
    filter: brightness(1.1) drop-shadow(0 0 8px #ff9900);
}

.partner-gcp:hover .partner-logo {
    filter: brightness(1.1) drop-shadow(0 0 8px #4285f4);
}

.partner-azure:hover .partner-logo {
    filter: brightness(1.1) drop-shadow(0 0 8px #0078d4);
}

.cert-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    min-height: 90px;
    transition: all var(--transition);
}

.cert-badge:hover {
    border-color: var(--accent);
    background: var(--accent-dim);
}

.cert-text {
    font-family: var(--font-mono);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--text);
}

.cert-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    line-height: 1.4;
}

.cert-badge.cissp { border-color: #1e90ff; }
.cert-badge.cissp:hover .cert-text { color: #1e90ff; }

.cert-badge.cism { border-color: #32cd32; }
.cert-badge.cism:hover .cert-text { color: #32cd32; }

.cert-badge.oscp { border-color: #ff4500; }
.cert-badge.oscp:hover .cert-text { color: #ff4500; }

.cert-badge.crest { border-color: #9400d3; }
.cert-badge.crest:hover .cert-text { color: #9400d3; }

.cert-badge.aws-sap { border-color: #ff9900; }
.cert-badge.aws-sap:hover .cert-text { color: #ff9900; }

.cert-badge.gcp-pse { border-color: #4285f4; }
.cert-badge.gcp-pse:hover .cert-text { color: #4285f4; }

@media (max-width: 768px) {
    .cert-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =============================================
   FAQ Section
   ============================================= */

.faq {
    padding: var(--section-gap) 0;
    background: var(--bg-elevated);
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    border-color: var(--border-strong);
}

.faq-question {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 900;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.faq-answer {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =============================================
   Trust Center Section
   ============================================= */

.trust {
    padding: var(--section-gap) 0;
}

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

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.trust-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.trust-card:hover {
    border-color: var(--border-strong);
}

.trust-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    border-radius: var(--radius);
    color: var(--accent);
    margin-bottom: 1rem;
}

.trust-title {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.trust-description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.trust-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--accent);
}

.trust-link:hover {
    text-decoration: underline;
}

/* =============================================
   Resources Section
   ============================================= */

.resources {
    padding: var(--section-gap) 0;
    background: var(--bg-elevated);
}

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

.resource-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.resource-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.resource-card:hover {
    border-color: var(--border-strong);
}

.resource-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    border-radius: var(--radius);
    color: var(--accent);
    margin-bottom: 1rem;
}

.resource-title {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.resource-description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.resource-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: var(--text-xs);
}

.resource-format {
    color: var(--accent);
    font-family: var(--font-mono);
    font-weight: 500;
}

.resource-size {
    color: var(--text-muted);
}

/* =============================================
   Enhanced Footer
   ============================================= */

.footer-compliance {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-xs);
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    transition: all var(--transition);
}

.compliance-badge:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.compliance-badge svg {
    flex-shrink: 0;
}

.footer-col-title {
    display: block;
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    grid-column: 1 / -1;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-pgp {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: var(--text-sm);
}

.footer-pgp a {
    color: var(--accent);
}

.footer-pgp a:hover {
    text-decoration: underline;
}

.pgp-fingerprint {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* =============================================
   Responsive Updates for New Sections
   ============================================= */

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

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

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

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

@media (max-width: 768px) {
    .news-ticker {
        display: none;
    }

    .partners-badges {
        flex-direction: column;
    }

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

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

    .footer-compliance {
        flex-wrap: wrap;
    }

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

    .footer-pgp {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* =============================================
   Chat Widget
   ============================================= */

.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
    font-family: var(--font-body);
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
    transition: all var(--transition);
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(34, 197, 94, 0.5);
}

.chat-icon {
    color: #000;
}

.chat-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: var(--red);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 380px;
    max-height: 500px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-widget.chat-open .chat-window {
    display: flex;
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--text-sm);
}

.chat-name {
    display: block;
    font-weight: 600;
    font-size: var(--text-sm);
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.chat-status .status-dot {
    width: 6px;
    height: 6px;
}

.chat-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem;
    transition: color var(--transition);
}

.chat-close:hover {
    color: var(--text);
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    max-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    display: flex;
    gap: 0.5rem;
}

.chat-message.outgoing {
    flex-direction: row-reverse;
}

.chat-message .message-avatar {
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--text-xs);
    flex-shrink: 0;
}

.message-content {
    max-width: 260px;
    padding: 0.75rem 1rem;
    background: var(--bg-elevated);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.chat-message.outgoing .message-content {
    background: var(--accent-dim);
    border-color: var(--accent-glow);
}

.message-content p {
    font-size: var(--text-sm);
    line-height: 1.5;
    margin: 0;
}

.message-time {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 0.375rem;
}

.chat-quick-actions {
    display: flex;
    gap: 0.5rem;
    padding: 0 1rem 0.75rem;
    flex-wrap: wrap;
}

.quick-action {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.375rem 0.75rem;
    font-size: var(--text-xs);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}

.quick-action:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.chat-input-area {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--border);
    background: var(--bg-elevated);
}

.chat-input-area input {
    flex: 1;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.625rem 0.875rem;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text);
    outline: none;
}

.chat-input-area input:focus {
    border-color: var(--accent);
}

.chat-input-area input::placeholder {
    color: var(--text-muted);
}

.chat-send {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border: none;
    border-radius: var(--radius);
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.chat-send:hover {
    background: #16a34a;
}

/* Time Since Breach Counter */
.breach-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--accent-dim);
    border: 1px solid var(--accent-glow);
    border-radius: var(--radius);
    text-align: center;
}

.breach-counter-value {
    font-family: var(--font-mono);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--accent);
}

.breach-counter-label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

/* Live Threat Counter */
.threat-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius);
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    white-space: nowrap;
    flex-wrap: nowrap;
}

.threat-counter-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.threat-counter-value {
    color: var(--red);
    font-weight: 600;
}

.threat-counter-label {
    color: var(--text-secondary);
}

/* Client Stage Badges */
.client-stages {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.stage-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.stage-badge:hover {
    border-color: var(--accent);
}

.stage-count {
    font-family: var(--font-mono);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--accent);
}

.stage-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* Client Badges */
.client-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.client-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    transition: all var(--transition);
}

.client-badge:hover {
    border-color: var(--border-strong);
}

.client-badge.yc {
    border-color: #ff6600;
    color: #ff6600;
}

.client-badge.series-a {
    border-color: var(--blue);
    color: var(--blue);
}

.client-badge.series-b {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

@media (max-width: 768px) {
    .chat-widget {
        bottom: 16px;
        right: 16px;
    }

    .chat-window {
        width: calc(100vw - 32px);
        max-width: 380px;
        right: 0;
    }

    .chat-toggle {
        width: 52px;
        height: 52px;
    }
}

/* =============================================
   Team Credentials Grid
   ============================================= */

.team-credentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

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

.credential-value {
    display: block;
    font-family: var(--font-mono);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.credential-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .team-credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =============================================
   Testimonial Carousel
   ============================================= */

.testimonials {
    padding: 5rem 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: scroll-testimonials 30s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-testimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    min-width: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    flex-shrink: 0;
}

.testimonial-card:hover {
    border-color: var(--accent-glow);
}

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

.testimonial-quote::before {
    content: '"';
    color: var(--accent);
    font-size: var(--text-2xl);
    font-weight: 700;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--text-sm);
    color: var(--accent);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    font-size: var(--text-sm);
}

.testimonial-role {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 300px;
    }

    .testimonial-quote {
        font-size: var(--text-base);
    }
}

/* =============================================
   Clarity & Whitespace - Arctic Wolf/Redline Style
   ============================================= */

/* MASSIVE section padding - breathing room */
section {
    padding: var(--section-padding) 0;
}

/* Cards need air */
.event-card,
.pricing-card,
.service-card,
.faq-item,
.case-study-card,
[class*="-card"] {
    padding: 2.5rem;
}

/* Short text blocks - max width for readability */
p {
    max-width: 65ch;
    line-height: 1.8;
}

/* Better paragraph spacing */
p + p {
    margin-top: 1.5em;
}

/* BIG headings with room to breathe */
h1, h2, h3 {
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }

/* Section structure */
.section-label,
.section-eyebrow,
[class*="-eyebrow"],
[class*="-label"] {
    font-size: var(--text-sm);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.section-title,
[class*="-title"]:not(.hero-title-alt) {
    margin-bottom: 2rem;
}

.section-description {
    font-size: var(--text-xl);
    max-width: 600px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* BIGGER buttons */
.btn {
    padding: 1rem 2rem;
    font-size: var(--text-base);
    font-weight: 600;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: var(--text-lg);
}

/* Stats stand out */
.stat-number,
.counter-value,
[class*="-number"] {
    font-size: var(--text-5xl);
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Lists with icons feel lighter */
ul, ol {
    padding-left: 0;
    list-style: none;
}

li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
    font-size: var(--text-base);
}

/* Better form inputs */
input, textarea, select {
    font-size: var(--text-base);
    padding: 1rem 1.25rem;
}

/* Grid gaps */
.grid,
[class*="-grid"] {
    gap: 3rem;
}

/* Feature/service items need space */
.feature-item,
.service-item,
[class*="-item"] {
    margin-bottom: 0rem;
}

/* Testimonial cards */
.testimonial-card {
    padding: 3rem;
}

.testimonial-quote {
    font-size: var(--text-xl);
    line-height: 1.7;
}

/* FAQ items */
.faq-item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}

.faq-question {
    font-size: var(--text-xl);
    font-weight: 900;
}

/* Pricing cards */
.pricing-card {
    padding: 3rem;
}

.pricing-price {
    font-size: var(--text-4xl);
    font-weight: 700;
}

.pricing-features li {
    padding: 0.75rem 0;
    font-size: var(--text-base);
}

/* =============================================
   Problem Agitation Section
   ============================================= */

.problem-section {
    padding: var(--section-gap) 0;
    background: var(--bg);
}

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

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all var(--transition);
}

.problem-card:hover {
    border-color: var(--red);
    background: rgba(239, 68, 68, 0.05);
}

.problem-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--radius);
    color: var(--red);
    margin-bottom: 1.5rem;
}

.problem-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.problem-description {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
}

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

/* =============================================
   How It Works Section
   ============================================= */

.how-it-works {
    padding: var(--section-gap) 0;
    background: var(--bg-elevated);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.step-card {
    flex: 1;
    max-width: 300px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
}

.step-card:hover {
    border-color: var(--accent-glow);
    transform: translateY(-4px);
}

.step-card-highlight {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--accent-dim) 0%, var(--bg-card) 50%);
}

.step-number {
    font-family: var(--font-mono);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.step-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    background: var(--bg);
    border-radius: 100px;
}

.step-time svg {
    color: var(--accent);
}

.step-arrow {
    color: var(--text-muted);
    flex-shrink: 0;
}

.timeline-callout {
    text-align: center;
    padding: 2rem;
    background: var(--accent-dim);
    border: 1px solid var(--accent-glow);
    border-radius: var(--radius);
}

.callout-highlight {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.callout-text {
    font-size: var(--text-base);
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .steps-grid {
        flex-direction: column;
    }

    .step-card {
        max-width: 100%;
        width: 100%;
    }

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

/* =============================================
   Case Studies Section
   ============================================= */

.case-studies {
    padding: var(--section-gap) 0;
}

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

.case-study-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: all var(--transition);
}

.case-study-card:hover {
    border-color: var(--accent-glow);
}

.case-study-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--accent);
    background: var(--accent-dim);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.case-study-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.case-study-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.before-after-item {
    padding: 1rem;
    background: var(--bg);
    border-radius: var(--radius);
}

.before-after-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.before-after-item.before .before-after-label {
    color: var(--red);
}

.before-after-item.after .before-after-label {
    color: var(--accent);
}

.before-after-text {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

.case-study-result {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.result-metric {
    display: flex;
    flex-direction: column;
}

.result-value {
    font-family: var(--font-mono);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--accent);
}

.result-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

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

    .case-study-before-after {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   Guarantee Section
   ============================================= */

.guarantee-section {
    padding: 4rem 0;
    background: var(--accent-dim);
    border-top: 1px solid var(--accent-glow);
    border-bottom: 1px solid var(--accent-glow);
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.guarantee-badge svg {
    color: #000;
}

.guarantee-text {
    flex: 1;
}

.guarantee-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.guarantee-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
}

/* =============================================
   Certification Bar & Logo Sections
   ============================================= */

.cert-bar {
    padding: 4rem 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
}

.logo-section-label {
    text-align: center;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 600;
}

.cert-bar-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.cert-logo {
    height: 44px;
    width: 100%;
    object-fit: contain;
    transition: transform var(--transition);
}

.cert-logo:hover {
    transform: scale(1.08);
}

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

.platform-logo {
    height: 40px;
    width: 100%;
    object-fit: contain;
    transition: transform var(--transition);
}

.platform-logo:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .cert-bar-inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .cert-logo {
        height: 38px;
    }

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

    .platform-logo {
        height: 32px;
    }
}

/* Typing cursor animation */
.typing-cursor {
    color: var(--accent);
    animation: blink-cursor 0.8s step-end infinite;
    font-weight: 300;
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
