﻿/* Sabadi — global front styles */
:root {
    --primary: #0f4d3a;
    --primary-mid: #1a6b52;
    --primary-light: #e8f5f0;
    --primary-glow: rgba(26, 107, 82, 0.12);
    --accent: #d4a84b;
    --accent-hover: #c4973f;
    --accent-soft: rgba(212, 168, 75, 0.15);
    --text: #1a1f1c;
    --text-secondary: #4a554f;
    --text-muted: #6b7a72;
    --bg: #f4f7f5;
    --bg-elevated: #ffffff;
    --border: #e2ebe6;
    --border-light: #eef3f0;
    --footer-bg: #0d1210;
    --footer-text: #a8b5ae;
    --whatsapp: #25d366;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(15, 77, 58, 0.06);
    --shadow: 0 8px 30px rgba(15, 77, 58, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 77, 58, 0.12);
    --header-h: 76px;
    --container: 1240px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --font: "Inter", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--primary-mid);
    text-decoration: none;
    transition: color 0.2s var(--ease);
}
a:hover { color: var(--primary); }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.is-scrolled {
    border-color: var(--border-light);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: clamp(12px, 3vw, 32px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 2vw, 28px);
    flex: 1;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
}
.logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}
.logo:hover { color: var(--primary-mid); }

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

.lang-switch {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: var(--bg);
    border-radius: 999px;
    border: 1px solid var(--border-light);
}
.lang-switch a {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.2s var(--ease);
}
.lang-switch a:hover { color: var(--primary); }
.lang-switch a.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px var(--primary-glow);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--bg);
    border-radius: var(--radius-sm);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    transition: background 0.2s;
}
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav > a,
.nav-dropdown > .nav-dropdown-trigger {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}
.nav > a::after,
.nav-dropdown > .nav-dropdown-trigger::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.25s var(--ease);
}
.nav > a:hover,
.nav-dropdown:hover > .nav-dropdown-trigger { color: var(--primary); }
.nav > a:hover::after,
.nav-dropdown:hover > .nav-dropdown-trigger::after { width: 100%; }

.nav-dropdown { position: relative; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: var(--bg-elevated);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    padding: 8px;
    animation: fadeDown 0.2s var(--ease);
}
@keyframes fadeDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.dropdown-menu a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
    text-align: center;
    line-height: 1.3;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #e0b85c 100%);
    color: #1a1408;
    box-shadow: 0 4px 20px var(--accent-soft);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
    color: #1a1408;
    box-shadow: 0 8px 28px rgba(212, 168, 75, 0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 28px;
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    background: #1fb855;
    color: #fff !important;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp img { filter: brightness(0) invert(1); }

/* ── Accessibility ── */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Hero banner (image) ── */
.hero-banner {
    padding: clamp(20px, 4vw, 40px) 0 clamp(24px, 4vw, 40px);
    text-align: center;
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
}
.hero-banner-media {
    display: block;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg, 0 20px 50px rgba(0,0,0,0.18));
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.hero-banner-media:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 64px rgba(0,0,0,0.24);
}
.hero-banner-media img {
    display: block;
    width: 100%;
    height: auto;
}
.hero-banner .hero-sub {
    margin: 22px auto 18px;
    color: var(--text-muted);
}
.hero-banner .hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Hero ── */
.hero {
    position: relative;
    padding: clamp(72px, 12vw, 120px) 0 clamp(64px, 10vw, 100px);
    text-align: center;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(145deg, #0a3d2e 0%, var(--primary) 40%, #1a7a5c 100%);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 120%, rgba(212, 168, 75, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 35%);
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg), transparent);
    pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-brand {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    opacity: 0.88;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: clamp(2rem, 5.5vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.hero-sub {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    opacity: 0.92;
    max-width: 640px;
    margin: 0 auto 16px;
    line-height: 1.75;
    font-weight: 400;
}
.hero-badge {
    display: inline-block;
    font-size: 0.9rem;
    padding: 8px 20px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}
.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Page header (inner pages) ── */
.page-header {
    position: relative;
    padding: clamp(48px, 8vw, 72px) 0;
    color: #fff;
    background: linear-gradient(135deg, #0a3d2e 0%, var(--primary-mid) 100%);
    overflow: hidden;
}
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 10%, rgba(212,168,75,0.12) 0%, transparent 50%);
    pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.lead {
    font-size: clamp(1rem, 2vw, 1.15rem);
    opacity: 0.9;
    max-width: 720px;
    margin-top: 14px;
    line-height: 1.7;
}
.breadcrumb {
    opacity: 0.75;
    margin-top: 14px;
    font-size: 0.875rem;
}
.breadcrumb a { color: #fff; }
.breadcrumb a:hover { opacity: 1; color: var(--accent); }

.topic-badge {
    display: inline-block;
    background: var(--accent);
    color: #1a1408;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
}

/* ── Service strip ── */
.service-strip {
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-light);
    padding: clamp(16px, 3vw, 22px) 0;
    box-shadow: var(--shadow-sm);
}
.service-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.strip-item strong {
    display: block;
    color: var(--primary);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.strip-item span { font-size: 0.9rem; color: var(--text-muted); }
.strip-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--whatsapp);
    color: #fff !important;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 16px rgba(37,211,102,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}
.strip-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
    color: #fff !important;
}
.strip-cta img { filter: brightness(0) invert(1); }
.strip-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ── Phone callout ── */
.phone-callout {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.phone-callout-link {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s var(--ease);
}
.phone-callout-link:hover { opacity: 0.88; color: inherit; }
.phone-callout-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.phone-callout-number {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary);
}
.phone-prefix {
    font-size: 1.35rem;
    letter-spacing: 0.02em;
}
.phone-sep {
    font-size: 1.1rem;
    color: var(--primary-mid);
    font-weight: 500;
}
.phone-digits {
    font-size: 1.35rem;
    letter-spacing: 0.06em;
    font-variant-numeric: tabular-nums;
}
.phone-callout-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.phone-callout-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--whatsapp);
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.88rem;
    box-shadow: 0 4px 14px rgba(37,211,102,0.22);
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}
.phone-callout-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.32);
    color: #fff !important;
}
.phone-callout-wa img { filter: brightness(0) invert(1); }
.phone-callout--compact .phone-callout-number { font-size: inherit; }
.phone-callout--compact .phone-prefix,
.phone-callout--compact .phone-digits { font-size: 1.15rem; }
.phone-callout--banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 16px;
    padding: 20px 22px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.phone-callout--banner .phone-callout-link { align-items: center; text-align: center; }
