/* Manisa Servisi — açık tema, teal vurgu */
:root {
    --bg: #f0f3f7;
    --bg-elevated: #ffffff;
    --surface: #e6eaf0;
    --text: #121826;
    --muted: #5a6573;
    --accent: #0d9488;
    --accent-hover: #0f766e;
    --accent-soft: rgba(13, 148, 136, 0.12);
    --accent-muted: rgba(13, 148, 136, 0.18);
    --accent-strong: #0f766e;
    --border: rgba(18, 24, 38, 0.09);
    --border-strong: rgba(13, 148, 136, 0.28);
    --radius: 14px;
    --radius-sm: 10px;
    /* İşletme yorumları şeridi dahil tüm arayüz — Google Fonts ile header’da yüklenir */
    --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --shadow: 0 4px 24px rgba(18, 24, 38, 0.07);
    --shadow-lg: 0 20px 50px rgba(18, 24, 38, 0.1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font);
}

button,
input,
select,
textarea,
optgroup {
    font-family: inherit;
}

::placeholder {
    font-family: inherit;
}

code,
kbd,
pre,
samp {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

::selection {
    background: rgba(13, 148, 136, 0.22);
    color: var(--text);
}

.legal-note {
    margin-top: 1.25rem;
    padding: 1rem 1.1rem;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--muted);
}

.legal-note p {
    margin: 0;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.62;
    color: var(--text);
    background:
        radial-gradient(1000px 520px at 8% -8%, rgba(13, 148, 136, 0.09), transparent),
        radial-gradient(800px 420px at 96% 4%, rgba(15, 118, 110, 0.05), transparent),
        linear-gradient(180deg, #f7f9fc 0%, var(--bg) 45%, #eef2f7 100%);
}

#main {
    flex: 1 0 auto;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.wrap {
    width: min(1120px, calc(100% - 2rem));
    margin-inline: auto;
}

.wrap.narrow {
    max-width: min(1120px, calc(100% - 2rem));
}

/**
 * Ana içerik (header/footer hariç) — kaydırmalı yorumlar ile aynı sütun genişliği
 */
.site-content-max {
    box-sizing: border-box;
    width: min(1200px, calc(100% - 1rem));
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 0.85rem 0;
    flex-wrap: wrap;
    min-height: 3rem;
}

.logo {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

.logo__sep {
    color: var(--muted);
    font-weight: 500;
}

.logo__tag {
    font-weight: 600;
    color: var(--accent-strong);
}

.logo:hover {
    text-decoration: none;
}

.logo:hover .logo__city {
    color: var(--accent-strong);
}

.logo:hover .logo__tag {
    color: var(--accent);
}

.section {
    padding: 3rem 0;
}

.section--alt {
    background: rgba(255, 255, 255, 0.65);
    border-block: 1px solid var(--border);
}

/* Servis bilgi tabloları (Manisa) */
.service-info {
    padding: 2.75rem 0;
}

.service-info__inner {
    padding-inline: 0;
}

.service-info__title {
    margin: 0 0 1.5rem;
    font-size: clamp(1.2rem, 3vw, 1.45rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--text);
    line-height: 1.35;
}

.service-info__title-icon {
    margin-right: 0.2em;
}

.service-info__tables {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-info-table th,
.service-info-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--border);
}

.service-info-table tr:last-child th,
.service-info-table tr:last-child td {
    border-bottom: none;
}

.service-info-table th {
    width: 38%;
    min-width: 10rem;
    font-weight: 600;
    color: var(--text);
    background: rgba(13, 148, 136, 0.06);
}

.service-info-table td {
    color: var(--muted);
}

.service-info__cell-ico {
    margin-right: 0.35em;
}

.service-info__muted {
    color: var(--muted);
    font-size: 0.88em;
}

.service-info__tel {
    font-weight: 600;
    color: var(--accent-strong);
}

.service-info__tel:hover {
    color: var(--accent);
}

.service-info__subtitle {
    margin: 0.25rem 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
}

.service-info__notice {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(217, 119, 6, 0.28);
    background: rgba(254, 243, 199, 0.45);
}

.service-info__notice-q {
    margin: 0 0 0.5rem;
    font-weight: 700;
    color: #92400e;
    font-size: 0.95rem;
}

.service-info__notice-a {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #78350f;
}

.service-info__updated {
    margin: 0;
    font-size: 0.82rem;
    color: var(--muted);
}

.service-info__districts-heading,
.service-info__hours-heading {
    margin: 0 0 0.85rem;
    font-size: clamp(1.08rem, 2.6vw, 1.28rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--text);
    line-height: 1.35;
    scroll-margin-top: 5rem;
}

.service-info__districts-heading .service-info__title-icon {
    margin-right: 0.2em;
}

.service-info__districts .district-grid {
    margin-top: 0.35rem;
}

/* Markalar: satır içi yanyana, tıklanabilir; 3 satırdan sonra dikey kaydırma */
.service-info__brands-scroll {
    --si-brand-chip-h: calc(0.45rem * 2 + 1.15rem + 2px); /* .service-info__brand-chip satır yüksekliği */
    --si-brand-gap: 0.45rem; /* .service-info__brands-rail gap ile aynı */
    margin-top: 0.5rem;
    /* scroll padding + rail dikey padding + 3 satır + satırlar arası 2 gap */
    max-height: calc(
        0.4rem * 2 + 0.15rem + 0.35rem + 3 * var(--si-brand-chip-h) + 2 * var(--si-brand-gap)
    );
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #94a3b8 var(--bg-elevated);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    padding: 0.4rem 0.35rem;
}

.service-info__brands-scroll::-webkit-scrollbar {
    width: 10px;
    height: 0;
}

.service-info__brands-scroll::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 6px;
    border: 2px solid var(--bg-elevated);
}

