:root {
    color-scheme: light;
    --bg: #f5f7fb;
    --surface: #ffffff;
    --surface-strong: #eef4f8;
    --ink: #101820;
    --muted: #5e6b78;
    --line: #d9e2ea;
    --accent: #0f8b8d;
    --accent-strong: #0a5f73;
    --shadow: 0 18px 48px rgba(18, 30, 45, 0.10);
}

:root[data-theme="dark"] {
    color-scheme: dark;
    --bg: #101418;
    --surface: #171d23;
    --surface-strong: #202832;
    --ink: #eef4f8;
    --muted: #a7b4bf;
    --line: #2b3642;
    --accent: #63d2c6;
    --accent-strong: #9be7df;
    --shadow: 0 18px 48px rgba(0, 0, 0, 0.30);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--accent) 18%, transparent), transparent 28rem),
        var(--bg);
    color: var(--ink);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--accent-strong);
}

.shell {
    width: min(1120px, calc(100% - 32px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface) 88%, transparent);
    backdrop-filter: blur(18px);
}

.header-shell {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand,
.top-nav,
.theme-toggle,
.report-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand {
    font-weight: 800;
    letter-spacing: 0;
}

.brand-logo {
    display: block;
    width: auto;
    height: 42px;
    max-width: min(168px, 38vw);
    transition: filter 160ms ease;
}

:root[data-theme="dark"] .brand-logo {
    filter: invert(1);
}

.header-search {
    position: relative;
    flex: 1 1 360px;
    max-width: 420px;
}

.search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 6px;
    border: 1px solid color-mix(in srgb, var(--line) 82%, var(--accent) 18%);
    border-radius: 18px;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--surface) 96%, white 4%), var(--surface));
    box-shadow:
        0 10px 28px rgba(16, 24, 32, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.search-form:focus-within {
    border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
    box-shadow:
        0 14px 34px rgba(15, 139, 141, 0.14),
        0 0 0 4px color-mix(in srgb, var(--accent) 14%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.search-input,
.search-submit {
    min-height: 46px;
    border: 0;
    border-radius: 14px;
    color: var(--ink);
    font: inherit;
}

.search-input {
    width: 100%;
    padding: 0 16px 0 18px;
    background: transparent;
    font-size: 0.98rem;
}

.search-input:focus {
    outline: none;
}

.search-input::placeholder {
    color: color-mix(in srgb, var(--muted) 78%, white 22%);
}

.search-submit {
    flex: 0 0 auto;
    cursor: pointer;
    padding: 0 18px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #fff;
    box-shadow: 0 10px 20px rgba(15, 139, 141, 0.22);
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

:root[data-theme="dark"] .search-submit {
    color: #101820;
}

.search-submit:hover,
.search-submit:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(15, 139, 141, 0.28);
    filter: saturate(1.05);
}

.search-submit:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--accent) 24%, white);
    outline-offset: 2px;
}

.search-submit:active {
    transform: translateY(0);
}

.search-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 20;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: color-mix(in srgb, var(--surface) 97%, transparent);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.search-dropdown[hidden],
.search-empty[hidden],
.search-view-all[hidden] {
    display: none;
}

.search-suggestions {
    display: grid;
}

.search-suggestion,
.search-view-all {
    display: block;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
}

.search-suggestion:last-child,
.search-view-all:last-child {
    border-bottom: 0;
}

.search-suggestion strong,
.search-view-all {
    font-size: 14px;
    font-weight: 700;
}

.search-suggestion span,
.search-empty {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.search-suggestion.is-active,
.search-suggestion:hover,
.search-view-all:hover {
    background: var(--surface-strong);
}

.search-empty {
    margin: 0;
    padding: 16px;
}

.language-switch {
    position: relative;
}

.language-switch select {
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--ink);
    padding: 0 38px 0 14px;
    font: inherit;
    font-weight: 700;
    appearance: none;
    cursor: pointer;
}

.language-switch::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.top-nav {
    color: var(--muted);
    font-size: 14px;
}

.theme-toggle,
.button {
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
    padding: 0 14px;
    font: inherit;
    font-weight: 700;
}

