:root {
    --brand-red: #a13430;
    --brand-red-dark: #8f2d2a;
    --brand-dark: #3f3e3e;
    --header-bg: #ffffff;
    --border-soft: #e7e7e7;
    --text-muted: #6b6b6b;
    --panel-bg: #ffffff;
    --page-bg: #f7f8fa;
    --soft-red: rgba(161, 52, 48, 0.08);
    --soft-shadow: 0 24px 70px rgba(29, 31, 36, 0.10);
    --grid-light: rgba(63, 62, 62, 0.045);
    --grid-dark: rgba(255, 255, 255, 0.045);
}

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

body {
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    background: var(--page-bg);
    color: var(--brand-dark);
}

body.modal-open {
    overflow: hidden;
}

.site-header {
    width: 100%;
    background: var(--header-bg);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand img {
    height: 52px;
    width: auto;
    display: block;
}

.header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.schedule-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 8px;
    background: var(--brand-red);
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    border: 1px solid var(--brand-red);
    box-shadow: 0 8px 18px rgba(161, 52, 48, 0.22);
    transition: all 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
}

.schedule-btn:hover {
    background: var(--brand-red-dark);
    border-color: var(--brand-red-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(161, 52, 48, 0.28);
}

.schedule-btn:focus {
    outline: 3px solid rgba(161, 52, 48, 0.25);
    outline-offset: 3px;
}

.schedule-btn:disabled {
    opacity: 0.72;
    cursor: not-allowed;
    transform: none;
}

.whitepaper-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 10px;
    color: var(--brand-red);
    background: #ffffff;
    border: 2px solid rgba(161, 52, 48, 0.34);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 32px rgba(161, 52, 48, 0.18);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.whitepaper-btn:hover {
    color: #ffffff;
    background: var(--brand-red);
    border-color: var(--brand-red);
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(161, 52, 48, 0.28);
}

.whitepaper-btn:focus {
    outline: 3px solid rgba(161, 52, 48, 0.25);
    outline-offset: 3px;
}

.whitepaper-btn span {
    margin-left: 9px;
    font-size: 16px;
}

.hero-whitepaper {
    position: relative;
    min-height: 54px;
    padding: 0 28px;
    background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--brand-red), #d36b64, var(--brand-red)) border-box;
    border: 2px solid transparent;
    animation: whitepaperPulse 2.8s ease-in-out infinite;
}