.service-info__brands-scroll::-webkit-scrollbar-track {
    background: var(--bg-elevated);
    border-radius: 6px;
}

.service-info__brands-rail {
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    gap: 0.45rem;
    list-style: none;
    margin: 0;
    padding: 0.15rem 0.25rem 0.35rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.service-info__brands-rail-item {
    flex: 0 0 auto;
}

.service-info__brand-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.65rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg, #fff);
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.service-info__brand-chip:hover {
    border-color: #0d9488;
    background: rgba(13, 148, 136, 0.08);
    color: var(--text);
    text-decoration: none;
}

.service-info__brand-chip:focus-visible {
    outline: 2px solid #0d9488;
    outline-offset: 2px;
}

.service-info__brand-chip-ico {
    display: flex;
    flex-shrink: 0;
    color: #0d9488;
}

.service-info__brand-chip-ico svg {
    display: block;
}

.service-info__brand-empty {
    margin: 0.5rem 0 0;
}

@media (max-width: 640px) {
    .service-info-table th,
    .service-info-table td {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .service-info-table th {
        padding-bottom: 0.25rem;
        border-bottom: none;
    }

    .service-info-table td {
        padding-top: 0;
        padding-bottom: 0.85rem;
        border-bottom: 1px solid var(--border);
    }

    .service-info-table tr:last-child td {
        border-bottom: none;
    }
}

/* Servis politikaları — 4’lü ikonlu kartlar */
.policy-section__inner {
    padding-inline: 0;
}

.policy-section__title {
    margin: 0 0 1.75rem;
    font-size: clamp(1.25rem, 3vw, 1.55rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--text);
}

.policy-section__title-icon {
    margin-right: 0.2em;
}

.policy-section__lead {
    margin: -0.5rem 0 1.5rem;
    max-width: 52rem;
    margin-inline: auto;
    padding: 0 0.25rem;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--muted);
    text-align: center;
}

.policy-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.15rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .policy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .policy-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

.policy-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.25rem 1.2rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.policy-card__icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-strong);
    flex-shrink: 0;
}

.policy-card__icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

.policy-card__heading {
    margin: 0 0 0.65rem;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}

.policy-card__text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--muted);
}

.district-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.district-grid--small {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.district-card__ico {
    flex-shrink: 0;
    font-size: 1.05rem;
    line-height: 1;
}

.district-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0.9rem 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    transition: border-color 0.15s, transform 0.12s;
}

.district-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    text-decoration: none;
}

.district-card__name {
    font-weight: 600;
}

.district-card__arrow {
    color: var(--muted);
}

.district-card--small {
    padding: 0.6rem 0.85rem;
    font-size: 0.92rem;
}