.theme-icon {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--ink) 50%, var(--surface) 50%);
    border: 1px solid var(--line);
}

main {
    padding: 20px 0 72px;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface) 94%, transparent);
}

.footer-shell {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0 42px;
}

.footer-brand strong {
    display: block;
    font-size: 1rem;
}

.footer-brand p {
    margin: 8px 0 0;
    color: var(--muted);
}

.footer-seo {
    max-width: 62ch;
    font-size: 0.95rem;
    line-height: 1.65;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 18px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 14px;
}

.hero,
.page-heading,
.report-heading {
    padding: 18px 0 22px;
    max-width: 100%;
}

.hero {
    display: grid;
    gap: 18px;
    align-items: start;
}

.hero-copy {
    max-width: 820px;
}

.page-heading {
    max-width: 100%;
}

.hero-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-bottom: 28px;
}

.report-cover-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-bottom: 28px;
}

.eyebrow,
.card-kicker {
    margin: 0 0 10px;
    color: var(--accent-strong);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(36px, 7vw, 47px);
    line-height: 1.03;
    letter-spacing: 0;
}

.lead {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-cta {
    min-height: 48px;
    padding: 0 18px;
    justify-content: center;
}

.hero-cta-primary {
    border-color: transparent;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #fff;
    box-shadow: 0 12px 24px rgba(15, 139, 141, 0.18);
}

.hero-cta-primary:hover,
.hero-cta-primary:focus-visible {
    color: #fff;
    box-shadow: 0 16px 28px rgba(15, 139, 141, 0.24);
}

:root[data-theme="dark"] .hero-cta-primary,
:root[data-theme="dark"] .hero-cta-primary:hover,
:root[data-theme="dark"] .hero-cta-primary:focus-visible {
    color: #101820;
}

.hero-cta-secondary {
    background: color-mix(in srgb, var(--surface) 88%, var(--surface-strong));
}

.hero-reassurance {
    margin: -4px 0 0;
    max-width: 780px;
    color: var(--muted);
    font-size: 15px;
}

.social-proof {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid color-mix(in srgb, var(--line) 82%, var(--accent) 18%);
    border-radius: 12px;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--surface) 96%, white 4%), color-mix(in srgb, var(--surface) 92%, var(--surface-strong) 8%));
    box-shadow: var(--shadow);
}

.social-proof-header {
    max-width: 760px;
}

.social-proof h2 {
    margin: 0;
    font-size: clamp(26px, 3.6vw, 38px);
    line-height: 1.08;
}

.social-proof-description {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 16px;
}

.social-proof-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 18px 0 0;
    padding: 0;
}

.social-proof-card {
    min-height: 150px;
    padding: 16px 18px;
    border: 1px solid color-mix(in srgb, var(--line) 86%, var(--accent) 14%);
    border-radius: 10px;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--surface) 98%, white 2%), color-mix(in srgb, var(--surface) 92%, var(--surface-strong) 8%));
}

.social-proof-kicker,
.social-proof-copy {
    margin: 0;
}

.social-proof-kicker {
    color: var(--accent-strong);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.social-proof-value {
    display: block;
    margin-top: 12px;
    font-size: clamp(26px, 3.8vw, 38px);
    line-height: 1;
}

.social-proof-copy {
    margin-top: 10px;
    color: var(--muted);
    font-size: 15px;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.faq-panel {
    margin-top: 28px;
    padding: 22px;
    border: 1px solid color-mix(in srgb, var(--line) 84%, var(--accent) 16%);
    border-radius: 12px;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--surface) 97%, white 3%), color-mix(in srgb, var(--surface) 92%, var(--surface-strong) 8%));
    box-shadow: var(--shadow);
}

.faq-panel-header h2,
.faq-item h3 {
    margin: 0;
}

.faq-panel-header h2 {
    font-size: clamp(26px, 3.5vw, 36px);
    line-height: 1.08;
}

.faq-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.faq-item {
    padding: 16px 18px;
    border: 1px solid color-mix(in srgb, var(--line) 88%, var(--accent) 12%);
    border-radius: 10px;
    background: color-mix(in srgb, var(--surface) 96%, white 4%);
}

