:root {
    --bg: #f7f4f0;
    --surface: #ffffff;
    --surface-warm: #fdf9f5;
    --ink: #0d1f3c;
    --ink-2: #142d4f;
    --text: #1e3150;
    --muted: #5a6f8a;
    --muted-light: rgba(255, 255, 255, 0.76);
    --accent: #1a6dd8;
    --accent-deep: #0e4fa0;
    --accent-light: #dbeafe;
    --dark: #0a1628;
    --dark-2: #0f1e36;
    --gold: #FBBC04;
    --border: rgba(13, 31, 60, 0.1);
    --border-strong: rgba(13, 31, 60, 0.2);
    --white-border: rgba(255, 255, 255, 0.16);
    --shadow: 0 20px 50px rgba(6, 12, 24, 0.1);
    --shadow-soft: 0 4px 20px rgba(6, 12, 24, 0.07);
    --shadow-card: 0 2px 16px rgba(6, 12, 24, 0.06), 0 1px 3px rgba(6, 12, 24, 0.04);
    --radius-xs: 6px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 999px;
    --page-gutter: clamp(1.25rem, 3vw, 2.8rem);
    --section-gap: clamp(4.5rem, 8vw, 7rem);
    --header-height: 5rem;
    --transition: 220ms ease;
}

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

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

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

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

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

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

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

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

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

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
    overflow-y: scroll;
}

body {
    margin: 0;
    font-family: "Barlow", sans-serif;
    color: var(--text);
    background: var(--bg);
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

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

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

p {
    margin: 0;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

strong,
summary {
    margin: 0;
    font-family: "Barlow", sans-serif;
    letter-spacing: -0.01em;
}

main {
    overflow: clip;
}

/* ── Layout ─────────────────────────────── */
.shell {
    width: min(100%, 1250px);
    margin: 0 auto;
    padding-inline: var(--page-gutter);
}

.section {
    padding-block: var(--section-gap);
}

.section-tight {
    padding-block: calc(var(--section-gap) * 0.62);
}

.section-warm {
    background: var(--surface-warm);
}

.section-light {
    background: var(--surface);
}

.section-ink {
    position: relative;
    background:
        linear-gradient(160deg, rgba(10, 22, 50, 0.99), rgba(6, 15, 38, 0.99)),
        radial-gradient(circle at top right, rgba(26, 109, 216, 0.14), transparent 30%);
    color: #ffffff;
}

/* ── Eyebrow ────────────────────────────── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: "Barlow", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}

.eyebrow::before {
    content: "";
    width: 1.5rem;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

.hero .eyebrow,
.page-hero .eyebrow,
.legal-hero .eyebrow,
.section-heading-light .eyebrow,
.site-modal-copy .eyebrow {
    color: var(--accent-light);
}

/* ── Typography ─────────────────────────── */
.section-heading,
.feature-copy,
.highlight-copy,
.page-hero-copy,
.statement-copy,
.legal-content {
    display: grid;
    gap: 1rem;
}

.section-heading {
    max-width: 48rem;
    margin-bottom: 2.5rem;
}

.section-heading h2,
.feature-copy h2,
.highlight-copy h2,
.statement-copy h2,
.page-hero h1,
.hero-headline,
.legal-hero h1,
.contact-form-shell h2 {
    font-size: clamp(2rem, 3.5vw, 3.8rem);
    line-height: 1.1;
}

.section-heading p,
.feature-copy p,
.highlight-copy p,
.statement-copy p,
.page-hero-copy p,
.hero-text,
.legal-content p,
.progress-card p,
.focus-card p,
.process-card p,
.showcase-copy p,
.faq-list p,
.contact-note p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted);
}

.section-ink p,
.section-heading-light p,
.hero p,
.page-hero p,
.site-modal-copy p {
    color: var(--muted-light);
}

/* ── Buttons ────────────────────────────── */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3rem;
    padding: 0 1.65rem;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-family: "Barlow", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

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

.button svg {
    width: 0.95rem;
    height: 0.95rem;
    fill: currentColor;
}

.button-primary {
    color: #ffffff;
    background: var(--accent);
    box-shadow: 0 4px 14px rgba(26, 109, 216, 0.25);
}

.button-primary:hover {
    background: var(--accent-deep);
    box-shadow: 0 6px 20px rgba(26, 109, 216, 0.35);
}

.button-secondary {
    color: inherit;
    border-color: currentColor;
    background: transparent;
}

.button-secondary:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.button-light {
    color: var(--ink);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.button-compact {
    min-height: 2.55rem;
    padding-inline: 1rem;
    font-size: 0.82rem;
}

/* ── Header ─────────────────────────────── */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.99);
    border-color: var(--border);
    box-shadow: 0 2px 20px rgba(13, 31, 60, 0.08);
}

.header-shell {
    width: min(100%, 1250px);
    min-height: var(--header-height);
    margin: 0 auto;
    padding-inline: var(--page-gutter);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

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

.brand img,
.footer-logo {
    width: clamp(9rem, 14vw, 12rem);
    height: auto;
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1.2rem, 2.5vw, 2.2rem);
    z-index: 101;
    pointer-events: none;
}

.site-nav .nav-link {
    pointer-events: all;
}

.nav-close {
    display: none;
}

.nav-link {
    position: relative;
    padding-block: 0.35rem;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.nav-link:hover {
    color: var(--accent);
}

.site-header.is-scrolled ~ .site-nav .nav-link {
    color: var(--text);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.35rem;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.55rem 0.85rem;
    border-radius: var(--radius-pill);
    color: var(--ink);
    background: rgba(13, 31, 60, 0.04);
    border: 1px solid rgba(13, 31, 60, 0.08);
}

.site-header.is-scrolled .header-phone {
    color: var(--ink);
    background: rgba(13, 31, 60, 0.04);
    border-color: rgba(13, 31, 60, 0.08);
}

.header-phone span:last-child {
    display: grid;
}

.header-phone strong {
    font-size: 0.88rem;
}

.header-phone small {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.7;
}

.header-phone-icon,
.service-icon,
.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: var(--radius-sm);
    color: var(--accent);
    background: rgba(26, 109, 216, 0.08);
    border: 1px solid rgba(26, 109, 216, 0.12);
    flex-shrink: 0;
}

.site-header:not(.is-scrolled) .header-phone-icon {
    color: var(--accent);
    background: rgba(26, 109, 216, 0.08);
    border-color: rgba(26, 109, 216, 0.12);
}

.header-phone-icon svg,
.service-icon svg,
.contact-icon svg,
.choice-arrow svg,
.header-cta-icon svg,
.hero-copy svg,
.clean-list svg,
.footer-list svg,
.modal-contact-item svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    flex: 0 0 auto;
}

.header-cta {
    min-height: 2.65rem;
    padding: 0 1.2rem;
    font-size: 0.82rem;
}

.menu-toggle {
    display: none;
    width: 2.8rem;
    height: 2.8rem;
    padding: 0;
    border: 1px solid rgba(13, 31, 60, 0.14);
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.3rem;
    border-radius: var(--radius-sm);
    color: var(--ink);
}

