@font-face {
    font-family: "Space Grotesk";
    src: url("../fonts/space-grotesk-400.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Space Grotesk";
    src: url("../fonts/space-grotesk-700.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-400.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-600.ttf") format("truetype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

:root {
    --bg: #08141d;
    --bg-alt: #0b1d29;
    --panel: rgba(10, 28, 39, 0.76);
    --panel-strong: rgba(8, 22, 32, 0.95);
    --line: rgba(117, 171, 201, 0.22);
    --line-strong: rgba(240, 90, 40, 0.32);
    --text: #edf5fa;
    --text-soft: #aabecb;
    --text-muted: #7d95a3;
    --accent: #f05a28;
    --accent-soft: #ffb187;
    --glow: rgba(240, 90, 40, 0.2);
    --radius: 24px;
    --shadow: 0 32px 80px rgba(1, 9, 16, 0.35);
    --site-width: min(1560px, calc(100vw - 3.8rem));
    --section-width: min(1500px, calc(100vw - 3.8rem));
    --hero-width: min(1720px, calc(100vw - 3.8rem));
    --content-width: var(--site-width);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 10%, rgba(240, 90, 40, 0.16), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(92, 177, 255, 0.14), transparent 22%),
        linear-gradient(180deg, #071019 0%, #091723 40%, #08141d 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(117, 171, 201, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(117, 171, 201, 0.06) 1px, transparent 1px);
    background-size: 78px 78px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 92%);
    pointer-events: none;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.site-shell {
    position: relative;
    isolation: isolate;
}

.site-header,
.site-footer {
    width: var(--site-width);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 1rem;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 1.1rem;
    margin-top: 1rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(8, 20, 29, 0.78);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 48px rgba(4, 11, 17, 0.35);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
    gap: 0.85rem;
    min-width: 0;
}

.theme-toggle {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(240, 90, 40, 0.32);
    background: rgba(240, 90, 40, 0.08);
}

.theme-glyph {
    position: absolute;
    width: 1.2rem;
    height: 1.2rem;
    opacity: 0;
    transform: scale(0.72) rotate(18deg);
    transition: opacity 180ms ease, transform 220ms ease;
}

html[data-resolved-theme="dark"] .theme-glyph-sun,
html[data-resolved-theme="light"] .theme-glyph-moon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

html[data-resolved-theme="dark"] .theme-glyph-moon,
html[data-resolved-theme="light"] .theme-glyph-sun {
    opacity: 0;
    transform: scale(0.72) rotate(18deg);
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    flex: 0 1 auto;
    text-decoration: none;
}

.brand-banner-shell,
.brand-mobile-mark {
    border: 1px solid rgba(117, 171, 201, 0.22);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 247, 251, 0.9)),
        rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 36px rgba(2, 8, 14, 0.18);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.brand-banner-shell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(16rem, 22vw, 20.5rem);
    height: clamp(3.2rem, 3.8vw, 4rem);
    padding: 0.12rem 0.65rem;
    overflow: hidden;
}

.brand-banner-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: saturate(1.02) contrast(1.02);
}

.brand-theme-light {
    display: none;
}

html[data-resolved-theme="light"] .brand-theme-dark {
    display: none;
}

html[data-resolved-theme="light"] .brand-theme-light {
    display: block;
}

.brand-mobile-mark {
    display: none;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: 0.34rem;
}

.brand-mobile-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-lockup:hover .brand-banner-shell,
.brand-lockup:focus-visible .brand-banner-shell,
.brand-lockup:hover .brand-mobile-mark,
.brand-lockup:focus-visible .brand-mobile-mark {
    transform: translateY(-1px);
    border-color: rgba(240, 90, 40, 0.3);
    box-shadow: 0 18px 38px rgba(10, 25, 39, 0.22);
}

.brand-name {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-subline {
    margin: 0.15rem 0 0;
    color: var(--text-muted);
    font-size: 0.84rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.28rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.site-nav a {
    padding: 0.78rem 0.95rem;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-soft);
    transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
    padding: 0.8rem 1rem;
    border-radius: 14px;
    background: rgba(240, 90, 40, 0.12);
    border: 1px solid rgba(240, 90, 40, 0.26);
    color: var(--text);
}

.nav-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: transparent;
    color: var(--text);
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 1.1rem;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    margin: 0.28rem auto;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(0.3rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-0.3rem) rotate(-45deg);
}

.section {
    width: var(--section-width);
    margin-inline: auto;
    padding: clamp(4rem, 5vw, 5.4rem) 0;
}

#leistungen,
#faq,
#ablauf,
#bewertungen,
#kontakt {
    scroll-margin-top: 7.4rem;
}

.section-eyebrow {
    margin: 0 0 0.9rem;
    color: var(--accent-soft);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 52rem;
    margin-bottom: 2.2rem;
}

.section-heading > p:last-child {
    max-width: 42rem;
    line-height: 1.8;
}

.section-heading h2,
.hero h1 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.3rem, 5vw, 5.5rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.section-heading p:last-child,
.hero-lead,
.hero-aside p,
.audience-panel p,
.service-intro,
.process-step p,
.reviews-footnote,
.faq-item p,
.footer-note {
    color: var(--text-soft);
}

.hero {
    display: grid;
    width: var(--hero-width);
    grid-template-columns: minmax(0, 1.08fr) minmax(520px, 0.92fr);
    gap: clamp(2rem, 4vw, 4.6rem);
    align-items: start;
    padding-top: clamp(1.6rem, 2.8vw, 2.6rem);
}

.hero-copy {
    position: relative;
    max-width: 48rem;
    min-width: 0;
}

.hero h1 {
    max-width: 10.2ch;
    font-size: clamp(3.4rem, 5.8vw, 6.5rem);
    line-height: 0.91;
}

.hero-lead {
    max-width: 43rem;
    margin: 1.4rem 0 0;
    font-size: 1.15rem;
    line-height: 1.78;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.4rem;
    padding: 0.9rem 1.35rem;
    border-radius: 18px;
    border: 1px solid transparent;
    font-weight: 600;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(140deg, var(--accent) 0%, #ff8850 100%);
    color: #08141d;
    box-shadow: 0 18px 40px var(--glow);
}

.button-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
}

.button-compact {
    min-height: 2.9rem;
    padding: 0.72rem 1.1rem;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 0;
    margin: 1.9rem 0 0;
    list-style: none;
}

.hero-points li {
    padding: 0.72rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-soft);
    font-size: 0.96rem;
}