.faq-item p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.card,
.content-panel,
.redirect-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: color-mix(in srgb, var(--surface) 94%, transparent);
}

.card {
    /*border: 2px solid transparent;*/
    overflow: hidden;
    min-height: 180px;
    padding: 0 0 22px;
    box-shadow: 0 0 0 2px var(--line);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.card-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-bottom: 1px solid var(--line);
    margin-bottom: 18px;
    transform: scale(1) rotate(0deg);
    transform-origin: center center;
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.card > .card-kicker,
.card > strong,
.card > span:last-child {
    margin-left: 22px;
    margin-right: 22px;
}

.card:hover {
    /*transform: translateY(-2px);*/
    /*border-color: var(--accent);*/
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 100%, var(--line));
    /*box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 34%, var(--line));*/
}

.card:hover .card-image,
.card:focus-visible .card-image {
    transform: scale(1.035) rotate(-0.6deg);
}

.card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.2;
}

.card > span:last-child {
    color: var(--muted);
    display:block;
}

.card-large {
    min-height: 220px;
}

.category-card {
    display: flex;
    flex-direction: column;
}

.category-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.category-card strong,
.category-card-description,
.category-card-meta,
.category-card-cta {
    margin-left: 22px;
    margin-right: 22px;
}

.category-card-description {
    display: block;
    color: var(--muted);
}

.category-card-meta {
    display: grid;
    justify-items: start;
    align-content: start;
    gap: 10px;
    margin-top: 18px;
}

.category-card-meta-item {
    display: inline-grid;
    place-items: center;
    min-height: 32px;
    width: fit-content;
    max-width: 100%;
    margin: 0;
    padding: 6px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface-strong) 78%, transparent);
    color: var(--muted);
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
}

.category-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 18px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    opacity: 0.74;
    transform: translateX(0);
    transition: opacity 160ms ease, transform 160ms ease;
}

.category-card-cta::after {
    content: "->";
    font-size: 13px;
}

.category-card:hover .category-card-cta,
.category-card:focus-visible .category-card-cta {
    opacity: 1;
    transform: translateX(4px);
}

.category-card:hover .category-card-meta-item,
.category-card:focus-visible .category-card-meta-item {
    color: var(--ink);
    border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
}

.report-actions {
    flex-wrap: wrap;
    margin-top: 24px;
}

.search-results-panel {
    display: grid;
    gap: 18px;
}

.search-results-summary {
    margin: 0;
    color: var(--muted);
}

.search-results-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.search-result-card {
    min-height: 0;
    padding: 22px;
}

.search-result-card .card-kicker,
.search-result-card strong,
.search-result-card span:last-child,
.search-result-meta {
    margin-left: 0;
    margin-right: 0;
}

.search-result-card strong {
    margin-bottom: 10px;
}

.search-result-meta {
    display: block;
    margin-top: 14px;
    color: var(--muted);
    font-size: 13px;
}

.price {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    border-radius: 8px;
    background: var(--ink);
    color: var(--bg);
    padding: 0 16px;
    font-weight: 800;
}

.button {
    display: inline-flex;
    align-items: center;
}

.content-panel {
    padding: clamp(22px, 4vw, 40px);
}

.content-panel h2 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.2;
}

.content-panel h3 {
    margin: 24px 0 10px;
}

.content-panel p {
    color: var(--muted);
}

.contact-page {
    display: grid;
    gap: 20px;
}

.contact-hero-panel,
.contact-panel {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--accent) 18%, transparent), transparent 36%),
        linear-gradient(180deg, color-mix(in srgb, var(--surface) 98%, white 2%), color-mix(in srgb, var(--surface) 90%, var(--surface-strong) 10%));
    box-shadow: var(--shadow);
}

.contact-hero-panel {
    display: grid;
    gap: 26px;
    border: 1px solid color-mix(in srgb, var(--line) 72%, var(--accent) 28%);
}

.contact-hero-copy {
    max-width: 820px;
}