.phone-callout--banner .phone-prefix,
.phone-callout--banner .phone-digits { font-size: clamp(1.5rem, 4vw, 2rem); }
.phone-callout--banner .phone-callout-wa { justify-content: center; }
.phone-callout--inline {
    margin-bottom: 24px;
    padding: 16px 18px;
    background: var(--primary-light);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}
.phone-callout--inline .phone-callout-link { flex: 1; min-width: 0; }
.column-cta .phone-callout--banner { margin: 16px auto 20px; max-width: 420px; }
.pawn-advantages .pawn-perks li {
    font-weight: 500;
}
.pawn-assets .model-list li::marker {
    color: var(--primary-mid);
}

/* ── Sections ── */
.home-scope {
    padding: clamp(40px, 6vw, 56px) 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.home-scope h2 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}
.home-scope-list {
    margin: 0 0 24px;
    padding-left: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
}
.home-scope-list li { margin-bottom: 10px; }
.home-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}
.home-tag {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.78rem;
    color: var(--primary-mid);
    background: var(--primary-light);
    border: 1px solid var(--border-light);
    border-radius: 999px;
}
.services {
    padding: clamp(56px, 10vw, 96px) 0;
}
.section-title {
    text-align: center;
    margin-bottom: clamp(32px, 6vw, 56px);
}
.section-title h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.section-title::after {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    margin: 0 auto;
}
.services h2 { /* legacy */ }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(20px, 3vw, 28px);
}

.card {
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 4vw, 36px);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}
.card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.card h3 a { color: var(--text); }
.card h3 a:hover { color: var(--primary); }
.card p {
    color: var(--text-muted);
    flex: 1;
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-mid);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.link:hover { gap: 10px; }

/* ── Column overview ── */
.column-overview {
    padding: clamp(40px, 8vw, 72px) 0;
}
.overview-block {
    margin-bottom: clamp(24px, 4vw, 36px);
}
.overview-block h2,
.service-block-head h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.content-body {
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 5vw, 48px);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}
.content-body p { margin-bottom: 16px; color: var(--text-secondary); }
.content-body ul { padding-left: 1.25em; color: var(--text-secondary); }
.content-body li { margin-bottom: 10px; }
.content-body strong { color: var(--text); }