.menu-toggle span {
    width: 1.15rem;
    height: 2px;
    background: currentColor;
    transition: transform var(--transition), opacity var(--transition);
}

.site-header.is-scrolled .menu-toggle {
    color: var(--ink);
    border-color: rgba(13, 31, 60, 0.14);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(0.425rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-0.425rem) rotate(-45deg);
}

/* ── Hero ───────────────────────────────── */
.hero,
.page-hero,
.legal-hero {
    position: relative;
    isolation: isolate;
    color: #ffffff;
}

.hero::before,
.page-hero::before,
.legal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(115deg, rgba(6, 10, 24, 0.82), rgba(10, 22, 56, 0.75) 48%, rgba(16, 55, 120, 0.55) 100%);
}

.hero::after,
.page-hero::after,
.legal-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: var(--hero-position, center);
}

.hero-home {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 3.5rem;
    display: flex;
    align-items: center;
}

.hero-layout,
.page-hero-grid,
.split-panel,
.two-column-highlight,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: end;
}

.hero-copy,
.hero-stack,
.page-hero-card {
    position: relative;
    z-index: 1;
}

.hero-copy {
    display: grid;
    gap: 1.25rem;
    max-width: 44rem;
}

.hero-headline {
    display: grid;
    gap: 0.1rem;
}

.hero-fixed {
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: clamp(2.4rem, 4.2vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

.word-wrapper {
    display: block;
    overflow: hidden;
    height: 1.15em;
    margin-top: 0.04em;
    font-size: clamp(2.6rem, 4.6vw, 5rem);
    line-height: 1.05;
}

#typeword {
    display: inline-block;
    font-family: "Barlow", sans-serif;
    font-size: inherit;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
    opacity: 1;
    transition: opacity 220ms ease;
}

.caret {
    display: inline-block;
    width: 0.55ch;
    margin-left: 0.12ch;
    transform: translateY(0.05em);
    border-right: 2px solid rgba(255, 255, 255, 0.96);
    animation: caretBlink 0.9s steps(1, end) infinite;
}

@keyframes caretBlink {
    50% {
        opacity: 0;
    }
}

.hero-text {
    max-width: 38rem;
    font-size: 1.05rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.hero-actions,
.card-actions,
.statement-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero .button-primary {
    background: var(--accent);
    box-shadow: 0 4px 20px rgba(26, 109, 216, 0.4);
}

.hero .button-primary:hover {
    background: var(--accent-deep);
}

.hero .button-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero .button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.hero-meta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
}

.rating-card,
.request-card,
.page-hero-card,
.contact-form-shell {
    border-radius: 28px;
    overflow: hidden;
}

.statement-shell,
.showcase-card,
.focus-card,
.process-card,
.progress-card,
.promise-grid article,
.cta-band,
.area-band,
.site-modal-dialog {
    border-radius: 28px;
}

.hero-mini-list small {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.hero-mini-list strong {
    display: block;
    font-size: 0.95rem;
    color: #ffffff;
}

/* ── Hero Sidebar ───────────────────────── */
.hero-sidebar {
    position: relative;
    z-index: 1;
}

.hero-sidebar-card {
    background: rgba(255, 255, 255, 0.97);
    color: var(--ink);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.hero-sidebar-trust {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.hero-sidebar-trust .google-g {
    width: 1.4rem;
    height: 1.4rem;
    flex-shrink: 0;
}

.hero-sidebar-stars {
    display: inline-flex;
    gap: 0.15rem;
    color: var(--gold);
}

.hero-sidebar-stars svg {
    width: 0.85rem;
    height: 0.85rem;
    fill: currentColor;
}

.hero-sidebar-score {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
}

.hero-sidebar-card h2 {
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    margin-bottom: 0.4rem;
    color: var(--ink);
}

.hero-sidebar-card > p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--muted);
}

.hero-sidebar-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 1rem 0;
}

.hero-sidebar-form {
    display: grid;
    gap: 0.6rem;
}

.hero-sidebar-form input,
.hero-sidebar-form select {
    width: 100%;
    min-height: 2.75rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    font: inherit;
    font-size: 0.9rem;
    color: var(--ink);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.hero-sidebar-form input::placeholder {
    color: var(--muted);
}

.hero-sidebar-form input:focus,
.hero-sidebar-form select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(26, 109, 216, 0.1);
}

.hero-sidebar-form select option {
    background: var(--surface);
    color: var(--ink);
}

/* ── Hero Meta Strip ────────────────────── */
.hero-meta-strip {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}

.hero-meta-item:hover {
    color: #ffffff;
}

.hero-meta-item svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    flex-shrink: 0;
}

/* ── Legacy Sidebar Cards ───────────────── */
.page-hero-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.page-hero-card p,
.page-hero-card .clean-list span {
    color: var(--muted);
}

.panel-label {
    display: inline-flex;
    margin-bottom: 0.6rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}

.star-row {
    display: inline-flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
    color: var(--gold);
}

.star-row svg {
    width: 0.95rem;
    height: 0.95rem;
    fill: currentColor;
}

.page-hero-card h2 {
    margin-bottom: 0.6rem;
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.request-card {
    padding: 1.5rem;
    background: var(--surface);
    color: var(--ink);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.request-card .panel-label {
    color: var(--accent);
}

.request-card p {
    color: var(--muted);
}

.request-card .quick-form input,
.request-card .quick-form select {
    border-color: var(--border);
    background: var(--surface);
    color: var(--ink);
}

.request-card .quick-form input::placeholder {
    color: var(--muted);
}

.request-card .quick-form span {
    color: var(--text);
}

.request-card .quick-form select option {
    background: var(--surface);
    color: var(--ink);
}

.choice-list {
    display: grid;
    gap: 0.65rem;
    margin-block: 0.85rem 1rem;
}

.choice-list-compact {
    margin-bottom: 0;
}

.choice-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.11);
    color: #ffffff;
    font: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: left;
    cursor: pointer;
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.choice-button:hover,
.choice-button:focus-visible {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.16);
}

.choice-button-light {
    color: var(--ink);
    background: #ffffff;
    border-color: var(--border);
}

.choice-button-light:hover,
.choice-button-light:focus-visible {
    background: var(--surface-warm);
}

.choice-arrow {
    display: inline-flex;
    color: currentColor;
}

/* ── Statement ──────────────────────────── */
.statement-section {
    position: relative;
    z-index: 4;
    margin-top: -1.5rem;
}

.statement-shell,
.cta-band,
.area-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem 1.75rem;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.statement-shell {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(145deg, rgba(10, 22, 50, 0.98), rgba(14, 40, 90, 0.98)),
        radial-gradient(circle at top right, rgba(26, 109, 216, 0.14), transparent 28%);
}

.statement-shell p {
    color: rgba(255, 255, 255, 0.72);
}

.statement-copy h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    line-height: 1.25;
}

.area-band {
    background: var(--surface-warm);
    border-color: var(--border);
}

/* ── Showcase / Leistungen ──────────────── */
.showcase-grid {
    display: grid;
    gap: 1.75rem;
}

