/**
 * MaviNokta GEL-AL — vitrin sitesi
 * siparis.css ile aynı tasarım sistemi
 */
:root {
    --brand: #0284c7;
    --brand-dark: #0369a1;
    --brand-deep: #075985;
    --brand-light: #38bdf8;
    --brand-surface: #f0f9ff;
    --brand-border: #bae6fd;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --accent-light: #fbbf24;
    --accent-surface: #fffbeb;
    --accent-border: #fde68a;

    --bg: #f8fafc;
    --surface: #ffffff;
    --surface-2: #f1f5f9;
    --surface-3: #e2e8f0;
    --border: #e2e8f0;
    --border-subtle: rgba(226, 232, 240, 0.8);

    --text: #0f172a;
    --text-muted: #64748b;
    --text-subtle: #94a3b8;
    --text-inverse: #ffffff;

    --danger: #ef4444;
    --success: #10b981;
    --success-dark: #047857;

    --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 2px 5px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 6px 18px -3px rgba(15, 23, 42, 0.08), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 16px 36px -4px rgba(15, 23, 42, 0.12), 0 6px 16px -2px rgba(15, 23, 42, 0.05);
    --shadow-xl: 0 24px 50px -12px rgba(15, 23, 42, 0.22);
    --shadow-brand: 0 8px 20px -4px rgba(2, 132, 199, 0.3);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-pill: 9999px;

    --header-h: 64px;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.55;
    padding-bottom: calc(72px + var(--safe-bottom));
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { touch-action: manipulation; }

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 200;
    padding: 10px 14px;
    border-radius: 10px;
    background: #fff;
    color: var(--brand-deep);
    font-weight: 800;
    box-shadow: var(--shadow-lg);
    transform: translateY(-160%);
    transition: transform 0.2s var(--ease-out);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid #fbbf24;
    outline-offset: 3px;
}

.topbar {
    background: #0b3b56;
    color: #bae6fd;
    font-size: 12px;
    font-weight: 600;
    min-height: 34px;
}

.topbar-inner {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar-inner span,
.topbar-links {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.topbar-inner i { color: #38bdf8; margin-right: 6px; }
.topbar a { color: #e0f2fe; }
.topbar a:hover { color: #fff; }

/* ── Header (siparis.php ile aynı) ── */
.site-header {
    height: var(--header-h);
    background: linear-gradient(135deg, #075985 0%, #0284c7 60%, #0369a1 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    gap: 16px;
    z-index: 60;
    box-shadow: 0 4px 20px rgba(7, 89, 133, 0.18);
    position: sticky;
    top: 0;
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.25), rgba(255,255,255,0.08));
}

.site-header.is-scrolled {
    box-shadow: 0 8px 28px rgba(7, 89, 133, 0.28);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: inherit;
    flex-shrink: 0;
    transition: transform 0.18s var(--ease-out);
}

.brand:hover { transform: translateY(-1px); }

.brand-logo-wrap {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #fff;
    padding: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 9px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-text strong {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    white-space: nowrap;
    line-height: 1.2;
}

.live-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(16, 185, 129, 0.22);
    border: 1px solid rgba(52, 211, 153, 0.4);
    color: #a7f3d0;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34d399;
    animation: statusPulse 2s 2;
}

@keyframes statusPulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.brand-text span:not(.live-status-pill) {
    font-size: 11px;
    color: #bae6fd;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 2px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.88);
    font-size: 13.5px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 10px;
    transition: background 0.18s, color 0.18s;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.hdr-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    height: 38px;
    padding: 0 14px;
    border-radius: 10px;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    backdrop-filter: blur(8px);
    transition: all 0.2s var(--ease-out);
}

.hdr-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}

.hdr-btn.icon-only {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    border-radius: 11px;
}

.hdr-btn.primary {
    background: #ffffff;
    color: var(--brand-deep);
    border-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hdr-btn.primary:hover {
    background: #f0f9ff;
    color: var(--brand);
}

.nav-toggle { display: none; }

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    z-index: 50;
}

/* ── Layout ── */
.wrap {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 64px 0;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

h1, h2, h3 { margin: 0; letter-spacing: -0.03em; line-height: 1.2; }
h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; }
h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; }
h3 { font-size: 17px; font-weight: 800; }

.muted { color: var(--text-muted); }
.lead { font-size: 17px; color: var(--text-muted); max-width: 52ch; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    padding: 0 20px;
    border-radius: 12px;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: all 0.2s var(--ease-out);
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: var(--shadow-brand);
}

.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }

.btn-accent {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    box-shadow: 0 8px 24px -4px rgba(245, 158, 11, 0.4);
}

.btn-accent:hover { filter: brightness(1.05); transform: translateY(-1px); }

.btn-ghost {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.24); }