.service-block {
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    padding: clamp(28px, 5vw, 40px);
    margin-bottom: clamp(24px, 4vw, 32px);
}
.service-desc {
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.topic-section {
    margin-top: clamp(24px, 4vw, 32px);
    padding-top: clamp(20px, 3vw, 28px);
    border-top: 1px solid var(--border-light);
}
.topic-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.topic-hint {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 18px;
    line-height: 1.6;
}
.topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
    gap: 12px;
}
.topic-card {
    display: flex;
    flex-direction: column;
    padding: 18px 20px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: all 0.25s var(--ease);
    min-height: 88px;
}
.topic-card--brand {
    align-items: center;
    text-align: center;
    min-height: 120px;
}
.topic-card-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    margin-bottom: 10px;
    flex-shrink: 0;
}
.brand-hero {
    margin: 0 0 16px;
    padding: 16px 20px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.brand-hero img {
    max-width: 140px;
    max-height: 88px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.brand-content-logo {
    margin: 0 0 20px;
    padding: 20px;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    text-align: center;
}
.brand-content-logo img {
    max-width: 160px;
    max-height: 100px;
    object-fit: contain;
}
.topic-card:hover {
    border-color: var(--primary-mid);
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.related-topics {
    margin: 32px 0 8px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}
.related-topics h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text);
}
.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.related-links a {
    display: inline-block;
    padding: 8px 14px;
    font-size: 0.875rem;
    color: var(--primary);
    background: var(--primary-light);
    border: 1px solid var(--border-light);
    border-radius: 999px;
    transition: all 0.2s var(--ease);
}
.related-links a:hover {
    border-color: var(--primary-mid);
    background: #fff;
}
.topic-card strong {
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.4;
}
.topic-more {
    margin-top: auto;
    padding-top: 10px;
    font-size: 0.78rem;
    color: var(--primary-mid);
    font-weight: 600;
}
.topic-label { display: none; }

.column-cta {
    text-align: center;
    margin-top: clamp(32px, 6vw, 48px);
    padding: clamp(32px, 5vw, 48px);
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
}
.cta-lead {
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
}
.column-cta .btn { margin: 6px; }

/* ── Page content ── */
.page-content {
    padding: clamp(40px, 8vw, 72px) 0;
}
.cta-box {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.consult-banner {
    margin-top: 36px;
    padding: clamp(24px, 4vw, 36px);
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff 50%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.consult-banner h3 {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.consult-banner p { color: var(--text-muted); margin-bottom: 8px; font-size: 0.95rem; }
.door-note { margin-top: 14px !important; color: var(--text) !important; }
.consult-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* ── Footer ── */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 28px 0 0;
    margin-top: clamp(40px, 6vw, 64px);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 20px 32px;
    padding-bottom: 20px;
}
.footer-col h4,
.footer-grid h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.footer-meta {
    margin: 0 0 4px;
    font-size: 0.8rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
}
.footer-meta:last-child {
    margin-bottom: 0;
}
.footer-meta a {
    color: rgba(255, 255, 255, 0.88);
}
.footer-meta a:hover {
    color: #fff;
}
.footer-meta-muted {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.76rem;
}
.footer-wa {
    color: var(--whatsapp) !important;
    font-weight: 500;
}
/* ── Footer map (lazy Google Map) ── */
.footer-map-wrap {
    padding: 12px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-map-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.footer-map-head h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}
.footer-map-open {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.72);
}
.footer-map-open:hover { color: #fff; }
.footer-map {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 6;
    min-height: 220px;
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}
.footer-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
.footer-map-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background:
        radial-gradient(circle at 50% 40%, rgba(212,168,75,0.12) 0%, transparent 55%),
        var(--footer-bg);
    color: rgba(255,255,255,0.6);
    border: 0;
    font-family: inherit;
    transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.footer-map-placeholder:hover {
    color: #fff;
    background:
        radial-gradient(circle at 50% 40%, rgba(212,168,75,0.2) 0%, transparent 55%),
        var(--footer-bg);
}
.footer-map-pin { color: var(--accent, #d4a84b); }
.footer-map-placeholder-text {
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

/* ── Contact page map (light) ── */
.map-embed-wrap {
    margin-top: 28px;
}
.map-embed-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.map-embed-head h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text);
}
.map-embed-open {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}
.map-embed-open:hover { color: var(--primary-mid); }
.map-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 260px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
}
.map-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
.map-embed-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background:
        radial-gradient(circle at 50% 40%, var(--primary-light) 0%, transparent 60%),
        var(--bg-elevated);
    color: var(--text-muted);
    border: 0;
    font-family: inherit;
    transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.map-embed-placeholder:hover { color: var(--primary); }
.map-embed-pin { color: var(--primary-mid); }
.map-embed-placeholder-text {
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 12px 0 16px;
    text-align: center;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.38);
}
.footer-bottom-line {
    margin: 6px 0 0;
    line-height: 1.5;
}
.footer-bottom-line a {
    color: rgba(126, 201, 168, 0.7);
}
.footer-bottom-line a:hover {
    color: #fff;
}
.footer-bottom-sep {
    margin: 0 6px;
    color: rgba(255,255,255,0.2);
}
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4px 8px;
    margin: 0;
    font-size: 0.78rem;
}
.footer-legal a {
    color: rgba(126, 201, 168, 0.85);
    text-decoration: none;
}
.footer-legal a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-legal-sep {
    color: rgba(255,255,255,0.25);
    user-select: none;
}
.legal-doc .legal-updated {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.legal-doc .legal-lead {
    padding: 16px 20px;
    background: rgba(15, 77, 58, 0.06);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--text-secondary);
}
.legal-doc h2 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin: 28px 0 12px;
}
.legal-doc h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 20px 0 10px;
}
.legal-doc code {
    font-size: 0.88em;
    padding: 2px 6px;
    background: var(--bg-muted);
    border-radius: 4px;
}
.compliance-notice {
    margin-bottom: 24px;
    padding: 14px 18px;
    background: rgba(180, 120, 0, 0.08);
    border: 1px solid rgba(180, 120, 0, 0.25);
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    line-height: 1.7;
}
.compliance-notice p { margin: 0; color: var(--text-secondary); }
.compliance-notice a { color: var(--primary); font-weight: 500; }