.tag-cloud {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud--compact .tag {
    font-size: 0.85rem;
    padding: 0.35rem 0.65rem;
}

.tag {
    display: inline-block;
    padding: 0.45rem 0.75rem;
    background: var(--surface);
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--muted);
    border: 1px solid var(--border);
}

.tag--more {
    opacity: 0.85;
}

.brand-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.brand-pill {
    padding: 0.5rem 0.65rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--muted);
    text-align: center;
}

.cta-strip {
    padding: 2.5rem 0;
    background: linear-gradient(125deg, rgba(13, 148, 136, 0.1) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(230, 234, 240, 0.8) 100%);
    border-block: 1px solid var(--border);
}

.cta-strip__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.cta-strip__title {
    margin: 0 0 0.35rem;
    font-size: 1.25rem;
}

.muted {
    color: var(--muted);
    margin: 0;
}

/* Müşteri yorumları — kaydırmalı şerit (footer üstü) */
.reviews-strip {
    font-family: var(--font);
    padding: 2rem 0 1.5rem;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, var(--bg) 100%);
}

.reviews-strip__head-wrap {
    padding-inline: 0;
}

/** Yorum şeridi dış sarmalayıcı — genişlik .site-content-max ile */

.reviews-strip__head {
    box-sizing: border-box;
    width: 100%;
    max-width: min(40rem, 90%);
    margin-inline: auto;
    margin-bottom: 1.25rem;
    padding-inline: 0;
    text-align: center;
}

.reviews-strip__title {
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.65rem;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    line-height: 1.35;
    max-width: 100%;
}

.reviews-strip__title-google {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
}

.reviews-strip__title-google .google-g-logo {
    width: 1.35rem;
    height: 1.35rem;
    display: block;
}

.reviews-strip__title-text {
    text-align: center;
}

.google-g-logo {
    flex-shrink: 0;
    vertical-align: middle;
}

.reviews-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.reviews-marquee__slider {
    display: flex;
    width: max-content;
    will-change: transform;
    /* JS: --marquee-distance = scrollWidth/2 (px) — kesintisiz sonsuz döngü */
    --marquee-distance: 50%;
    animation: reviews-marquee-scroll 260s linear infinite;
}

.reviews-marquee__group {
    display: flex;
    flex-shrink: 0;
    gap: 1rem;
    padding-inline: 0.5rem;
}

@keyframes reviews-marquee-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(calc(-1 * var(--marquee-distance)), 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reviews-marquee__slider {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 1200px;
        margin-inline: auto;
        row-gap: 0.75rem;
    }

    .reviews-marquee__group[aria-hidden="true"] {
        display: none;
    }

    .reviews-marquee {
        mask-image: none;
    }
}

.review-card {
    flex: 0 0 auto;
    width: min(100%, 380px);
    min-height: auto;
    padding: 1.1rem 1.2rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}

.review-card__top {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
}

.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--border);
    background: var(--surface);
}

.review-card__top-main {
    flex: 1;
    min-width: 0;
}

.review-card__google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.35rem;
}

.review-card__google-badge .google-g-logo {
    width: 16px;
    height: 16px;
    display: block;
}

.review-card__google-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.02em;
}

.review-card__stars {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1;
    letter-spacing: 0.06em;
}

.review-card__star {
    color: rgba(90, 101, 115, 0.35);
}

.review-card__star--on {
    color: #d97706;
}

.review-card__text {
    margin: 0 0 0.75rem;
    font-size: 0.88rem;
    line-height: 1.58;
    color: var(--text);
}

.review-card__text strong {
    font-weight: 700;
    color: var(--accent-strong);
}