.hero-whitepaper::before {
    content: "Free PDF";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: var(--soft-red);
    color: var(--brand-red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.hero-whitepaper:hover::before {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

@keyframes whitepaperPulse {
    0%, 100% {
    box-shadow: 0 12px 32px rgba(161, 52, 48, 0.18);
    }
    50% {
    box-shadow: 0 18px 46px rgba(161, 52, 48, 0.34);
    }
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.hero::before,
.findings-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
    linear-gradient(var(--grid-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-light) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 78%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 88px 32px 112px;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.78fr);
    gap: 64px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 8px 12px;
    border: 1px solid rgba(161, 52, 48, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--brand-red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--brand-red);
    box-shadow: 0 0 0 5px rgba(161, 52, 48, 0.12);
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.055em;
    font-weight: 800;
    color: #282828;
}

.hero h1 .highlight {
    color: var(--brand-red);
}

.hero-copy {
    max-width: 650px;
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 620px;
    margin-top: 44px;
}

.proof-item {
    padding: 18px;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
}

.proof-value {
    display: block;
    color: #292929;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.proof-label {
    display: block;
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.report-card {
    position: relative;
    background: var(--panel-bg);
    border: 1px solid rgba(231, 231, 231, 0.96);
    border-radius: 28px;
    box-shadow: var(--soft-shadow);
    padding: 24px;
    overflow: hidden;
}

.report-card::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 7px;
    background: linear-gradient(90deg, var(--brand-red), #d36b64);
}

.report-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-top: 10px;
    margin-bottom: 24px;
}

.report-kicker {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 7px;
}

.report-title {
    color: #292929;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 11px;
    border-radius: 999px;
    background: var(--soft-red);
    color: var(--brand-red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.metric {
    padding: 18px;
    border: 1px solid #ececec;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.metric-label {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.055em;
    line-height: 1.45;
}

.metric-value {
    margin-top: 10px;
    color: #252525;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.045em;
}

.metric-value.red {
    color: var(--brand-red);
}

.metric-note {
    margin-top: 6px;
    color: #8a8a8a;
    font-size: 12px;
    font-weight: 600;
}

.assessment-panel {
    border: 1px solid #ececec;
    border-radius: 22px;
    background: #fcfcfc;
    padding: 18px;
}

.panel-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.panel-heading h3 {
    color: #292929;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.015em;
}

.panel-heading p {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
}

.analysis-list {
    display: grid;
    gap: 14px;
}

.analysis-row {
    display: grid;
    grid-template-columns: 140px 1fr 44px;
    align-items: center;
    gap: 12px;
}

.analysis-label {
    color: #565656;
    font-size: 12px;
    font-weight: 700;
}

.bar-track {
    width: 100%;
    height: 9px;
    background: #eeeeee;
    border-radius: 999px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-red), #d0645d);
}

.bar-fill.compute { width: 84%; }
.bar-fill.jobs { width: 68%; }
.bar-fill.storage { width: 52%; }
.bar-fill.security { width: 39%; }

.analysis-value {
    text-align: right;
    color: #292929;
    font-size: 12px;
    font-weight: 800;
}

.report-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
    padding: 16px;
    border-radius: 18px;
    background: #2f2f2f;
    color: #ffffff;
}

.footer-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
}

.footer-value {
    margin-top: 4px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.footer-badge {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.cert-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(161, 52, 48, 0.98), rgba(143, 45, 42, 0.96));
    color: #ffffff;
    border-top: 1px solid rgba(161, 52, 48, 0.16);
    border-bottom: 1px solid rgba(161, 52, 48, 0.22);
}

.cert-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.cert-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 26px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.cert-content {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cert-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.cert-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cert-eyebrow {
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 5px;
}

.cert-title {
    color: #ffffff;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.cert-title span {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
}

.cert-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cert-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.88);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.055em;
    white-space: nowrap;
}

.findings-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 92px 32px 110px;
}