.btn-outline {
    background: #fff;
    color: var(--brand-deep);
    border: 1px solid var(--brand-border);
}

.btn-outline:hover { background: var(--brand-surface); }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: min(78vh, 680px);
    display: grid;
    align-items: end;
    overflow: hidden;
    color: #fff;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroImageIn 0.9s var(--ease-out) both;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 89, 133, 0.88) 0%, rgba(2, 132, 199, 0.55) 48%, rgba(7, 89, 133, 0.28) 100%),
        linear-gradient(180deg, rgba(7, 89, 133, 0.15) 0%, rgba(15, 23, 42, 0.35) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 72px 0 56px;
}

.hero-inner > * {
    animation: heroContentIn 0.52s var(--ease-out) both;
}

.hero-inner > :nth-child(1) { animation-delay: 0.08s; }
.hero-inner > :nth-child(2) { animation-delay: 0.15s; }
.hero-inner > :nth-child(3) { animation-delay: 0.22s; }
.hero-inner > :nth-child(4) { animation-delay: 0.29s; }

@keyframes heroImageIn {
    from { opacity: 0.72; transform: scale(1.035); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes heroContentIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(52, 211, 153, 0.4);
    color: #a7f3d0;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

.hero h1 { max-width: 14ch; }
.hero p {
    max-width: 46ch;
    font-size: 17px;
    color: #e0f2fe;
    margin: 14px 0 26px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
}

.trust-item i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--brand-surface);
    color: var(--brand);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.trust-item strong { display: block; font-size: 13.5px; }
.trust-item span { font-size: 12px; color: var(--text-muted); }

.local-service-section {
    background:
        radial-gradient(circle at 8% 10%, rgba(56, 189, 248, 0.13), transparent 30%),
        linear-gradient(180deg, #f0f9ff 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--brand-border);
}

.local-service-copy {
    max-width: 820px;
    margin-bottom: 26px;
}

.local-service-copy .lead {
    max-width: 72ch;
    margin-bottom: 10px;
}

.local-service-copy > p:last-child {
    max-width: 78ch;
    margin: 0;
    color: var(--text-muted);
}

.local-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.local-service-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out), border-color 0.22s;
}

.local-service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-light);
}

.local-service-card > i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    margin-bottom: 14px;
    background: var(--brand);
    color: #fff;
}

.local-service-card p {
    min-height: 66px;
    margin: 8px 0 14px;
    color: var(--text-muted);
    font-size: 14px;
}

.local-service-card a {
    color: var(--brand-deep);
    font-size: 13px;
    font-weight: 800;
}

.local-service-card a i {
    margin-left: 4px;
    transition: transform 0.2s var(--ease-out);
}

.local-service-card a:hover i { transform: translateX(3px); }