.review-card__meta {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.review-card__author {
    font-weight: 600;
    color: var(--text);
}

/* SSS — yorumlar şeridinin altı, footer öncesi */
.faq-section {
    padding: 2.25rem 0 2.5rem;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.faq-section__inner {
    padding-inline: 0;
}

.faq-section__title {
    margin: 0 0 1.35rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem 0.55rem;
    font-size: clamp(1.15rem, 3vw, 1.45rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--text);
    width: 100%;
}

.faq-section__title-icon {
    font-size: 1.15em;
    line-height: 1;
}

.faq-section__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: min(44rem, 100%);
    margin-inline: auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-elevated);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-item__q {
    list-style: none;
    cursor: pointer;
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    position: relative;
    transition: background 0.12s, color 0.12s;
}

.faq-item__q::-webkit-details-marker {
    display: none;
}

.faq-item__q::before {
    content: "❯";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 0.65rem;
    color: var(--accent-strong);
    transition: transform 0.2s ease;
}

.faq-item[open] > .faq-item__q::before {
    transform: translateY(-50%) rotate(90deg);
}

.faq-item__q:hover {
    background: var(--accent-soft);
}

.faq-item__a {
    padding: 0 1rem 1rem 2.75rem;
    border-top: 1px solid var(--border);
    background: rgba(13, 148, 136, 0.03);
}

.faq-item__a p {
    margin: 0.75rem 0 0;
    font-size: 0.9rem;
    line-height: 1.62;
    color: var(--muted);
}

.faq-item__a p:first-child {
    margin-top: 0.65rem;
}

.faq-item__tel {
    font-weight: 700;
    color: var(--accent-strong);
}

.faq-item__tel:hover {
    color: var(--accent);
}

@media (max-width: 540px) {
    .faq-item__q {
        padding-left: 2.35rem;
        padding-right: 0.75rem;
    }

    .faq-item__a {
        padding-left: 2.35rem;
        padding-right: 0.75rem;
    }
}

.site-footer {
    margin-top: auto;
    width: 100%;
    padding: 2.75rem 0 2.5rem;
    border-top: 1px solid var(--border);
    background:
        linear-gradient(180deg, rgba(13, 148, 136, 0.06) 0%, transparent 38%),
        linear-gradient(180deg, #eef2f8 0%, #e4e9f2 100%);
}

.site-footer__wrap {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    margin: 0;
    padding-inline: max(1.25rem, env(safe-area-inset-left)) max(1.25rem, env(safe-area-inset-right));
}

.site-footer__head {
    margin-bottom: 1.35rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(18, 24, 38, 0.08);
}

.site-footer__title {
    margin: 0 0 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-strong);
}

.site-footer__title::after {
    content: "";
    display: block;
    width: 2.5rem;
    height: 2px;
    margin-top: 0.65rem;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--accent), rgba(13, 148, 136, 0.25));
}

.site-footer__meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
}

.site-footer__meta {
    margin: 0;
    font-size: 0.95rem;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    flex-shrink: 0;
}

.site-footer__legal-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.75rem;
    margin: 0;
    padding: 0 0 0 1rem;
    border-left: 1px solid rgba(18, 24, 38, 0.12);
}

.site-footer__legal-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--accent-strong);
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
}

.site-footer__legal-inline-link:hover {
    color: var(--accent);
    text-decoration: underline;
}

.site-footer__legal-inline-ico {
    display: flex;
    flex-shrink: 0;
    color: var(--accent);
    opacity: 0.92;
}

.site-footer__legal-inline-ico svg {
    display: block;
}

.site-footer__legal-inline-link--hub .site-footer__legal-inline-ico {
    opacity: 1;
}

@media (max-width: 720px) {
    .site-footer__legal-inline {
        flex-basis: 100%;
        padding-left: 0;
        padding-top: 0.65rem;
        margin-top: 0.15rem;
        border-left: none;
        border-top: 1px solid rgba(18, 24, 38, 0.1);
        gap: 0.4rem 0.65rem;
    }

    .site-footer__legal-inline-link {
        white-space: normal;
    }
}

.site-footer__name {
    font-weight: 600;
    color: var(--text);
}

.site-footer__body {
    width: 100%;
    max-width: none;
}

.site-footer__text {
    margin: 0;
    width: 100%;
    max-width: none;
    font-size: 0.82rem;
    line-height: 1.65;
    color: var(--muted);
}

.site-footer__text strong {
    font-weight: 700;
    color: var(--text);
}

@media (max-width: 520px) {
    .site-footer {
        padding: 2rem 0 2rem;
    }

    .site-footer__text {
        font-size: 0.8rem;
        line-height: 1.7;
    }
}

/* Makale sayfaları */
.article-page__title {
    margin: 0 0 1.25rem;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    letter-spacing: -0.02em;
}

.article {
    font-size: 1.02rem;
}