.findings-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-label {
    color: var(--brand-red);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.section-heading h2 {
    color: #282828;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.055em;
    font-weight: 800;
}

.section-heading p {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
}

.findings-widget {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 20px;
    padding: 18px;
    border: 1px solid var(--border-soft);
    border-radius: 30px;
    background: #f8f8f8;
    box-shadow: 0 18px 60px rgba(29, 31, 36, 0.07);
}

.finding-menu {
    display: grid;
    gap: 10px;
}

.finding-tab {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 18px;
    background: transparent;
    padding: 18px;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

.finding-tab:hover {
    background: #ffffff;
    border-color: #ededed;
}

.finding-tab.active {
    background: #ffffff;
    border-color: rgba(161, 52, 48, 0.20);
    box-shadow: 0 12px 34px rgba(29, 31, 36, 0.07);
}

.tab-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.tab-name {
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.tab-risk {
    color: var(--brand-red);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.tab-copy {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.55;
    font-weight: 600;
}

.finding-detail {
    position: relative;
    overflow: hidden;
    min-height: 455px;
    border: 1px solid #ececec;
    border-radius: 24px;
    background: #ffffff;
    padding: 34px;
}

.detail-content {
    position: relative;
    z-index: 1;
}

.detail-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 28px;
}

.detail-kicker {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.detail-title {
    color: #272727;
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.045em;
    font-weight: 800;
}

.detail-description {
    max-width: 650px;
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 500;
}

.impact-card {
    min-width: 178px;
    padding: 18px;
    border-radius: 20px;
    background: #2f2f2f;
    color: #ffffff;
}

.impact-label {
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.impact-value {
    margin-top: 10px;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.045em;
}

.impact-note {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.detail-card {
    border: 1px solid #ededed;
    border-radius: 18px;
    padding: 18px;
    background: #fcfcfc;
}

.detail-card h4 {
    color: #2c2c2c;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.detail-card p {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.65;
    font-weight: 600;
}

.finding-scale {
    margin-top: 28px;
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, #fbfbfb 0%, #ffffff 100%);
    border: 1px solid #ededed;
}

.scale-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 12px;
}

.scale-header span {
    color: #4a4a4a;
    font-size: 12px;
    font-weight: 800;
}

.scale-track {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: #ededed;
}

.scale-fill {
    height: 100%;
    width: 78%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-red), #d0645d);
    transition: width 0.2s ease;
}

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 112px 32px;
    background: linear-gradient(135deg, #343434 0%, #242424 100%);
    color: #ffffff;
}

.cta-section::before,
.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
    linear-gradient(var(--grid-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-dark) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

.protocol-card {
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    padding: 26px;
}

.protocol-label {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}

.protocol-steps {
    display: grid;
    gap: 14px;
}

.protocol-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.protocol-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 800;
}

.protocol-step h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.protocol-step p {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    line-height: 1.55;
    font-weight: 600;
}

.protocol-step.tune {
    background: rgba(161, 52, 48, 0.24);
    border-color: rgba(211, 107, 100, 0.34);
}

.protocol-step.tune .protocol-number {
    background: var(--brand-red);
    color: #ffffff;
}

.protocol-step.tune h3 {
    color: #ffb1ac;
}

.cta-heading {
    text-align: right;
    justify-self: end;
    max-width: 720px;
}

.cta-heading .section-label {
    color: #ffb1ac;
}

.cta-heading h2 {
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.06em;
    font-weight: 800;
    color: #ffffff;
}

.cta-heading h2 span {
    color: #ffb1ac;
}

.cta-heading p {
    margin-top: 22px;
    margin-left: auto;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.85;
    font-weight: 500;
}

.cta-actions {
    margin-top: 34px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-actions .schedule-btn {
    box-shadow: 0 14px 34px rgba(161, 52, 48, 0.34);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.11);
    transform: translateY(-1px);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
    radial-gradient(circle at top left, rgba(161, 52, 48, 0.22), transparent 32%),
    rgba(15, 15, 16, 0.72);
    backdrop-filter: blur(12px);
}

.modal-overlay[hidden] {
    display: none;
}

.modal-dialog {
    position: relative;
    width: min(100%, 620px);
    max-height: calc(100vh - 48px);
    overflow: auto;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.68);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
    animation: modalIn 0.22s ease-out;
}

@keyframes modalIn {
    from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
    }
    to {
    opacity: 1;
    transform: translateY(0) scale(1);
    }
}

.modal-dialog::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 7px;
    background: linear-gradient(90deg, var(--brand-red), #d36b64);
}

.modal-content {
    padding: 34px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid #eeeeee;
    background: #ffffff;
    color: #444444;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close:hover {
    color: var(--brand-red);
    border-color: rgba(161, 52, 48, 0.22);
    background: var(--soft-red);
}

.modal-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--soft-red);
    color: var(--brand-red);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.modal-title {
    max-width: 480px;
    color: #282828;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.055em;
    font-weight: 800;
}

.modal-copy {
    margin-top: 14px;
    max-width: 520px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.75;
    font-weight: 500;
}

.assessment-form {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-field {
    display: grid;
    gap: 8px;
}

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

.form-field label {
    color: #3a3a3a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    background: #fbfbfb;
    color: #292929;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    transition: all 0.2s ease;
}

.form-field input {
    min-height: 48px;
    padding: 0 14px;
}

.form-field textarea {
    min-height: 126px;
    padding: 14px;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: rgba(161, 52, 48, 0.42);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(161, 52, 48, 0.08);
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.form-note {
    max-width: 290px;
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.55;
    font-weight: 600;
}

.form-status {
    min-height: 20px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
}

.form-status.success {
    color: #287a42;
}

.form-status.error {
    color: var(--brand-red);
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.site-footer {
    position: relative;
    overflow: hidden;
    background: #0f0f10;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 42px 32px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 42px;
    align-items: end;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
}

.footer-brand img {
    height: 42px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.94;
}

.footer-copy {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.75;
    font-weight: 500;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    text-align: right;
}

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.footer-status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--brand-red);
    box-shadow: 0 0 0 4px rgba(161, 52, 48, 0.18);
}

.footer-legal {
    color: rgba(255, 255, 255, 0.50);
    font-size: 12px;
    line-height: 1.7;
    font-weight: 500;
}

@media (max-width: 980px) {
    .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 70px;
    }

    .report-card {
    max-width: 640px;
    }

    .cert-banner-inner {
    align-items: flex-start;
    flex-direction: column;
    }

    .cert-meta {
    justify-content: flex-start;
    }

    .findings-widget {
    grid-template-columns: 1fr;
    }

    .finding-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-inner {
    grid-template-columns: 1fr;
    gap: 42px;
    }

    .cta-heading {
    text-align: left;
    justify-self: start;
    order: -1;
    }

    .cta-heading p {
    margin-left: 0;
    }

    .cta-actions {
    justify-content: flex-start;
    }

    .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    }

    .footer-meta {
    align-items: flex-start;
    text-align: left;
    }
}