/* ── Cards / features ── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-xs);
}

.feature-card i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--brand-surface);
    color: var(--brand);
    display: grid;
    place-items: center;
    margin-bottom: 14px;
}

.feature-card p { margin: 8px 0 0; color: var(--text-muted); font-size: 14px; }

.check-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14.5px;
}

.check-list i {
    color: var(--success-dark);
    margin-top: 3px;
}

.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: center;
}

.split-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--surface-2);
}

.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 280px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.step-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 22px;
    position: relative;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--brand);
    color: #fff;
    font-weight: 800;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
}

.cta-band {
    background: linear-gradient(135deg, #075985 0%, #0284c7 60%, #0369a1 100%);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: var(--shadow-lg);
}

.cta-band p { margin: 8px 0 0; color: #bae6fd; }

/* ── Product cards (siparis.php ile aynı dil) ── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 16px;
}

.p-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: all 0.25s var(--ease-out);
}

.p-card:hover {
    border-color: #bae6fd;
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.p-card-link { display: flex; flex-direction: column; height: 100%; color: inherit; }

.p-img-wrap {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #ffffff 40%, #f1f5f9 100%);
    padding: 10px;
}

.p-img-wrap img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.3s var(--ease-out);
}

.p-card:hover .p-img-wrap img { transform: scale(1.08); }

.p-body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.p-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 6px;
}

.p-name {
    font-weight: 700;
    font-size: 13.5px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
    min-height: 2.7em;
}

.p-more {
    margin-top: auto;
    font-size: 12.5px;
    font-weight: 800;
    color: var(--brand-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.p-card:hover .p-more { color: var(--brand); }

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 36px;
    align-items: start;
}

.product-visual {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 28px;
    display: grid;
    place-items: center;
    min-height: 360px;
    box-shadow: var(--shadow-sm);
}

.product-visual img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
}

.product-info-title {
    font-size: clamp(22px, 3vw, 30px);
    margin: 8px 0 14px;
}

.product-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 22px 0 26px;
}

.product-meta div {
    background: var(--surface-2);
    border-radius: 12px;
    padding: 12px 14px;
}

.product-meta dt {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-subtle);
    margin-bottom: 4px;
}

.product-meta dd { margin: 0; font-weight: 700; }

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.product-intro {
    color: var(--text-muted);
    font-size: 15px;
    margin: 0 0 16px;
}

.product-points {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: grid;
    gap: 8px;
}

.product-points li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14.5px;
    font-weight: 600;
}

.product-points i {
    color: var(--success-dark);
    margin-top: 3px;
}

.product-use {
    background: var(--surface-2);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--text-muted);
    margin: 0 0 8px;
}

.product-use strong { color: var(--text); }

.variant-list {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.variant-list li {
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
    border-radius: 12px;
    padding: 10px 14px;
    color: var(--brand-deep);
    display: grid;
    gap: 2px;
}

.variant-list strong { font-size: 14px; }
.variant-list span { font-size: 13px; font-weight: 500; color: var(--brand-dark); }

.cat-section-desc {
    margin: 4px 0 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    max-width: 62ch;
}

.cat-section { margin-bottom: 28px; }

.cat-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.cat-section-head h3 { font-size: 16px; }
.cat-section-count {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--surface-2);
    padding: 3px 9px;
    border-radius: var(--radius-pill);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.filter-chip {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    height: 36px;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.filter-chip.active,
.filter-chip:hover {
    background: var(--brand-surface);
    border-color: var(--brand-border);
    color: var(--brand-deep);
}

.empty-note {
    text-align: center;
    padding: 48px 16px;
    color: var(--text-muted);
    background: #fff;
    border: 1px dashed var(--border);
    border-radius: var(--radius-lg);
}

.empty-note .btn { margin-top: 8px; }

/* ── Page hero / legal ── */
.page-hero {
    background: linear-gradient(135deg, #075985 0%, #0284c7 70%);
    color: #fff;
    padding: 32px 0 28px;
}

.page-hero p { color: #bae6fd; margin: 8px 0 0; max-width: 62ch; }

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #7dd3fc;
    margin-bottom: 14px;
}

.breadcrumb a { color: #e0f2fe; }
.breadcrumb a:hover { text-decoration: underline; }

.legal-updated {
    display: inline-block;
    margin-top: 12px !important;
    font-size: 12px;
    font-weight: 700;
    color: #a5f3fc !important;
    background: rgba(255,255,255,0.12);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.legal-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.legal-aside {
    position: sticky;
    top: 80px;
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-xs);
}

.legal-aside-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-subtle);
    padding: 6px 10px 10px;
}

.legal-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
}

.legal-link i { width: 16px; color: var(--brand); }
.legal-link:hover { background: var(--surface-2); color: var(--text); }
.legal-link.active {
    background: var(--brand-surface);
    color: var(--brand-deep);
}