.showcase-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(160deg, rgba(10, 22, 50, 0.99), rgba(6, 15, 38, 0.99)),
        radial-gradient(circle at top right, rgba(26, 109, 216, 0.14), transparent 30%);
    color: #ffffff;
    box-shadow: var(--shadow);
    padding: 1rem;
    gap: 0;
}

.showcase-card.is-reverse .showcase-media {
    order: 2;
}

.showcase-media {
    position: relative;
    aspect-ratio: 4 / 3;
    min-height: 0;
    background: rgba(6, 15, 38, 0.4);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.showcase-copy {
    display: grid;
    gap: 0.85rem;
    align-content: start;
    padding: clamp(1.5rem, 3vw, 2.25rem);
}

.showcase-copy p {
    color: rgba(255, 255, 255, 0.72);
}

.showcase-copy .clean-list svg {
    color: var(--accent-light);
}

.showcase-copy .clean-list span {
    color: rgba(255, 255, 255, 0.85);
}

.showcase-copy .eyebrow {
    color: var(--accent-light);
}

.showcase-copy h3,
.focus-card h3,
.process-card h3,
.progress-card h3,
.promise-grid h2,
.service-accordion strong {
    font-size: clamp(1.2rem, 1.5vw, 1.65rem);
}

/* ── Lists ──────────────────────────────── */
.clean-list,
.footer-list,
.tag-list,
.contact-stack,
.hero-mini-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.clean-list {
    display: grid;
    gap: 0.75rem;
}

.clean-list li,
.footer-list li,
.contact-item,
.modal-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.clean-list svg {
    color: var(--accent);
}

/* ── Slider ─────────────────────────────── */
.slider {
    position: relative;
    height: 100%;
}

.slider-viewport {
    height: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 520ms ease;
}

.slider-slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.slider-controls {
    position: absolute;
    inset: auto 1rem 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.slider-dots,
.slider-arrows {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.slider-dot,
.slider-arrow {
    border: 0;
    border-radius: var(--radius-pill);
    cursor: pointer;
}

.slider-dot {
    width: 0.65rem;
    height: 0.65rem;
    background: rgba(255, 255, 255, 0.38);
    transition: transform var(--transition), background var(--transition);
}

.slider-dot.is-active {
    background: #ffffff;
    transform: scale(1.2);
}

.slider-arrow {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(26, 19, 13, 0.5);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background var(--transition), transform var(--transition);
}

.slider-arrow:hover {
    background: var(--accent-deep);
    transform: scale(1.06);
}

/* ── Focus / Zielgruppen ────────────────── */
.focus-grid,
.process-grid,
.progress-grid,
.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.focus-card {
    padding: 2rem 1.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
}

.focus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(13, 31, 60, 0.14);
}

.focus-card h3 {
    color: var(--ink);
}

.focus-card p {
    color: var(--muted);
}

.focus-card.is-featured {
    border-color: rgba(26, 109, 216, 0.25);
    background: linear-gradient(145deg, rgba(26, 109, 216, 0.05), rgba(26, 109, 216, 0.02));
}

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

.usage-card {
    position: relative;
    min-height: 21rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.usage-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 15, 38, 0.08), rgba(6, 15, 38, 0.74)),
        radial-gradient(circle at top right, rgba(47, 118, 255, 0.16), transparent 34%);
}

.usage-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.usage-card-copy {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: end;
    gap: 0.55rem;
    min-height: 21rem;
    padding: 1.4rem;
    color: #ffffff;
}

.usage-card-kicker {
    display: inline-flex;
    width: fit-content;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.usage-card h3 {
    font-size: clamp(1.6rem, 2.1vw, 2.25rem);
    line-height: 0.98;
}

.usage-card p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.75;
}

.focus-count {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-family: "Barlow", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}

/* ── Process / Ablauf ───────────────────── */
.process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    margin-bottom: 1rem;
    border-radius: var(--radius-pill);
    background: var(--accent);
    font-family: "Barlow", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(26, 109, 216, 0.3);
}

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

.process-card {
    padding: 1.75rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.process-card p {
    color: var(--muted);
}

.process-faq {
    margin-top: 2.5rem;
    max-width: 52rem;
}

.process-faq-heading {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.progress-card {
    padding: 1.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promise-grid article {
    padding: 1.75rem 1.5rem;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.section-ink .promise-grid article {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

/* ── Tags / Einsatzgebiet ───────────────── */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tag-list span {
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    background: var(--accent-light);
    color: var(--accent-deep);
    border: 1px solid rgba(26, 109, 216, 0.12);
    font-size: 0.88rem;
    font-weight: 600;
    transition: background var(--transition), color var(--transition);
}

.tag-list span:hover {
    background: var(--accent);
    color: #ffffff;
}

/* ── FAQ ────────────────────────────────── */
.faq-section {
    background: var(--surface-warm);
}

.faq-list {
    max-width: 52rem;
    border-top: 1px solid var(--border);
}

.faq-list details {
    border-bottom: 1px solid var(--border);
}

.faq-list summary,
.service-accordion summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    cursor: pointer;
    list-style: none;
}

.faq-list summary {
    justify-content: space-between;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    font-weight: 600;
}

.service-accordion summary {
    position: relative;
    padding-inline: 1.4rem;
}

.faq-list summary::-webkit-details-marker,
.service-accordion summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after,
.service-accordion summary::after {
    content: "+";
    font-size: 1.5rem;
    line-height: 1;
    color: var(--accent);
    font-weight: 300;
}

.faq-list details[open] summary::after,
.service-accordion[open] summary::after {
    content: "\2212";
}

.faq-list details[open] summary {
    color: var(--accent);
}

.faq-list p {
    padding: 0 0 1.25rem;
}

.service-accordion-list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--border);
}

.service-accordion {
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid var(--border);
}

.service-summary-copy {
    display: grid;
    gap: 0.2rem;
}

.service-summary-copy small {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}

.service-accordion-body {
    display: grid;
    gap: 1rem;
    padding: 0 1.4rem 1.5rem;
}

/* ── Page Hero ──────────────────────────── */
.page-hero,
.legal-hero {
    padding-block: calc(var(--header-height) + 3rem) 3rem;
}

.page-hero-short {
    padding-bottom: 2.2rem;
}

.page-hero-grid {
    align-items: end;
}

.page-hero-copy {
    max-width: 48rem;
}

.page-hero-card {
    align-self: stretch;
}

.hero-mini-list {
    display: grid;
    gap: 0.85rem;
}

.hero-mini-list > div {
    padding-top: 0.8rem;
    border-top: 1px solid rgba(13, 31, 60, 0.08);
}

.page-hero-card .clean-list {
    margin-top: 0.2rem;
}

/* ── Split / Two-Column ─────────────────── */
.split-panel,
.two-column-highlight {
    align-items: center;
}

.feature-image,
.highlight-image {
    min-height: 24rem;
}

.feature-image img,
.highlight-image img {
    width: 100%;
    height: 100%;
    min-height: 24rem;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

/* ── Progress Bars ──────────────────────── */
.bar-group {
    display: grid;
    gap: 1rem;
    margin-top: 0.35rem;
}

.bar-row {
    display: grid;
    gap: 0.4rem;
}

.bar-row > span,
.bar-row > strong {
    font-size: 0.9rem;
}

.bar-row > strong {
    color: var(--accent-light);
}

.progress-bar {
    height: 0.6rem;
    overflow: hidden;
    background: rgba(13, 31, 60, 0.06);
    border: 1px solid rgba(13, 31, 60, 0.06);
    border-radius: var(--radius-pill);
}

.section-ink .progress-bar {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.progress-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-deep));
    border-radius: var(--radius-pill);
}

.progress-value {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-family: "Outfit", sans-serif;
    color: #ffffff;
}

/* ── Contact ────────────────────────────── */
.contact-layout {
    align-items: start;
}

.contact-side {
    display: grid;
    gap: 1.2rem;
}

.contact-stack {
    display: grid;
    gap: 0.5rem;
}

.contact-item {
    padding: 0.9rem 0;
    border-top: 1px solid var(--border);
}

.contact-item span:last-child {
    display: grid;
    gap: 0.2rem;
}

.contact-item strong {
    font-size: 0.95rem;
}

.contact-item small {
    color: var(--muted);
}

.contact-highlights {
    gap: 1rem;
    margin-top: 0.5rem;
}

.contact-highlights li {
    align-items: flex-start;
    gap: 0.85rem;
}

.contact-highlights svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--accent);
}