.article .article-lead {
    color: var(--muted);
    font-size: 1.05rem;
    margin: 0 0 1rem;
}

.article--stub {
    padding: 1rem 0 2rem;
}

.brand-grid--links {
    margin-top: 0.5rem;
}

.brand-pill--link {
    display: block;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.15s, background 0.15s;
}

.brand-pill--link:hover {
    border-color: var(--border-strong);
    background: var(--accent-soft);
    text-decoration: none;
}

/* boschdenizliservisi.com tarzı uzun makale */
.article-wrap--longform {
    width: 100%;
    max-width: none;
    margin-inline: 0;
}

.article--longform {
    padding-bottom: 2rem;
}

.article-intro {
    font-size: 1.05rem;
    color: var(--muted);
    margin: 0 0 1rem;
}

.article-phone-big {
    margin: 0 0 1rem;
    text-align: center;
}

.article-phone-big__link {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-strong);
    padding: 0.65rem 1.1rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    background: var(--accent-soft);
}

.article-phone-big__link:hover {
    text-decoration: none;
    background: var(--accent-muted);
}

.article-kicker {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin: 0 0 1.5rem;
}

.article-toc {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.1rem 1.25rem;
    margin: 0 0 2rem;
}

.article-toc__title {
    margin: 0 0 0.65rem;
    font-size: 1rem;
    font-weight: 700;
}

