/* =========================================
   Sjællands Vinduesservice. Styles
   ========================================= */

:root {
    --brand: #0a3d62;
    --brand-dark: #062845;
    --brand-light: #1e5a8a;
    --accent: #1a7c5e;
    --accent-dark: #135f47;
    --accent-light: #7ed4a5;
    --ink: #0f1e2e;
    --ink-soft: #3b4a5c;
    --muted: #6b7888;
    --line: #e3e8ef;
    --bg: #ffffff;
    --bg-soft: #f6f9fc;
    --bg-dark: #0a2540;
    --success: #2ecc71;
    --radius: 12px;
    --radius-lg: 18px;
    --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06);
    --shadow: 0 8px 24px rgba(10, 37, 64, 0.08);
    --shadow-lg: 0 20px 50px rgba(10, 37, 64, 0.15);
    --container: 1200px;
    --t: 0.2s ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
    margin: 0 0 .6em;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: -0.01em; }
h4 { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 700; }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--brand); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--accent); }

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

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.hl {
    color: var(--brand);
    position: relative;
    white-space: nowrap;
}
.hl::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0.05em;
    height: 0.3em;
    background: rgba(26, 124, 94, 0.3);
    z-index: -1;
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand);
    margin-bottom: 1rem;
}
.eyebrow--light { color: var(--accent-light); }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--brand);
    color: #fff;
    padding: 12px 16px;
    z-index: 1000;
}
.skip-link:focus { left: 0; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 14px 26px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--t);
    text-align: center;
    white-space: nowrap;
    font-family: inherit;
}
.btn--primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 6px 18px rgba(26, 124, 94, 0.35);
}
.btn--primary:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(26, 124, 94, 0.45);
}
.btn--ghost {
    background: transparent;
    color: var(--brand);
    border-color: var(--brand);
}
.btn--ghost:hover {
    background: var(--brand);
    color: #fff;
}
.btn--sm { padding: 10px 18px; font-size: 0.92rem; }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

/* Topbar */
.topbar {
    background: var(--brand-dark);
    color: #fff;
    font-size: 0.85rem;
    padding: 8px 0;
}
.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.topbar__item { display: inline-flex; align-items: center; gap: 6px; opacity: 0.95; }
.topbar__item a { color: #fff; }
.topbar__item a:hover { color: var(--accent-light); }
.topbar__item--phone strong { color: var(--accent-light); }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    z-index: 100;
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 24px;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--brand);
    font-family: 'Inter', sans-serif;
}
.logo__mark { color: var(--brand); display: flex; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__text strong { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em; color: var(--brand); }
.logo__text span { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.logo--light, .logo--light .logo__text strong { color: #fff; }
.logo--light .logo__mark { color: var(--accent-light); }
.logo--light .logo__text span { color: rgba(255,255,255,0.7); }

.site-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 28px;
}
.site-nav a {
    color: var(--ink);
    font-weight: 500;
    font-size: 0.95rem;
}
.site-nav a:hover { color: var(--brand); }

.header__cta { margin-left: auto; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
}
.nav-toggle span {
    height: 2.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: var(--t);
}

/* Hero */
.hero {
    padding: 80px 0 100px;
    background:
        radial-gradient(ellipse at top right, rgba(30, 90, 138, 0.08), transparent 60%),
        linear-gradient(180deg, #fbfcfe 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 124, 94, 0.08), transparent 70%);
    z-index: 0;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
}
.hero__content { padding-top: 12px; }
.hero h1 {
    margin-bottom: 0.5em;
}
.hero__lede {
    font-size: 1.15rem;
    color: var(--ink-soft);
    max-width: 580px;
    margin-bottom: 2em;
}
.hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 2em;
}
.hero__trust {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    color: var(--ink-soft);
    font-size: 0.95rem;
    font-weight: 500;
}
.hero__trust li { display: inline-flex; align-items: center; gap: 6px; }
.hero__trust span { color: var(--success); font-weight: 700; }

.hero__card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    position: relative;
}
.hero__card h2 {
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.4em;
}
.hero__card p { font-size: 0.95rem; }

.badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.quick-form, .big-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.quick-form label, .big-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
}
input, select, textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-size: 0.97rem;
    font-family: inherit;
    color: var(--ink);
    background: #fff;
    transition: border-color var(--t), box-shadow var(--t);
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(10, 61, 98, 0.15);
}
textarea { resize: vertical; min-height: 80px; }