.contact-highlights span {
    display: grid;
    gap: 0.2rem;
}

.contact-highlights small {
    color: var(--muted);
    font-size: 0.88rem;
}

.contact-form-shell {
    padding: 1.75rem;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.contact-form,
.quick-form {
    display: grid;
    gap: 0.85rem;
    margin-top: 0.85rem;
}

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

.contact-form label,
.quick-form label {
    display: grid;
    gap: 0.35rem;
}

.contact-form span,
.checkbox-row span,
.quick-form-intro p {
    font-size: 0.88rem;
    font-weight: 600;
}

.quick-form span {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    min-height: 3rem;
    padding: 0.8rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
    font: inherit;
    font-size: 0.95rem;
    color: var(--ink);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.phone-field-shell {
    display: grid;
    gap: 0.35rem;
}

.phone-field {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.75rem;
    align-items: center;
}

.phone-field-prefix {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    min-height: 3rem;
    padding: 0 0.8rem;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
}

.phone-field-prefix:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(26, 109, 216, 0.12);
}

.phone-field select {
    width: auto;
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    appearance: none;
}

.phone-field input {
    min-width: 0;
}

.flag-de {
    display: inline-block;
    flex-shrink: 0;
    width: 1.2rem;
    height: 0.9rem;
    border-radius: 2px;
    background:
        linear-gradient(180deg, #101010 0 33.33%, #d33a36 33.33% 66.66%, #f4c542 66.66% 100%);
    box-shadow: inset 0 0 0 1px rgba(16, 37, 70, 0.08);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(26, 109, 216, 0.12);
}

.quick-form input,
.quick-form textarea,
.quick-form select {
    width: 100%;
    min-height: 2.85rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    font: inherit;
    font-size: 0.9rem;
    color: #ffffff;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.phone-field.is-dark .phone-field-prefix {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
}

.phone-field.is-dark select {
    color: #ffffff;
}

.phone-field.is-dark .flag-de {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.quick-form input::placeholder,
.quick-form select::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.quick-form select option {
    background: var(--dark);
    color: #ffffff;
}

.quick-form input:focus,
.quick-form textarea:focus,
.quick-form select:focus {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.16);
}

.contact-form textarea,
.quick-form textarea {
    min-height: 8rem;
    resize: vertical;
}

.contact-form small,
.form-general-error {
    color: #b42318;
}

.checkbox-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.7rem;
    align-items: center;
}

.checkbox-row input {
    width: 1.1rem;
    min-height: 1.1rem;
    margin-top: 0.15rem;
    padding: 0;
}

.checkbox-row a {
    text-decoration: underline;
}

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

.turnstile-wrap {
    display: grid;
    gap: 0.4rem;
}

.form-message {
    padding: 0.85rem 1rem;
    margin-top: 0.85rem;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.92rem;
}

.form-message-success {
    color: #065f46;
    background: rgba(6, 95, 70, 0.08);
    border-color: rgba(6, 95, 70, 0.14);
}

.form-message-error {
    color: #8a221a;
    background: rgba(180, 35, 24, 0.08);
    border-color: rgba(180, 35, 24, 0.14);
}

/* ── Footer ─────────────────────────────── */
.site-footer {
    padding-top: 3rem;
    background: var(--surface);
    color: var(--text);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-intro {
    display: grid;
    gap: 0.85rem;
}

.footer-intro p,
.footer-list,
.footer-bottom p {
    color: var(--muted);
    font-size: 0.92rem;
}

.footer-grid h3 {
    margin-bottom: 0.85rem;
    font-size: 1rem;
}

.footer-list {
    display: grid;
    gap: 0.75rem;
}

.footer-list svg {
    color: var(--accent);
}

.footer-list-compact li {
    display: block;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 1.2rem 1.4rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--muted);
}

/* ── Modal ──────────────────────────────── */
.site-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition);
}

.site-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 12, 24, 0.7);
}

.site-modal-dialog {
    position: relative;
    width: min(100%, 960px);
    max-height: min(92vh, 880px);
    overflow: auto;
    background: var(--surface);
    color: var(--ink);
    box-shadow: var(--shadow);
    border-radius: var(--radius-md);
}

.site-modal-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
}

.site-modal-copy {
    padding: 1.75rem;
    background:
        linear-gradient(160deg, rgba(10, 22, 50, 0.99), rgba(17, 46, 100, 0.97)),
        radial-gradient(circle at top right, rgba(26, 109, 216, 0.18), transparent 32%);
    color: #ffffff;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.site-modal-form-shell {
    padding: 1.75rem;
}

.site-modal-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 2.4rem;
    height: 2.4rem;
    border: 0;
    border-radius: var(--radius-pill);
    background: rgba(13, 31, 60, 0.08);
    color: var(--ink);
    font-size: 1.3rem;
    cursor: pointer;
    transition: background var(--transition);
}

.site-modal-close:hover {
    background: rgba(13, 31, 60, 0.14);
}

.quick-form-intro {
    display: grid;
    gap: 0.35rem;
}

.quick-option-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-block: 1rem 1.2rem;
}

