@font-face {
    font-family: "FiberpyPoppins";
    src: url("fonts/Poppins-Medium.ttf") format("truetype");
    font-display: swap;
}

:root {
    color-scheme: light;
    --bg: #f6f8fb;
    --bg-strong: #ffffff;
    --surface: rgba(255, 255, 255, 0.84);
    --surface-solid: #ffffff;
    --text: #111827;
    --text-muted: #526071;
    --line: rgba(17, 24, 39, 0.12);
    --brand: #ff5800;
    --brand-dark: #d84c05;
    --accent: #13b5a5;
    --ink: #151a24;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
    --radius: 8px;
    --header-height: 72px;
    --container: min(1160px, calc(100vw - 40px));
}

:root[data-theme="dark"] {
    color-scheme: dark;
    --bg: #101318;
    --bg-strong: #151922;
    --surface: rgba(25, 30, 40, 0.86);
    --surface-solid: #1a202b;
    --text: #f3f6fb;
    --text-muted: #b1bbc9;
    --line: rgba(255, 255, 255, 0.13);
    --brand: #ff7a2e;
    --brand-dark: #ff5800;
    --accent: #38d8c9;
    --ink: #f8fafc;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, transparent), transparent 32rem),
        linear-gradient(315deg, color-mix(in srgb, var(--brand) 12%, transparent), transparent 34rem),
        var(--bg);
    color: var(--text);
    font-family: FiberpyPoppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

body:has(.site-nav.is-open) {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

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

a:hover {
    color: var(--brand);
}

button,
input,
textarea {
    font: inherit;
}

.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;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
    transform: translateY(-150%);
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--bg-strong);
    padding: 10px 14px;
}

.skip-link:focus {
    transform: translateY(0);
}

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

.nav-shell {
    width: var(--container);
    min-height: var(--header-height);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand img,
.footer-brand img {
    display: block;
}

.brand img,
.footer-brand img {
    filter: invert(1);
}

:root[data-theme="dark"] .brand img,
:root[data-theme="dark"] .footer-brand img {
    filter: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.site-nav > a,
.nav-menu > summary,
.language-menu > summary,
.nav-menu-panel a,
.language-menu button {
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 9px 13px;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-nav > a:hover,
.nav-menu > summary:hover,
.language-menu > summary:hover,
.site-nav .active,
.language-menu .active {
    background: var(--surface-solid);
    border-color: var(--line);
    color: var(--text);
}

.nav-menu,
.language-menu {
    position: relative;
}

details > summary {
    list-style: none;
}

details > summary::-webkit-details-marker {
    display: none;
}

.nav-menu-panel,
.language-menu form {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 210px;
    display: grid;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-solid);
    box-shadow: var(--shadow);
    padding: 8px;
}

.language-menu form {
    min-width: 86px;
}

.nav-menu-panel a,
.language-menu button {
    width: 100%;
    background: transparent;
    text-align: left;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.theme-toggle,
.nav-toggle {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface-solid);
    color: var(--text);
    cursor: pointer;
}

.theme-toggle {
    width: 42px;
    height: 42px;
}

.theme-icon {
    display: none;
}

:root[data-theme="dark"] .theme-icon-light,
:root:not([data-theme="dark"]) .theme-icon-dark {
    display: inline;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.nav-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
}

.hero {
    position: relative;
    min-height: calc(100svh - var(--header-height));
    display: grid;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-visual {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9);
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, color-mix(in srgb, var(--bg) 90%, transparent), color-mix(in srgb, var(--bg) 45%, transparent)),
        linear-gradient(0deg, var(--bg), transparent 38%);
}

.hero-inner,
.section,
.split-section,
.band-inner,
.footer-grid,
.footer-bottom {
    width: var(--container);
    margin: 0 auto;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(240px, 0.38fr);
    gap: 54px;
    align-items: center;
}

.hero-copy {
    max-width: 720px;
    padding: 56px 0 72px;
}

.hero-console {
    align-self: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--surface-solid) 88%, transparent), color-mix(in srgb, var(--surface-solid) 64%, transparent)),
        repeating-linear-gradient(90deg, transparent 0 17px, color-mix(in srgb, var(--line) 55%, transparent) 17px 18px);
    box-shadow: var(--shadow);
    overflow: hidden;
    transform: translateY(22px);
}

.console-top {
    display: flex;
    gap: 7px;
    border-bottom: 1px solid var(--line);
    padding: 14px;
}

.console-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand);
}

.console-top span:nth-child(2) {
    background: var(--accent);
}

