/* ═══════════════════════════════════════════════════════════════════════════
   ENTERPRISE PAGES — Shared styles for Cami service and product pages
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Base Page Setup ───────────────────────────────────────────────────── */
html, body {
    overflow-y: auto;
    overflow-x: hidden;
}

.page-container {
    position: relative;
    z-index: 0;
    min-height: 100vh;
}

/* ─── Page Hero ─────────────────────────────────────────────────────────── */
.page-hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 48px 80px;
    text-align: center;
}

.page-hero .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
    padding: 8px 18px;
    background: rgba(90, 125, 100, 0.1);
    border: 1px solid rgba(90, 125, 100, 0.2);
    border-radius: 100px;
}

.page-hero .hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.page-hero h1 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.page-hero h1 strong {
    font-weight: 700;
}

.page-hero .hero-subtitle {
    font-size: 19px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero .hero-proof {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    margin-bottom: 36px;
}

.page-hero .hero-proof strong {
    color: var(--accent);
}

.page-hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid var(--accent);
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(90, 125, 100, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid var(--border);
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(90, 125, 100, 0.05);
}

.btn-small {
    padding: 12px 24px;
    font-size: 14px;
}

/* ─── Section Headers ───────────────────────────────────────────────────── */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
    padding: 0 24px;
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ─── Feature Cards ─────────────────────────────────────────────────────── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

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

.feature-card {
    padding: 36px 32px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
    min-width: 0;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(90, 125, 100, 0.1);
    border: 1px solid rgba(90, 125, 100, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1;
    color: var(--accent);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(90, 125, 100, 0.15);
    transform: scale(1.05);
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.feature-list li {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 18px;
    position: relative;
    margin-bottom: 8px;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.6;
}

/* ─── Pricing Cards ─────────────────────────────────────────────────────── */
.pricing-section {
    padding: 100px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.pricing-card {
    padding: 40px 32px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: rgba(90, 125, 100, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow);
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(90, 125, 100, 0.15);
}

.pricing-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.pricing-name {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 22px;
    position: relative;
    margin-bottom: 12px;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.6;
}

.pricing-cta {
    margin-top: auto;
}

.pricing-cta a {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* ─── Steps / How It Works ──────────────────────────────────────────────── */
.steps-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 48px 100px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.step-number {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(90, 125, 100, 0.1);
    border: 2px solid var(--accent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Libre Baskerville', Georgia, serif;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ─── Info Box ──────────────────────────────────────────────────────────── */
.info-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 48px 100px;
}

.info-box-content {
    padding: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 4px 24px var(--shadow);
}

.info-box-content h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.info-box-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.info-box-content p:last-child {
    margin-bottom: 0;
}

.info-box-content strong {
    color: var(--text-primary);
}

/* ─── Highlight Box ─────────────────────────────────────────────────────── */
.highlight-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 48px 100px;
}

.highlight-box-content {
    padding: 44px;
    background: rgba(90, 125, 100, 0.06);
    border: 2px solid rgba(90, 125, 100, 0.2);
    border-radius: 20px;
}

.highlight-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: var(--accent);
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.highlight-box-content h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.highlight-box-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.highlight-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-features li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 22px;
    position: relative;
}

.highlight-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.7;
}

/* ─── Code Block ────────────────────────────────────────────────────────── */
.code-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 48px 100px;
}

.code-section h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 16px;
}

.code-section .code-subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.code-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.code-block {
    background: #1a1a2e;
    border-radius: 14px;
    padding: 28px 32px;
    overflow-x: auto;
    font-family: 'SF Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 13px;
    line-height: 1.7;
    color: #a8b2d1;
    margin-bottom: 24px;
}

.code-block .comment { color: #636e88; }
.code-block .keyword { color: #c792ea; }
.code-block .string { color: #c3e88d; }
.code-block .key { color: #82aaff; }
.code-block .fn { color: #ffcb6b; }

/* ─── Compliance Box ────────────────────────────────────────────────────── */
.compliance-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 48px 100px;
}

.compliance-box-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: start;
    padding: 40px;
    background: rgba(90, 125, 100, 0.06);
    border: 1px solid rgba(90, 125, 100, 0.2);
    border-radius: 20px;
}

.compliance-icon {
    min-width: 72px;
    height: 56px;
    border-radius: 14px;
    background: rgba(90, 125, 100, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: -0.02em;
    padding: 0 12px;
}

.compliance-content h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.compliance-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
}

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

.compliance-list li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 22px;
    position: relative;
    margin-bottom: 10px;
}

.compliance-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.6;
}

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

/* ─── Disclaimer Box ────────────────────────────────────────────────────── */
.disclaimer-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 48px 100px;
}

.disclaimer-box {
    padding: 28px 32px;
    background: rgba(184, 134, 11, 0.06);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 14px;
}

.disclaimer-box p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.disclaimer-box strong {
    color: var(--text-primary);
}

/* ─── Technology Card ───────────────────────────────────────────────────── */
.tech-showcase {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px 100px;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.tech-card {
    padding: 44px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.tech-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 40px var(--shadow);
}

.tech-card-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.tech-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(90, 125, 100, 0.1);
    border: 1px solid rgba(90, 125, 100, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    color: var(--accent);
}

.tech-card-name {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.tech-card-tagline {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tech-card-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 28px;
}

.tech-card-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tech-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: rgba(90, 125, 100, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(90, 125, 100, 0.1);
}

.tech-feature-icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.tech-feature-icon svg {
    width: 100%;
    height: 100%;
}

.tech-feature-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.tech-feature-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.tech-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.tech-card-link:hover {
    gap: 12px;
}

.tech-card-link svg {
    width: 16px;
    height: 16px;
}

/* ─── Benchmark Box ─────────────────────────────────────────────────────── */
.benchmark-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 48px 100px;
}

.benchmark-box {
    padding: 44px;
    background: rgba(90, 125, 100, 0.06);
    border: 1px solid rgba(90, 125, 100, 0.2);
    border-radius: 20px;
    text-align: center;
}

.benchmark-box h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.benchmark-box p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 16px;
}

.benchmark-scores {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 32px 0 24px;
}

.benchmark-score {
    text-align: center;
}

.benchmark-score .elo {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.benchmark-score .elo.highlight {
    color: var(--accent);
}

.benchmark-score .model-name {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 6px;
    display: block;
}

/* ─── CTA Section ───────────────────────────────────────────────────────── */
.cta-section {
    padding: 100px 48px;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--border-light);
}

.cta-section h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-section p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ─── Page Footer ───────────────────────────────────────────────────────── */
.page-footer {
    padding: 60px 48px 40px;
    border-top: 1px solid var(--border-light);
    background: var(--bg-secondary);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-column h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

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

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

.footer-column a {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* ─── RLHF vs EQ Engine Comparison ─────────────────────────────────────────── */
.rlhf-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* ─── Dark Mode Refinements ─────────────────────────────────────────────── */
[data-theme="dark"] .feature-card {
    background: rgba(22, 24, 34, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

[data-theme="dark"] .feature-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .pricing-card {
    background: rgba(22, 24, 34, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

[data-theme="dark"] .info-box-content {
    background: rgba(22, 24, 34, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

[data-theme="dark"] .tech-card {
    background: rgba(22, 24, 34, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

[data-theme="dark"] .highlight-box-content {
    background: rgba(90, 125, 100, 0.08);
}

[data-theme="dark"] .compliance-box-content {
    background: rgba(90, 125, 100, 0.08);
}

[data-theme="dark"] .benchmark-box {
    background: rgba(90, 125, 100, 0.08);
}

[data-theme="dark"] .code-block {
    background: rgba(15, 17, 23, 0.9);
    border: 1px solid rgba(90, 125, 100, 0.15);
}

[data-theme="dark"] .cta-section {
    background: linear-gradient(180deg, transparent 0%, rgba(22, 24, 34, 0.5) 100%);
}

[data-theme="dark"] .page-footer {
    background: rgba(22, 24, 34, 0.5);
}

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

    .feature-grid--two-col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 20px 60px;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .page-hero .hero-subtitle {
        font-size: 16px;
    }
    
    .page-hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .feature-grid--two-col {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .feature-card pre {
        max-width: 100%;
        overflow-x: auto;
        font-size: 11px;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }

    .feature-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .feature-desc {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .pricing-section {
        padding: 80px 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-section {
        padding: 0 20px 80px;
    }
    
    .info-box,
    .highlight-box,
    .compliance-box,
    .disclaimer-section,
    .tech-showcase,
    .benchmark-section,
    .code-section {
        padding: 0 20px 80px;
    }
    
    .compliance-box-content {
        grid-template-columns: 1fr;
    }
    
    .highlight-features {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 80px 20px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .page-footer {
        padding: 48px 20px 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .benchmark-scores {
        gap: 24px;
    }
    
    .rlhf-comparison {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .info-box-content {
        padding: 28px 24px;
    }
    
    .info-box-content h2 {
        font-size: 22px;
    }
    
    .info-box-content h3 {
        font-size: 18px;
    }
    
    .highlight-box-content {
        padding: 28px 24px;
    }
    
    .highlight-box-content h3 {
        font-size: 22px;
    }
    
    .benchmark-box {
        padding: 28px 24px;
    }
    
    .benchmark-box h2 {
        font-size: 22px;
    }
    
    .benchmark-score .elo {
        font-size: 24px;
    }
    
    .benchmark-score .model-name {
        font-size: 10px;
    }
    
    .validation-scores {
        gap: 16px;
    }
    
    .validation-score .score-value {
        font-size: 1.75rem;
    }
}

/* ─── Validation Section ────────────────────────────────────────────────── */
.validation-section {
    padding: 0 0 100px;
}

.validation-hero {
    max-width: 900px;
    margin: 0 auto 48px;
    padding: 48px;
    background: rgba(90, 125, 100, 0.06);
    border: 1px solid rgba(90, 125, 100, 0.2);
    border-radius: 20px;
    text-align: center;
}

.validation-hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

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

.validation-stat .stat-value {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    line-height: 1.1;
}

.validation-stat .stat-value.success {
    color: var(--accent);
}

.validation-stat .stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
    display: block;
}

.validation-scores {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 48px;
    padding: 0 48px;
}

.validation-score {
    padding: 24px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.validation-score:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow);
}

.validation-score.critical {
    border-color: rgba(239, 68, 68, 0.3);
}

.validation-score .score-value {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.validation-score .score-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 8px;
}

.validation-score .score-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .validation-hero {
        padding: 28px 24px;
        margin: 0 20px 32px;
    }
    
    .validation-hero-stats {
        gap: 32px;
    }
    
    .validation-stat .stat-value {
        font-size: 2.25rem;
    }
    
    .validation-scores {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 20px;
    }

    .validation-score {
        padding: 16px 12px;
    }

    .validation-score .score-value {
        font-size: 1.5rem;
    }

    .validation-score .score-title {
        font-size: 12px;
    }

    .validation-score .score-desc {
        font-size: 11px;
    }
    
    .validation-score {
        padding: 20px 16px;
    }
    
    .validation-score .score-value {
        font-size: 1.5rem;
    }
}