.quick-option {
    padding: 0.6rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.quick-option:hover {
    background: rgba(255, 255, 255, 0.15);
}

.quick-option.is-active {
    color: var(--dark);
    background: var(--accent-light);
    border-color: var(--accent);
}

.modal-contact-stack {
    display: grid;
    gap: 0.75rem;
}

.modal-contact-item {
    color: #ffffff;
}

.modal-contact-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.quick-form-note {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ── Legal ──────────────────────────────── */
.legal-content {
    max-width: 56rem;
    padding: clamp(1.6rem, 3vw, 2.4rem);
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h2 {
    margin-top: 1.5rem;
    font-size: 1.25rem;
}

.legal-content p + p {
    margin-top: 0.85rem;
}

.legal-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

/* ── WhatsApp Float ─────────────────────── */
.whatsapp-float {
    position: fixed;
    right: clamp(1rem, 2vw, 1.4rem);
    bottom: clamp(1rem, 2vw, 1.4rem);
    z-index: 90;
    display: inline-flex;
    color: #ffffff;
}

.whatsapp-float-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, #1fbf61, #17a34a);
    box-shadow: 0 12px 28px rgba(23, 163, 74, 0.3);
    transition: transform var(--transition);
}

.whatsapp-float-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}

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

/* ── Showcase Card Features ─────────────── */
.sc-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    background: rgba(26, 109, 216, 0.2);
    border: 1px solid rgba(26, 109, 216, 0.3);
    font-family: "Barlow", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-light);
}

.feat-accordion {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-block: 0.25rem;
}

.feat-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feat-item-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0;
    cursor: pointer;
    list-style: none;
    color: rgba(255, 255, 255, 0.88);
    transition: color var(--transition);
}

.feat-item-head::-webkit-details-marker {
    display: none;
}

.feat-item-head:hover {
    color: #ffffff;
}

.feat-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.6rem;
    height: 1.6rem;
}

.feat-item-icon svg {
    width: 1rem;
    height: 1rem;
    fill: var(--accent);
}

.feat-item-title {
    flex: 1;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.45;
}

.feat-item-chevron {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.45);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.feat-item-chevron svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: currentColor;
}

details[open] .feat-item-chevron {
    transform: rotate(180deg);
}

.feat-item-body {
    padding: 0 0 0.85rem calc(1.6rem + 0.75rem);
    animation: featOpen 0.25s ease;
}

.feat-item-body p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@keyframes featOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.showcase-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.25rem;
}

.button-accent {
    color: #ffffff;
    background: var(--accent);
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 16px rgba(26, 109, 216, 0.35);
}

.button-accent:hover {
    background: var(--accent-deep);
    box-shadow: 0 6px 24px rgba(26, 109, 216, 0.5);
}

.button-accent svg {
    width: 0.95rem;
    height: 0.95rem;
    fill: currentColor;
}

.button-outline-white {
    color: rgba(255, 255, 255, 0.82);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    border-radius: var(--radius-pill);
}

.button-outline-white:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

/* ── Planning CTA Section ───────────────── */
.planning-section {
    position: relative;
}

.planning-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
    padding: 2.5rem 3rem;
    background: var(--surface-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.planning-left {
    display: grid;
    gap: 1rem;
}

.planning-left h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.15;
    color: var(--ink);
}

.planning-left h2 em {
    font-style: italic;
    color: var(--accent);
}

.planning-left p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--muted);
}

.planning-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.planning-right {
    display: grid;
    align-items: start;
}

.planning-contact-list {
    display: grid;
    gap: 0;
}

.planning-contact-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

.planning-contact-item:first-child {
    border-top: 1px solid var(--border);
}

.planning-contact-item:hover {
    color: var(--accent);
}

.planning-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: var(--radius-pill);
    background: rgba(26, 109, 216, 0.1);
    border: 1px solid rgba(26, 109, 216, 0.15);
    color: var(--accent);
}

.planning-contact-icon svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.planning-contact-text {
    display: grid;
    gap: 0.12rem;
}

.planning-contact-text strong {
    font-size: 0.92rem;
    color: var(--ink);
    font-family: "Barlow", sans-serif;
    font-weight: 700;
}

.planning-contact-text small {
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.planning-form-card {
    display: grid;
    gap: 1rem;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid rgba(16, 37, 70, 0.08);
    border-radius: 28px;
    box-shadow: var(--shadow-card);
}

.planning-form-kicker {
    display: inline-flex;
    width: fit-content;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-pill);
    background: var(--accent-light);
    color: var(--accent-deep);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.planning-form-card h3 {
    font-size: clamp(2rem, 3.1vw, 3rem);
    line-height: 0.96;
    color: var(--ink);
}

.planning-form-card > p {
    color: var(--muted);
    line-height: 1.8;
}

.planning-form {
    display: grid;
    gap: 0.9rem;
}

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

.planning-form label,
.planning-service-shell,
.planning-form .phone-field-shell {
    display: grid;
    gap: 0.35rem;
}

.planning-form label > span,
.planning-service-shell > span,
.planning-form .phone-field-shell > span,
.planning-checkbox span {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--ink);
}

.planning-form input,
.planning-form textarea,
.planning-form select,
.planning-form .phone-field-prefix {
    width: 100%;
    min-height: 3rem;
    padding: 0.82rem 0.95rem;
    border: 1px solid rgba(16, 37, 70, 0.12);
    border-radius: 18px;
    background: #f9fbff;
    font: inherit;
    font-size: 0.95rem;
    color: var(--ink);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.planning-form .phone-field {
    gap: 0.75rem;
}

.planning-form .phone-field-prefix {
    width: auto;
    padding-inline: 0.85rem;
}

.planning-form input:focus,
.planning-form textarea:focus,
.planning-form select:focus,
.planning-form .phone-field-prefix:focus-within {
    border-color: rgba(35, 104, 232, 0.5);
    box-shadow: 0 0 0 3px rgba(35, 104, 232, 0.12);
    background: #ffffff;
}

.planning-form textarea {
    min-height: 7.5rem;
    resize: vertical;
}

.planning-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.planning-service-card {
    position: relative;
    display: block;
}

.planning-service-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.planning-service-card span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4.25rem;
    padding: 0.85rem;
    border: 1px solid rgba(16, 37, 70, 0.12);
    border-radius: 18px;
    background: #f9fbff;
    color: var(--ink);
    text-align: center;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.4;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.planning-service-card:hover span {
    transform: translateY(-1px);
    border-color: rgba(35, 104, 232, 0.24);
}

.planning-service-card input:checked + span {
    background: #edf4ff;
    border-color: rgba(35, 104, 232, 0.45);
    color: var(--accent-deep);
    box-shadow: 0 8px 18px rgba(35, 104, 232, 0.12);
}

.planning-checkbox {
    margin-top: 0.1rem;
}

.planning-form .button {
    width: 100%;
    margin-top: 0.15rem;
}

/* ── Google Reviews Section ─────────────── */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.review-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(13, 31, 60, 0.06);
    display: grid;
    gap: 0.85rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(13, 31, 60, 0.12);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.review-avatar {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.review-card-meta {
    display: grid;
    gap: 0.1rem;
}

.review-card-meta strong {
    font-size: 0.9rem;
    color: var(--ink);
}

.review-card-meta small {
    font-size: 0.75rem;
    color: var(--muted);
}

.review-stars {
    display: inline-flex;
    gap: 0.2rem;
    color: var(--gold);
}

.review-stars svg {
    width: 0.9rem;
    height: 0.9rem;
    fill: currentColor;
}

.review-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text);
}

.review-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 500;
}

.review-google-badge svg {
    width: 1rem;
    height: 1rem;
}