.console-top span:nth-child(3) {
    background: var(--text-muted);
}

.console-grid {
    display: grid;
    gap: 1px;
    background: var(--line);
}

.console-grid div {
    display: grid;
    gap: 8px;
    min-height: 112px;
    background: color-mix(in srgb, var(--surface-solid) 90%, transparent);
    padding: 20px;
    transition: transform 180ms ease, background 180ms ease;
}

.console-grid div:hover {
    transform: translateX(4px);
    background: color-mix(in srgb, var(--brand) 12%, var(--surface-solid));
}

.console-grid small {
    color: var(--text-muted);
}

.console-grid strong {
    color: var(--brand);
    font-size: 2rem;
    line-height: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    color: var(--brand);
    font-size: 0.88rem;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: currentColor;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 780px;
    font-size: clamp(2.35rem, 4.8vw, 4.85rem);
    line-height: 1.02;
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(1.65rem, 2.8vw, 3rem);
    line-height: 1.08;
    margin-bottom: 18px;
}

h3 {
    font-size: 1.2rem;
    line-height: 1.25;
    margin-bottom: 10px;
}

p {
    color: var(--text-muted);
}

.lede {
    max-width: 710px;
    color: var(--text-muted);
    font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions,
.cta-row,
.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid var(--brand);
    border-radius: 999px;
    background: var(--brand);
    color: #ffffff;
    cursor: pointer;
    padding: 12px 18px;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
    background: var(--brand-dark);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(255, 88, 0, 0.24);
}

.button-secondary {
    background: var(--surface-solid);
    border-color: var(--line);
    color: var(--text);
}

.button-secondary:hover {
    background: var(--text);
    color: var(--bg-strong);
    box-shadow: none;
}

.button-small {
    min-height: 40px;
    padding: 8px 14px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 620px;
    border: 0;
    background: transparent;
    border-radius: 0;
    overflow: visible;
}

.hero-actions + .hero-metrics {
    margin-top: 28px;
}

.metric,
.service-card,
.proof-card,
.faq-item,
.process-step,
.product-card,
.contact-panel,
.form-panel,
.privacy-block,
.case-shot {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.metric {
    min-height: 112px;
    padding: 18px 20px;
}

.metric-value {
    display: block;
    color: var(--text);
    font-size: clamp(1.25rem, 1.8vw, 1.65rem);
    line-height: 1.1;
    margin-bottom: 8px;
}

.metric span {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.section {
    padding: 82px 0;
}

.section-tight {
    padding-top: 54px;
}

.section-header {
    max-width: 760px;
    margin-bottom: 34px;
}

.service-grid,
.proof-grid,
.product-grid,
.case-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-card,
.proof-card,
.faq-item,
.process-step,
.product-card,
.case-shot,
.privacy-block {
    padding: 22px;
}

.service-card {
    min-height: 210px;
    display: grid;
    align-content: space-between;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.faq-item {
    min-height: 190px;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--brand) 44%, var(--line));
    box-shadow: var(--shadow);
}

.service-card:focus-visible,
.text-link:focus-visible,
.button:focus-visible,
.theme-toggle:focus-visible,
.nav-toggle:focus-visible,
.site-nav a:focus-visible,
summary:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--brand) 28%, transparent);
    outline-offset: 3px;
}

.service-card .number {
    color: var(--brand);
    font-size: 0.9rem;
}

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

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 48px;
    align-items: center;
    padding: 96px 0;
}

.split-section > div:not(.media-frame) {
    margin-top: 2px;
}

.media-frame {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-solid);
    box-shadow: var(--shadow);
}

.media-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.check-list,
.feature-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: grid;
    gap: 12px;
}

.check-list li,
.feature-list li {
    position: relative;
    padding-left: 28px;
    color: var(--text-muted);
}

.check-list li::before,
.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
    animation: bullet-pulse 1800ms ease-in-out infinite;
}

@keyframes bullet-pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
    }

    50% {
        transform: scale(1.14);
        box-shadow: 0 0 0 8px color-mix(in srgb, var(--accent) 10%, transparent);
    }
}

.proof-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.proof-card {
    min-width: 0;
}

.proof-card h3 {
    overflow-wrap: anywhere;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.process-number {
    display: block;
    color: var(--brand);
    margin-bottom: 18px;
}

.step-number {
    color: var(--text);
}

.band {
    border-block: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface-solid) 72%, transparent);
}

.band-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 42px;
    align-items: center;
    padding: 76px 0;
}