.article-toc__list {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.article-toc__list a {
    color: var(--accent);
}

.article-section {
    margin-bottom: 2rem;
}

.article-section h2 {
    font-size: 1.35rem;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.article-section h3 {
    font-size: 1.15rem;
    margin: 0 0 0.65rem;
}

.h3-sub {
    font-size: 1.05rem;
    margin: 1.25rem 0 0.5rem;
}

.placeholder-block {
    margin: 0 0 0.75rem;
    color: var(--muted);
    line-height: 1.55;
}

.author-showcase {
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.1rem;
    margin-top: 1rem;
}

.author-showcase__hint,
.author-showcase__role {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
}

.author-showcase__cta {
    margin: 0.85rem 0 0;
}

.compare-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .compare-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.compare-card {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg-elevated);
}

.compare-card--official {
    opacity: 0.95;
}

.compare-card--private {
    border-color: var(--border-strong);
    background: var(--accent-soft);
}

.compare-card__title {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
}

.compare-card__text,
.compare-card__note {
    margin: 0 0 0.5rem;
    font-size: 0.92rem;
    color: var(--muted);
}

.compare-card__phone {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
}

.compare-card__phone a {
    color: var(--accent);
}

.table-wrap {
    overflow-x: auto;
    margin: 0.75rem 0 0;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.info-table th,
.info-table td {
    border: 1px solid var(--border);
    padding: 0.55rem 0.7rem;
    text-align: left;
}

.info-table thead th {
    background: var(--surface);
    color: var(--muted);
    font-weight: 600;
}

.faq-warning {
    margin-top: 1.25rem;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(217, 119, 6, 0.35);
    background: rgba(254, 243, 199, 0.55);
    font-size: 0.92rem;
    color: var(--text);
}

.faq-warning p {
    margin: 0 0 0.5rem;
}

.faq-warning p:last-child {
    margin-bottom: 0;
}

.faq-warning__meta {
    font-size: 0.85rem;
    color: var(--muted);
}

.policy-grid {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

@media (min-width: 600px) {
    .policy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.policy-card {
    padding: 0.85rem 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
}

.policy-card__title {
    margin: 0 0 0.4rem;
    font-size: 1rem;
}

.policy-card p {
    margin: 0;
    color: var(--muted);
}

.legal-note--article {
    margin-top: 2rem;
}

.home-article .article-page__title {
    margin-top: 0;
}

.home-article .article-makale-cover,
.content-card .article-makale-cover {
    position: relative;
    margin: 0 0 1.25rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: var(--bg-elevated);
}

.home-article .article-makale-cover__img,
.content-card .article-makale-cover__img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.content-card .article-toc.marka-makale-toc {
    margin: 0 0 1.35rem;
    padding: 1rem 1.15rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.55);
    box-shadow: var(--shadow);
}

.content-card .article-toc__title {
    margin: 0 0 0.65rem;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: inherit;
}

.content-card .article-toc__list {
    margin: 0;
    padding-left: 1.35rem;
    line-height: 1.55;
}

.content-card .article-toc__item {
    margin: 0.2rem 0;
}

.content-card .article-toc__link {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.14em;
}

.content-card .article-toc__link:hover {
    opacity: 0.9;
}

.content-card h2[id^="marka-makale-"] {
    scroll-margin-top: 4.5rem;
}

.content-card .marka-makale__self-link {
    color: inherit;
    font-weight: inherit;
    font-style: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.12em;
}

.content-card .marka-makale__self-link:hover {
    opacity: 0.92;
}

/* Marka sayfası: ilçe + marka servis hızlı bağlantıları (aynı marka URL’si) */
.section--marka-ilce-links {
    padding-block: 2.25rem 2.75rem;
}

.marka-ilce-links__title {
    margin: 0 0 1.25rem;
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.marka-ilce-links__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 0.65rem;
}

.marka-ilce-links__item {
    margin: 0;
}

.marka-ilce-links__link {
    display: inline-block;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: background 0.15s, border-color 0.15s;
}

.marka-ilce-links__link:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 118, 110, 0.35);
    text-decoration: none;
}

.marka-ilce-links__link[aria-current="page"] {
    border-color: rgba(15, 118, 110, 0.55);
    box-shadow: 0 0 0 1px rgba(15, 118, 110, 0.2);
    font-weight: 700;
}

.home-article .article-makale-cover__brand {
    position: absolute;
    right: clamp(0.5rem, 2vw, 1rem);
    bottom: clamp(0.45rem, 1.5vw, 0.85rem);
    max-width: calc(100% - 1rem);
    font-size: clamp(0.72rem, 2.2vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.96);
    text-shadow:
        0 0 1px rgba(0, 0, 0, 0.8),
        0 1px 4px rgba(0, 0, 0, 0.55),
        0 0 18px rgba(0, 0, 0, 0.35);
    pointer-events: none;
    user-select: none;
    line-height: 1.2;
}

/* Ana sayfa teknik servis makalesi — içerik servis bilgisi / politikalar ile aynı sütunu doldurur */
.home-article > .site-content-max .article.article--longform {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.home-article.section {
    padding-block: 2.75rem;
}

.article-h3-servis {
    margin: 1.5rem 0 0.6rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
    line-height: 1.35;
}

.article-section--hizmet {
    margin-bottom: 1.25rem;
}

.article-section--hizmet p {
    margin: 0;
    line-height: 1.65;
    color: var(--muted);
}

#teknik-servis-giris,
.home-article .article-section--hizmet[id] {
    scroll-margin-top: 4.5rem;
}

@media (min-width: 720px) {
    .article-toc--teknik-servis .article-toc__list {
        column-count: 2;
        column-gap: 2rem;
    }

    .article-toc--teknik-servis .article-toc__list li {
        break-inside: avoid;
    }
}

/* Hizmet detay + etiket linkleri */
.tag.tag--link {
    display: inline-block;
    color: var(--muted);
    text-decoration: none;
    border: 1px solid var(--border);
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.tag.tag--link:hover {
    color: var(--accent-strong);
    border-color: var(--border-strong);
    background: var(--accent-soft);
    text-decoration: none;
}

.section__linkall {
    margin: 0 0 1rem;
    font-size: 0.95rem;
}

.section__linkall a {
    font-weight: 600;
}

.service-index-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.service-index-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: border-color 0.15s, transform 0.1s;
}

.service-index-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow);
    transform: translateY(-1px);
    text-decoration: none;
}

.service-index-card__hint {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--muted);
}

.service-detail {
    padding-bottom: 2.5rem;
}

.service-detail__title {
    margin: 0 0 0.35rem;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    letter-spacing: -0.02em;
}

.service-detail__kicker {
    margin: 0 0 1.25rem;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
}

.service-detail__lead {
    margin-bottom: 1.5rem;
}

.service-detail__blocks {
    display: grid;
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.service-detail__block h2 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.service-detail__block p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
}

.service-detail__area {
    padding: 1rem 1.1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
}

.service-detail__cta {
    text-align: center;
}

.service-detail__cta .muted {
    margin: 1rem 0 0;
    font-size: 0.92rem;
}

