﻿:root {
    --dark: #021f17;
    --dark-2: #052e22;
    --dark-3: #063b2c;
    --primary: #22c55e;
    --primary-strong: #15803d;
    --teal: #0f766e;
    --text: #0f172a;
    --muted: #334155;
    --surface: #ffffff;
    --soft: #f0fdf4;
    --border: #e2e8f0;
    --danger: #b91c1c;
    --danger-on-dark: #ff8a8a;
    --warning: #c2410c;
    --warning-on-dark: #fdba74;
    --success: #15803d;
    --success-on-light: #15803d;
    --success-on-dark: #86efac;
    --muted-on-dark: rgba(255, 255, 255, 0.86);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: #f8fafc;
}

a {
    color: inherit;
}

.dark-hero-shell {
    background: radial-gradient(circle at 85% 20%, rgba(34, 197, 94, 0.22), transparent 28%), radial-gradient(circle at 10% 20%, rgba(15, 118, 110, 0.25), transparent 24%), linear-gradient(135deg, #011a13 0%, #052e22 55%, #021f17 100%);
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header {
    max-width: 1240px;
    margin: 0 auto;
    padding: 1.15rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    border-radius: 14px;
}

    .brand-mark svg {
        width: 30px;
        height: 34px;
        fill: none;
        stroke: var(--primary);
        stroke-width: 3;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.brand strong {
    display: block;
    font-size: 1.25rem;
    line-height: 1.1;
    color: #ffffff;
}

    .brand strong span {
        color: var(--success-on-dark);
    }

.brand small {
    display: block;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.78rem;
}

.nav-links {
    display: flex;
    gap: 1.6rem;
    align-items: center;
}

    .nav-links a {
        text-decoration: none;
        color: rgba(255, 255, 255, 0.92);
        font-weight: 700;
        font-size: 0.95rem;
    }

        .nav-links a:hover,
        .nav-links a:focus-visible {
            color: #ffffff;
        }

.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.8rem 1.15rem;
    border-radius: 0.65rem;
    text-decoration: none;
    font-weight: 900;
    border: 1px solid transparent;
}

.button-primary {
    background: linear-gradient(135deg, #166534, #15803d);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(21, 128, 61, 0.28);
}

    .button-primary:hover {
        filter: brightness(1.08);
    }

.button-outline-light {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
}

    .button-outline-light:hover {
        background: rgba(255, 255, 255, 0.16);
    }

.button-outline {
    color: #0f766e;
    border-color: #0f766e;
    background: #ffffff;
}

    .button-outline:hover {
        background: #f0fdf4;
    }

.standalone-header {
    max-width: 100%;
    padding: 1.15rem max(1.5rem, calc((100vw - 1240px) / 2));
    background: radial-gradient(circle at 85% 20%, rgba(34, 197, 94, 0.16), transparent 28%), linear-gradient(135deg, #011a13 0%, #052e22 55%, #021f17 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero {
    padding: 4rem 1.5rem 5rem;
}

.hero-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
}

.breadcrumb-like {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.hero h1 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

    .hero h1 span {
        color: var(--primary);
    }

.hero-lede {
    margin-top: 1.5rem;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.13rem;
    line-height: 1.75;
}

.audit-badge {
    margin-top: 1.35rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.38);
    color: #dcfce7;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    gap: 0.75rem;
}

    .check-list li {
        display: flex;
        gap: 0.65rem;
        align-items: flex-start;
    }

.hero-check-list li {
    color: rgba(255, 255, 255, 0.9);
}

.check-list li span:first-child {
    color: var(--success-on-light);
    font-weight: 900;
}

.dark-hero-shell .check-list li span:first-child,
.sample-report-hero .check-list li span:first-child,
.site-footer .check-list li span:first-child {
    color: var(--success-on-dark);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.6rem;
}

.micro-note {
    margin-top: 1rem;
    color: #334155;
}

.micro-note-light {
    color: rgba(255, 255, 255, 0.86);
}

.report-preview-card {
    background: rgba(2, 31, 23, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

    .report-preview-card h2 {
        margin: 0 0 2rem;
        text-align: center;
        color: #ffffff;
        font-size: 1.25rem;
    }

        .report-preview-card h2 span {
            color: rgba(255, 255, 255, 0.86);
            font-weight: 500;
        }

.score-visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.score-label {
    display: block;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
}

.score-label-before {
    color: #ff8a8a;
}

.score-label-after {
    color: #86efac;
}

.score-number {
    display: block;
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 950;
    line-height: 1;
}

.score-number-before {
    color: #ff6b6b;
}

.score-number-after {
    color: #86efac;
}

.score-visual small {
    display: block;
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.86);
}

.score-arrow {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 900;
}

.score-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
    margin: 1.8rem 0;
}

.score-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.6;
}

    .score-note strong {
        color: var(--success-on-dark);
    }

.mini-issue-list {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.75rem;
}

    .mini-issue-list div {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 0.75rem;
        align-items: center;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 0.8rem;
        padding: 0.75rem;
    }

    .mini-issue-list span {
        color: rgba(255, 255, 255, 0.94);
    }

    .mini-issue-list strong {
        font-size: 0.8rem;
        padding: 0.25rem 0.55rem;
        border-radius: 999px;
        background: rgba(185, 28, 28, 0.35);
        color: #ffffff;
    }

.issue-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
}

    .issue-dot.serious {
        background: #ff6b6b;
    }

    .issue-dot.moderate {
        background: #fdba74;
    }

/* Main sections */

.process-section,
.pricing-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 4.5rem 1.5rem;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

    .section-heading span {
        color: var(--teal);
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-size: 0.8rem;
    }

    .section-heading h2 {
        margin: 0.5rem 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
        letter-spacing: -0.045em;
    }

    .section-heading p {
        color: #334155;
        line-height: 1.7;
    }

.process-grid,
.pricing-grid {
    display: grid;
    gap: 1rem;
}

.process-grid {
    grid-template-columns: repeat(4, 1fr);
}

.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
}