/* ── License disclosure page ── */
.license-page .license-summary { margin: 24px 0 32px; overflow-x: auto; }
.license-section-title {
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(15, 77, 58, 0.15);
    font-size: 1.15rem;
    color: var(--primary);
}
.license-section-title:first-of-type { margin-top: 8px; }
.license-subtitle {
    margin: 28px 0 16px;
    font-size: 1.02rem;
}
.license-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}
.license-table th,
.license-table td {
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    text-align: left;
    vertical-align: top;
}
.license-table th {
    width: 28%;
    background: rgba(15, 77, 58, 0.05);
    color: var(--text);
    font-weight: 600;
    white-space: nowrap;
}
.license-table td { color: var(--text-secondary); }
.license-card {
    margin-bottom: 24px;
    padding: 20px 24px;
    background: var(--bg-muted);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}
.license-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}
.license-meta li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-secondary);
}
.license-meta li:last-child { border-bottom: none; }
.license-meta strong { color: var(--text); }
.license-figure {
    margin: 20px 0 0;
    text-align: center;
}
.license-figure img.license-preview {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}
.license-figure figcaption {
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .license-table th { width: 36%; font-size: 0.85rem; }
}

.contact-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--whatsapp);
    color: #fff !important;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,211,102,0.35);
    color: #fff !important;
}
.whatsapp-link img { filter: brightness(0) invert(1); }
.site-footer a { color: #7ec9a8; transition: color 0.2s; }
.site-footer a:hover { color: #fff; }

.whatsapp-float {
    position: fixed;
    right: clamp(16px, 4vw, 28px);
    bottom: clamp(16px, 4vw, 28px);
    z-index: 150;
    width: 58px;
    height: 58px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}
.whatsapp-float img { width: 30px; height: 30px; filter: brightness(0) invert(1); }

.contact-list { list-style: none; padding: 0; margin: 20px 0; }
.contact-list li { margin-bottom: 14px; line-height: 1.8; }
.contact-list .whatsapp-link { margin-left: 8px; }
.contact-map-hint { color: var(--text-muted); font-size: 0.9rem; margin-top: 16px; }

/* Rich matrix content */
.rich-content { margin-top: 28px; }
.rich-content .info-section {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}
.rich-content .info-section:last-of-type { border-bottom: none; }
.rich-content h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.rich-content p { color: var(--text-secondary); margin-bottom: 12px; }
.model-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 180px), 1fr));
    gap: 8px 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.model-list li {
    position: relative;
    padding: 10px 14px 10px 28px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}
.model-list li::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}
.content-disclaimer {
    margin-top: 24px;
    padding: 14px 18px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: #92400e;
    line-height: 1.6;
}
.content-note {
    font-size: 0.9rem;
    color: var(--primary-mid);
    font-weight: 500;
    margin-top: 12px;
}

.main { min-height: calc(100vh - var(--header-h) - 200px); }

/* ── Responsive: tablet ── */
@media (max-width: 1024px) {
    .nav > a,
    .nav-dropdown > .nav-dropdown-trigger { font-size: 0.9rem; }
}