/* ——— Ana sayfa hero (header ile main arası, tam genişlik) ——— */
.home-hero--inner {
    min-height: min(30vh, 280px);
    padding-top: clamp(1.75rem, 5vw, 2.75rem);
    padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.home-hero {
    position: relative;
    z-index: 1;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    min-height: min(42vh, 380px);
    padding: clamp(2.5rem, 7vw, 4rem) max(1rem, env(safe-area-inset-left)) clamp(2rem, 5vw, 3rem) max(1rem, env(safe-area-inset-right));
    margin: 0;
    color: #ecfeff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Marka sayfası: aynı hero dili, biraz daha kompakt */
.home-hero--marka {
    min-height: min(38vh, 340px);
    padding-top: clamp(2rem, 5.5vw, 3.25rem);
    padding-bottom: clamp(1.65rem, 4vw, 2.65rem);
}

.home-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 900px 420px at 12% -10%, rgba(45, 212, 191, 0.35), transparent 55%),
        radial-gradient(ellipse 700px 380px at 88% 110%, rgba(15, 118, 110, 0.5), transparent 50%),
        linear-gradient(152deg, #0f766e 0%, #0d5c5c 42%, #064e4c 100%);
}

.home-hero__grid {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 35%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 35%, transparent 100%);
}

.home-hero__inner {
    position: relative;
    z-index: 2;
    max-width: min(1200px, calc(100% - 0.5rem));
    margin-inline: auto;
}

.home-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 1rem;
    padding: 0.4rem 0.8rem 0.4rem 0.55rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    color: rgba(236, 254, 255, 0.92);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
}

.home-hero__badge-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    color: #99f6e4;
}

.home-hero__badge-icon svg {
    width: 100%;
    height: 100%;
}

.home-hero__badge-text {
    line-height: 1.3;
}

.home-hero__title-block {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.75rem 1rem;
    margin: 0 0 0.85rem;
}

.home-hero__title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(2.5rem, 8vw, 3rem);
    height: clamp(2.5rem, 8vw, 3rem);
    flex-shrink: 0;
    border-radius: 14px;
    color: #a7f3d0;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.home-hero__title-icon svg {
    width: 55%;
    height: 55%;
}

.home-hero__title {
    margin: 0;
    flex: 1 1 12rem;
    font-size: clamp(1.85rem, 5vw, 2.65rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.12;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.18);
}

.home-hero__lead {
    margin: 0 0 1.35rem;
    max-width: 38rem;
    font-size: clamp(1rem, 2.2vw, 1.12rem);
    line-height: 1.65;
    color: rgba(236, 254, 255, 0.88);
}

.home-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 1.75rem;
    padding: 0;
    list-style: none;
}

.home-hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.32rem 0.65rem 0.32rem 0.45rem;
    font-size: 0.76rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
}

.home-hero__chip-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 999px;
    color: #ccfbf1;
    background: rgba(255, 255, 255, 0.1);
}

.home-hero__chip-icon svg {
    width: 11px;
    height: 11px;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.home-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
}

.home-hero__btn--primary {
    flex-direction: row;
    color: #042f2e;
    background: linear-gradient(165deg, #ccfbf1 0%, #99f6e4 45%, #5eead4 100%);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.home-hero__btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    filter: brightness(1.03);
}

.home-hero__btn-icon {
    display: flex;
    flex-shrink: 0;
    color: #0f766e;
}

.home-hero__btn-icon--ghost {
    color: rgba(236, 254, 255, 0.95);
}

.home-hero__btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    line-height: 1.2;
}

.home-hero__btn-label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #115e59;
}

.home-hero__btn-num {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #134e4a;
}

.home-hero__btn--ghost {
    color: #ecfeff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.home-hero__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
}

/* ——— Footer: mobil «Özel Servis» — ekran altına yapışık (fixed) ——— */
.footer-mobile-call {
    display: none;
}