.process-step,
.pricing-card,
.cta-band,
.site-footer {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.07);
}

.process-step,
.pricing-card {
    padding: 1.5rem;
}

.process-icon,
.plan-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #dcfce7;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    margin-bottom: 1rem;
}

.step-number {
    color: var(--teal);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.process-step h3,
.pricing-card h3 {
    margin: 0.5rem 0;
    color: #0f172a;
}

.process-step p,
.pricing-card p {
    color: #334155;
    line-height: 1.6;
}

.pricing-card.featured {
    border-color: var(--teal);
    transform: translateY(-0.5rem);
}

.popular {
    display: inline-flex;
    background: linear-gradient(135deg, #115e59, #166534);
    color: #ffffff;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.1rem;
    font-weight: 950;
    margin: 0.25rem 0;
    color: #0f766e;
}

.plan-list li {
    color: var(--text);
}

.pricing-card .button {
    width: 100%;
    margin-top: 1rem;
}

/* CTA */

.cta-band {
    max-width: 1240px;
    margin: 1rem auto 4rem;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, #ecfdf5, #ffffff);
}

    .cta-band h2 {
        margin: 0 0 0.5rem;
    }

    .cta-band p {
        margin: 0;
        color: #334155;
    }

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */

.site-footer {
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    background: #021f17;
    color: #ffffff;
    border: none;
    padding: 2.5rem 1.5rem 1.5rem;
}

.footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 2rem;
}

.footer-column {
    display: grid;
    gap: 0.65rem;
}

    .footer-column a,
    .footer-column span {
        color: rgba(255, 255, 255, 0.84);
        text-decoration: none;
    }

        .footer-column a:hover,
        .footer-column a:focus-visible {
            color: #ffffff;
        }

.legal-row {
    max-width: 1240px;
    margin: 2rem auto 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.84);
}

/* Accessibility helpers */

.skip-link {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-120%);
    background: #111827;
    color: #ffffff;
    padding: 0.75rem 1rem;
    z-index: 9999;
    border-radius: 0 0 0.5rem 0;
    text-decoration: none;
}

    .skip-link:focus,
    .skip-link:focus-visible {
        transform: translateY(0);
        outline: 3px solid #ffffff;
        outline-offset: 3px;
    }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid #86efac;
    outline-offset: 4px;
}

.process-section a:focus-visible,
.pricing-section a:focus-visible,
.cta-band a:focus-visible,
.sample-dashboard a:focus-visible,
.process-section button:focus-visible,
.pricing-section button:focus-visible,
.cta-band button:focus-visible,
.sample-dashboard button:focus-visible {
    outline: 3px solid #166534;
    outline-offset: 4px;
}

/* Sample report page */

.sample-report-modern {
    min-height: 100vh;
    background: #f8fafc;
}

.sample-report-hero {
    background: radial-gradient(circle at 85% 30%, rgba(34, 197, 94, 0.18), transparent 30%), linear-gradient(135deg, #011a13 0%, #052e22 55%, #021f17 100%);
    color: #ffffff;
    padding: 2rem 1.5rem 4rem;
}

.sample-report-hero-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.sample-breadcrumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.86);
}

    .sample-breadcrumb a {
        color: rgba(255, 255, 255, 0.92);
        text-decoration: none;
    }

.sample-report-hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.sample-preview-badge {
    margin-top: 1.25rem;
    display: inline-flex;
    gap: 0.6rem;
    align-items: center;
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #dcfce7;
    border-radius: 999px;
    padding: 0.65rem 0.95rem;
}