/* ── Responsive: mobile nav ── */
@media (max-width: 900px) {
    :root { --header-h: 68px; }

    .nav-toggle { display: flex; }

    .nav {
        display: none;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        flex: none;
        justify-content: flex-start;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 20px clamp(20px, 4vw, 40px) 40px;
        gap: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border-top: 1px solid var(--border-light);
        animation: slideNav 0.3s var(--ease);
    }
    @keyframes slideNav {
        from { opacity: 0; transform: translateY(-12px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .nav.is-open { display: flex; }

    .nav > a,
    .nav-dropdown > .nav-dropdown-trigger {
        padding: 16px 0;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--border-light);
        width: 100%;
    }
    .nav > a::after,
    .nav-dropdown > .nav-dropdown-trigger::after { display: none; }

    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        display: block;
        box-shadow: none;
        border: none;
        padding: 0 0 8px 16px;
        background: transparent;
        animation: none;
    }
    .nav-dropdown .dropdown-menu a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-light);
        border-radius: 0;
    }

    .header-inner { gap: 12px; }

    .hero-actions .btn,
    .consult-actions .btn,
    .column-cta .btn {
        width: 100%;
        max-width: 320px;
    }

    .service-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .strip-cta { width: 100%; justify-content: center; }

    .content-body { padding: 24px 20px; }
    .cta-box { flex-direction: column; align-items: stretch; }
    .cta-box .btn { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
    .lang-switch a { padding: 5px 9px; font-size: 0.75rem; }
    .topic-grid { grid-template-columns: 1fr; }
    .whatsapp-float { width: 52px; height: 52px; }
    .whatsapp-float img { width: 26px; height: 26px; }
}

/* body lock when mobile menu open */
body.nav-open { overflow: hidden; }
body.cookie-banner-open .whatsapp-float {
    bottom: calc(clamp(16px, 4vw, 28px) + 88px);
}

/* ── Cookie consent ── */
.cookie-consent {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 300;
    pointer-events: none;
}
.cookie-consent.is-visible { pointer-events: auto; }
.cookie-consent[hidden] { display: none !important; }

.cookie-consent-bar {
    background: rgba(13, 18, 16, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
    padding: 18px 0;
    animation: cookieSlideUp 0.35s var(--ease);
}
@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-consent-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
}
.cookie-consent-title {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0 6px;
}
.cookie-consent-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
    line-height: 1.65;
    margin: 0;
    max-width: 720px;
}
.cookie-consent-desc a {
    color: #7ec9a8;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex-shrink: 0;
}
.cookie-consent-actions .btn {
    font-size: 0.84rem;
    padding: 10px 16px;
    white-space: nowrap;
}
.cookie-consent-actions .btn-ghost {
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
}
.cookie-consent-actions .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.cookie-consent-panel[hidden] { display: none !important; }
.cookie-consent-panel {
    position: fixed;
    inset: 0;
    z-index: 310;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
}
.cookie-panel-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}
.cookie-panel-sheet {
    position: relative;
    width: min(100%, 520px);
    max-height: min(85vh, 560px);
    overflow: auto;
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: cookiePanelUp 0.3s var(--ease);
}
@keyframes cookiePanelUp {
    from { transform: translateY(24px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.cookie-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px 12px;
    border-bottom: 1px solid var(--border-light);
}
.cookie-panel-header h2 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
}
.cookie-panel-close {
    border: none;
    background: transparent;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px 8px;
}
.cookie-panel-body { padding: 8px 22px 16px; }
.cookie-category {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category p {
    margin: 8px 0 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
}
.cookie-category-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.cookie-badge {
    font-size: 0.72rem;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--bg-muted);
    color: var(--text-muted);
}
.cookie-badge-required {
    background: rgba(15, 77, 58, 0.1);
    color: var(--primary);
}
.cookie-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.cookie-toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.cookie-toggle-ui {
    width: 42px;
    height: 24px;
    border-radius: 999px;
    background: #cbd5cf;
    position: relative;
    flex-shrink: 0;
    transition: background 0.2s;
}
.cookie-toggle-ui::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.cookie-toggle input:checked + .cookie-toggle-ui {
    background: var(--primary);
}
.cookie-toggle input:checked + .cookie-toggle-ui::after {
    transform: translateX(18px);
}
.cookie-toggle input:disabled + .cookie-toggle-ui {
    opacity: 0.45;
}
.cookie-category-disabled { opacity: 0.75; }
.cookie-panel-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 22px 20px;
    border-top: 1px solid var(--border-light);
}

.footer-legal-btn {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    font-size: 0.84rem;
    color: rgba(126, 201, 168, 0.85);
    cursor: pointer;
    text-decoration: none;
}
.footer-legal-btn:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .cookie-consent-actions {
        width: 100%;
    }
    .cookie-consent-actions .btn {
        flex: 1 1 auto;
        text-align: center;
    }
    .cookie-panel-footer {
        flex-direction: column;
    }
    .cookie-panel-footer .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