@media screen and (max-width: 768px) {
    /* Ana sayfa: sabit çubuk için kaydırma payı */
    body.body--sticky-call {
        padding-bottom: calc(5.35rem + env(safe-area-inset-bottom, 0px));
    }

    .home-hero__btn--primary {
        display: none;
    }

    .home-hero__btn--ghost {
        width: 100%;
        flex: 1 1 100%;
        justify-content: center;
        padding: 0.85rem 1rem;
    }

    .home-hero__actions {
        width: 100%;
    }

    .site-footer .footer-mobile-call {
        display: block !important;
        visibility: visible;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 100;
        margin: 0;
        padding: 0.5rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
        border-top: 1px solid rgba(18, 24, 38, 0.1);
        background: linear-gradient(180deg, rgba(247, 249, 252, 0.97) 0%, #eef2f8 55%, #e8ecf4 100%);
        backdrop-filter: blur(12px);
        box-shadow: 0 -6px 28px rgba(18, 24, 38, 0.12);
    }

    .footer-mobile-call__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.65rem;
        width: 100%;
        min-height: 3.15rem;
        padding: 0.85rem 1rem;
        border-radius: 14px;
        font-weight: 700;
        font-size: 1.05rem;
        color: #fff;
        text-decoration: none;
        background: linear-gradient(165deg, var(--accent) 0%, var(--accent-strong) 100%);
        border: 1px solid rgba(255, 255, 255, 0.22);
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset, 0 6px 22px rgba(13, 148, 136, 0.4);
    }

    .footer-mobile-call__btn:hover {
        filter: brightness(1.05);
        text-decoration: none;
    }

    .footer-mobile-call__icon {
        display: flex;
        flex-shrink: 0;
        opacity: 0.95;
    }

    .footer-mobile-call__main {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.12rem;
        line-height: 1.15;
    }

    .footer-mobile-call__word {
        font-size: 1.08rem;
        letter-spacing: 0.02em;
    }

    .footer-mobile-call__num {
        font-size: 0.88rem;
        font-weight: 600;
        opacity: 0.92;
    }
}

@media screen and (min-width: 769px) {
    .footer-mobile-call {
        display: none !important;
    }
}

/* ——— Yasal sayfalar (hub + doküman) ——— */
body.body--legal #main {
    padding-bottom: 2rem;
}

.legal-page--hub {
    padding-block: 2.25rem 3rem;
}

.legal-hub__header {
    max-width: 42rem;
    margin-bottom: 2rem;
}

.legal-hub__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.legal-hub__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.65rem, 4vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text);
}

.legal-hub__intro {
    margin: 0;
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.65;
}

.legal-hub__intro strong {
    color: var(--text);
    font-weight: 600;
}

.legal-hub__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.legal-hub__card {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.15rem 1.2rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.legal-hub__card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--text);
}

.legal-hub__card-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
    background: var(--accent-soft);
    color: var(--accent-strong);
}

.legal-hub__card-title {
    flex: 1;
    font-weight: 600;
    font-size: 1.02rem;
    line-height: 1.35;
}

.legal-hub__card-arrow {
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--accent);
    opacity: 0.85;
}

.legal-page .legal-doc {
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    padding: clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2.25rem);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.legal-doc__crumb {
    margin-bottom: 1rem;
    font-size: 0.88rem;
    color: var(--muted);
}

.legal-doc__crumb-link {
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
}

.legal-doc__crumb-link:hover {
    text-decoration: underline;
}

.legal-doc__crumb-sep {
    margin: 0 0.35rem;
    opacity: 0.5;
}

.legal-doc__crumb-current {
    color: var(--text);
    font-weight: 500;
}

.legal-doc__head {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.legal-doc__h1 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.45rem, 3.5vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--text);
}

.legal-doc__lead {
    margin: 0;
    font-size: 1.02rem;
    color: var(--muted);
    line-height: 1.65;
}

.legal-doc__section {
    margin-bottom: 1.5rem;
}

.legal-doc__section:last-of-type {
    margin-bottom: 0;
}

.legal-doc__h2 {
    margin: 0 0 0.55rem;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--accent-strong);
}

.legal-doc__p {
    margin: 0 0 0.65rem;
    font-size: 0.98rem;
    color: var(--text);
    line-height: 1.68;
}

.legal-doc__p:last-child {
    margin-bottom: 0;
}

.legal-doc__foot {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.legal-doc__note {
    margin: 0 0 1rem;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.55;
}

.legal-doc__back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--accent);
    text-decoration: none;
}

.legal-doc__back:hover {
    text-decoration: underline;
}

.legal-doc--error .legal-doc__h1 {
    font-size: 2rem;
}