@media (max-width: 640px) {
    .header-inner {
    padding: 14px 20px;
    }

    .brand img {
    height: 42px;
    }

    .schedule-btn {
    min-height: 40px;
    padding: 0 16px;
    font-size: 13px;
    }

    .whitepaper-btn {
    width: 100%;
    }

    .hero-inner {
    padding: 54px 20px 78px;
    }

    .hero h1 {
    font-size: 42px;
    }

    .hero-copy {
    font-size: 15px;
    }

    .hero-proof,
    .metrics-grid,
    .detail-grid,
    .finding-menu,
    .form-grid {
    grid-template-columns: 1fr;
    }

    .report-card {
    padding: 20px;
    border-radius: 22px;
    }

    .report-header,
    .report-footer,
    .detail-top {
    flex-direction: column;
    align-items: flex-start;
    }

    .analysis-row {
    grid-template-columns: 1fr;
    gap: 8px;
    }

    .analysis-value {
    text-align: left;
    }

    .cert-banner-inner {
    padding: 24px 20px;
    }

    .cert-content {
    align-items: flex-start;
    }

    .cert-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 14px;
    }

    .findings-section {
    padding: 68px 20px 84px;
    }

    .finding-detail {
    padding: 24px;
    }

    .detail-title {
    font-size: 26px;
    }

    .impact-card {
    width: 100%;
    }

    .cta-section {
    padding: 78px 20px;
    }

    .protocol-card {
    padding: 18px;
    border-radius: 24px;
    }

    .protocol-step {
    grid-template-columns: 1fr;
    }

    .cta-heading h2 {
    font-size: 38px;
    }

    .modal-overlay {
    padding: 14px;
    align-items: end;
    }

    .modal-dialog {
    width: 100%;
    max-height: calc(100vh - 28px);
    border-radius: 24px;
    }

    .modal-content {
    padding: 28px 20px 22px;
    }

    .modal-close {
    top: 16px;
    right: 16px;
    }

    .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
    }

    .form-actions .schedule-btn {
    width: 100%;
    }

    .footer-inner {
    padding: 34px 20px;
    }

    .footer-brand img {
    height: 36px;
    }
}