:root {
            --bg: #f8f8f6;
            --bg-alt: #f0f0ed;
            --txt: #1a1a1a;
            --glass-bg: rgba(255,255,255,0.55);
            --glass-border: rgba(255,255,255,0.75);
            --glass-shadow: 0 8px 32px rgba(0,0,0,0.08);
            --sep: rgba(0,0,0,0.05);
        }
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; overflow-x: hidden; }
        body { overflow-x: hidden;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
            background: var(--bg); color: var(--txt); line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }
        body.noscroll { overflow: hidden; }
        .container { width: 90%; max-width: 1100px; margin: 0 auto; box-sizing: border-box; }
        section { padding: 3rem 0; border-bottom: 1px solid var(--sep); }
        @media (min-width: 768px) { section { padding: 5rem 0; } }
        section:nth-of-type(even) { background: var(--bg-alt); }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3 { line-height: 1.15; margin-bottom: 0.9rem; }
        h1 { font-size: clamp(2rem, 5.5vw, 4rem); font-weight: 900; letter-spacing: -0.04em; }
        h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; letter-spacing: -0.02em; }
        h3 { font-size: 1.1rem; font-weight: 700; }
        @media (min-width: 768px) { h3 { font-size: 1.3rem; } }
        .tc { text-align: center; }
        .grid { display: grid; gap: 1.5rem; }
        @media (min-width: 768px) {
            .g2 { grid-template-columns: repeat(2,1fr); }
            .g3 { grid-template-columns: repeat(3,1fr); }
            .g4 { grid-template-columns: repeat(4,1fr); }
        }
        *:focus-visible { outline: 2px solid #3b82f6; outline-offset: 2px; }

        /* Buttons */
        .btn {
            display: inline-block; padding: 0.85rem 1.85rem;
            text-decoration: none; border-radius: 12px; font-weight: 700;
            font-size: 0.95rem; transition: all 0.22s; letter-spacing: 0.01em;
            cursor: pointer; border: none; font-family: inherit;
        }
        .btn-p {
            background: #1a1a1a; color: #fff;
            border: 1.5px solid rgba(255,255,255,0.12);
            box-shadow: 0 4px 16px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.08);
        }
        .btn-p:hover { background: #2d2d2d; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.28); }
        .btn-s {
            background: rgba(255,255,255,0.5); color: #1a1a1a;
            border: 1.5px solid rgba(0,0,0,0.14);
            backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 2px 12px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
        }
        .btn-s:hover { background: rgba(255,255,255,0.75); transform: translateY(-1px); }

        /* Cards */
        .card {
            background: var(--glass-bg); border: 1px solid var(--glass-border);
            border-radius: 20px; padding: 2rem;
            backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
            box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,0.9);
            transition: transform 0.2s, box-shadow 0.2s; position: relative; overflow: hidden;
        }
        .card::before {
            content: ''; position: absolute; inset: 0; border-radius: inherit;
            background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 60%);
            pointer-events: none;
        }
        @supports not (backdrop-filter: blur(16px)) { .card { background: #fff; } }
        .card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }

        /* Top bar */
        .top-bar {
            padding: 1rem 0; background: #f8f8f6;
            border-bottom: 1px solid rgba(0,0,0,0.07);
            position: sticky; top: 0; z-index: 200; text-align: center;
        }
        .top-bar .container { display: flex; justify-content: center; align-items: center; }
        .top-bar-loc {
            font-size: 1rem; font-weight: 900; letter-spacing: 0.2em;
            text-transform: uppercase; color: #1a1a1a;
        }

        /* Hero */
        .hero {
            padding: 4rem 0 3.5rem; text-align: center;
            background: linear-gradient(160deg, #141414 0%, #0a0a0a 100%);
            color: #fff; position: relative; overflow: hidden;
            width: 100%; border-bottom: none;
        }
        @media (min-width: 768px) { .hero { padding: 5.5rem 0 4rem; } }
        #hero { border-bottom: none; }
        .hero > .container { position: relative; z-index: 2; }
        .hero h1 {
            background: linear-gradient(180deg, #fff 60%, rgba(255,255,255,0.7) 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text; max-width: 820px; margin: 0 auto 0.5rem;
        }
        .hero-sub {
            color: rgba(255,255,255,0.65); font-size: 1.05rem;
            max-width: 540px; margin: 0 auto 1.75rem;
        }
        .hero-pills {
            display: flex; flex-wrap: wrap; justify-content: center;
            gap: 0.5rem; margin-bottom: 1.75rem;
        }
        .hero-pill {
            font-size: 0.92rem; font-weight: 800; letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #ffffff; background: rgba(255,255,255,0.13);
            border: 1.5px solid rgba(255,255,255,0.35); border-radius: 20px;
            padding: 0.55rem 1.2rem; backdrop-filter: blur(8px);
            text-shadow: 0 1px 4px rgba(0,0,0,0.4);
        }
        .hero-badges { display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 1.75rem; flex-wrap: wrap; }
        .hero-badge {
            display: flex; flex-direction: column; align-items: center;
            background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
            border-radius: 14px; padding: 0.75rem 1.25rem; min-width: 90px;
            backdrop-filter: blur(10px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
        }
        .badge-num { font-size: 1.4rem; font-weight: 800; color: #fff; line-height: 1; }
        .badge-lbl { font-size: 0.68rem; color: rgba(255,255,255,0.5); margin-top: 0.25rem; }
        .hero-btns { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }
        .hero .btn-p { background: rgba(255,255,255,0.95); color: #111; border: 1.5px solid rgba(255,255,255,0.2); box-shadow: 0 4px 20px rgba(0,0,0,0.3), inset 0 1px 0 #fff; }
        .hero .btn-p:hover { background: #fff; box-shadow: 0 8px 30px rgba(0,0,0,0.35); }
        .hero .btn-s { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.9); border: 1.5px solid rgba(255,255,255,0.2); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
        .hero .btn-s:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.4); color: #fff; }

        /* Coverflow */
        .cf-wrap {
            position: relative; z-index: 2; width: 100%; max-width: 100%; overflow: hidden;
            margin-top: 3rem; padding-bottom: 3rem;
            border-top: 1px solid rgba(255,255,255,0.07);
            background: #fafafa;
        }
        .cf-wrap::after {
            content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
            background: linear-gradient(to bottom, transparent 0%, #fafafa 100%);
            pointer-events: none; z-index: 10;
        }
        .cf-stage {
            position: relative; width: 100%; height: auto; min-height: 320px;
            perspective: 900px; transform-style: preserve-3d;
            display: flex; justify-content: center; align-items: center; overflow: hidden;
            background: #fafafa; padding: 1.5rem 0;
        }
        @media (min-width: 768px) { .cf-stage { height: auto; min-height: 480px; } }
        .cf-stage::before { display: none; }
        .cf-fade-r { display: none; }
        .cf-item {
            position: absolute; width: 72%; max-width: 680px;
            aspect-ratio: 16/10; border-radius: 20px; overflow: hidden;
            opacity: 0; pointer-events: none; transform: scale(0.85);
            transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.5s ease;
            background: rgba(255,255,255,0.75);
            backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
            padding: 14px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            border: none; outline: none;
        }
        @media (min-width: 768px) { .cf-item { width: 52%; } }
        .cf-item img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 12px; }
        .cf-item.cf-a { opacity: 1; pointer-events: auto; z-index: 5; transform: translateX(0) scale(1) translateZ(0); box-shadow: 0 20px 60px rgba(0,0,0,0.14); }
        .cf-item.cf-p { opacity: 0.6; pointer-events: auto; z-index: 4; transform: translateX(-30%) scale(0.87) translateZ(-40px) rotateY(8deg); }
        .cf-item.cf-n { opacity: 0.6; pointer-events: auto; z-index: 4; transform: translateX(30%) scale(0.87) translateZ(-40px) rotateY(-8deg); }
        @media (min-width: 768px) {
            .cf-item.cf-p { transform: translateX(-38%) scale(0.87) translateZ(-40px) rotateY(10deg); }
            .cf-item.cf-n { transform: translateX(38%) scale(0.87) translateZ(-40px) rotateY(-10deg); }
        }
        .cf-ctrls { display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem; background: #fafafa; padding-bottom: 0.5rem; }
        .cf-btn {
            background: rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.12);
            color: #1a1a1a; width: 48px; height: 48px; border-radius: 50%;
            display: flex; justify-content: center; align-items: center;
            cursor: pointer; transition: all 0.2s;
        }
        .cf-btn:hover { background: rgba(0,0,0,0.12); border-color: rgba(0,0,0,0.22); outline: none; }
        .cf-btn svg { width: 20px; height: 20px; fill: none; stroke: #1a1a1a; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
        .cf-dots { display: flex; justify-content: center; gap: 6px; margin-top: 1rem; background: #fafafa; padding-bottom: 0.25rem; }
        .cf-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,0.18); border: none; padding: 0; cursor: pointer; transition: background 0.2s, transform 0.2s; }
        .cf-dot.on { background: #1a1a1a; transform: scale(1.4); }
        @supports not (transform-style: preserve-3d) {
            .cf-stage { height: auto; display: block; }
            .cf-item { position: relative; width: 100%; opacity: 1 !important; transform: none !important; display: none; }
            .cf-item.cf-a { display: block; }
        }
        @media (prefers-reduced-motion: reduce) { .cf-item { transition: none; } }

        /* Icon wrap */
        .ico { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 14px; background: rgba(0,0,0,0.05); margin-bottom: 1rem; border: 1px solid rgba(0,0,0,0.06); }
        .ico svg { width: 22px; height: 22px; stroke: var(--txt); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }

        /* Stats */
        .stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: 2rem; }
        @media (min-width: 600px) { .stats-grid { grid-template-columns: repeat(3,1fr); } }
        @media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(5,1fr); } }
        .stat { text-align: center; padding: 1.5rem 1rem; }
        .stat-n { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; letter-spacing: -0.03em; display: block;
            -webkit-text-stroke: 1.5px #1a1a1a; paint-order: stroke fill; }
        .stat-l { font-size: 0.75rem; font-weight: 700; color: #555; margin-top: 0.2rem; 
            text-transform: uppercase; letter-spacing: 0.08em; }

        /* Process */
        .ptl { display: flex; align-items: flex-start; justify-content: center; gap: 0; margin-top: 3rem; flex-wrap: wrap; }
        .pstep { display: flex; flex-direction: column; align-items: center; flex: 1; min-width: 140px; max-width: 200px; text-align: center; }
        .pcircle { width: 64px; height: 64px; border-radius: 50%; background: #1a1a1a; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; flex-shrink: 0; box-shadow: 0 4px 16px rgba(0,0,0,0.2), 0 0 0 4px rgba(255,255,255,0.8), 0 0 0 5px rgba(0,0,0,0.06); }
        .ptxt { margin-top: 1rem; padding: 0 0.5rem; }
        .ptxt h3 { font-size: 0.92rem; margin-bottom: 0.35rem; }
        .ptxt p { font-size: 0.8rem; color: #666; line-height: 1.5; }
        .parr { flex-shrink: 0; display: flex; align-items: center; padding-bottom: 3.5rem; }
        .parr svg { width: 28px; height: 28px; stroke: #1a1a1a; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 0 1px rgba(0,0,0,0.15)); }
        @media (max-width: 767px) { .ptl { flex-direction: column; align-items: center; gap: 1rem; } .parr { transform: rotate(90deg); padding-bottom: 0; } .pstep { max-width: 280px; } }

        /* Reviews */
        .rev { text-align: left; }
        .stars { display: flex; gap: 3px; margin-bottom: 0.75rem; }
        .stars svg { width: 15px; height: 15px; fill: #1a1a1a; }
        .rev-txt { font-size: 0.92rem; line-height: 1.65; color: #333; margin-bottom: 1rem; font-style: italic; }
        .rev-name { font-size: 0.82rem; font-weight: 700; }
        .rev-loc { font-size: 0.75rem; color: #888; }

        /* Form */
        .form-field { margin-bottom: 1.25rem; }
        .form-field label { display: block; margin-bottom: 0.4rem; font-weight: 600; font-size: 0.88rem; color: #444; }
        .form-field input, .form-field textarea, .form-field select {
            width: 100%; padding: 0.8rem 1rem; border-radius: 12px;
            border: 1px solid rgba(0,0,0,0.1); font-size: 0.95rem;
            background: rgba(255,255,255,0.7); backdrop-filter: blur(8px);
            transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; font-family: inherit;
        }
        .form-field input:focus, .form-field textarea:focus, .form-field select:focus {
            border-color: #1a1a1a; box-shadow: 0 0 0 3px rgba(26,26,26,0.08); outline: none; background: #fff;
        }
        .form-row { display: grid; gap: 1rem; }
        @media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
        .honeypot { position: absolute; left: -5000px; }
        .form-box { background: var(--glass-bg); padding: 2.5rem; border-radius: 24px; border: 1px solid var(--glass-border); box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); max-width: 680px; margin: 0 auto; }
        .form-head { text-align: center; margin-bottom: 2rem; }
        .form-head h2 { margin-bottom: 0.35rem; }
        .form-head p { color: #666; font-size: 0.9rem; }
        #form-success { display: none; max-width: 680px; margin: 0 auto; }

        /* Map */
        .map-ph { width: 100%; height: 300px; background: rgba(0,0,0,0.05); border-radius: 16px; border: 1px solid rgba(0,0,0,0.07); margin-top: 2rem; }

        /* Popup */
        .popup-ov { display: none; position: fixed; inset: 0; background: rgba(10,10,10,0.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 999; justify-content: center; align-items: center; padding: 1rem; }
        .popup-ov.on { display: flex; }
        .popup-box { background: rgba(255,255,255,0.85); backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px); border: 1px solid rgba(255,255,255,0.9); border-radius: 24px; padding: 2.5rem; width: 100%; max-width: 460px; position: relative; box-shadow: 0 32px 80px rgba(0,0,0,0.2), inset 0 1px 0 #fff; animation: popIn 0.28s cubic-bezier(0.34,1.56,0.64,1); }
        @keyframes popIn { from { opacity:0; transform: translateY(20px) scale(0.95); } to { opacity:1; transform: none; } }
        .popup-x { position: absolute; top: 1rem; right: 1rem; background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.08); cursor: pointer; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: #666; transition: background 0.15s; }
        .popup-x:hover { background: rgba(0,0,0,0.1); }
        .popup-x svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2.5; fill: none; stroke-linecap: round; }
        .popup-ttl { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.35rem; letter-spacing: -0.02em; }
        .popup-sub { font-size: 0.88rem; color: #666; margin-bottom: 1.5rem; }
        .call-btn { display: flex; align-items: center; justify-content: center; gap: 0.6rem; width: 100%; padding: 1rem; background: #1a1a1a; color: #fff; border: none; border-radius: 12px; font-size: 1.05rem; font-weight: 700; text-decoration: none; margin-bottom: 1.25rem; cursor: pointer; transition: all 0.2s; box-shadow: 0 4px 16px rgba(0,0,0,0.2); font-family: inherit; }
        .call-btn:hover { background: #2d2d2d; transform: translateY(-1px); }
        .call-btn svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; }
        .pdivider { display: flex; align-items: center; gap: 0.75rem; color: #bbb; font-size: 0.82rem; margin-bottom: 1.25rem; }
        .pdivider::before, .pdivider::after { content: ''; flex: 1; height: 1px; background: rgba(0,0,0,0.1); }
        .popup-form .form-field { margin-bottom: 1rem; }
        .popup-form .form-field label { display: block; margin-bottom: 0.35rem; font-weight: 600; font-size: 0.85rem; color: #444; }
        .popup-form .form-field input { width: 100%; padding: 0.75rem 1rem; border-radius: 10px; border: 1px solid rgba(0,0,0,0.12); font-size: 0.95rem; background: rgba(255,255,255,0.7); font-family: inherit; }
        .popup-form .form-field input:focus { outline: none; border-color: #1a1a1a; background: #fff; }
        .popup-submit { width: 100%; padding: 0.9rem; background: rgba(255,255,255,0.5); border: 1.5px solid rgba(0,0,0,0.2); color: #1a1a1a; border-radius: 12px; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: all 0.2s; font-family: inherit; }
        .popup-submit:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
        .popup-ok { display: none; text-align: center; padding: 1rem 0; }
        .popup-ok h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
        .popup-ok p { color: #666; }

        /* Sticky bar */
        .sbar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: rgba(255,255,255,0.93); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid rgba(0,0,0,0.1); padding: 0.65rem 1rem; z-index: 190; box-shadow: 0 -4px 24px rgba(0,0,0,0.1); }
        @media (max-width: 767px) { .sbar { display: flex; gap: 0.5rem; } }
        .sbar a, .sbar button { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem; padding: 0.45rem 0.25rem; border: none; background: transparent; font-family: inherit; color: var(--txt); text-decoration: none; cursor: pointer; border-radius: 10px; transition: background 0.15s; font-size: 0.68rem; font-weight: 600; }
        .sbar a:hover, .sbar button:hover { background: rgba(0,0,0,0.05); }
        .sbar svg { width: 22px; height: 22px; stroke: var(--txt); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
        .sbar .sb-p { background: #1a1a1a; color: #fff; }
        .sbar .sb-p svg { stroke: #fff; }
        .sbar .sb-p:hover { background: #2d2d2d; }

        /* Footer */
        footer { padding: 2.5rem 0; text-align: center; background: var(--bg-alt); border-top: 1px solid rgba(0,0,0,0.06); }
        footer nav { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
        footer nav a { color: var(--txt); text-decoration: none; font-weight: 500; opacity: 0.65; transition: opacity 0.2s; font-size: 0.9rem; }
        footer nav a:hover { opacity: 1; }

        @media (max-width: 767px) { main { padding-bottom: 80px; } }

        /* ── Cookie Banner ──────────────────────────────────────── */
        #cookie-banner { position:fixed; bottom:0; left:0; right:0; z-index:9000; padding:1rem; display:flex; justify-content:center; pointer-events:none; animation:cookieIn 0.4s cubic-bezier(0.34,1.2,0.64,1) both; }
        @keyframes cookieIn { from { transform:translateY(120%); opacity:0; } to { transform:translateY(0); opacity:1; } }
        #cookie-banner.cookie-hide { animation:cookieOut 0.3s ease forwards; pointer-events:none; }
        @keyframes cookieOut { to { transform:translateY(120%); opacity:0; } }
        .cookie-box { pointer-events:all; background:rgba(255,255,255,0.92); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border:1px solid rgba(255,255,255,0.9); border-radius:20px; box-shadow:0 8px 40px rgba(0,0,0,0.14),inset 0 1px 0 #fff; padding:1.1rem 1.4rem; display:flex; align-items:center; gap:1.2rem; max-width:780px; width:100%; }
        .cookie-icon { font-size:1.4rem; line-height:1; flex-shrink:0; user-select:none; }
        .cookie-text { flex:1; font-size:0.84rem; color:#444; line-height:1.55; }
        .cookie-text a { color:#1a1a1a; font-weight:600; text-decoration:underline; text-underline-offset:2px; }
        .cookie-btn { flex-shrink:0; background:#1a1a1a; color:#fff; border:none; border-radius:10px; padding:0.6rem 1.3rem; font-size:0.88rem; font-weight:700; font-family:inherit; cursor:pointer; transition:background 0.18s,transform 0.18s; white-space:nowrap; box-shadow:0 2px 10px rgba(0,0,0,0.18); }
        .cookie-btn:hover { background:#2d2d2d; transform:translateY(-1px); }
        @media (max-width:767px) { #cookie-banner { bottom:72px; padding:0.75rem; } .cookie-box { flex-direction:column; align-items:flex-start; gap:0.85rem; border-radius:16px; padding:1rem 1.15rem; } .cookie-icon { display:none; } .cookie-btn { width:100%; text-align:center; } }

                /* Nav bar */
        .nav-bar {
            background: #1a1a1a;
            overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
            position: sticky; top: 0; z-index: 199;
            box-shadow: 0 2px 12px rgba(0,0,0,0.22);
        }
        .nav-bar::-webkit-scrollbar { display: none; }
        .nav-bar .container { display: flex; align-items: center; justify-content: center; gap: 0; white-space: nowrap; }
        @media (max-width: 767px) { .nav-bar .container { justify-content: flex-start; } }
        .nav-bar a {
            display: inline-block; padding: 1rem 1.5rem;
            font-size: 0.75rem; font-weight: 800; letter-spacing: 0.13em;
            text-transform: uppercase; color: rgba(255,255,255,0.6);
            text-decoration: none; border-bottom: 3px solid transparent;
            transition: color 0.18s, border-color 0.18s, background 0.18s;
        }
        .nav-bar a:hover { color: #fff; background: rgba(255,255,255,0.07); border-bottom-color: rgba(255,255,255,0.35); }
        .nav-bar a.active { color: #fff; border-bottom-color: #fff; }
        @media (max-width: 767px) { .nav-bar a { padding: 0.8rem 0.9rem; font-size: 0.68rem; letter-spacing: 0.1em; } }

        /* FAQ Accordion */
        .faq-list { max-width:820px; margin:2rem auto 0; }
        .faq-item { border-bottom:1px solid rgba(0,0,0,0.07); }
        .faq-item:first-child { border-top:1px solid rgba(0,0,0,0.07); }
        .faq-q {
            width:100%; text-align:left; background:none; border:none;
            padding:1.3rem 0; display:flex; justify-content:space-between;
            align-items:center; gap:1rem; cursor:pointer; font-family:inherit;
            font-size:1rem; font-weight:700; color:#1a1a1a; line-height:1.4;
        }
        .faq-q:hover { color:#444; }
        .faq-icon { flex-shrink:0; width:24px; height:24px; border-radius:50%;
            background:#1a1a1a; display:flex; align-items:center; justify-content:center;
            transition:transform 0.25s; }
        .faq-icon svg { width:12px; height:12px; stroke:#fff; stroke-width:2.5; fill:none; stroke-linecap:round; transition:transform 0.25s; }
        .faq-item.open .faq-icon { background:#444; }
        .faq-item.open .faq-icon svg { transform:rotate(45deg); }
        .faq-a { display:none; padding:0 0 1.3rem; color:#444; font-size:0.95rem; line-height:1.7; }
        .faq-item.open .faq-a { display:block; }
        .faq-a a { color:#1a1a1a; font-weight:700; text-decoration:underline; text-underline-offset:3px; }
        .faq-cat { font-size:0.72rem; font-weight:800; letter-spacing:0.12em; text-transform:uppercase;
            color:#888; margin:2.5rem 0 0.5rem; max-width:820px; margin-left:auto; margin-right:auto; }
        .faq-cat:first-of-type { margin-top:0; }
        /* Semantic heading helpers */
        .vis-h3 { font-size: 1.1rem; font-weight: 700; }
        @media (min-width: 768px) { .vis-h3 { font-size: 1.3rem; } }
    
        /* Blog article styles */
        .blog-hero { background: linear-gradient(160deg,#141414 0%,#0a0a0a 100%); color:#fff; padding:5rem 0 4rem; text-align:center; border-bottom:none; }
        .blog-meta { font-size:0.82rem; color:#888; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:1rem; }
        .blog-meta span { margin:0 0.5rem; }
        .article-body { max-width:760px; margin:0 auto; }
        .article-body h2 { font-size:1.45rem; margin:2.5rem 0 1rem; border-bottom:2px solid #f0f0f0; padding-bottom:0.5rem; }
        .article-body h3 { font-size:1.1rem; margin:1.8rem 0 0.7rem; color:#1a1a1a; }
        .article-body p { margin-bottom:1.2rem; line-height:1.8; color:#333; }
        .article-body ul { margin:0 0 1.2rem 1.5rem; }
        .article-body ul li { margin-bottom:0.5rem; line-height:1.7; color:#333; }
        .article-body a { color:#1a1a1a; font-weight:700; text-decoration:underline; text-underline-offset:3px; }
        .article-body a:hover { opacity:0.7; }
        .price-table { width:100%; border-collapse:collapse; margin:1.5rem 0 2rem; font-size:0.92rem; }
        .table-wrap { overflow-x:auto; -webkit-overflow-scrolling:touch; margin:1.5rem 0 2rem; }
        .table-wrap .price-table { margin:0; }
        .price-table th { background:#1a1a1a; color:#fff; padding:0.8rem 1rem; text-align:left; }
        .price-table td { padding:0.75rem 1rem; border-bottom:1px solid #eee; }
        .price-table tr:nth-child(even) td { background:#f8f8f6; }
        .price-table tr:hover td { background:#f0f0ee; }
        .price-table tr.price-highlight:hover td { background:#1a1a1a!important; color:#fff; }
        .price-highlight { background:#1a1a1a!important; color:#fff; font-weight:700; }
        .callout { background:#f8f8f6; border-left:4px solid #1a1a1a; padding:1.2rem 1.5rem; margin:1.5rem 0 2rem; border-radius:0 8px 8px 0; }
        .callout p { margin:0; color:#333; }
        .callout strong { color:#1a1a1a; }
        .toc { background:#f8f8f6; border:1px solid #e8e8e6; border-radius:12px; padding:1.5rem; margin:2rem 0; }
        .toc h4 { margin:0 0 0.8rem; font-size:0.9rem; text-transform:uppercase; letter-spacing:0.1em; color:#888; }
        .toc ol { margin:0 0 0 1.2rem; }
        .toc ol li { margin-bottom:0.4rem; font-size:0.92rem; }
        .toc ol li a { font-weight:600; text-decoration:none; color:#1a1a1a; }
        .toc ol li a:hover { text-decoration:underline; }
        .author-box { display:flex; align-items:center; gap:1rem; background:#f8f8f6; border-radius:12px; padding:1.2rem 1.5rem; margin:2.5rem 0 0; }
        .author-avatar { width:48px; height:48px; background:#1a1a1a; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
        .author-avatar svg { width:24px; height:24px; stroke:#fff; fill:none; stroke-width:2; }
        .author-info { font-size:0.85rem; color:#555; }
        .author-info strong { color:#1a1a1a; display:block; margin-bottom:0.2rem; }
        .breadcrumb { font-size:0.8rem; color:#888; margin-bottom:2rem; }
        .breadcrumb a { color:#888; text-decoration:none; }
        .breadcrumb a:hover { color:#1a1a1a; }
        .breadcrumb span { margin:0 0.4rem; }
    
            --txt: #1a1a1a; --bg: #fafafa; --bg-alt: #f4f4f2;
            --glass-bg: rgba(255,255,255,0.72);
            --glass-border: rgba(255,255,255,0.9);
        html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--txt); background: var(--bg); line-height: 1.65; }
        h1,h2,h3 { line-height: 1.2; letter-spacing: -0.02em; }
        h1 { font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 900; }
        h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 0.75rem; }
        h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
        p { margin-bottom: 0.75rem; }
        a { color: var(--txt); }
        .container { width: min(1140px, 92vw); margin: 0 auto; }
        section { padding: 4rem 0; }
        .g3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
        .g2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
        .card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 20px; padding: 2rem; box-shadow: var(--glass-shadow); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
        .btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem 2rem; border-radius: 14px; font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: all 0.2s; border: none; font-family: inherit; text-decoration: none; }
        .btn-p { background: #1a1a1a; color: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
        .btn-p:hover { background: #2d2d2d; transform: translateY(-1px); }
        .btn-s { background: rgba(255,255,255,0.7); color: #1a1a1a; border: 1.5px solid rgba(0,0,0,0.15); }
        .btn-s:hover { background: rgba(255,255,255,0.95); }
        .top-bar { background: #fff; border-bottom: 1px solid rgba(0,0,0,0.07); padding: 0.75rem 0; text-align: center; }
        .top-bar-loc { font-size: 0.9rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
        .nav-bar { background: #1a1a1a; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; position: sticky; top: 0; z-index: 199; box-shadow: 0 2px 12px rgba(0,0,0,0.22); }
        .nav-bar a { display: inline-block; padding: 1rem 1.5rem; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.6); text-decoration: none; border-bottom: 3px solid transparent; transition: color 0.18s, border-color 0.18s, background 0.18s; }
        .hero { background: linear-gradient(160deg, #141414 0%, #0a0a0a 100%); color: #fff; padding: 4rem 0; text-align: center; }
        .hero-sub { font-size: clamp(0.95rem, 2vw, 1.2rem); color: rgba(255,255,255,0.7); margin: 1rem auto 1.5rem; max-width: 600px; }
        .hero-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
        .hero-pill { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); border-radius: 100px; padding: 0.35rem 0.9rem; font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.85); }
        .hero-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
        .call-block { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 2rem; max-width: 460px; margin: 2.5rem auto 3rem; }
        .call-block p { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-bottom: 1rem; }
        .call-big { display: flex; align-items: center; justify-content: center; gap: 0.75rem; width: 100%; padding: 1rem; background: #fff; color: #1a1a1a; border: none; border-radius: 14px; font-size: 1.1rem; font-weight: 800; text-decoration: none; transition: all 0.2s; letter-spacing: -0.01em; }
        .call-big:hover { background: #f0f0f0; transform: translateY(-1px); }
        .call-big svg { width: 22px; height: 22px; stroke: #1a1a1a; fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; }
        .faq-list { max-width: 820px; margin: 2rem auto 0; }
        .faq-item { border-bottom: 1px solid rgba(0,0,0,0.07); }
        .faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.07); }
        .faq-q { width: 100%; text-align: left; background: none; border: none; padding: 1.3rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; cursor: pointer; font-family: inherit; font-size: 1rem; font-weight: 700; color: #1a1a1a; line-height: 1.4; }
        .faq-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: #1a1a1a; display: flex; align-items: center; justify-content: center; }
        .faq-icon svg { width: 12px; height: 12px; stroke: #fff; stroke-width: 2.5; fill: none; stroke-linecap: round; transition: transform 0.25s; }
        .faq-item.open .faq-icon svg { transform: rotate(45deg); }
        .faq-a { display: none; padding: 0 0 1.3rem; color: #444; font-size: 0.95rem; line-height: 1.7; }
        .faq-item.open .faq-a { display: block; }
        .faq-a a { color: #1a1a1a; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
        .related-tag { display: inline-block; padding: 0.45rem 1rem; background: #fff; border: 1px solid #e0e0de; border-radius: 100px; font-size: 0.82rem; font-weight: 600; color: #555; text-decoration: none; transition: all 0.15s; }
        .related-tag:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
        .popup-box { background: rgba(255,255,255,0.9); backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px); border: 1px solid rgba(255,255,255,0.9); border-radius: 24px; padding: 2.5rem; width: 100%; max-width: 460px; position: relative; box-shadow: 0 32px 80px rgba(0,0,0,0.2); animation: popIn 0.28s cubic-bezier(0.34,1.56,0.64,1); }
        .popup-x { position: absolute; top: 1rem; right: 1rem; background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.08); cursor: pointer; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.15s; }
        .popup-x svg { width: 16px; height: 16px; stroke: #666; stroke-width: 2.5; fill: none; stroke-linecap: round; }
        .popup-ttl { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.35rem; }
        .call-btn { display: flex; align-items: center; justify-content: center; gap: 0.6rem; width: 100%; padding: 1rem; background: #1a1a1a; color: #fff; border: none; border-radius: 12px; font-size: 1.05rem; font-weight: 700; text-decoration: none; cursor: pointer; transition: all 0.2s; font-family: inherit; }
        @media (max-width: 767px) { .sbar { display: flex; gap: 0.5rem; } main { padding-bottom: 80px; } }
        .sbar button, .sbar a { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem; padding: 0.45rem 0.25rem; border: none; background: transparent; font-family: inherit; color: var(--txt); text-decoration: none; cursor: pointer; border-radius: 10px; font-size: 0.68rem; font-weight: 600; transition: background 0.15s; }
        #cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000; padding: 1rem; display: flex; justify-content: center; pointer-events: none; animation: cookieIn 0.4s cubic-bezier(0.34,1.2,0.64,1) both; }
        @keyframes cookieIn { from { transform: translateY(120%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
        #cookie-banner.cookie-hide { animation: cookieOut 0.3s ease forwards; }
        @keyframes cookieOut { to { transform: translateY(120%); opacity: 0; } }
        .cookie-box { pointer-events: all; background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.9); border-radius: 20px; box-shadow: 0 8px 40px rgba(0,0,0,0.14); padding: 1.1rem 1.4rem; display: flex; align-items: center; gap: 1.2rem; max-width: 780px; width: 100%; }
        .cookie-text { flex: 1; font-size: 0.84rem; color: #444; line-height: 1.55; }
        .cookie-text a { color: #1a1a1a; font-weight: 600; }
        .cookie-btn { flex-shrink: 0; background: #1a1a1a; color: #fff; border: none; border-radius: 10px; padding: 0.6rem 1.3rem; font-size: 0.88rem; font-weight: 700; font-family: inherit; cursor: pointer; white-space: nowrap; }
        @media (max-width: 767px) { #cookie-banner { bottom: 72px; } .cookie-box { flex-direction: column; border-radius: 16px; } .cookie-btn { width: 100%; text-align: center; } }
        /* ── Reset & base ─────────────────────────────────────────── */
        img { max-width: 100%; display: block; }
        /* ── Layout ───────────────────────────────────────────────── */
        /* ── Cards ────────────────────────────────────────────────── */
        /* ── Buttons ──────────────────────────────────────────────── */
        .btn-s { background: rgba(255,255,255,0.7); color: #1a1a1a; border: 1.5px solid rgba(0,0,0,0.15); backdrop-filter: blur(8px); }
        /* ── Top bar ──────────────────────────────────────────────── */
        /* ── Nav ──────────────────────────────────────────────────── */
        /* ── Hero ─────────────────────────────────────────────────── */
        .hero { background: linear-gradient(160deg, #141414 0%, #0a0a0a 100%); color: #fff; padding: 4rem 0 0; text-align: center; }
        .hero-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem; }
        .hero-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
        /* ── Slider ───────────────────────────────────────────────── */
        .cf-wrap { position: relative; z-index: 2; width: 100%; overflow: hidden; margin-top: 3rem; padding-bottom: 3rem; border-top: 1px solid rgba(255,255,255,0.07); background: #fafafa; }
        .cf-stage { position: relative; width: 100%; height: 300px; perspective: 900px; transform-style: preserve-3d; display: flex; justify-content: center; align-items: center; overflow: hidden; background: #fafafa; padding: 1.5rem 0; }
        .cf-item { position: absolute; width: 72%; max-width: 680px; aspect-ratio: 16/10; border-radius: 20px; overflow: hidden; opacity: 0; pointer-events: none; transform: scale(0.85); transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.5s ease; background: rgba(255,255,255,0.75); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); padding: 14px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
        .cf-btn { background: rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.12); color: #1a1a1a; width: 48px; height: 48px; border-radius: 50%; display: flex; justify-content: center; align-items: center; cursor: pointer; transition: all 0.2s; }
        .cf-btn:hover { background: rgba(0,0,0,0.12); }
        /* ── FAQ ──────────────────────────────────────────────────── */
        .faq-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: #1a1a1a; display: flex; align-items: center; justify-content: center; transition: transform 0.25s; }
        /* ── Related pages grid ───────────────────────────────────── */
        @media (max-width:700px) { }
        @media (max-width:420px) { }
        .related-tag { display:inline-block; padding:0.45rem 1rem; background:#fff; border:1px solid #e0e0de; border-radius:100px; font-size:0.82rem; font-weight:600; color:#555; text-decoration:none; transition:all 0.15s; }
        .related-tag:hover { background:#1a1a1a; color:#fff; border-color:#1a1a1a; }
        /* ── Breadcrumb ───────────────────────────────────────────── */
        .breadcrumb { font-size: 0.8rem; color: #888; margin-bottom: 1.5rem; }
        .breadcrumb a { color: #888; text-decoration: none; }
        .breadcrumb a:hover { color: #1a1a1a; }
        .breadcrumb span { margin: 0 0.4rem; }
        /* ── Ico ──────────────────────────────────────────────────── */
        /* ── Popup ────────────────────────────────────────────────── */
        .call-btn { display: flex; align-items: center; justify-content: center; gap: 0.6rem; width: 100%; padding: 1rem; background: #1a1a1a; color: #fff; border: none; border-radius: 12px; font-size: 1.05rem; font-weight: 700; text-decoration: none; cursor: pointer; transition: all 0.2s; box-shadow: 0 4px 16px rgba(0,0,0,0.2); font-family: inherit; }
        /* ── Mobile sticky bar ────────────────────────────────────── */
        /* ── Footer ───────────────────────────────────────────────── */
        /* ── Cookie ───────────────────────────────────────────────── */
        #cookie-banner.cookie-hide { animation: cookieOut 0.3s ease forwards; pointer-events: none; }
        .cookie-box { pointer-events: all; background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.9); border-radius: 20px; box-shadow: 0 8px 40px rgba(0,0,0,0.14); padding: 1.1rem 1.4rem; display: flex; align-items: center; gap: 1.2rem; max-width: 780px; width: 100%; }
        @media (max-width:767px) { #cookie-banner { bottom: 72px; } .cookie-box { flex-direction: column; border-radius: 16px; } .cookie-btn { width: 100%; text-align: center; } }
/* ── Blog Grid & Cards ─────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}
.blog-card {
    background: #fff;
    border: 1px solid #e8e6e1;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover {
    border-color: #1a1a1a;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.6rem;
}
.blog-card-meta {
    display: flex;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: #999;
}
.blog-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
}
.blog-card-excerpt {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}
.blog-card-cta {
    font-size: 0.83rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 0.5rem;
}