.hero-visual {
    display: grid;
    gap: 1rem;
    min-width: 0;
    padding-top: 0.2rem;
}

.hero-image-frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 15 / 11;
    min-height: clamp(31rem, 41vw, 47rem);
    border: 1px solid rgba(117, 171, 201, 0.18);
    border-radius: clamp(24px, 4vw, 32px);
    background: linear-gradient(160deg, rgba(6, 20, 31, 0.92), rgba(13, 36, 52, 0.85));
    box-shadow: var(--shadow);
}

.hero-image-frame::before {
    content: "";
    position: absolute;
    inset: auto auto -18% -12%;
    width: 18rem;
    height: 18rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(240, 90, 40, 0.42), transparent 68%);
    pointer-events: none;
}

.hero-image-frame img,
.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-aside {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.hero-aside p,
.hero-aside strong {
    margin: 0;
}

.hero-aside strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    text-align: right;
}

.signal-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
    padding-top: 1rem;
}

.signal-item {
    padding: 1.5rem;
    border-top: 1px solid var(--line-strong);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 100%);
}

.signal-item h2 {
    margin: 0 0 0.5rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.15rem;
}

.signal-item p {
    margin: 0;
    line-height: 1.75;
    color: var(--text-soft);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.audience-panel {
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(240, 90, 40, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(9, 24, 35, 0.8);
}

.audience-label,
.service-audience,
.process-number,
.reviews-label {
    margin: 0 0 0.75rem;
    color: var(--accent-soft);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.audience-panel h3,
.service-band h3,
.process-step h3,
.review-slide h3 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.02;
}

.audience-panel h3 {
    font-size: clamp(1.55rem, 2vw, 2.2rem);
}

.audience-panel p:last-child {
    line-height: 1.9;
    margin-top: 1rem;
}

.services-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    gap: 2rem;
    align-items: start;
}

.services-image {
    position: sticky;
    top: 7rem;
    aspect-ratio: 16 / 10;
    border-radius: 36px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.service-band-list {
    display: grid;
    gap: 1rem;
}

.service-band {
    display: grid;
    grid-template-columns: 5.8rem minmax(0, 1fr);
    gap: 1rem;
    padding: 1.4rem 0 1.8rem;
    border-top: 1px solid rgba(117, 171, 201, 0.2);
}

.service-band.has-media {
    grid-template-columns: 5.8rem minmax(220px, 15.5rem) minmax(0, 1fr);
}

.service-band:first-child {
    border-top-color: var(--line-strong);
}

.service-band-index {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    color: rgba(240, 90, 40, 0.85);
}

.service-band-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.service-band h3 {
    font-size: clamp(1.5rem, 2.2vw, 2.35rem);
}

.service-band-media {
    overflow: hidden;
    min-height: 12rem;
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: 0 18px 46px rgba(4, 11, 17, 0.2);
}

.service-band-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
}

.service-band:hover .service-band-media img,
.service-band:focus-within .service-band-media img {
    transform: scale(1.03);
}

.service-intro {
    margin: 0 0 1rem;
    line-height: 1.8;
}

.service-list {
    display: grid;
    gap: 0.7rem;
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text-soft);
    line-height: 1.7;
}

.services-carousel-shell {
    padding: 1.45rem;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        rgba(9, 24, 35, 0.82);
    box-shadow: var(--shadow);
}

.services-carousel-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.services-carousel-copy {
    max-width: 35rem;
}

.services-carousel-copy p:last-child {
    margin: 0.55rem 0 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.services-carousel {
    overflow: hidden;
}

.services-track {
    --cards-per-view: 4;
    display: flex;
    gap: 1rem;
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.service-card {
    flex: 0 0 calc((100% - (var(--cards-per-view) - 1) * 1rem) / var(--cards-per-view));
    display: grid;
    grid-template-rows: 13rem 1fr;
    gap: 1rem;
    min-width: 0;
    min-height: 31rem;
    padding: 0.8rem;
    border: 1px solid rgba(117, 171, 201, 0.18);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(240, 90, 40, 0.14), transparent 34%),
        rgba(6, 19, 27, 0.86);
    box-shadow: 0 20px 48px rgba(4, 11, 17, 0.18);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(240, 90, 40, 0.26);
    box-shadow: 0 26px 56px rgba(4, 11, 17, 0.24);
}

.service-card-media {
    overflow: hidden;
    border-radius: 18px;
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 360ms ease;
}

.service-card:hover .service-card-media img,
.service-card:focus-within .service-card-media img {
    transform: scale(1.04);
}

.service-card-body {
    display: grid;
    align-content: start;
    gap: 0.8rem;
    min-height: 0;
}

.service-card-body h3 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.03;
}

.service-card-body .service-intro {
    margin: 0;
}

.service-card-details {
    margin-top: auto;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(117, 171, 201, 0.18);
}

.service-card-details > p {
    margin: 0 0 0.7rem;
    color: var(--accent-soft);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.service-list-compact {
    gap: 0.5rem;
    padding-left: 1rem;
    font-size: 0.94rem;
}

@media (hover: hover) and (pointer: fine) {
    .service-card-details {
        opacity: 0.16;
        transform: translateY(12px);
        transition: opacity 220ms ease, transform 260ms ease;
    }

    .service-card:hover .service-card-details,
    .service-card:focus-within .service-card-details {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.process-step {
    padding: 1.8rem;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.03);
}

.process-step h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.process-step p {
    margin: 0.75rem 0 0;
    line-height: 1.75;
}

.reviews-shell {
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        rgba(9, 24, 35, 0.82);
}

.reviews-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.reviews-label {
    margin: 0;
}

.reviews-controls {
    display: flex;
    gap: 0.6rem;
}

.slider-button {
    display: inline-grid;
    place-items: center;
    width: 2.8rem;
    height: 2.8rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.slider-button:hover,
.slider-button:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(240, 90, 40, 0.28);
    background: rgba(240, 90, 40, 0.08);
}

.slider-button:disabled {
    opacity: 0.45;
    cursor: default;
    transform: none;
}

.reviews-slider {
    overflow: hidden;
}

.reviews-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 1rem;
    transition: transform 280ms ease;
}

.review-slide {
    display: grid;
    align-content: start;
    min-height: 18rem;
    padding: 1.6rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(240, 90, 40, 0.18), transparent 36%),
        rgba(6, 19, 27, 0.82);
    border: 1px solid rgba(117, 171, 201, 0.18);
}