.form-fineprint {
    font-size: 0.78rem;
    color: var(--muted);
    margin: 0;
    text-align: center;
}

.hero__subhead {
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 0.6em;
    font-weight: 500;
}
.hero__focus {
    background: rgba(26, 124, 94, 0.08);
    border-left: 3px solid var(--accent);
    padding: 12px 16px;
    border-radius: 6px;
    margin: 0 0 2em;
    font-size: 0.97rem;
    color: var(--ink-soft);
}

/* Trust strip */
.trust-strip {
    background: var(--brand);
    color: #fff;
    padding: 32px 0;
}
.trust-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 6px;
}
.stat span { font-size: 0.9rem; opacity: 0.92; }

/* Sections */
.section {
    padding: 90px 0;
}
.section--alt { background: var(--bg-soft); }
.section--dark {
    background: var(--bg-dark);
    color: #fff;
}
.section--dark h2,
.section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.85); }
.section--dark .section__lede { color: rgba(255,255,255,0.85); }

.section__head {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}
.section__head--left { text-align: left; margin-left: 0; margin-right: 0; max-width: 720px; }
.section__head--center { text-align: center; }
.section__lede { font-size: 1.1rem; color: var(--ink-soft); }

/* Before / After slider */
.ba-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}
.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    user-select: none;
    background: var(--bg-soft);
}
.ba-slider__img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.ba-slider__img--before {
    clip-path: inset(0 50% 0 0);
}
.ba-slider__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ba-label {
    position: absolute;
    top: 16px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 2;
}
.ba-label--before {
    left: 16px;
    background: rgba(90, 74, 50, 0.95);
    color: #fff;
}
.ba-label--after {
    right: 16px;
    background: var(--accent);
    color: #fff;
}
.ba-slider__range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    cursor: ew-resize;
    z-index: 3;
    opacity: 0;
}
.ba-slider__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 50px;
    height: 100%;
    cursor: ew-resize;
}
.ba-slider__range::-moz-range-thumb {
    width: 50px;
    height: 100%;
    cursor: ew-resize;
    border: none;
    background: transparent;
}
.ba-slider__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(10, 37, 64, 0.25);
    z-index: 2;
    pointer-events: none;
    transform: translateX(-50%);
}
.ba-slider__handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 14px rgba(10, 37, 64, 0.35);
}
.ba-slider__handle svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--brand);
    z-index: 1;
}
.ba-copy h3 { font-size: 1.5rem; }
.checks--compact li { padding: 8px 0 8px 32px; font-size: 0.95rem; }
.checks--compact li::before { top: 8px; width: 20px; height: 20px; font-size: 0.7rem; }
.ba-note {
    text-align: center;
    color: var(--muted);
    margin-top: 30px;
    font-size: 0.92rem;
}

/* USPs grid */
.usps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.usp {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    position: relative;
    transition: var(--t);
}
.usp:hover {
    border-color: var(--brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.usp__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--success);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 14px;
}
.usp h3 {
    font-size: 1.08rem;
    margin-bottom: 0.4em;
}
.usp p {
    font-size: 0.93rem;
    margin: 0;
    color: var(--ink-soft);
}

/* Service bullets */
.service-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}
.service-bullets li {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px 18px 14px 44px;
    position: relative;
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--ink);
}
.service-bullets li::before {
    content: '✓';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
}

/* Om os */
.om {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}
.om__lede {
    font-size: 1.15rem;
    color: var(--ink-soft);
    margin-bottom: 1.2em;
}
.om__card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow);
    text-align: center;
}
.om__avatar {
    margin: 0 auto 18px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}