.logo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.logo-pill {
    min-height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    padding: 14px 20px;
}

.logo-pill img {
    max-height: 42px;
    width: auto;
}

.page-hero {
    border-bottom: 1px solid var(--line);
    background: var(--bg-strong);
}

.page-hero-inner {
    width: var(--container);
    min-height: 360px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.62fr);
    gap: 46px;
    align-items: center;
    margin: 0 auto;
    padding: 58px 0;
}

.page-hero h1 {
    max-width: 720px;
    font-size: clamp(2.25rem, 4.4vw, 4.35rem);
}

.page-hero-single {
    grid-template-columns: minmax(0, 760px);
    min-height: 300px;
}

.page-hero-image {
    width: min(100%, 430px);
    justify-self: end;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.page-hero-image img {
    display: block;
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
}

.product-visual-frame {
    width: min(100%, 560px);
    background: #ffffff;
    padding: 10px;
}

.product-visual-frame img {
    aspect-ratio: 16 / 10;
    object-fit: contain;
    background: #ffffff;
}

.proof-grid-compact {
    grid-template-columns: 1fr;
    gap: 12px;
}

.proof-grid-compact .proof-card {
    padding: 18px;
}

.contact-layout {
    width: var(--container);
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 22px;
    align-items: start;
    margin: 0 auto;
    padding: 80px 0;
}

.contact-panel,
.form-panel {
    padding: 28px;
}

.contact-panel {
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.contact-detail {
    display: grid;
    gap: 8px;
    margin-top: 22px;
}

.contact-detail a,
.contact-detail span {
    color: var(--text-muted);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.field-wide {
    grid-column: 1 / -1;
}

.field label {
    color: var(--text);
    font-size: 0.92rem;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg-strong);
    color: var(--text);
    padding: 13px 14px;
}

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

.field input:focus,
.field textarea:focus {
    border-color: var(--brand);
    outline: 3px solid color-mix(in srgb, var(--brand) 20%, transparent);
}

.recaptcha_container {
    margin-top: 18px;
}

.submit-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 20px;
}

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

.case-shot {
    padding: 10px;
}

.case-shot img {
    display: block;
    border-radius: 6px;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    background: #ffffff;
}

.product-hero-logo {
    display: block;
    width: fit-content;
    max-width: min(220px, 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    padding: 10px 14px;
    margin-bottom: 22px;
}

.privacy-layout {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 72px 0;
}

.privacy-block {
    max-width: 880px;
}

.cookie_popup {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    width: min(420px, calc(100vw - 36px));
    display: none;
    gap: 16px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-solid);
    box-shadow: var(--shadow);
    padding: 16px;
}

.cookie_popup.is-visible {
    display: flex;
}

.cookie_popup p {
    margin: 0;
    font-size: 0.9rem;
}

.messages {
    position: fixed;
    right: 18px;
    top: calc(var(--header-height) + 16px);
    z-index: 90;
    display: grid;
    gap: 8px;
}

.messages button {
    max-width: 360px;
    border: 1px solid var(--line);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    background: var(--surface-solid);
    color: var(--text);
    box-shadow: var(--shadow);
    cursor: pointer;
    padding: 12px 14px;
    text-align: left;
    transition: opacity 220ms ease, transform 220ms ease;
}

.messages .error {
    border-left-color: #e53935;
}

.messages .warning {
    border-left-color: #f9a825;
}

.messages .success {
    border-left-color: #2e7d32;
}

.messages .is-hidden {
    opacity: 0;
    transform: translateX(18px);
}

.site-footer {
    border-top: 1px solid var(--line);
    background: var(--bg-strong);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 36px;
    padding: 50px 0 30px;
}

.site-footer nav,
.footer-contact {
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid var(--line);
    color: var(--text-muted);
    padding: 18px 0;
}

@media (max-width: 880px) {
    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        inset: var(--header-height) 0 auto 0;
        display: none;
        width: 100%;
        min-height: calc(100svh - var(--header-height));
        align-content: start;
        background: var(--bg-strong);
        border-top: 1px solid var(--line);
        padding: 20px;
    }

    .site-nav.is-open {
        display: grid;
    }

    .site-nav > a,
    .nav-menu > summary {
        width: 100%;
        border-radius: var(--radius);
    }

    .nav-menu-panel {
        position: static;
        margin-top: 8px;
        box-shadow: none;
    }

    .hero-metrics,
    .hero-inner,
    .service-grid,
    .proof-grid,
    .faq-grid,
    .product-grid,
    .process-grid,
    .footer-grid,
    .page-hero-inner,
    .contact-layout,
    .band-inner,
    .split-section,
    .privacy-layout {
        grid-template-columns: 1fr;
    }

    .hero-console {
        display: none;
    }

    .page-hero-image {
        width: 100%;
        justify-self: start;
    }

    .contact-panel {
        position: static;
    }
}