.review-placeholder {
    justify-items: start;
}

.review-rating {
    margin: 0 0 0.8rem;
    color: var(--accent-soft);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.review-slide h3 {
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 1.08;
}

.review-slide p {
    line-height: 1.8;
    color: var(--text-soft);
}

.review-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    margin-top: auto;
    padding-top: 1rem;
    color: var(--text-muted);
}

.review-meta a {
    color: var(--accent-soft);
}

.reviews-footnote {
    margin: 1rem 0 0;
    font-size: 0.94rem;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    padding: 1.2rem 1.4rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 220ms ease, background 220ms ease;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    list-style: none;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.08rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 0;
    line-height: 1.8;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 240ms ease, opacity 220ms ease;
}

.faq-answer p {
    overflow: hidden;
}

.faq-item[open] .faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
}

.faq-item[open] {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.05);
}

.faq-item[open] .faq-answer p {
    padding-top: 1rem;
}

.faq-icon {
    position: relative;
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 1.15rem;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.85rem;
    height: 2px;
    border-radius: 99px;
    background: var(--accent-soft);
    transform: translate(-50%, -50%);
    transition: transform 220ms ease, opacity 220ms ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

.contact-section {
    max-width: 58rem;
}

.contact-form-shell {
    padding: clamp(1.2rem, 2.2vw, 1.8rem);
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.contact-form-head {
    display: flex;
    justify-content: space-between;
    gap: 1.6rem;
    align-items: end;
    margin: 0 0 1.25rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid var(--line);
}

.contact-form-head p {
    margin: 0;
}

.contact-form-head .section-eyebrow {
    margin-bottom: 0.45rem;
}

.contact-form-head h2 {
    margin: 0;
    font-size: clamp(1.85rem, 3vw, 2.7rem);
    line-height: 1;
}

.contact-form-head p:last-child {
    max-width: 24rem;
    color: var(--text-soft);
    line-height: 1.6;
    text-align: right;
}

.form-feedback {
    margin: 0 0 1rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
}

.form-feedback.is-success {
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.25);
    color: #bcf0cf;
}

.form-feedback.is-error {
    background: rgba(240, 90, 40, 0.12);
    border: 1px solid rgba(240, 90, 40, 0.25);
    color: #ffd0bc;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

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

.form-row-captcha {
    align-items: end;
}

.contact-form label {
    display: grid;
    gap: 0.45rem;
}

.contact-form span {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(117, 171, 201, 0.2);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
}

.contact-form select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--text-soft) 50%),
        linear-gradient(135deg, var(--text-soft) 50%, transparent 50%);
    background-position:
        calc(100% - 1.3rem) calc(50% - 2px),
        calc(100% - 0.95rem) calc(50% - 2px);
    background-size: 7px 7px, 7px 7px;
    background-repeat: no-repeat;
    padding-right: 2.8rem;
}