.contact-hero-copy h2,
.contact-panel-header h2 {
    margin: 0;
    font-size: clamp(30px, 5vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.contact-hero-description {
    margin: 16px 0 0;
    max-width: 760px;
    color: var(--ink);
    font-size: clamp(18px, 2.1vw, 22px);
    line-height: 1.45;
}

.contact-intro {
    max-width: 760px;
    margin-top: 18px;
}

.contact-intro p:last-child,
.contact-panel-header p:last-child {
    margin-bottom: 0;
}

.contact-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.contact-highlight-card {
    padding: 20px;
    border: 1px solid color-mix(in srgb, var(--line) 78%, var(--accent) 22%);
    border-radius: 18px;
    background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
    backdrop-filter: blur(10px);
}

.contact-highlight-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.contact-highlight-card p,
.contact-direct-note {
    margin: 0;
    color: var(--muted);
}

.contact-direct-card {
    display: grid;
    gap: 8px;
    padding: 20px 22px;
    border: 1px solid color-mix(in srgb, var(--line) 72%, var(--accent) 28%);
    border-radius: 20px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 20%, transparent), color-mix(in srgb, var(--surface-strong) 92%, transparent));
}

.contact-direct-label {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-direct-link {
    font-size: clamp(24px, 3.4vw, 36px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.contact-form-panel {
    display: grid;
    gap: 18px;
}

.contact-panel-header h2 {
    font-size: clamp(28px, 4vw, 40px);
}

.contact-panel-header p:last-child {
    margin-top: 12px;
}

.contact-topic-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-topic {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid color-mix(in srgb, var(--line) 76%, var(--accent) 24%);
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: clamp(20px, 2.5vw, 28px);
    border: 1px solid color-mix(in srgb, var(--line) 78%, var(--accent) 22%);
    border-radius: 24px;
    background: color-mix(in srgb, var(--surface) 98%, transparent);
}

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

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

.contact-field span {
    font-size: 14px;
    font-weight: 700;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 1px solid color-mix(in srgb, var(--line) 80%, var(--accent) 20%);
    border-radius: 16px;
    background: color-mix(in srgb, var(--surface) 98%, transparent);
    color: var(--ink);
    font: inherit;
    padding: 15px 16px;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.contact-field textarea {
    min-height: 200px;
    resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: color-mix(in srgb, var(--muted) 86%, transparent);
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: color-mix(in srgb, var(--accent) 62%, var(--line));
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 15%, transparent);
    transform: translateY(-1px);
}

.contact-trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

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

.contact-submit {
    min-height: 52px;
    border-color: transparent;
    padding: 0 22px;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #fff;
    box-shadow: 0 12px 24px rgba(15, 139, 141, 0.20);
}

.contact-submit:hover,
.contact-submit:focus-visible {
    color: #fff;
    box-shadow: 0 16px 28px rgba(15, 139, 141, 0.26);
}

.contact-submit[disabled] {
    cursor: progress;
    opacity: 0.78;
}

.contact-privacy,
.contact-form-status {
    margin: 0;
    max-width: 620px;
    color: var(--muted);
    font-size: 14px;
}

.contact-form-status[data-state="success"] {
    color: #13795b;
}

.contact-form-status[data-state="error"] {
    color: #b54747;
}

.redirect-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.redirect-panel {
    width: min(720px, 100%);
    padding: 32px;
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.language-grid a {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
    background: var(--surface-strong);
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 640px) {
    .header-shell {
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
        padding: 16px 0;
    }

    .header-search {
        flex: none;
        width: 100%;
        max-width: none;
    }

    .top-nav {
        width: 100%;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .search-form {
        width: 100%;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
        padding: 5px;
    }

    .search-submit {
        min-height: 44px;
        padding-inline: 14px;
        white-space: nowrap;
    }

    .search-input {
        min-width: 0;
        padding-inline: 14px;
    }

    .search-dropdown {
        top: calc(100% + 8px);
    }

    .theme-toggle span:last-child {
        display: none;
    }

    .footer-shell,
    .footer-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        gap: 16px;
    }

    .social-proof {
        padding: 20px;
    }

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

    .social-proof-card {
        min-height: 0;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta {
        width: 100%;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-direct-link {
        font-size: 22px;
    }
}

@media (min-width: 768px) {
    .contact-page {
        gap: 24px;
    }

    .report-cover-image {
        aspect-ratio: 16 / 7;
    }
}