.legal-doc .breadcrumb {
    color: var(--text-subtle);
    margin-bottom: 10px;
}

.legal-doc .breadcrumb a { color: var(--brand); }

.legal-doc h1 {
    font-size: clamp(22px, 3vw, 30px);
    margin: 0 0 8px;
}

.legal-doc .legal-lead {
    margin: 0 0 12px;
}

.legal-doc .legal-updated {
    margin: 0 0 8px !important;
    color: var(--brand-deep) !important;
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
}

.legal-doc h2 {
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.faq-list { display: grid; gap: 10px; }

.faq-item {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}

.faq-item button {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font: inherit;
    font-weight: 800;
    font-size: 15px;
    padding: 16px 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--text);
}

.faq-item button i { color: var(--brand); margin-top: 3px; }

.faq-item .faq-body {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    opacity: 0;
    color: var(--text-muted);
    font-size: 14.5px;
    transition: max-height 0.28s var(--ease-out), opacity 0.2s ease-out, padding 0.28s var(--ease-out);
}

.faq-item.open .faq-body {
    max-height: 320px;
    padding: 0 18px 16px;
    opacity: 1;
}
.faq-item.open button i { transform: rotate(45deg); }
.faq-item button i { transition: transform 0.2s var(--ease-out); }

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 22px 0;
}

.stat-box {
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
}

.stat-box b { display: block; font-size: 20px; color: var(--brand-deep); }
.stat-box span { font-size: 12px; font-weight: 700; color: var(--text-muted); }

.prose {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 28px 28px 32px;
    box-shadow: var(--shadow-xs);
}

.prose p { color: var(--text-muted); }
.prose h2 { margin: 28px 0 10px; font-size: 20px; }
.prose h3 { margin: 20px 0 8px; }
.prose a { color: var(--brand); font-weight: 700; }
.prose ul { color: var(--text-muted); padding-left: 18px; }

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

.info-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-xs);
}

.info-card i {
    color: var(--brand);
    margin-bottom: 10px;
}

.info-card a { color: var(--brand-deep); font-weight: 700; }

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.map-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 280px;
    box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
    width: 100%;
    height: 320px;
    border: 0;
}

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.field label { font-size: 13px; font-weight: 700; }
.field input,
.field textarea {
    font: inherit;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 11px 12px;
    background: #fff;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.kunye-list {
    display: grid;
    gap: 14px;
}

.kunye-item {
    background: var(--surface-2);
    border-radius: 12px;
    padding: 14px 16px;
}