.contact-form select option {
    background: #0b1d29;
    color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input[aria-invalid="true"],
.contact-form select[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
    border-color: rgba(240, 90, 40, 0.56);
    box-shadow: 0 0 0 4px rgba(240, 90, 40, 0.12);
}

.contact-form textarea {
    resize: vertical;
    min-height: 12rem;
}

.captcha-question {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.65rem;
    padding: 0.95rem 1rem;
    border: 1px dashed rgba(240, 90, 40, 0.38);
    border-radius: 16px;
    background: rgba(240, 90, 40, 0.08);
}

.captcha-question span {
    color: var(--text);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
}

.consent-check {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.85rem;
    align-items: start;
}

.consent-check input {
    width: 1.08rem;
    height: 1.08rem;
    margin-top: 0.2rem;
    accent-color: var(--accent);
}

.consent-check span {
    color: var(--text-soft);
    line-height: 1.7;
    font-size: 0.95rem;
}

.consent-check a {
    color: var(--accent-soft);
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible,
.slider-button:focus-visible,
.theme-option:focus-visible,
.theme-toggle:focus-visible,
.button:focus-visible,
.site-nav a:focus-visible,
.brand-lockup:focus-visible,
.faq-item summary:focus-visible {
    outline: 2px solid rgba(255, 177, 135, 0.88);
    outline-offset: 2px;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.1rem 2rem;
    align-items: start;
    padding: 1.5rem 0 2.7rem;
    border-top: 1px solid var(--line);
}

.footer-signature {
    display: grid;
    grid-template-columns: 4.2rem minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
}

.footer-logo {
    display: grid;
    place-items: center;
    width: 4.2rem;
    height: 4.2rem;
    padding: 0.2rem;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand p {
    margin: 0.2rem 0 0;
    color: var(--text-soft);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.footer-links a {
    color: var(--text-soft);
    text-decoration: none;
}

.footer-note {
    grid-column: 1 / -1;
    margin: 1.2rem 0 0;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(117, 171, 201, 0.14);
    color: var(--text-muted);
    font-size: 0.78rem;
    text-align: center;
}

.cookie-notice {
    position: fixed;
    left: max(1.2rem, calc((100vw - var(--content-width)) / 2));
    bottom: 1.2rem;
    z-index: 40;
    width: min(26rem, calc(100vw - 1.6rem));
    padding: 1rem 1rem 1.05rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(8, 20, 29, 0.94);
    box-shadow: 0 24px 60px rgba(4, 11, 17, 0.32);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity 180ms ease, transform 220ms ease, visibility 180ms ease;
}

.cookie-notice.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-notice-title {
    margin: 0 0 0.45rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
}

.cookie-notice-copy p:last-child {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.97rem;
    line-height: 1.6;
}

.cookie-notice-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    margin-top: 1rem;
}

.cookie-notice-actions a {
    color: var(--accent-soft);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

.legal-body {
    min-height: 100vh;
}

.legal-shell {
    width: min(980px, calc(100vw - 1.6rem));
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

.legal-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.legal-back {
    display: inline-flex;
    color: var(--text-soft);
    text-decoration: none;
}

.legal-page {
    padding: clamp(1.4rem, 3vw, 2.3rem);
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(8, 21, 31, 0.82);
    box-shadow: var(--shadow);
}

.legal-page h1 {
    margin: 0 0 1.4rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.legal-alert {
    margin: 0 0 1.3rem;
    padding: 1rem 1.15rem;
    border-radius: 18px;
    background: rgba(240, 90, 40, 0.12);
    border: 1px solid rgba(240, 90, 40, 0.22);
    color: #ffd4c4;
}

.legal-panel {
    padding: 1.35rem 0 1.45rem;
    border-top: 1px solid rgba(117, 171, 201, 0.16);
}

.legal-panel:first-of-type {
    border-top-color: rgba(240, 90, 40, 0.28);
}

.legal-panel h2 {
    margin: 0 0 0.8rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem;
}

.legal-panel p {
    margin: 0.35rem 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.legal-panel a {
    color: var(--accent-soft);
    text-underline-offset: 0.22em;
}

html[data-theme="light"] {
    color-scheme: light;
}

@media (prefers-color-scheme: light) {
    html:not([data-theme="dark"]) {
        color-scheme: light;
    }
}

html[data-theme="light"] body {
    color: #12212f;
    background:
        radial-gradient(circle at 14% 10%, rgba(240, 90, 40, 0.12), transparent 24%),
        radial-gradient(circle at 82% 18%, rgba(55, 109, 159, 0.11), transparent 18%),
        linear-gradient(180deg, #f6f8fb 0%, #eef3f8 44%, #edf2f7 100%);
}

html[data-theme="light"] body::before {
    background-image:
        linear-gradient(rgba(23, 49, 70, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 49, 70, 0.05) 1px, transparent 1px);
}

html[data-theme="light"] .site-header,
html[data-theme="light"] .site-nav,
html[data-theme="light"] .theme-switcher,
html[data-theme="light"] .theme-toggle,
html[data-theme="light"] .contact-form-shell,
html[data-theme="light"] .reviews-shell,
html[data-theme="light"] .legal-page,
html[data-theme="light"] .cookie-notice {
    background: rgba(255, 255, 255, 0.88);
}

html[data-theme="light"] .site-header {
    box-shadow: 0 18px 48px rgba(31, 54, 76, 0.12);
}

html[data-theme="light"] .brand-subline,
html[data-theme="light"] .site-nav a,
html[data-theme="light"] .hero-lead,
html[data-theme="light"] .hero-points li,
html[data-theme="light"] .signal-item p,
html[data-theme="light"] .audience-panel p,
html[data-theme="light"] .service-intro,
html[data-theme="light"] .service-list,
html[data-theme="light"] .process-step p,
html[data-theme="light"] .review-slide p,
html[data-theme="light"] .reviews-footnote,
html[data-theme="light"] .faq-item p,
html[data-theme="light"] .footer-brand p,
html[data-theme="light"] .footer-links a,
html[data-theme="light"] .footer-note,
html[data-theme="light"] .legal-panel p,
html[data-theme="light"] .legal-back {
    color: #435869;
}

html[data-theme="light"] .nav-cta,
html[data-theme="light"] .theme-option.is-active {
    background: rgba(240, 90, 40, 0.12);
    color: #12212f;
}

html[data-theme="light"] .button-secondary,
html[data-theme="light"] .hero-points li,
html[data-theme="light"] .hero-aside,
html[data-theme="light"] .process-step,
html[data-theme="light"] .faq-item,
html[data-theme="light"] .slider-button,
html[data-theme="light"] .contact-form input,
html[data-theme="light"] .contact-form select,
html[data-theme="light"] .contact-form textarea {
    background: rgba(255, 255, 255, 0.72);
    color: #12212f;
}

html[data-theme="light"] .captcha-question {
    background: rgba(240, 90, 40, 0.08);
    border-color: rgba(180, 71, 32, 0.26);
}

html[data-theme="light"] .captcha-question span,
html[data-theme="light"] .consent-check span {
    color: #435869;
}

html[data-theme="light"] .faq-item[open] {
    background: rgba(255, 255, 255, 0.88);
}

html[data-theme="light"] .signal-item,
html[data-theme="light"] .audience-panel,
html[data-theme="light"] .review-slide {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 249, 252, 0.78)),
        rgba(255, 255, 255, 0.88);
}

html[data-theme="light"] .hero-image-frame {
    background: linear-gradient(160deg, rgba(244, 247, 251, 0.95), rgba(229, 237, 245, 0.92));
    box-shadow: 0 32px 80px rgba(31, 54, 76, 0.14);
}

html[data-theme="light"] .button-primary {
    color: #fff7f1;
}

html[data-theme="light"] .site-header,
html[data-theme="light"] .theme-switcher,
html[data-theme="light"] .theme-toggle,
html[data-theme="light"] .nav-toggle,
html[data-theme="light"] .signal-item,
html[data-theme="light"] .audience-panel,
html[data-theme="light"] .services-image,
html[data-theme="light"] .service-band-media,
html[data-theme="light"] .service-band,
html[data-theme="light"] .process-step,
html[data-theme="light"] .reviews-shell,
html[data-theme="light"] .review-slide,
html[data-theme="light"] .faq-item,
html[data-theme="light"] .contact-form-shell,
html[data-theme="light"] .contact-form input,
html[data-theme="light"] .contact-form select,
html[data-theme="light"] .contact-form textarea,
html[data-theme="light"] .legal-page,
html[data-theme="light"] .legal-panel {
    border-color: rgba(31, 54, 76, 0.14);
}

html[data-theme="light"] .site-footer {
    border-top-color: rgba(31, 54, 76, 0.14);
}

html[data-theme="light"] .reviews-meta .reviews-label,
html[data-theme="light"] .audience-label,
html[data-theme="light"] .service-audience,
html[data-theme="light"] .process-number,
html[data-theme="light"] .review-rating,
html[data-theme="light"] .section-eyebrow,
html[data-theme="light"] .review-meta a,
html[data-theme="light"] .legal-panel a {
    color: #b44720;
}

html[data-theme="light"] .theme-option,
html[data-theme="light"] .brand-subline {
    color: #627686;
}

html[data-theme="light"] .form-feedback.is-success {
    color: #23643f;
}

html[data-theme="light"] .contact-form input[aria-invalid="true"],
html[data-theme="light"] .contact-form select[aria-invalid="true"],
html[data-theme="light"] .contact-form textarea[aria-invalid="true"] {
    border-color: rgba(180, 71, 32, 0.44);
    box-shadow: 0 0 0 4px rgba(180, 71, 32, 0.1);
}

html[data-theme="light"] .form-feedback.is-error,
html[data-theme="light"] .legal-alert {
    color: #8a3617;
}

html[data-theme="light"] .cookie-notice-copy p:last-child {
    color: #435869;
}

html[data-theme="light"] .cookie-notice-actions a {
    color: #b44720;
}

html[data-theme="light"] .site-nav a:hover,
html[data-theme="light"] .site-nav a:focus-visible,
html[data-theme="light"] .footer-links a:hover,
html[data-theme="light"] .footer-links a:focus-visible {
    color: #12212f;
}

@media (prefers-color-scheme: light) {
    html:not([data-theme="dark"]) body {
        color: #12212f;
        background:
            radial-gradient(circle at 14% 10%, rgba(240, 90, 40, 0.12), transparent 24%),
            radial-gradient(circle at 82% 18%, rgba(55, 109, 159, 0.11), transparent 18%),
            linear-gradient(180deg, #f6f8fb 0%, #eef3f8 44%, #edf2f7 100%);
    }

    html:not([data-theme="dark"]) body::before {
        background-image:
            linear-gradient(rgba(23, 49, 70, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(23, 49, 70, 0.05) 1px, transparent 1px);
    }

    html:not([data-theme="dark"]) .site-header,
    html:not([data-theme="dark"]) .site-nav,
    html:not([data-theme="dark"]) .theme-switcher,
    html:not([data-theme="dark"]) .theme-toggle,
    html:not([data-theme="dark"]) .contact-form-shell,
    html:not([data-theme="dark"]) .reviews-shell,
    html:not([data-theme="dark"]) .legal-page,
    html:not([data-theme="dark"]) .cookie-notice {
        background: rgba(255, 255, 255, 0.88);
    }

    html:not([data-theme="dark"]) .site-header {
        box-shadow: 0 18px 48px rgba(31, 54, 76, 0.12);
    }

    html:not([data-theme="dark"]) .brand-subline,
    html:not([data-theme="dark"]) .site-nav a,
    html:not([data-theme="dark"]) .hero-lead,
    html:not([data-theme="dark"]) .hero-points li,
    html:not([data-theme="dark"]) .signal-item p,
    html:not([data-theme="dark"]) .audience-panel p,
    html:not([data-theme="dark"]) .service-intro,
    html:not([data-theme="dark"]) .service-list,
    html:not([data-theme="dark"]) .process-step p,
    html:not([data-theme="dark"]) .review-slide p,
    html:not([data-theme="dark"]) .reviews-footnote,
    html:not([data-theme="dark"]) .faq-item p,
    html:not([data-theme="dark"]) .footer-brand p,
    html:not([data-theme="dark"]) .footer-links a,
    html:not([data-theme="dark"]) .footer-note,
    html:not([data-theme="dark"]) .legal-panel p,
    html:not([data-theme="dark"]) .legal-back {
        color: #435869;
    }

    html:not([data-theme="dark"]) .nav-cta,
    html:not([data-theme="dark"]) .theme-option.is-active {
        background: rgba(240, 90, 40, 0.12);
        color: #12212f;
    }

    html:not([data-theme="dark"]) .button-secondary,
    html:not([data-theme="dark"]) .hero-points li,
    html:not([data-theme="dark"]) .hero-aside,
    html:not([data-theme="dark"]) .process-step,
    html:not([data-theme="dark"]) .faq-item,
    html:not([data-theme="dark"]) .slider-button,
    html:not([data-theme="dark"]) .contact-form input,
    html:not([data-theme="dark"]) .contact-form select,
    html:not([data-theme="dark"]) .contact-form textarea {
        background: rgba(255, 255, 255, 0.72);
        color: #12212f;
    }

    html:not([data-theme="dark"]) .captcha-question {
        background: rgba(240, 90, 40, 0.08);
        border-color: rgba(180, 71, 32, 0.26);
    }

    html:not([data-theme="dark"]) .captcha-question span,
    html:not([data-theme="dark"]) .consent-check span {
        color: #435869;
    }

    html:not([data-theme="dark"]) .faq-item[open] {
        background: rgba(255, 255, 255, 0.88);
    }

    html:not([data-theme="dark"]) .signal-item,
    html:not([data-theme="dark"]) .audience-panel,
    html:not([data-theme="dark"]) .review-slide {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 249, 252, 0.78)),
            rgba(255, 255, 255, 0.88);
    }

    html:not([data-theme="dark"]) .hero-image-frame {
        background: linear-gradient(160deg, rgba(244, 247, 251, 0.95), rgba(229, 237, 245, 0.92));
        box-shadow: 0 32px 80px rgba(31, 54, 76, 0.14);
    }

    html:not([data-theme="dark"]) .button-primary {
        color: #fff7f1;
    }

    html:not([data-theme="dark"]) .site-header,
    html:not([data-theme="dark"]) .theme-switcher,
    html:not([data-theme="dark"]) .theme-toggle,
    html:not([data-theme="dark"]) .nav-toggle,
    html:not([data-theme="dark"]) .signal-item,
    html:not([data-theme="dark"]) .audience-panel,
    html:not([data-theme="dark"]) .services-image,
    html:not([data-theme="dark"]) .service-band-media,
    html:not([data-theme="dark"]) .service-band,
    html:not([data-theme="dark"]) .process-step,
    html:not([data-theme="dark"]) .reviews-shell,
    html:not([data-theme="dark"]) .review-slide,
    html:not([data-theme="dark"]) .faq-item,
    html:not([data-theme="dark"]) .contact-form-shell,
    html:not([data-theme="dark"]) .contact-form input,
    html:not([data-theme="dark"]) .contact-form select,
    html:not([data-theme="dark"]) .contact-form textarea,
    html:not([data-theme="dark"]) .legal-page,
    html:not([data-theme="dark"]) .legal-panel {
        border-color: rgba(31, 54, 76, 0.14);
    }

    html:not([data-theme="dark"]) .site-footer {
        border-top-color: rgba(31, 54, 76, 0.14);
    }

    html:not([data-theme="dark"]) .reviews-meta .reviews-label,
    html:not([data-theme="dark"]) .audience-label,
    html:not([data-theme="dark"]) .service-audience,
    html:not([data-theme="dark"]) .process-number,
    html:not([data-theme="dark"]) .review-rating,
    html:not([data-theme="dark"]) .section-eyebrow,
    html:not([data-theme="dark"]) .review-meta a,
    html:not([data-theme="dark"]) .legal-panel a {
        color: #b44720;
    }

    html:not([data-theme="dark"]) .theme-option,
    html:not([data-theme="dark"]) .brand-subline {
        color: #627686;
    }

    html:not([data-theme="dark"]) .form-feedback.is-success {
        color: #23643f;
    }

    html:not([data-theme="dark"]) .contact-form input[aria-invalid="true"],
    html:not([data-theme="dark"]) .contact-form select[aria-invalid="true"],
    html:not([data-theme="dark"]) .contact-form textarea[aria-invalid="true"] {
        border-color: rgba(180, 71, 32, 0.44);
        box-shadow: 0 0 0 4px rgba(180, 71, 32, 0.1);
    }

    html:not([data-theme="dark"]) .form-feedback.is-error,
    html:not([data-theme="dark"]) .legal-alert {
        color: #8a3617;
    }

    html:not([data-theme="dark"]) .cookie-notice-copy p:last-child {
        color: #435869;
    }

    html:not([data-theme="dark"]) .cookie-notice-actions a {
        color: #b44720;
    }

    html:not([data-theme="dark"]) .site-nav a:hover,
    html:not([data-theme="dark"]) .site-nav a:focus-visible,
    html:not([data-theme="dark"]) .footer-links a:hover,
    html:not([data-theme="dark"]) .footer-links a:focus-visible {
        color: #12212f;
    }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 440ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 1180px) {
    .hero {
        grid-template-columns: minmax(0, 1.08fr) minmax(560px, 0.92fr);
        padding-bottom: 2.6rem;
    }

    .hero-copy {
        padding-top: 1.4rem;
    }

    .hero-visual {
        padding-top: 0.75rem;
    }
}

@media (min-width: 1600px) {
    .site-header {
        width: min(1650px, calc(100vw - 4rem));
    }

    .hero {
        width: min(1800px, calc(100vw - 4rem));
        grid-template-columns: minmax(0, 1.14fr) minmax(620px, 0.86fr);
    }

    .hero-copy {
        max-width: 52rem;
        padding-top: 1rem;
    }

    .hero-image-frame {
        min-height: clamp(34rem, 40vw, 49rem);
    }
}

@media (max-width: 1080px) {
    .hero,
    .services-layout,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .services-image {
        position: relative;
        top: 0;
        width: 100%;
    }

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

@media (max-width: 860px) {
    .site-header,
    .section,
    .site-footer,
    .hero {
        width: min(calc(100vw - 1.2rem), 100%);
    }

    .site-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 0.7rem;
        padding-inline: 1rem;
        border-radius: 20px;
    }

    .header-actions {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: max-content;
        align-items: center;
        column-gap: 0.55rem;
        margin-left: 0;
        justify-self: end;
        flex: initial;
    }

    .brand-banner-shell {
        width: clamp(13.5rem, 34vw, 16.5rem);
        height: 3.1rem;
        padding-inline: 0.55rem;
    }

    .brand-banner-image {
        width: 127%;
        height: 127%;
    }

    .nav-toggle {
        display: inline-grid;
        place-items: center;
        flex-shrink: 0;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.7rem);
        left: 0;
        right: 0;
        z-index: 22;
        display: none;
        gap: 0.4rem;
        padding: 0.9rem;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: rgba(8, 20, 29, 0.96);
        backdrop-filter: blur(16px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    html[data-theme="light"] .site-nav {
        background: rgba(255, 255, 255, 0.96);
    }

    .site-nav.is-open {
        display: grid;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav a {
        padding: 0.8rem 0.95rem;
        border-radius: 14px;
    }

    .site-nav .nav-cta {
        text-align: center;
    }

    .signal-strip,
    .audience-grid,
    .form-row,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .reviews-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .cookie-notice {
        left: 0.8rem;
        right: 0.8rem;
        width: auto;
    }

    .services-carousel-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .services-carousel-copy {
        max-width: none;
    }

    .contact-form-head {
        display: grid;
        gap: 0.35rem;
    }

    .contact-form-head p:last-child {
        text-align: left;
    }
}

@media (max-width: 860px) and (prefers-color-scheme: light) {
    html:not([data-theme="dark"]) .site-nav {
        background: rgba(255, 255, 255, 0.96);
    }
}

@media (max-width: 640px) {
    :root {
        --content-width: min(100vw - 1.4rem, 1180px);
    }

    .site-header {
        top: 0.7rem;
        gap: 0.45rem;
        padding: 0.72rem;
    }

    .section {
        padding: 3.7rem 0;
    }

    .hero {
        padding-top: 3.7rem;
    }

    .hero h1 {
        max-width: 9.5ch;
        font-size: clamp(1.9rem, 9.2vw, 2.85rem);
        line-height: 0.96;
        text-wrap: initial;
    }

    .hero-lead {
        font-size: 1.02rem;
        line-height: 1.65;
    }

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

    .hero-points {
        display: grid;
        gap: 0.65rem;
    }

    .hero-points li {
        text-align: center;
    }

    .hero-image-frame {
        min-height: 0;
    }

    .hero-aside,
    .service-band,
    .service-band-head {
        display: block;
    }

    .hero-aside strong {
        display: block;
        margin-top: 0.45rem;
        text-align: left;
    }

    .service-band-index {
        margin-bottom: 0.7rem;
    }

    .service-band-media {
        margin-bottom: 0.9rem;
    }

    .contact-form-shell,
    .reviews-shell,
    .audience-panel,
    .faq-item {
        padding: 1.2rem;
    }

    .header-actions {
        gap: 0.55rem;
    }

    .theme-toggle,
    .nav-toggle {
        width: 2.5rem;
        height: 2.5rem;
    }

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

    .service-card-media {
        min-height: 11.5rem;
    }

    .cookie-notice {
        bottom: 0.8rem;
        width: min(22rem, calc(100vw - 1.2rem));
        padding: 0.9rem;
    }

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

    .cookie-notice-actions,
    .legal-tools {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .brand-banner-shell {
        display: none;
    }

    .brand-mobile-mark {
        display: inline-flex;
        width: 2.35rem;
        height: 2.35rem;
        border-radius: 14px;
    }

    .theme-toggle,
    .nav-toggle {
        width: 2.35rem;
        height: 2.35rem;
    }

    .hero h1 {
        max-width: 8.6ch;
    }
}

html[data-resolved-theme="light"] .site-nav,
html[data-resolved-theme="light"] .theme-toggle,
html[data-resolved-theme="light"] .nav-toggle,
html[data-resolved-theme="light"] .slider-button,
html[data-resolved-theme="light"] .button-secondary,
html[data-resolved-theme="light"] .brand-banner-shell,
html[data-resolved-theme="light"] .brand-mobile-mark,
html[data-resolved-theme="light"] .services-carousel-shell,
html[data-resolved-theme="light"] .contact-form input,
html[data-resolved-theme="light"] .contact-form select,
html[data-resolved-theme="light"] .contact-form textarea,
html[data-resolved-theme="light"] .service-card {
    border-color: rgba(31, 54, 76, 0.18);
}

html[data-resolved-theme="light"] .site-nav,
html[data-resolved-theme="light"] .theme-toggle,
html[data-resolved-theme="light"] .nav-toggle,
html[data-resolved-theme="light"] .slider-button,
html[data-resolved-theme="light"] .button-secondary,
html[data-resolved-theme="light"] .brand-banner-shell,
html[data-resolved-theme="light"] .brand-mobile-mark {
    background: rgba(255, 255, 255, 0.94);
    color: #12212f;
}

html[data-resolved-theme="light"] .site-nav a {
    color: #32485a;
}

html[data-resolved-theme="light"] .site-nav a:hover,
html[data-resolved-theme="light"] .site-nav a:focus-visible {
    background: rgba(31, 54, 76, 0.06);
    color: #12212f;
}

html[data-resolved-theme="light"] .nav-cta {
    background: rgba(240, 90, 40, 0.12);
}

html[data-resolved-theme="light"] .services-carousel-shell,
html[data-resolved-theme="light"] .service-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 252, 0.84)),
        rgba(255, 255, 255, 0.94);
}

html[data-resolved-theme="light"] .service-card-details {
    border-top-color: rgba(31, 54, 76, 0.12);
}

html[data-resolved-theme="light"] .service-card-details > p,
html[data-resolved-theme="light"] .service-audience {
    color: #b44720;
}

html[data-resolved-theme="light"] .contact-form select option {
    background: #f4f7fb;
    color: #12212f;
}

/* Kantigere IT-Optik */
:root {
    --radius: 10px;
    --shadow: 0 24px 64px rgba(1, 9, 16, 0.34);
}

body {
    background:
        linear-gradient(135deg, rgba(240, 90, 40, 0.12) 0 1px, transparent 1px 100%),
        linear-gradient(180deg, #071019 0%, #091723 44%, #08141d 100%);
    background-size: 64px 64px, auto;
}

.site-header,
.theme-toggle,
.brand-banner-shell,
.brand-mobile-mark,
.site-nav,
.site-nav a,
.nav-cta,
.nav-toggle,
.button,
.hero-points li,
.hero-image-frame,
.hero-aside,
.audience-panel,
.services-image,
.service-band-media,
.services-carousel-shell,
.service-card,
.service-card-media,
.process-step,
.reviews-shell,
.slider-button,
.review-slide,
.faq-item,
.contact-form-shell,
.form-feedback,
.contact-form input,
.contact-form select,
.contact-form textarea,
.captcha-question,
.cookie-notice,
.legal-page,
.legal-alert {
    border-radius: 8px;
}

.theme-toggle,
.nav-toggle,
.slider-button,
.brand-mobile-mark {
    border-radius: 6px;
}

.brand-banner-shell,
.brand-mobile-mark {
    background: rgba(8, 20, 29, 0.36);
    box-shadow: none;
}

.brand-banner-shell {
    padding: 0.22rem 0.7rem;
}

.brand-mobile-mark img {
    object-fit: contain;
}

.site-header,
.services-carousel-shell,
.service-card,
.reviews-shell,
.contact-form-shell,
.legal-page {
    box-shadow:
        0 18px 48px rgba(1, 9, 16, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-image-frame::before {
    display: none;
}

.hero-image-frame,
.service-card,
.audience-panel,
.process-step,
.reviews-shell,
.contact-form-shell {
    background-image:
        linear-gradient(135deg, rgba(240, 90, 40, 0.12) 0 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

html[data-resolved-theme="light"] .brand-banner-shell,
html[data-resolved-theme="light"] .brand-mobile-mark {
    background: rgba(255, 255, 255, 0.7);
}

html[data-theme="light"] body {
    background:
        linear-gradient(135deg, rgba(180, 71, 32, 0.09) 0 1px, transparent 1px 100%),
        linear-gradient(180deg, #f6f8fb 0%, #eef3f8 44%, #edf2f7 100%);
    background-size: 64px 64px, auto;
}

@media (prefers-color-scheme: light) {
    html:not([data-theme="dark"]) body {
        background:
            linear-gradient(135deg, rgba(180, 71, 32, 0.09) 0 1px, transparent 1px 100%),
            linear-gradient(180deg, #f6f8fb 0%, #eef3f8 44%, #edf2f7 100%);
        background-size: 64px 64px, auto;
    }
}

/* Harte Korrektur: Banner nicht croppen, UI wirklich kantig. */
.site-header {
    border-radius: 0 !important;
    min-height: clamp(6.2rem, 7vw, 7.4rem) !important;
    padding: 1.35rem clamp(1.4rem, 2.3vw, 2.3rem) !important;
    gap: clamp(1.6rem, 2.8vw, 3rem) !important;
}

.brand-lockup {
    flex: 0 0 auto !important;
    max-width: min(28vw, 28rem) !important;
}

.brand-banner-shell {
    width: min(28vw, 28rem) !important;
    height: clamp(3rem, 3.8vw, 4.45rem) !important;
    padding: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.brand-banner-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: left center !important;
}

.theme-toggle,
.brand-mobile-mark,
.site-nav,
.site-nav a,
.nav-cta,
.nav-toggle,
.button,
.hero-points li,
.hero-image-frame,
.hero-aside,
.audience-panel,
.services-image,
.service-band-media,
.services-carousel-shell,
.service-card,
.service-card-media,
.process-step,
.reviews-shell,
.slider-button,
.review-slide,
.faq-item,
.contact-form-shell,
.form-feedback,
.contact-form input,
.contact-form select,
.contact-form textarea,
.captcha-question,
.cookie-notice,
.legal-page,
.legal-alert {
    border-radius: 2px !important;
}

.site-nav a,
.button,
.theme-toggle,
.nav-toggle,
.slider-button {
    border-radius: 0 !important;
}

.site-nav {
    padding: 0.38rem !important;
}

.site-nav a {
    padding: 1rem 1.15rem !important;
}

.theme-toggle,
.nav-toggle {
    width: 3.35rem !important;
    height: 3.35rem !important;
}

@media (max-width: 860px) {
    .site-header {
        min-height: 5.2rem !important;
        padding: 1rem !important;
    }

    .brand-lockup {
        max-width: min(50vw, 19rem) !important;
    }

    .brand-banner-shell {
        width: min(50vw, 19rem) !important;
        height: 3.05rem !important;
    }

    .footer-signature {
        grid-template-columns: 3.7rem minmax(0, 1fr);
    }

    .footer-logo {
        width: 3.7rem;
        height: 3.7rem;
    }
}

@media (max-width: 520px) {
    .brand-lockup {
        max-width: none !important;
    }

    .brand-mobile-mark {
        border: 0 !important;
        background: transparent !important;
        padding: 0 !important;
    }
}

/* Tablet- und Mobile-Feinschliff */
@media (max-width: 1180px) {
    :root {
        --site-width: min(100vw - 2rem, 1180px);
        --section-width: min(100vw - 2rem, 1180px);
        --hero-width: min(100vw - 2rem, 1180px);
    }

    .site-header {
        top: 0.75rem !important;
        min-height: 5.8rem !important;
        padding: 1rem 1.2rem !important;
    }

    .brand-lockup {
        max-width: min(36vw, 24rem) !important;
    }

    .brand-banner-shell {
        width: min(36vw, 24rem) !important;
        height: 3.4rem !important;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: clamp(2.2rem, 4vw, 3.2rem);
    }

    .hero-copy {
        max-width: 58rem;
    }

    .hero h1 {
        max-width: 12ch;
        font-size: clamp(3rem, 9vw, 5.4rem);
    }

    .hero-visual {
        width: 100%;
    }

    .hero-image-frame {
        aspect-ratio: 16 / 9;
        min-height: 0 !important;
        max-height: 32rem;
    }

    .services-track {
        --cards-per-view: 2;
    }

    .service-band.has-media {
        grid-template-columns: 4.6rem minmax(190px, 13rem) minmax(0, 1fr);
    }
}

@media (max-width: 900px) {
    .site-header {
        grid-template-columns: minmax(0, 1fr) auto !important;
        min-height: 5.25rem !important;
        padding: 0.95rem !important;
    }

    .brand-lockup {
        max-width: min(52vw, 20rem) !important;
    }

    .brand-banner-shell {
        width: min(52vw, 20rem) !important;
        height: 3.05rem !important;
    }

    .header-actions {
        gap: 0.55rem !important;
    }

    .site-nav {
        width: 100%;
        padding: 0.8rem !important;
    }

    .site-nav a {
        padding: 0.9rem 1rem !important;
        text-align: center;
    }

    .theme-toggle,
    .nav-toggle {
        width: 2.9rem !important;
        height: 2.9rem !important;
    }

    .section-heading h2,
    .hero h1 {
        letter-spacing: 0;
    }

    .hero h1 {
        max-width: 11ch;
        font-size: clamp(2.7rem, 11vw, 4.4rem);
    }

    .hero-lead {
        max-width: 42rem;
    }

    .hero-actions {
        gap: 0.75rem;
    }

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

    .audience-grid,
    .process-track,
    .signal-strip {
        grid-template-columns: 1fr;
    }

    .services-layout,
    .contact-section {
        gap: 1.35rem;
    }

    .service-band,
    .service-band.has-media {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .service-band-index {
        font-size: 2rem;
    }

    .service-band-media {
        min-height: 14rem;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    :root {
        --site-width: min(100vw - 1.1rem, 1180px);
        --section-width: min(100vw - 1.1rem, 1180px);
        --hero-width: min(100vw - 1.1rem, 1180px);
        --content-width: min(100vw - 1.1rem, 1180px);
    }

    body {
        background-size: 46px 46px, auto;
    }

    .site-header {
        top: 0.55rem !important;
        min-height: 4.45rem !important;
        padding: 0.72rem !important;
    }

    .brand-banner-shell {
        display: none !important;
    }

    .brand-mobile-mark {
        display: inline-flex !important;
        width: 2.9rem !important;
        height: 2.9rem !important;
    }

    .theme-toggle,
    .nav-toggle {
        width: 2.65rem !important;
        height: 2.65rem !important;
    }

    .site-nav {
        top: calc(100% + 0.55rem);
        padding: 0.65rem !important;
    }

    .main,
    .section {
        min-width: 0;
    }

    .section {
        padding: 3rem 0;
    }

    .hero {
        padding-top: 2.4rem;
        gap: 1.2rem;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(2.35rem, 13vw, 3.55rem);
        line-height: 0.98;
    }

    .hero-lead {
        margin-top: 1rem;
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-actions {
        grid-template-columns: 1fr;
        margin-top: 1.45rem;
    }

    .button {
        width: 100%;
        min-height: 3.2rem;
        padding-inline: 1rem;
    }

    .hero-points {
        grid-template-columns: 1fr;
        margin-top: 1.2rem;
    }

    .hero-points li {
        padding: 0.72rem 0.8rem;
        text-align: left;
    }

    .hero-image-frame {
        aspect-ratio: 4 / 3;
        max-height: none;
    }

    .hero-aside {
        padding: 1rem;
    }

    .section-heading h2 {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1;
    }

    .audience-panel,
    .services-carousel-shell,
    .review-slide,
    .contact-form-shell,
    .legal-page {
        padding: 1rem;
    }

    .services-track {
        --cards-per-view: 1;
    }

    .service-card {
        grid-template-rows: 11.5rem 1fr;
        padding: 0.65rem;
    }

    .service-card-body h3,
    .service-band h3 {
        font-size: clamp(1.35rem, 7vw, 1.8rem);
    }

    .contact-form-head h2 {
        font-size: clamp(1.9rem, 9vw, 2.7rem);
    }

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

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        min-height: 3.15rem;
    }

    .site-footer {
        gap: 1.1rem;
        padding-bottom: 2rem;
    }

    .footer-signature {
        grid-template-columns: 3.2rem minmax(0, 1fr);
        gap: 0.8rem;
    }

    .footer-logo {
        width: 3.2rem;
        height: 3.2rem;
    }

    .footer-links {
        gap: 0.75rem;
    }

    .footer-note {
        text-align: left;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: clamp(2.05rem, 12.5vw, 2.85rem);
    }

    .section-eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.16em;
    }

    .brand-mobile-mark,
    .theme-toggle,
    .nav-toggle {
        width: 2.45rem !important;
        height: 2.45rem !important;
    }

    .footer-signature {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