.sample-hero-lede {
    margin-top: 1.5rem;
    max-width: 620px;
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.sample-hero-note {
    max-width: 620px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
}

.sample-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.sample-score-card {
    background: rgba(2, 31, 23, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

    .sample-score-card h2 {
        margin: 0 0 2rem;
        text-align: center;
    }

        .sample-score-card h2 span {
            color: rgba(255, 255, 255, 0.86);
        }

.sample-score-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.before-text,
.after-text {
    display: block;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.before-text {
    color: #ff8a8a;
}

.after-text {
    color: #86efac;
}

.before-score,
.after-score {
    display: block;
    font-size: clamp(4rem, 7vw, 5.8rem);
    font-weight: 950;
    line-height: 1;
}

.before-score {
    color: #ff6b6b;
}

.after-score {
    color: #86efac;
}

.sample-score-row small {
    color: rgba(255, 255, 255, 0.86);
}

.sample-score-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
    margin: 1.75rem 0;
}

.sample-score-card p {
    text-align: center;
    color: rgba(255, 255, 255, 0.86);
}

    .sample-score-card p strong {
        color: #86efac;
    }

.sample-compliance {
    font-size: 0.95rem;
}

.sample-dashboard {
    max-width: 1240px;
    margin: -2.5rem auto 0;
    padding: 0 1.5rem 4rem;
    position: relative;
    z-index: 2;
}

.dashboard-grid {
    display: grid;
    gap: 1rem;
}

.dashboard-grid-top {
    grid-template-columns: 1fr 1.45fr 1fr;
}

.dashboard-grid-bottom {
    grid-template-columns: 1.35fr 1fr;
    margin-top: 1rem;
}

.dashboard-card,
.next-steps-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

    .dashboard-card h3,
    .next-steps-card h3 {
        margin-top: 0;
        color: #0f172a;
    }

        .dashboard-card h3 span {
            color: #475569;
            font-weight: 500;
        }

    .dashboard-card p {
        color: #334155;
        line-height: 1.65;
    }

.summary-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: grid;
    gap: 0.65rem;
}

    .summary-list li {
        display: flex;
        gap: 0.55rem;
        color: #0f172a;
    }

    .summary-list span {
        color: var(--success-on-light);
        font-weight: 900;
    }

.issue-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

    .issue-row:last-child {
        border-bottom: 0;
    }

    .issue-row > strong {
        width: 28px;
        height: 28px;
        border-radius: 999px;
        background: #b91c1c;
        color: #ffffff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .issue-row h4 {
        margin: 0;
        color: #0f172a;
    }

    .issue-row p {
        margin: 0.25rem 0 0;
        font-size: 0.95rem;
    }

.severity-circle {
    width: 150px;
    height: 150px;
    margin: 1.25rem auto;
    border-radius: 999px;
    background: radial-gradient(circle, white 46%, transparent 47%), conic-gradient(#b91c1c 0 43%, #c2410c 43% 81%, #a16207 81% 95%, #15803d 95% 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .severity-circle strong {
        font-size: 2.2rem;
    }

    .severity-circle span {
        font-size: 0.8rem;
        color: #334155;
    }

.severity-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

    .severity-list li {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 0.6rem;
        align-items: center;
    }

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

    .dot.serious {
        background: #b91c1c;
    }

    .dot.moderate {
        background: #c2410c;
    }

    .dot.minor {
        background: #a16207;
    }

    .dot.best {
        background: #15803d;
    }

.example-fixes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.mini-before-after > strong {
    display: block;
    margin-bottom: 0.75rem;
}

.mini-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.mini-panel {
    min-height: 110px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.before-panel {
    background: #f8fafc;
    color: #334155;
}

.after-panel {
    background: #dcfce7;
    color: #14532d;
}

.fix-row {
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

    .fix-row:last-child {
        border-bottom: 0;
    }

    .fix-row strong {
        display: block;
        color: #0f172a;
    }

    .fix-row p {
        margin: 0.3rem 0 0;
        color: #334155;
    }

.next-steps-card {
    margin-top: 1rem;
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

    .next-steps-grid p {
        color: #334155;
        line-height: 1.6;
    }

@media (max-width: 980px) {
    .sample-report-hero-inner,
    .dashboard-grid-top,
    .dashboard-grid-bottom,
    .next-steps-grid,
    .example-fixes-grid {
        grid-template-columns: 1fr;
    }

    .sample-dashboard {
        margin-top: -1.5rem;
    }

    .hero-inner,
    .process-grid,
    .pricing-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .hero {
        padding: 3rem 1rem 4rem;
    }

        .hero h1 {
            font-size: clamp(2.6rem, 13vw, 3.4rem);
        }

    .sample-report-hero {
        padding-top: 1.5rem;
    }

    .sample-score-row,
    .score-visual {
        grid-template-columns: 1fr;
    }

    .score-arrow {
        transform: rotate(90deg);
    }

    .site-header,
    .process-section,
    .pricing-section,
    .cta-band,
    .site-footer,
    .sample-dashboard,
    .sample-report-hero {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.cookie-consent {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
}

.cookie-consent__content {
    max-width: 720px;
    width: 100%;
    padding: 1.25rem;
    border-radius: 1rem;
    background: #ffffff;
    color: #111827;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.22);
    border: 1px solid rgba(15, 23, 42, 0.12);
}

    .cookie-consent__content h2 {
        margin: 0 0 0.5rem;
        font-size: 1.15rem;
    }

    .cookie-consent__content p {
        margin: 0;
        line-height: 1.6;
    }

.cookie-consent__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Audit request form controls
   Added globally because AuditRequestForm.razor.css was not being applied */
.request-form input.form-control,
.request-form select.form-control {
    width: 100%;
    min-height: 58px;
    border: 1px solid #cbd5e1;
    border-radius: 30px !important;
    padding: 1rem 1.15rem;
    font: inherit;
    font-size: 1rem;
    color: #0f172a;
    background: #ffffff;
    box-sizing: border-box;
}

.request-form textarea.form-control {
    width: 100%;
    min-height: 220px;
    border: 1px solid #cbd5e1;
    border-radius: 24px !important;
    padding: 1rem 1.15rem;
    font: inherit;
    font-size: 1rem;
    color: #0f172a;
    background: #ffffff;
    box-sizing: border-box;
    resize: vertical;
    line-height: 1.6;
}

    .request-form input.form-control:focus,
    .request-form select.form-control:focus,
    .request-form textarea.form-control:focus {
        outline: 3px solid rgba(34, 197, 94, 0.35);
        border-color: #0f766e;
    }

/* Smaller form controls on mobile */
@media (max-width: 520px) {
    .request-form input.form-control,
    .request-form select.form-control {
        min-height: 54px;
        border-radius: 28px !important;
        padding: 0.9rem 1rem;
    }

    .request-form textarea.form-control {
        min-height: 180px;
        border-radius: 22px !important;
        padding: 0.9rem 1rem;
    }
}

/* Audit request form refinement
   Smaller controls with better spacing */
.request-form {
    row-gap: 1.15rem;
    column-gap: 1.25rem;
}

    .request-form .form-field {
        margin-bottom: 0.85rem;
    }

    .request-form label {
        display: block;
        margin-bottom: 0.35rem;
        font-weight: 700;
    }

    /* Smaller InputText + InputSelect */
    .request-form input.form-control,
    .request-form select.form-control {
        min-height: 50px;
        border-radius: 25px !important;
        padding: 0.75rem 1rem;
        font-size: 0.98rem;
    }

    /* Textarea */
    .request-form textarea.form-control {
        min-height: 190px;
        border-radius: 22px !important;
        padding: 0.9rem 1rem;
        font-size: 0.98rem;
        line-height: 1.55;
    }

    /* Consent spacing */
    .request-form .consent-row {
        margin-top: 0.6rem;
        margin-bottom: 0.85rem;
    }

/* Mobile */
@media (max-width: 520px) {
    .request-form .form-field {
        margin-bottom: 0.75rem;
    }

    .request-form input.form-control,
    .request-form select.form-control {
        min-height: 48px;
        border-radius: 24px !important;
        padding: 0.7rem 0.95rem;
    }

    .request-form textarea.form-control {
        min-height: 170px;
        border-radius: 20px !important;
        padding: 0.85rem 0.95rem;
    }
}

.request-side-card {
    margin-top: 3rem;
    padding: 1.25rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

    .request-side-card h2 {
        margin: 0 0 1rem;
        color: #ffffff;
        font-size: 1.25rem;
    }

.request-side-item {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

    .request-side-item strong {
        display: block;
        color: #ffffff;
        margin-bottom: 0.25rem;
    }

    .request-side-item span {
        display: block;
        color: rgba(255, 255, 255, 0.82);
        line-height: 1.5;
    }
/* Request audit / fix plan left-side card */
.request-side-card {
    margin-top: 3rem;
    padding: 1.35rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

    .request-side-card h2 {
        margin: 0 0 1rem;
        color: #ffffff;
        font-size: 1.25rem;
        line-height: 1.25;
    }

.request-side-item {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

    .request-side-item strong {
        display: block;
        color: #ffffff;
        margin-bottom: 0.3rem;
        font-size: 0.98rem;
    }

    .request-side-item span {
        display: block;
        color: rgba(255, 255, 255, 0.82);
        line-height: 1.55;
        font-size: 0.95rem;
    }

    @media (max-width: 980px) {
        .request-side-card {
            margin-top: 2rem;
        }
    }

.captcha-wrapper {
    grid-column: 1 / -1;
    margin-top: 0.75rem;
}

.turnstile-container {
    min-height: 65px;
}