.kunye-item small {
    display: block;
    color: var(--brand);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

/* ── Footer ── */
.site-footer {
    background: #0b3b56;
    color: #e0f2fe;
    padding: 48px 0 28px;
    margin-top: 24px;
}

.footer-inner {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
    gap: 28px;
}

.footer-brand-link .brand-text strong { color: #fff; }
.footer-brand-link .brand-text span { color: #7dd3fc; }
.footer-brand p { color: #93c5fd; font-size: 14px; margin: 14px 0 0; max-width: 36ch; }

.site-footer h3 {
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7dd3fc;
    margin-bottom: 12px;
}

.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer a { color: #e0f2fe; }
.site-footer a:hover { color: #fff; }

.footer-contact li,
.footer-contact a {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 13.5px;
}

.footer-contact i { color: #38bdf8; margin-top: 3px; width: 14px; }

.footer-legal-strip {
    width: min(1120px, calc(100% - 32px));
    margin: 28px auto 0;
    padding-top: 16px;
    border-top: 1px solid rgba(125, 211, 252, 0.18);
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 12px;
    font-weight: 700;
}

.footer-legal-strip a { color: #7dd3fc; }
.footer-legal-strip a:hover { color: #fff; }

.footer-bottom {
    width: min(1120px, calc(100% - 32px));
    margin: 16px auto 0;
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 12.5px;
    color: #7dd3fc;
}

.cookie-bar {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(20px + var(--safe-bottom));
    width: min(720px, calc(100% - 24px));
    z-index: 90;
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 14px;
}

.cookie-bar[hidden] { display: none !important; }
.cookie-bar p { margin: 0; font-size: 13px; line-height: 1.45; }
.cookie-bar a { color: #7dd3fc; font-weight: 700; text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-actions .btn { height: 38px; padding: 0 14px; font-size: 13px; }
.cookie-actions .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.25); }

.wa-float {
    position: fixed;
    right: 16px;
    bottom: calc(84px + var(--safe-bottom));
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    z-index: 40;
}

.mobile-cta {
    display: none;
}

/* ── Motion: progressive enhancement ── */
.reveal-ready {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.48s var(--ease-out),
        transform 0.48s var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-ready.is-visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .site-nav {
        position: fixed;
        top: var(--header-h);
        right: 0;
        width: min(280px, 86vw);
        height: calc(100vh - var(--header-h));
        background: #075985;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 16px;
        gap: 6px;
        transform: translateX(110%);
        transition: transform 0.25s var(--ease-out);
        z-index: 55;
        box-shadow: var(--shadow-xl);
    }

    body.nav-open .site-nav { transform: translateX(0); }
    .nav-toggle { display: inline-flex; }
    .hdr-btn-label { display: none; }

    .trust-grid,
    .feature-grid,
    .local-service-grid,
    .steps,
    .info-grid,
    .footer-inner,
    .split {
        grid-template-columns: 1fr 1fr;
    }

    .cta-band { flex-direction: column; align-items: flex-start; }
    .legal-layout,
    .stat-row,
    .product-detail,
    .product-meta { grid-template-columns: 1fr; }
    .product-visual { min-height: 240px; padding: 16px; }
    .legal-aside { position: static; }
    .cookie-bar { flex-direction: column; align-items: stretch; bottom: calc(78px + var(--safe-bottom)); }
}

@media (max-width: 720px) {
    .live-status-pill { display: none; }
    .topbar { display: none; }
    .trust-grid,
    .feature-grid,
    .local-service-grid,
    .steps,
    .info-grid,
    .footer-inner,
    .split {
        grid-template-columns: 1fr;
    }

    .contact-layout { grid-template-columns: 1fr; }

    .hero { min-height: 70vh; }
    .hero-inner { padding: 48px 0 40px; }
    .section { padding: 44px 0; }
    .section-head { flex-direction: column; align-items: flex-start; }
    .footer-bottom { flex-direction: column; }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .p-img-wrap { height: 120px; }
    .p-name { font-size: 13px; }

    .mobile-cta {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 8px;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 45;
        padding: 10px 12px calc(10px + var(--safe-bottom));
        background: rgba(255, 255, 255, 0.94);
        border-top: 1px solid var(--border);
        backdrop-filter: blur(10px);
    }

    .mobile-cta a {
        height: 44px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-weight: 800;
        font-size: 14px;
        background: var(--surface-2);
        color: var(--brand-deep);
    }

    .mobile-cta a.primary {
        background: var(--brand);
        color: #fff;
    }
}

@media (max-width: 480px) {
    .site-header { padding: 0 10px; gap: 8px; }
    .brand { gap: 8px; }
    .brand-logo-wrap { width: 36px; height: 36px; }
    .brand-text strong { font-size: 14px; }
    .header-right { gap: 6px; }
    .header-right > a.hdr-btn:not(.primary) { display: none; }
    .hdr-btn.primary { padding: 0 10px; }
    .product-grid { gap: 8px; }
    .p-img-wrap { height: 108px; padding: 6px; }
    .p-body { padding: 8px 6px 9px; }
    .p-name { font-size: 12px; }
}

@media (max-width: 360px) {
    .brand-text span:not(.live-status-pill) { display: none; }
    .header-right .hdr-btn.primary {
        width: 40px;
        padding: 0;
        font-size: 0;
    }
    .header-right .hdr-btn.primary i { font-size: 14px; }
}

@media (min-width: 721px) {
    body { padding-bottom: 0; }
}

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

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

    .reveal-ready {
        opacity: 1;
        transform: none;
    }
}