.reviews-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.reviews-bar-score {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.reviews-bar-number {
    font-family: "Outfit", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}

.reviews-bar-detail {
    display: grid;
    gap: 0.15rem;
}

.reviews-bar-detail small {
    font-size: 0.75rem;
    color: var(--muted);
}

/* ── Google Rating Card (hero sidebar) ──── */
.google-rating-header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.2rem;
}

.google-rating-header svg {
    width: 1.4rem;
    height: 1.4rem;
    flex-shrink: 0;
}

.google-rating-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.google-rating-score {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.85rem;
}

.google-rating-number {
    font-family: "Outfit", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}

.google-rating-detail {
    display: grid;
    gap: 0.2rem;
}

.google-rating-count {
    font-size: 0.78rem;
    color: var(--muted);
}

.review-preview-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
}

.review-preview-author {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    margin-top: 0.35rem;
    display: block;
}

/* ── Scroll Reveal ──────────────────────── */
.js [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 550ms ease, transform 550ms ease;
    transition-delay: var(--delay, 0s);
}

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

/* ── Reduced Motion ─────────────────────── */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

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

/* ── Responsive: Tablet ─────────────────── */
@media (max-width: 1180px) {
    .hero-layout,
    .page-hero-grid,
    .split-panel,
    .two-column-highlight,
    .contact-layout,
    .showcase-card,
    .footer-grid,
    .site-modal-grid,
    .progress-grid,
    .promise-grid,
    .focus-grid {
        grid-template-columns: 1fr;
    }

    .statement-shell,
    .cta-band,
    .area-band {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .planning-card {
        grid-template-columns: 1fr;
        padding: 1.75rem;
    }

    .site-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: auto;
        height: auto;
        padding: calc(var(--header-height) + 2rem) 2rem 2rem;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform var(--transition);
        box-shadow: none;
        z-index: 1000;
        pointer-events: all;
    }

    .menu-toggle {
        display: inline-flex;
        position: relative;
        margin-left: auto;
        z-index: 2;
    }

    .nav-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: calc((var(--header-height) - 2.8rem) / 2);
        right: var(--page-gutter);
        width: 2.8rem;
        height: 2.8rem;
        padding: 0;
        border: 1px solid rgba(13, 31, 60, 0.14);
        border-radius: var(--radius-sm);
        background: transparent;
        color: var(--ink);
        font-size: 1.4rem;
        line-height: 1;
        cursor: pointer;
    }

    body.menu-open .site-nav {
        transform: translateX(0);
    }

    .site-nav .nav-link,
    .site-header.is-scrolled ~ .site-nav .nav-link {
        color: var(--ink);
        font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    }

    .header-phone {
        display: none;
    }
}

/* ── Responsive: Small Tablet ───────────── */
@media (max-width: 980px) {
    :root {
        --header-height: 4.5rem;
    }

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

    .hero-home {
        padding-top: calc(var(--header-height) + 2.5rem);
    }

    .statement-section {
        margin-top: 0;
    }
}

/* ── Responsive: Mobile ─────────────────── */
@media (max-width: 760px) {
    :root {
        --section-gap: 3.5rem;
    }

    .hero-meta-grid,
    .form-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-home,
    .page-hero,
    .legal-hero {
        padding-top: calc(var(--header-height) + 2rem);
    }

    .contact-form-shell,
    .request-card,
    .rating-card,
    .page-hero-card,
    .site-modal-copy,
    .site-modal-form-shell {
        padding: 1.25rem;
    }

    .slider-controls {
        inset: auto 0.65rem 0.65rem 0.65rem;
    }

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

    .header-actions {
        display: none;
    }

    .showcase-media {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }

    .feature-image img,
    .highlight-image img {
        min-height: 18rem;
    }

    .feat-accordion {
        margin-block: 0.25rem;
    }

    .showcase-card-actions {
        flex-direction: column;
    }

    .showcase-card-actions .button {
        width: 100%;
        justify-content: center;
    }

    .site-modal-grid {
        grid-template-columns: 1fr;
    }

    .site-modal-copy {
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }
}

/* Home Refresh */
:root {
    --bg: #f4f8fd;
    --surface: #ffffff;
    --surface-warm: #edf4fd;
    --ink: #102546;
    --ink-2: #173462;
    --text: #203557;
    --muted: #667892;
    --muted-light: rgba(255, 255, 255, 0.76);
    --accent: #2f76ff;
    --accent-deep: #164bb7;
    --accent-light: #d7e7ff;
    --dark: #0a1830;
    --dark-2: #102444;
    --border: rgba(16, 37, 70, 0.1);
    --border-strong: rgba(16, 37, 70, 0.2);
    --shadow: 0 24px 60px rgba(8, 18, 38, 0.12);
    --shadow-soft: 0 12px 32px rgba(8, 18, 38, 0.08);
    --shadow-card: 0 10px 26px rgba(8, 18, 38, 0.08);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --header-height: 5.75rem;
}

body {
    font-family: "Barlow", sans-serif;
}

h1,
h2,
h3,
.hero-fixed,
#typeword,
.reviews-bar-number,
.google-rating-number,
.planning-left h2,
.process-intro h2,
.cta-panel h2 {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
}

strong,
summary,
.button,
.nav-link,
.header-phone,
.hero-contact-copy strong {
    font-family: "Barlow", sans-serif;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(16, 37, 70, 0.08);
    backdrop-filter: none;
    box-shadow: 0 8px 24px rgba(8, 18, 38, 0.05);
}

.site-header.is-scrolled {
    background: #ffffff;
    border-color: rgba(16, 37, 70, 0.08);
    box-shadow: 0 10px 28px rgba(8, 18, 38, 0.08);
}

.header-shell {
    min-height: var(--header-height);
    gap: 1.35rem;
}

.brand img,
.footer-logo {
    width: clamp(10rem, 14vw, 13rem);
}

.site-nav {
    gap: clamp(1rem, 2vw, 1.8rem);
}

.nav-link {
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.header-phone {
    gap: 0.8rem;
    padding: 0;
    background: transparent;
    border: 0;
}

.header-phone strong {
    font-size: 0.9rem;
}

.header-phone small {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
}

.header-phone-icon {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: var(--radius-pill);
}

.header-cta {
    min-height: 3rem;
    padding-inline: 1.35rem;
    border-radius: var(--radius-pill);
}

body.home-page .hero-home-ref {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 4rem;
}

body.home-page .hero-home-ref::before {
    background:
        linear-gradient(115deg, rgba(5, 12, 27, 0.88), rgba(10, 25, 55, 0.82) 48%, rgba(20, 59, 131, 0.58) 100%),
        radial-gradient(circle at 78% 24%, rgba(47, 118, 255, 0.18), transparent 30%);
}

body.home-page .hero-layout-ref {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    align-items: end;
    gap: clamp(2rem, 4vw, 3.25rem);
}

body.home-page .hero-copy-ref {
    gap: 1.45rem;
    max-width: 42rem;
}

body.home-page .hero-headline-ref {
    gap: 0.12rem;
}

body.home-page .hero-fixed {
    max-width: 10ch;
    font-size: clamp(3rem, 5.4vw, 5.45rem);
    line-height: 0.95;
}

body.home-page .word-wrapper {
    height: 1em;
    margin-top: 0;
    font-size: clamp(3.1rem, 5.8vw, 5.65rem);
    line-height: 0.95;
}

body.home-page #typeword {
    font-size: inherit;
    font-weight: 600;
    color: #f5f8ff;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.92);
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

body.home-page .caret {
    display: none;
}

body.home-page .hero-text-ref {
    max-width: 35rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.02rem;
    line-height: 1.9;
}

body.home-page .hero-actions .button {
    min-height: 3.15rem;
    padding-inline: 1.7rem;
    border-radius: var(--radius-pill);
}

body.home-page .hero-meta-strip-ref {
    gap: 1.15rem;
    padding-top: 0.25rem;
}

body.home-page .hero-contact-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: rgba(255, 255, 255, 0.94);
}