@media (max-width: 620px) {
    :root {
        --container: min(100vw - 28px, 1120px);
        --header-height: 64px;
    }

    .nav-shell {
        gap: 10px;
    }

    .nav-actions {
        gap: 6px;
    }

    .language-menu form {
        right: -44px;
    }

    .hero-copy {
        padding: 46px 0 64px;
    }

    h1 {
        font-size: 2.25rem;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }

    .section,
    .split-section {
        padding: 56px 0;
    }

    .service-grid,
    .proof-grid,
    .faq-grid,
    .process-grid,
    .product-grid,
    .case-grid {
        gap: 16px;
    }

    .service-card {
        min-height: auto;
    }

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

    .cookie_popup {
        align-items: stretch;
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Final layout guardrails. Keep these last so page-specific sections cannot
   regress into overlapping hero/header compositions. */
body {
    padding-top: var(--header-height);
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: color-mix(in srgb, var(--bg-strong) 96%, transparent);
}

.nav-shell {
    max-width: 1160px;
}

.brand img,
.footer-brand img {
    width: 113px;
    height: auto;
    opacity: 1;
}

:root:not([data-theme="dark"]) .brand img,
:root:not([data-theme="dark"]) .footer-brand img {
    filter: brightness(0) saturate(100%) invert(8%) sepia(21%) saturate(1304%) hue-rotate(185deg) brightness(91%) contrast(95%);
}

.hero {
    min-height: auto;
    padding: clamp(64px, 8vw, 112px) 0;
}

.hero-inner {
    grid-template-columns: minmax(0, 620px) minmax(260px, 340px);
    align-items: center;
    justify-content: space-between;
    gap: clamp(28px, 5vw, 72px);
}

.hero-copy {
    max-width: 620px;
    padding: 0;
}

.hero h1,
.page-hero h1,
.contact-panel h2,
.section-header h2,
.split-section h2,
.band h2 {
    overflow-wrap: anywhere;
}

.hero h1 {
    max-width: 620px;
    font-size: clamp(2.45rem, 4.35vw, 3.75rem);
    line-height: 1.06;
}

.hero-console {
    width: min(100%, 340px);
    transform: none;
}

.hero-metrics {
    max-width: 620px;
}

.page-hero {
    overflow: hidden;
}

.page-hero-inner {
    min-height: auto;
    grid-template-columns: minmax(0, 620px) minmax(260px, 430px);
    justify-content: space-between;
    gap: clamp(28px, 5vw, 64px);
    padding: clamp(54px, 7vw, 92px) 0;
}

.page-hero h1 {
    max-width: 620px;
    font-size: clamp(2.25rem, 4.25vw, 3.8rem);
    line-height: 1.06;
}

.page-hero-single {
    grid-template-columns: minmax(0, 680px);
}

.page-hero-single h1 {
    max-width: 680px;
    font-size: clamp(2.35rem, 4.6vw, 4rem);
}

.page-hero-image {
    width: min(100%, 430px);
}

.section-header h2,
.split-section h2,
.band h2 {
    max-width: 760px;
    font-size: clamp(2rem, 3.6vw, 3.45rem);
}

.privacy-layout {
    gap: 18px;
    padding: clamp(42px, 6vw, 72px) 0;
}

.privacy-block {
    width: min(100%, 920px);
    padding: clamp(22px, 3vw, 34px);
}

.privacy-block h2 {
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    line-height: 1.12;
}

@media (max-width: 980px) {
    .hero-inner,
    .page-hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-console,
    .page-hero-image {
        justify-self: start;
    }
}

@media (max-width: 680px) {
    .hero,
    .page-hero-inner {
        padding-block: 44px;
    }

    .hero h1,
    .page-hero h1,
    .page-hero-single h1 {
        font-size: clamp(2.1rem, 11vw, 3rem);
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .privacy-block h2 {
        font-size: clamp(1.7rem, 9vw, 2.5rem);
    }
}

@media (max-width: 620px) {
    .section-header {
        width: var(--container);
        max-width: none;
        margin-right: auto;
        margin-left: auto;
    }

    .section > .section-header,
    .section-tight > .section-header {
        width: 100%;
        margin: 4px;
    }
}