.om__card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.2em;
}
.om__role {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.2em;
}
.om__bio {
    font-size: 0.95rem;
    text-align: left;
}
.om__contact {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
}
.om__contact li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.95rem;
}
.om__contact-label {
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cta__email { font-size: 0.95rem; opacity: 0.9; display: inline-block; margin-top: 6px; }
.cta__email a { color: rgba(255,255,255,0.95); text-decoration: underline; }
.cta__email a:hover { color: var(--accent-light); }

.footer-contact { margin: 0 0 12px; color: rgba(255,255,255,0.92) !important; }
.footer-role {
    display: block;
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.85rem;
    margin-top: 2px;
}

/* Service cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--brand);
}
.card__icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(10, 61, 98, 0.08);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.card h3 { margin-bottom: 0.5em; }
.card p { font-size: 0.97rem; }
.card__list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    font-size: 0.92rem;
}
.card__list li {
    padding: 6px 0 6px 22px;
    position: relative;
    color: var(--ink-soft);
}
.card__list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    position: absolute;
    left: 0;
}

/* Calculator */
.calc {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow);
}
.calc__form { margin-top: 8px; }
.calc__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.field__label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
}
.field--check {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    background: var(--bg-soft);
    padding: 12px 14px;
    border-radius: 10px;
}
.field--check input { width: auto; }
.field--check .field__label { font-weight: 500; font-size: 0.95rem; }

.calc__result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
    color: #fff;
    border-radius: var(--radius);
    padding: 28px 32px;
    flex-wrap: wrap;
}
.calc__result-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.85;
    margin-bottom: 4px;
}
.calc__price {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--accent-light);
    line-height: 1;
    display: block;
    margin: 4px 0;
}
.calc__hint {
    display: block;
    font-size: 0.82rem;
    opacity: 0.8;
    margin-top: 4px;
}
.calc__note {
    margin-top: 24px;
    padding: 18px 22px;
    background: rgba(26, 124, 94, 0.1);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    font-size: 0.95rem;
}

/* Steps */
.steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    counter-reset: step;
}
.step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    position: relative;
}
.step__num {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: var(--accent);
    line-height: 1;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
    opacity: 0.7;
}
.step h3 { margin-bottom: 0.4em; }
.step p { font-size: 0.95rem; margin: 0; }

/* Testimonials / Reviews */
.reviews-meta {
    text-align: center;
    margin-bottom: 40px;
}
.reviews-meta p { color: rgba(255,255,255,0.95); margin: 0; }
.stars {
    color: var(--accent-light);
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.quotes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}
.quote {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin: 0;
    backdrop-filter: blur(6px);
}
.quote blockquote {
    margin: 0 0 16px;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.95);
}
.quote blockquote p { color: inherit; margin: 0; }
.quote blockquote::before {
    content: '"';
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--accent-light);
    line-height: 0.5;
    margin-bottom: 14px;
    opacity: 0.7;
}
.quote figcaption {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 14px;
    font-size: 0.88rem;
}
.quote figcaption strong { display: block; color: #fff; font-size: 0.98rem; margin-bottom: 2px; }
.quote figcaption span { color: rgba(255,255,255,0.65); }

/* Why us */
.why {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}
.checks {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}
.checks li {
    padding: 12px 0 12px 36px;
    position: relative;
    border-bottom: 1px solid var(--line);
    font-size: 0.98rem;
    color: var(--ink-soft);
}
.checks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 11px;
    width: 24px;
    height: 24px;
    background: var(--success);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
}
.checks li strong { color: var(--ink); }
.checks li:last-child { border-bottom: none; }

.why__visual {
    position: relative;
    height: 420px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.why__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent 0 78px, rgba(255,255,255,0.08) 78px 80px),
        repeating-linear-gradient(90deg, transparent 0 78px, rgba(255,255,255,0.08) 78px 80px);
}
.why__badge {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 22px 28px;
    box-shadow: var(--shadow-lg);
    top: 50px;
    left: 50px;
    text-align: center;
}
.why__badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--brand);
    line-height: 1;
}
.why__badge span {
    font-size: 0.82rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.why__badge--alt {
    top: auto;
    bottom: 60px;
    left: auto;
    right: 50px;
    background: var(--accent);
}
.why__badge--alt strong, .why__badge--alt span { color: #fff; }
.why__badge--alt2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Areas */
.areas__list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}
.areas__list li {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px 18px;
    text-align: center;
    font-weight: 500;
    color: var(--ink);
    transition: var(--t);
}
.areas__list li:hover {
    border-color: var(--brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.areas__note { text-align: center; color: var(--muted); font-size: 0.95rem; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--t);
}
.faq__item[open] {
    border-color: var(--brand);
    box-shadow: var(--shadow-sm);
}
.faq__item summary {
    padding: 20px 26px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ink);
    list-style: none;
    position: relative;
    padding-right: 50px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: '+';
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--bg-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--brand);
    transition: var(--t);
}
.faq__item[open] summary::after {
    content: '−';
    background: var(--brand);
    color: #fff;
}
.faq__item p {
    padding: 0 26px 22px;
    margin: 0;
    color: var(--ink-soft);
}