body.home-page .hero-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    flex-shrink: 0;
}

body.home-page .hero-contact-icon svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

body.home-page .hero-contact-copy {
    display: grid;
    gap: 0.08rem;
}

body.home-page .hero-contact-copy small {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

body.home-page .hero-contact-copy strong {
    font-size: 0.95rem;
    color: #ffffff;
}

body.home-page .hero-sidebar-ref {
    display: grid;
    gap: 1rem;
    align-content: end;
}

body.home-page .hero-side-card {
    display: grid;
    gap: 0.95rem;
    padding: 1.35rem 1.25rem;
    border-radius: 24px;
    background: rgba(8, 18, 38, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    box-shadow: 0 24px 42px rgba(8, 18, 38, 0.22);
    backdrop-filter: blur(14px);
}

body.home-page .hero-side-google-top {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

body.home-page .hero-side-google-top .google-g {
    width: 1.35rem;
    height: 1.35rem;
    flex-shrink: 0;
}

body.home-page .hero-side-stars {
    display: inline-flex;
    gap: 0.18rem;
    color: var(--gold);
}

body.home-page .hero-side-stars svg {
    width: 0.9rem;
    height: 0.9rem;
    fill: currentColor;
}

body.home-page .hero-side-star-muted {
    opacity: 0.38;
}

body.home-page .hero-side-google-main {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-block: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.home-page .hero-side-google-number {
    font-family: "Outfit", sans-serif;
    font-size: 3rem;
    line-height: 0.9;
    color: #ffffff;
}

body.home-page .hero-side-google-copy strong {
    display: block;
    font-size: 1rem;
    color: #ffffff;
}

body.home-page .hero-side-google-copy small {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.77rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.6;
}

body.home-page .hero-side-quote {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.94rem;
    line-height: 1.75;
}

body.home-page .hero-side-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 700;
}

body.home-page .hero-side-link svg {
    width: 0.95rem;
    height: 0.95rem;
    fill: currentColor;
}

body.home-page .hero-side-kicker {
    display: inline-flex;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

body.home-page .hero-side-card-request h2 {
    font-size: clamp(1.9rem, 2.4vw, 2.45rem);
    line-height: 0.95;
    text-align: center;
}

body.home-page .hero-side-card-request p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.93rem;
    line-height: 1.75;
    text-align: center;
}

body.home-page .hero-side-divider {
    width: 30%;
    height: 3px;
    margin-inline: auto;
    border-radius: var(--radius-pill);
    background: rgba(88, 172, 255, 0.8);
}

body.home-page .hero-side-question {
    text-align: center;
    font-size: 0.84rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

body.home-page .hero-side-options {
    display: grid;
    gap: 0.65rem;
}

body.home-page .hero-side-options-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.home-page .hero-side-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    min-height: 4.25rem;
    padding: 0.85rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    cursor: pointer;
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

body.home-page .hero-side-option:hover,
body.home-page .hero-side-option:focus-visible {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
}

body.home-page .hero-side-cta {
    width: 100%;
    margin-top: 0.15rem;
}

body.home-page .statement-section {
    margin-top: -2.2rem;
}

body.home-page .statement-shell {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: 2rem;
    padding: 2rem 2.2rem;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(10, 24, 50, 0.99), rgba(14, 42, 95, 0.99)),
        radial-gradient(circle at top right, rgba(47, 118, 255, 0.16), transparent 28%);
    box-shadow: 0 24px 48px rgba(8, 18, 38, 0.14);
}

body.home-page .statement-copy h2 {
    font-size: clamp(2rem, 3.3vw, 3rem);
    line-height: 1;
}

body.home-page .statement-copy p {
    color: rgba(255, 255, 255, 0.76);
}

body.home-page .statement-actions .button {
    border-radius: var(--radius-pill);
}

body.home-page .statement-actions .button-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.32);
}

body.home-page .statement-actions .button-secondary:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

body.home-page .statement-quote {
    display: grid;
    gap: 0.95rem;
    align-content: start;
    padding: 1.5rem 1.55rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

body.home-page .statement-quote-icon {
    display: inline-flex;
    color: var(--accent-light);
}

body.home-page .statement-quote-icon svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: currentColor;
}

body.home-page .statement-quote p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.96rem;
    line-height: 1.85;
}

body.home-page .statement-quote strong {
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
}

body.home-page .section-heading-split {
    max-width: 58rem;
}

body.home-page .showcase-grid {
    gap: 2rem;
}

body.home-page .showcase-card {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 0;
    padding: 1.05rem;
    border-radius: 30px;
    background:
        linear-gradient(150deg, rgba(10, 22, 45, 0.99), rgba(15, 40, 82, 0.99) 68%, rgba(20, 59, 131, 0.95)),
        radial-gradient(circle at top right, rgba(47, 118, 255, 0.2), transparent 32%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 52px rgba(8, 18, 38, 0.14);
}

body.home-page .showcase-card.is-reverse {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

body.home-page .showcase-card.is-reverse .showcase-copy {
    order: 2;
}

body.home-page .showcase-card.is-reverse .showcase-media {
    order: 1;
}

body.home-page .showcase-media {
    aspect-ratio: 5 / 4;
    border-radius: 24px;
}

body.home-page .showcase-copy {
    gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2.35rem);
}

body.home-page .showcase-room {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

body.home-page .showcase-copy h3 {
    font-size: clamp(2.1rem, 3.2vw, 3.15rem);
    line-height: 0.98;
}

body.home-page .showcase-copy > p {
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.96rem;
}

body.home-page .showcase-feature-list {
    display: grid;
    gap: 0;
}

body.home-page .showcase-feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
    padding: 0.95rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.home-page .showcase-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-light);
}

body.home-page .showcase-feature-icon svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

body.home-page .showcase-feature-copy strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.94rem;
    color: #ffffff;
}

body.home-page .showcase-feature-copy p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.87rem;
    line-height: 1.7;
}

body.home-page .showcase-card-actions {
    gap: 0.75rem;
}

body.home-page .showcase-card-actions .button {
    border-radius: var(--radius-pill);
}

body.home-page .slider-controls {
    inset: 0;
    padding-inline: 1rem;
    justify-content: flex-end;
    align-items: center;
}

body.home-page .slider-dots {
    display: none;
}

body.home-page .slider-arrows {
    width: 100%;
    justify-content: space-between;
}

body.home-page .slider-arrow {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
    background: rgba(8, 18, 38, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

body.home-page .slider-arrow:hover {
    background: rgba(22, 75, 183, 0.88);
}

body.home-page .focus-grid {
    gap: 1.45rem;
}

body.home-page .focus-card {
    padding: 2.1rem 1.8rem;
    border-radius: 26px;
    box-shadow: var(--shadow-card);
}

body.home-page .focus-card.is-featured {
    border-color: rgba(47, 118, 255, 0.18);
    background: linear-gradient(180deg, #ffffff, #f0f6ff);
}

body.home-page .usage-grid {
    gap: 1.35rem;
}

body.home-page .usage-card {
    min-height: 24rem;
    border-radius: 28px;
}

body.home-page .usage-card-copy {
    min-height: 24rem;
    padding: 1.55rem;
}

body.home-page .focus-count {
    padding: 0.35rem 0.7rem;
    border-radius: var(--radius-pill);
    background: var(--accent-light);
    color: var(--accent-deep);
}

body.home-page .process-section {
    background: #ffffff;
}

body.home-page .process-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 2rem;
    align-items: end;
    margin-bottom: 2rem;
}

body.home-page .process-intro h2 {
    font-size: clamp(2.4rem, 4vw, 4.4rem);
    line-height: 0.96;
}

body.home-page .process-intro p {
    max-width: 33rem;
    color: var(--muted);
    line-height: 1.9;
}

body.home-page .process-grid {
    gap: 1.2rem;
    margin-bottom: 2.2rem;
}

body.home-page .process-card {
    padding: 1.85rem 1.5rem 1.55rem;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
}

body.home-page .process-number {
    width: auto;
    height: auto;
    margin-bottom: 1.1rem;
    justify-content: flex-start;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    color: var(--accent);
    font-family: "Outfit", sans-serif;
    font-size: 2.2rem;
    line-height: 1;
}

body.home-page .process-card h3 {
    margin-bottom: 0.3rem;
}

body.home-page .process-card p {
    font-size: 0.92rem;
    line-height: 1.75;
}

body.home-page .process-faq-shell {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 2rem;
    align-items: start;
    padding: 2rem 2.2rem;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: var(--surface-warm);
    box-shadow: var(--shadow-soft);
}

body.home-page .process-faq-copy {
    display: grid;
    gap: 0.85rem;
}

body.home-page .process-faq-copy h3 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 0.98;
}

body.home-page .process-faq-copy p {
    color: var(--muted);
    line-height: 1.8;
}

body.home-page .process-faq-copy .button {
    width: fit-content;
    border-radius: var(--radius-pill);
}

body.home-page .process-faq-list {
    max-width: none;
    padding-inline: 1.35rem;
    background: #ffffff;
    border: 1px solid rgba(16, 37, 70, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
}

body.home-page .process-faq-list details:last-child {
    border-bottom: 0;
}

body.home-page .process-faq-list summary {
    font-size: 1rem;
}

body.home-page .process-faq-list p {
    color: var(--muted);
}

body.home-page .area-band {
    padding: 1.8rem 2rem;
    border-radius: 28px;
    background: linear-gradient(180deg, #edf4ff, #e7f0fb);
    border-color: rgba(47, 118, 255, 0.12);
    box-shadow: var(--shadow-soft);
}

body.home-page .tag-list span {
    border-radius: var(--radius-pill);
    background: #ffffff;
    border-color: rgba(47, 118, 255, 0.12);
    color: var(--accent-deep);
}

body.home-page .planning-card {
    padding: 2.2rem 2.45rem;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: var(--shadow);
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

body.home-page .planning-left h2 {
    font-size: clamp(2.35rem, 3.8vw, 3.8rem);
    line-height: 0.98;
}

body.home-page .planning-left h2 em {
    color: var(--accent-deep);
    font-style: normal;
}

body.home-page .planning-actions .button {
    border-radius: var(--radius-pill);
}

body.home-page .planning-form-card {
    padding: 2rem;
    border-radius: 30px;
    background:
        linear-gradient(180deg, #ffffff, #f8fbff);
}

body.home-page .planning-form-card h3 {
    font-size: clamp(2.1rem, 3.2vw, 3.2rem);
}

body.home-page .planning-service-grid {
    gap: 0.65rem;
}

body.home-page .planning-service-card span {
    min-height: 4rem;
}

body.home-page .planning-form .button {
    min-height: 3.2rem;
}

body.home-page .cta-panel {
    display: grid;
    gap: 1rem;
    justify-items: center;
    text-align: center;
}

body.home-page .cta-panel h2 {
    max-width: 12ch;
    font-size: clamp(2.45rem, 4vw, 4.1rem);
    line-height: 0.97;
    color: #ffffff;
}

body.home-page .cta-panel p {
    max-width: 33rem;
    color: rgba(255, 255, 255, 0.72);
}

body.home-page .cta-panel-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

body.home-page .cta-panel-actions .button {
    border-radius: var(--radius-pill);
}

body.home-page .cta-panel-actions .button-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.32);
}

body.home-page .cta-panel-actions .button-secondary:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1180px) {
    body.home-page .hero-layout-ref,
    body.home-page .statement-shell,
    body.home-page .showcase-card,
    body.home-page .showcase-card.is-reverse,
    body.home-page .process-intro,
    body.home-page .process-faq-shell,
    .usage-grid {
        grid-template-columns: 1fr;
    }

    body.home-page .showcase-card.is-reverse .showcase-copy,
    body.home-page .showcase-card.is-reverse .showcase-media {
        order: initial;
    }

    body.home-page .hero-sidebar-ref {
        max-width: 34rem;
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 5rem;
    }

    body.home-page .hero-home-ref {
        padding-top: calc(var(--header-height) + 1.8rem);
    }

    body.home-page .hero-actions,
    body.home-page .statement-actions,
    body.home-page .cta-panel-actions {
        flex-direction: column;
        align-items: stretch;
    }

    body.home-page .hero-actions .button,
    body.home-page .statement-actions .button,
    body.home-page .cta-panel-actions .button,
    body.home-page .hero-side-cta,
    body.home-page .process-faq-copy .button {
        width: 100%;
    }

    body.home-page .hero-contact-inline {
        width: 100%;
    }

    body.home-page .hero-side-card,
    body.home-page .statement-shell,
    body.home-page .process-faq-shell,
    body.home-page .planning-card,
    body.home-page .area-band {
        padding: 1.3rem;
        border-radius: 22px;
    }

    body.home-page .hero-side-options-grid,
    .planning-service-grid,
    .planning-form-grid {
        grid-template-columns: 1fr;
    }

    .phone-field {
        grid-template-columns: 1fr;
    }

    .usage-card,
    body.home-page .usage-card {
        min-height: 20rem;
    }

    .usage-card-copy,
    body.home-page .usage-card-copy {
        min-height: 20rem;
    }

    body.home-page .slider-controls {
        padding-inline: 0.65rem;
    }

    body.home-page .slider-arrow {
        width: 2.65rem;
        height: 2.65rem;
    }
}