/* Final CTA */
.cta {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 60%, var(--brand-light) 100%);
    color: #fff;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 124, 94, 0.18), transparent 70%);
}
.cta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}
.cta__content h2 { color: #fff; }
.cta__content p { color: rgba(255,255,255,0.92); font-size: 1.08rem; }
.cta__bullets {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    font-size: 1rem;
}
.cta__bullets li {
    padding: 8px 0;
    color: rgba(255,255,255,0.95);
}
.cta__phone {
    margin-top: 24px;
    font-size: 1.1rem;
}
.cta__phone a { color: var(--accent-light); font-size: 1.3rem; }
.cta__phone a strong { font-weight: 700; }

.big-form {
    background: #fff;
    color: var(--ink);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}
.big-form h3 { margin-bottom: 1em; }
.big-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.big-form .span-2 { grid-column: span 2; }
.check {
    display: flex !important;
    align-items: flex-start;
    flex-direction: row !important;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--ink-soft);
}
.check input { width: auto; margin-top: 3px; }

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.85);
    padding: 70px 0 0;
}
.site-footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}
.site-footer p { color: rgba(255,255,255,0.7); font-size: 0.93rem; }
.site-footer h4 {
    color: var(--accent-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.93rem;
}
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: var(--accent-light); }
.site-footer address {
    font-style: normal;
    font-size: 0.93rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}
.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    font-size: 0.85rem;
}
.site-footer__bottom .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.site-footer__bottom p { margin: 0; }

/* Sticky mobile CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: #fff;
    padding: 12px;
    gap: 10px;
    box-shadow: 0 -8px 20px rgba(0,0,0,0.1);
}
.sticky-cta .btn { flex: 1; padding: 14px; }

/* Responsive */
@media (max-width: 980px) {
    .hero { padding: 60px 0 70px; }
    .hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .ba-grid { grid-template-columns: 1fr; gap: 36px; }
    .om { grid-template-columns: 1fr; gap: 36px; }
    .why { grid-template-columns: 1fr; gap: 40px; }
    .why__visual { height: 280px; }
    .cta__inner { grid-template-columns: 1fr; gap: 40px; }
    .calc__row { grid-template-columns: repeat(2, 1fr); }
    .trust-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .site-footer__inner { grid-template-columns: 1fr 1fr; }
    .site-nav { display: none; }
    .nav-toggle { display: flex; }
    .header__cta { display: none; }
    .topbar__item:first-child { display: none; }
    .sticky-cta { display: flex; }
    body { padding-bottom: 80px; }
}

@media (max-width: 600px) {
    .section { padding: 60px 0; }
    .calc { padding: 28px 20px; }
    .calc__row { grid-template-columns: 1fr; gap: 16px; }
    .calc__result { flex-direction: column; align-items: flex-start; padding: 22px; }
    .calc__price { font-size: 2rem; }
    .big-form { padding: 24px; }
    .big-form__grid { grid-template-columns: 1fr; }
    .big-form .span-2 { grid-column: auto; }
    .site-footer__inner { grid-template-columns: 1fr; gap: 32px; }
    .site-footer__bottom .container { flex-direction: column; text-align: center; }
    .hero__cta .btn { flex: 1; }
    .stat strong { font-size: 1.8rem; }
}

/* Reveal animation */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.is-visible {
        opacity: 1;
        transform: none;
    }
}
