:root {
    --gold: #C9A84C;
    --gold-light: #E8D49A;
    --gold-dark: #8B6914;
    --black: #0E0E0E;
    --white: #FAFAF7;
    --gray-50: #F5F4F0;
    --gray-100: #E8E6DF;
    --gray-300: #B8B4A8;
    --gray-600: #6B6760;
    --gray-800: #2A2924;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  }
  * { margin:0; padding:0; box-sizing:border-box; }
  body { font-family:var(--font-body); background:var(--white); color:var(--black); font-size:15px; line-height:1.6; overflow-x:hidden; }

  /* ── NAV ── */
  /* ── NAV — Glassmorphism sticky header ── */
  nav {
    position:fixed; top:0; left:0; right:0; z-index:200;
    /* Glassmorphism: semi-transparent warm-dark tinted backdrop */
    background:rgba(14,14,8,0.82);
    backdrop-filter:blur(18px) saturate(1.4);
    -webkit-backdrop-filter:blur(18px) saturate(1.4);
    border-bottom:1px solid rgba(201,168,76,0.12);
    padding:0 5vw; display:flex; align-items:center; justify-content:space-between; height:64px;
    transition:background 0.3s ease, box-shadow 0.3s ease;
  }
  nav.scrolled {
    background:rgba(10,10,6,0.95);
    box-shadow:0 4px 32px rgba(0,0,0,0.35);
  }
  .nav-logo { text-decoration:none; display:flex; align-items:center; }
  .nav-logo img { height:40px; width:auto; display:block; }
  .nav-links { display:flex; align-items:center; gap:28px; list-style:none; }
  .nav-links a { font-size:12px; font-weight:400; letter-spacing:0.08em; text-transform:uppercase; color:rgba(250,250,247,0.65); text-decoration:none; transition:color var(--transition); }
  .nav-links a:hover { color:var(--gold); }
  .nav-right { display:flex; align-items:center; gap:12px; }

  /* ── Language dropdown ── */
  .nav-lang { position:relative; }
  .lang-trigger {
    display:flex; align-items:center; gap:5px;
    font-size:11px; font-weight:500; letter-spacing:0.1em; text-transform:uppercase;
    color:rgba(250,250,247,0.55); cursor:pointer; background:none; border:none;
    padding:5px 9px; border-radius:4px; font-family:var(--font-body);
    border:1px solid rgba(255,255,255,0.1);
    transition:all var(--transition);
  }
  .lang-trigger:hover, .lang-trigger.open { color:var(--gold); border-color:rgba(201,168,76,0.35); background:rgba(201,168,76,0.06); }
  .lang-trigger svg { width:9px; height:9px; stroke:currentColor; fill:none; stroke-width:2.5; transition:transform 0.2s ease; }
  .lang-trigger.open svg { transform:rotate(180deg); }
  .lang-flag { font-size:13px; line-height:1; }
  .lang-dropdown {
    display:none; position:absolute; top:calc(100% + 8px); right:0;
    background:rgba(14,14,8,0.97); backdrop-filter:blur(16px);
    border:1px solid rgba(201,168,76,0.18); border-radius:8px;
    padding:5px; min-width:130px; z-index:300;
    box-shadow:0 12px 40px rgba(0,0,0,0.5);
    animation:dropIn 0.18s ease;
  }
  .lang-dropdown.open { display:block; }
  @keyframes dropIn { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:translateY(0)} }
  .lang-opt {
    display:flex; align-items:center; gap:10px; width:100%;
    padding:9px 12px; border-radius:5px; border:none; background:none;
    font-size:12px; font-weight:400; letter-spacing:0.06em; text-transform:uppercase;
    color:rgba(250,250,247,0.55); cursor:pointer; font-family:var(--font-body);
    transition:all var(--transition); text-align:left;
  }
  .lang-opt:hover { background:rgba(201,168,76,0.08); color:var(--gold); }
  .lang-opt.active { color:var(--gold); background:rgba(201,168,76,0.1); }
  .lang-opt .flag { font-size:15px; }
  .lang-opt .lname { font-size:11px; }

  .nav-cta {
    background:var(--gold); color:var(--black); font-size:11px; font-weight:500;
    letter-spacing:0.08em; text-transform:uppercase; padding:9px 18px;
    border-radius:3px; text-decoration:none; transition:all var(--transition);
    white-space:nowrap;
  }
  .nav-cta:hover { background:var(--gold-light); }

  /* ── Burger ── */
  .burger {
    display:none; flex-direction:column; justify-content:center;
    gap:5px; cursor:pointer; background:none; border:none; padding:8px;
    width:38px; height:38px;
  }
  .burger span {
    display:block; width:22px; height:1.5px; background:rgba(250,250,247,0.8);
    transition:transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin:center;
  }
  /* Burger → X animation */
  .burger.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity:0; width:0; }
  .burger.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }

  /* ── Mobile nav drawer ── */
  .mobile-nav {
    display:none;
    position:fixed; top:64px; left:0; right:0;
    /* Glassmorphism: matches nav palette */
    background:rgba(10,10,6,0.97);
    backdrop-filter:blur(20px) saturate(1.3);
    -webkit-backdrop-filter:blur(20px) saturate(1.3);
    border-bottom:1px solid rgba(201,168,76,0.12);
    padding:18px 5vw 24px;
    z-index:199; flex-direction:column; gap:0;
    transform:translateY(-8px); opacity:0;
    transition:transform 0.3s ease, opacity 0.3s ease;
  }
  .mobile-nav.open {
    display:flex; transform:translateY(0); opacity:1;
  }
  .mobile-nav a {
    font-size:14px; letter-spacing:0.08em; text-transform:uppercase;
    color:rgba(250,250,247,0.6); text-decoration:none;
    padding:13px 0; border-bottom:1px solid rgba(255,255,255,0.06);
    transition:color var(--transition), padding-left var(--transition);
  }
  .mobile-nav a:hover { color:var(--gold); padding-left:6px; }
  .mobile-nav a:last-child { border-bottom:none; }
  .mobile-nav .mobile-cta {
    margin-top:14px; text-align:center;
    background:var(--gold); color:var(--black);
    padding:13px; border-radius:4px; font-weight:500;
    letter-spacing:0.1em; border-bottom:none !important;
  }
  .mobile-nav .mobile-cta:hover { background:var(--gold-light); padding-left:0; }
  /* Mobile language row */
  .mobile-lang-row {
    display:flex; gap:8px; padding:14px 0 4px;
    border-bottom:1px solid rgba(255,255,255,0.06);
  }
  .mobile-lang-btn {
    flex:1; padding:9px 6px; border-radius:4px; border:1px solid rgba(255,255,255,0.1);
    background:none; font-size:12px; font-weight:500; letter-spacing:0.08em;
    text-transform:uppercase; color:rgba(250,250,247,0.45); cursor:pointer;
    font-family:var(--font-body); display:flex; flex-direction:column; align-items:center; gap:3px;
    transition:all var(--transition);
  }
  .mobile-lang-btn .flag { font-size:16px; }
  .mobile-lang-btn.active, .mobile-lang-btn:hover {
    background:rgba(201,168,76,0.12); color:var(--gold); border-color:rgba(201,168,76,0.3);
  }

  /* ── HERO ── */
  .hero { height:100vh; min-height:640px; position:relative; display:flex; align-items:center; justify-content:center; overflow:hidden; }
  .hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; background-repeat:no-repeat; }
  .hero-pattern { position:absolute; inset:0; background:linear-gradient(to bottom, rgba(10,10,8,0.55) 0%, rgba(10,10,8,0.45) 50%, rgba(10,10,8,0.72) 100%); }
  .hero-img { display:none; }
  .hero-content { position:relative; text-align:center; padding:0 5vw; max-width:820px; animation:fadeUp 1s ease 0.2s both; }
  @keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
  .hero-tag { display:inline-block; font-size:11px; font-weight:500; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); border:1px solid rgba(201,168,76,0.4); padding:6px 18px; border-radius:2px; margin-bottom:28px; }
  .hero h1 { font-family:var(--font-display); font-size:clamp(44px,7vw,88px); font-weight:300; line-height:1.1; color:var(--white); letter-spacing:-0.01em; margin-bottom:22px; }
  .hero h1 em { font-style:italic; color:var(--gold-light); }
  .hero p { font-size:16px; color:rgba(250,250,247,0.7); max-width:520px; margin:0 auto 40px; line-height:1.7; }
  .hero-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
  .btn-primary { background:var(--gold); color:var(--black); font-size:13px; font-weight:500; letter-spacing:0.08em; text-transform:uppercase; padding:14px 32px; border-radius:3px; text-decoration:none; border:none; cursor:pointer; transition:all var(--transition); font-family:var(--font-body); }
  .btn-primary:hover { background:var(--white); }
  .btn-outline { background:transparent; color:var(--white); font-size:13px; font-weight:400; letter-spacing:0.06em; text-transform:uppercase; padding:14px 32px; border-radius:3px; text-decoration:none; border:1px solid rgba(255,255,255,0.3); cursor:pointer; transition:all var(--transition); }
  .btn-outline:hover { border-color:var(--gold); color:var(--gold); }
  .hero-scroll { position:absolute; bottom:32px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:8px; color:rgba(255,255,255,0.35); font-size:10px; letter-spacing:0.18em; text-transform:uppercase; animation:heroBounce 2.5s infinite; }
  .hero-scroll-line { width:1px; height:36px; background:rgba(255,255,255,0.18); }
  @keyframes heroBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 55%{transform:translateX(-50%) translateY(7px)} }
  .hero-stats {
    position:absolute; bottom:60px; right:5vw;
    display:flex; flex-direction:column; gap:12px;
    animation:fadeUp 1s ease 0.5s both;
  }
  .stat-card {
    display:flex; flex-direction:column; align-items:flex-end;
    background:rgba(10,10,8,0.45); backdrop-filter:blur(14px);
    border:1px solid rgba(201,168,76,0.22);
    border-radius:10px; padding:14px 20px;
    text-align:right; min-width:130px;
    transition:border-color 0.3s;
  }
  .stat-card:hover { border-color:rgba(201,168,76,0.55); }
  .stat-num {
    font-family:var(--font-display); font-size:38px; font-weight:300;
    color:var(--gold); line-height:1; letter-spacing:-0.01em;
  }
  .stat-label {
    font-size:9px; font-weight:500; letter-spacing:0.16em;
    text-transform:uppercase; color:rgba(255,255,255,0.5);
    margin-top:5px; line-height:1.45;
  }

  /* ── SECTIONS ── */
  section { padding:100px 5vw; }
  .section-tag { display:inline-block; font-size:11px; font-weight:500; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); margin-bottom:16px; }
  h2 { font-family:var(--font-display); font-size:clamp(34px,4vw,52px); font-weight:300; line-height:1.15; letter-spacing:-0.01em; margin-bottom:20px; }
  h2 em { font-style:italic; color:var(--gold); }

  /* ── CLIENTS STRIP ── */
  .clients-strip { background:var(--black); padding:40px 5vw; border-top:1px solid rgba(255,255,255,0.05); border-bottom:1px solid rgba(255,255,255,0.05); }
  .clients-strip-inner { max-width:1200px; margin:0 auto; }
  .clients-label { font-size:10px; font-weight:500; letter-spacing:0.2em; text-transform:uppercase; color:rgba(255,255,255,0.25); text-align:center; margin-bottom:28px; }
  .clients-logos { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:12px 40px; }
  .client-name {
    font-family:var(--font-display); font-size:17px; font-weight:300;
    letter-spacing:0.08em; color:rgba(255,255,255);
    transition:color var(--transition); white-space:nowrap;
    padding:6px 0;
  }
  .client-name:hover { color:var(--gold); }
  .client-divider { width:1px; height:18px; background:rgba(255,255,255,0.1); flex-shrink:0; }
  .clients-private { font-size:12px; color:rgba(255,255,255,0.2); text-align:center; margin-top:20px; letter-spacing:0.06em; }

  /* ── WHY ── */
  .why { background:var(--gray-50); }
  .why-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; max-width:1200px; margin:0 auto; }
  .why-text p { color:var(--gray-600); font-size:16px; line-height:1.8; max-width:480px; margin-bottom:32px; }
  .features { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  .feature { background:var(--white); border:1px solid var(--gray-100); border-radius:8px; padding:20px; transition:border-color var(--transition),transform var(--transition); }
  .feature:hover { border-color:var(--gold-light); transform:translateY(-2px); }
  .feature-icon { width:32px; height:32px; margin-bottom:12px; display:flex; align-items:center; justify-content:center; }
  .feature-icon svg { width:20px; height:20px; stroke:var(--gold); fill:none; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }
  .feature h4 { font-size:13px; font-weight:500; margin-bottom:5px; }
  .feature p { font-size:12px; color:var(--gray-600); line-height:1.55; }
  .why-visual { position:relative; border-radius:12px; overflow:hidden; }
  .why-visual img { width:100%; height:auto; display:block; object-fit:contain; }
  .why-badge { position:absolute; bottom:24px; left:24px; background:var(--gold); color:var(--black); padding:14px 20px; border-radius:6px; font-size:13px; font-weight:500; line-height:1.55; }

  /* ── PROOF NUMBERS ── */
  .proof { background:var(--black); padding:80px 5vw; }
  .proof-inner { max-width:1200px; margin:0 auto; }
  .proof-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2px; background:rgba(255,255,255,0.06); border-radius:12px; overflow:hidden; }
  .proof-item { background:var(--black); padding:40px 32px; text-align:center; }
  .proof-num { font-family:var(--font-display); font-size:52px; font-weight:300; color:var(--gold); line-height:1; margin-bottom:8px; }
  .proof-label { font-size:12px; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.35); line-height:1.5; }
  .proof-star { color:var(--gold); font-size:18px; letter-spacing:2px; margin-bottom:8px; display:block; }

  /* ── TABLES — Modern redesign ── */
  .tables-section { background:var(--black); }
  .tables-section .section-tag { color:var(--gold-light); }
  .tables-section h2 { color:var(--white); }
  .tables-intro { color:rgba(255,255,255,0.45); font-size:16px; max-width:500px; margin-bottom:50px; line-height:1.7; }
  .tables-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; max-width:1200px; margin:0 auto; }

  .table-card { position:relative; overflow:hidden; cursor:default; background:var(--surface-3,#161610); transition:all 0.4s cubic-bezier(0.4,0,0.2,1); display:flex; flex-direction:column; }
  .table-card:hover { z-index:2; }
  .table-card.featured { outline:2px solid var(--gold); outline-offset:-2px; z-index:1; }

  /* Image area — full bleed, tall */
  .table-img-wrap { position:relative; height:380px; overflow:hidden; }
  .table-img-basique { height:100%; background:linear-gradient(160deg,#2a2820 0%,#1a1810 100%); display:flex; align-items:center; justify-content:center; }
  .table-img-blanche { height:100%; background:linear-gradient(160deg,#f5f0e8 0%,#e8e0d0 100%); display:flex; align-items:center; justify-content:center; }
  .table-img-noire   { height:100%; background:linear-gradient(160deg,#2a2820 0%,#1a1810 100%); display:flex; align-items:center; justify-content:center; }
  .table-card-img { max-height:320px; max-width:75%; object-fit:contain; transition:transform 0.5s ease; filter:drop-shadow(0 20px 40px rgba(0,0,0,0.25)); }
  .table-card:hover .table-card-img { transform:scale(1.04) translateY(-6px); }
  .table-img-blanche .table-card-img { filter:drop-shadow(0 20px 40px rgba(0,0,0,0.15)); }

  /* Popular badge */
  .table-card-badge { position:absolute; top:16px; left:16px; background:var(--gold); color:var(--black); font-size:9px; font-weight:500; letter-spacing:0.14em; text-transform:uppercase; padding:5px 12px; border-radius:2px; z-index:3; }

  /* Content */
  .table-card-body { padding:28px 24px 28px; flex:1; display:flex; flex-direction:column; border-top:1px solid rgba(255,255,255,0.07); transition:background 0.35s ease; }
  .table-card-body:hover { background:rgba(201,168,76,0.07); }
  .table-card.featured .table-card-body:hover { background:rgba(201,168,76,0.11); }
  .table-card-body h3 { font-family:var(--font-display); font-size:26px; font-weight:300; color:var(--white); margin-bottom:8px; letter-spacing:0.01em; }
  .table-desc { font-size:13px; color:rgba(255,255,255,0.45); margin-bottom:20px; line-height:1.65; flex:1; }

  /* Specs as a horizontal row */
  .table-specs { display:flex; gap:0; margin-bottom:20px; border:1px solid rgba(255,255,255,0.08); border-radius:6px; overflow:hidden; }
  .spec-pill { font-size:10px; font-weight:500; letter-spacing:0.08em; text-transform:uppercase; padding:8px 12px; color:rgba(255,255,255,0.4); border-right:1px solid rgba(255,255,255,0.08); flex:1; text-align:center; background:rgba(255,255,255,0.02); border-radius:0; transition:background 0.25s ease, color 0.25s ease; cursor:default; }
  .spec-pill:last-child { border-right:none; }
  .spec-pill:hover { background:rgba(201,168,76,0.15); color:var(--gold); }

  /* Use cases */
  .use-title { font-size:9px; font-weight:500; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold); margin-bottom:8px; }
  .use-tags { display:flex; flex-wrap:wrap; gap:6px; }
  .use-tag { font-size:11px; color:rgba(255,255,255,0.5); background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); border-radius:3px; padding:4px 10px; transition:background 0.22s ease, color 0.22s ease, border-color 0.22s ease; cursor:default; }
  .use-tag:hover { background:rgba(201,168,76,0.18); color:var(--gold); border-color:rgba(201,168,76,0.4); }

  /* CTA at bottom of card */
  .table-card-cta { display:block; margin-top:20px; text-align:center; font-size:11px; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold); text-decoration:none; padding:11px; border:1px solid rgba(201,168,76,0.3); border-radius:4px; transition:all var(--transition); }
  .table-card-cta:hover { background:var(--gold); color:var(--black); border-color:var(--gold); }

  /* ── GALLERY ── */
  /* ── GALLERY SLIDER ── */
  .gallery-section { background:var(--black); }
  .gallery-section h2 { color:var(--white); }
  .gallery-section .section-tag { color:var(--gold-light); }
  .gallery-intro { color:rgba(255,255,255,0.45); font-size:16px; max-width:500px; margin-bottom:40px; line-height:1.7; }
  .gallery-wrap { position:relative; max-width:1200px; margin:0 auto; }
  .gallery-track-outer { overflow:hidden; border-radius:12px; }
  .gallery-track { display:flex; transition:transform 0.5s cubic-bezier(0.4,0,0.2,1); will-change:transform; }
  .gallery-slide { flex:0 0 calc(33.333% - 8px); margin-right:12px; position:relative; cursor:pointer; border-radius:10px; overflow:hidden; aspect-ratio:4/3; flex-shrink:0; }
  .gallery-slide img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; display:block; }
  .gallery-slide:hover img { transform:scale(1.05); }
  .gallery-slide-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(10,10,8,0.75) 0%,transparent 50%); opacity:0; transition:opacity 0.3s; display:flex; align-items:flex-end; padding:16px; }
  .gallery-slide:hover .gallery-slide-overlay { opacity:1; }
  .gallery-slide-label { color:var(--white); font-size:11px; letter-spacing:0.12em; text-transform:uppercase; }
  .gallery-slide-zoom { position:absolute; top:12px; right:12px; width:32px; height:32px; background:rgba(255,255,255,0.15); backdrop-filter:blur(6px); border-radius:50%; display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity 0.3s; }
  .gallery-slide:hover .gallery-slide-zoom { opacity:1; }
  .gallery-slide-zoom svg { width:14px; height:14px; stroke:#fff; fill:none; stroke-width:2; }
  /* Arrows */
  .gallery-arrow { position:absolute; top:50%; transform:translateY(-50%); z-index:10; width:48px; height:48px; background:rgba(10,10,8,0.7); backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,0.15); border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:all var(--transition); }
  .gallery-arrow:hover { background:var(--gold); border-color:var(--gold); }
  .gallery-arrow svg { width:20px; height:20px; stroke:var(--white); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
  .gallery-arrow:hover svg { stroke:var(--black); }
  .gallery-arrow-prev { left:-24px; }
  .gallery-arrow-next { right:-24px; }
  .gallery-arrow.disabled { opacity:0.3; pointer-events:none; }
  /* Dots */
  .gallery-dots { display:flex; justify-content:center; gap:7px; margin-top:24px; }
  .gallery-dot { width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,0.25); cursor:pointer; transition:all 0.3s; border:none; padding:0; }
  .gallery-dot.active { background:var(--gold); width:22px; border-radius:3px; }
  /* ── LIGHTBOX ── */
  .lightbox { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.97); z-index:1000; flex-direction:column; align-items:center; justify-content:center; }
  .lightbox.open { display:flex; }

  /* Top bar */
  .lb-topbar { position:fixed; top:0; left:0; right:0; display:flex; align-items:center; justify-content:space-between; padding:14px 20px; z-index:20; background:linear-gradient(to bottom,rgba(0,0,0,0.7),transparent); }
  .lb-counter { font-size:12px; color:rgba(255,255,255,0.5); letter-spacing:0.1em; }
  .lb-caption-top { font-size:12px; color:rgba(255,255,255,0.7); letter-spacing:0.14em; text-transform:uppercase; }
  .lb-close { width:40px; height:40px; background:rgba(255,255,255,0.1); border:none; border-radius:50%; color:#fff; font-size:20px; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background var(--transition); font-family:var(--font-body); }
  .lb-close:hover { background:var(--gold); color:var(--black); }

  /* Main image area with blur sides */
  .lb-stage { position:relative; flex:1; width:100%; display:flex; align-items:center; justify-content:center; overflow:hidden; max-height:calc(100vh - 140px); }
  /* Blurred side panels showing edge of image */
  .lb-blur-left, .lb-blur-right { position:absolute; top:0; bottom:0; width:120px; z-index:2; pointer-events:none; overflow:hidden; }
  .lb-blur-left { left:0; background:linear-gradient(to right, rgba(0,0,0,0.6) 0%, transparent 100%); }
  .lb-blur-right { right:0; background:linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 100%); }
  .lb-blur-left-img, .lb-blur-right-img { position:absolute; top:0; left:0; right:0; bottom:0; background-size:cover; background-position:center; filter:blur(18px) brightness(0.4); transform:scale(1.1); }
  .lb-blur-left { left:0; }
  .lb-blur-right { right:0; }

  /* Main image */
  .lb-img-wrap { position:relative; z-index:3; display:flex; align-items:center; justify-content:center; padding:0 130px; width:100%; height:100%; }
  .lb-img-wrap img { max-width:100%; max-height:calc(100vh - 150px); object-fit:contain; border-radius:6px; display:block; transition:opacity 0.3s ease; box-shadow:0 24px 80px rgba(0,0,0,0.8); }

  /* Arrows */
  .lb-arrow { position:absolute; top:50%; transform:translateY(-50%); z-index:10; width:50px; height:50px; background:rgba(255,255,255,0.12); backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,0.18); border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:all var(--transition); border:none; }
  .lb-arrow:hover { background:var(--gold); }
  .lb-arrow svg { width:22px; height:22px; stroke:#fff; fill:none; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; }
  .lb-arrow:hover svg { stroke:var(--black); }
  .lb-prev { left:14px; }
  .lb-next { right:14px; }

  /* Thumbnails strip */
  .lb-thumbs { position:fixed; bottom:0; left:0; right:0; display:flex; align-items:center; justify-content:center; gap:8px; padding:12px 20px 16px; background:linear-gradient(to top,rgba(0,0,0,0.9),transparent); z-index:20; overflow-x:auto; scrollbar-width:none; }
  .lb-thumbs::-webkit-scrollbar { display:none; }
  .lb-thumb { width:56px; height:42px; border-radius:5px; overflow:hidden; cursor:pointer; border:2px solid transparent; transition:all 0.25s; flex-shrink:0; opacity:0.5; }
  .lb-thumb:hover { opacity:0.8; transform:scale(1.05); }
  .lb-thumb.active { border-color:var(--gold); opacity:1; transform:scale(1.08); }
  .lb-thumb img { width:100%; height:100%; object-fit:cover; display:block; }

  @media(max-width:768px) {
    .lb-blur-left, .lb-blur-right { width:60px; }
    .lb-img-wrap { padding:0 70px; }
    .lb-prev { left:8px; } .lb-next { right:8px; }
    .lb-arrow { width:40px; height:40px; }
    .lb-thumb { width:44px; height:33px; }
  }
  @media(max-width:480px) {
    .lb-blur-left, .lb-blur-right { width:30px; }
    .lb-img-wrap { padding:0 50px; }
    .lb-thumb { width:36px; height:27px; gap:5px; }
  }

  /* ── REVIEWS ── */
  .reviews-section { background:var(--gray-50); }
  .reviews-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px; max-width:1200px; margin:0 auto; }
  .review-card { background:var(--white); border:1px solid var(--gray-100); border-radius:12px; padding:28px; transition:border-color var(--transition); }
  .review-card:hover { border-color:var(--gold-light); }
  .stars { color:var(--gold); font-size:13px; letter-spacing:3px; margin-bottom:14px; }
  .review-text { font-size:14px; line-height:1.75; color:var(--gray-600); margin-bottom:18px; font-style:italic; }
  .review-author { font-size:13px; font-weight:500; color:var(--black); }
  .review-location { font-size:11px; color:var(--gray-300); margin-top:2px; }

  /* ── FORM ── */
  .form-section { background:var(--black); }
  .form-section h2 { color:var(--white); }
  .form-section .section-tag { color:var(--gold-light); }
  .form-subtitle { color:rgba(255,255,255,0.45); font-size:15px; max-width:500px; margin-bottom:50px; }
  .form-layout { display:grid; grid-template-columns:1fr 1.4fr; gap:80px; max-width:1200px; margin:0 auto; align-items:start; }
  .form-info h3 { font-family:var(--font-display); font-size:28px; font-weight:300; color:var(--white); margin-bottom:28px; line-height:1.3; }
  .info-block { margin-bottom:22px; }
  .info-label { font-size:10px; font-weight:500; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); margin-bottom:5px; }
  .info-val { font-size:14px; color:rgba(255,255,255,0.65); }
  .info-val a { color:rgba(255,255,255,0.65); text-decoration:none; transition:color var(--transition); }
  .info-val a:hover { color:var(--gold); }
  .social-links { display:flex; gap:10px; margin-top:32px; }
  .social-link { display:flex; align-items:center; gap:8px; font-size:11px; font-weight:500; letter-spacing:0.08em; text-transform:uppercase; color:rgba(255,255,255,0.4); text-decoration:none; border:1px solid rgba(255,255,255,0.12); padding:9px 14px; border-radius:4px; transition:all var(--transition); }
  .social-link:hover { border-color:var(--gold); color:var(--gold); }
  .social-link svg { width:13px; height:13px; fill:currentColor; flex-shrink:0; }

  /* Form fields */
  .form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
  .form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:14px; }
  .form-group label { font-size:10px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase; color:rgba(255,255,255,0.35); }
  .form-group input, .form-group select, .form-group textarea { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1); border-radius:6px; padding:12px 14px; font-size:14px; font-family:var(--font-body); color:var(--white); outline:none; transition:border-color var(--transition); appearance:none; }
  .form-group input::placeholder, .form-group textarea::placeholder { color:rgba(255,255,255,0.18); }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--gold); }
  .form-group select option { background:#1a1a14; color:var(--white); }
  .form-group textarea { resize:vertical; min-height:88px; }
  .table-sel-label { font-size:10px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase; color:rgba(255,255,255,0.35); margin-bottom:10px; display:block; }
  /* Table selector buttons */
  .table-btns { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin-bottom:4px; }
  .table-btn { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.12); border-radius:8px; padding:14px 10px; cursor:pointer; transition:all var(--transition); text-align:center; display:flex; flex-direction:column; gap:4px; font-family:var(--font-body); }
  .table-btn:hover { border-color:rgba(201,168,76,0.5); background:rgba(201,168,76,0.06); }
  .table-btn.selected { border-color:var(--gold); background:rgba(201,168,76,0.12); }
  .table-btn-name { font-size:13px; font-weight:500; color:var(--white); }
  .table-btn.selected .table-btn-name { color:var(--gold); }
  .table-btn-desc { font-size:10px; color:rgba(255,255,255,0.35); letter-spacing:0.02em; }
  @media(max-width:600px) { .table-btns { grid-template-columns:1fr 1fr; } }
  .qty-row { display:flex; align-items:center; gap:14px; margin-bottom:14px; }
  .qty-label { font-size:10px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase; color:rgba(255,255,255,0.35); flex:1; }
  .qty-input { display:flex; align-items:center; border:1px solid rgba(255,255,255,0.1); border-radius:6px; overflow:hidden; }
  .qty-btn { background:rgba(255,255,255,0.04); border:none; color:var(--white); width:36px; height:36px; font-size:18px; cursor:pointer; transition:background var(--transition); font-family:var(--font-body); }
  .qty-btn:hover { background:rgba(201,168,76,0.2); }
  .qty-num { width:44px; text-align:center; font-size:15px; font-weight:500; color:var(--white); background:transparent; border:none; border-left:1px solid rgba(255,255,255,0.1); border-right:1px solid rgba(255,255,255,0.1); height:36px; padding:0; font-family:var(--font-body); }
  .form-submit { width:100%; background:var(--gold); color:var(--black); font-size:13px; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; padding:16px; border-radius:6px; border:none; cursor:pointer; transition:all var(--transition); margin-top:8px; font-family:var(--font-body); }
  .form-submit:hover { background:var(--white); }
  .form-note { font-size:11px; color:rgba(255,255,255,0.22); text-align:center; margin-top:10px; letter-spacing:0.04em; }

  /* ── FOOTER ── */
  footer { background:var(--gray-800); padding:60px 5vw 32px; }
  .footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; margin-bottom:48px; max-width:1200px; margin-left:auto; margin-right:auto; }
  .footer-logo img { height:60px; width:auto; margin-bottom:12px; display:block; opacity:0.9; }
  .footer-brand p { font-size:13px; color:rgba(255,255,255,0.35); line-height:1.7; max-width:280px; }
  .footer-col h5 { font-size:10px; font-weight:500; letter-spacing:0.14em; text-transform:uppercase; color:rgba(255,255,255,0.25); margin-bottom:16px; }
  .footer-col ul { list-style:none; }
  .footer-col ul li { margin-bottom:10px; }
  .footer-col ul li a { font-size:13px; color:rgba(255,255,255,0.45); text-decoration:none; transition:color var(--transition); }
  .footer-col ul li a:hover { color:var(--gold); }
  .footer-bottom { border-top:1px solid rgba(255,255,255,0.06); padding-top:24px; display:flex; justify-content:space-between; align-items:center; max-width:1200px; margin:0 auto; }
  .footer-bottom p { font-size:12px; color:rgba(255,255,255,0.18); }

  /* ── TOAST ── */
  .toast { position:fixed; bottom:30px; right:30px; z-index:2000; background:var(--black); color:var(--white); padding:14px 22px; border-radius:8px; font-size:13px; border-left:3px solid var(--gold); transform:translateY(20px) scale(0.95); opacity:0; transition:all 0.3s ease; pointer-events:none; }
  .toast.show { transform:translateY(0) scale(1); opacity:1; }

  /* ── RESPONSIVE ── */
  /* ── TABLET (1024px) ── */
  @media(max-width:1024px) {
    .why-grid { grid-template-columns:1fr; gap:40px; }
    .form-layout { grid-template-columns:1fr; gap:40px; }
    .tables-grid { grid-template-columns:1fr 1fr; gap:2px; }
    .footer-grid { grid-template-columns:1fr 1fr; gap:30px; }
    /* gallery slider tablet handled by JS */
    .proof-grid { grid-template-columns:1fr 1fr; }
    .client-divider { display:none; }
    section { padding:80px 5vw; }
  }

  /* ── MOBILE (768px) ── */
  @media(max-width:768px) {
    /* Nav */
    nav { padding:0 5vw; height:58px; }
    .nav-links, .nav-cta, .nav-lang { display:none; }
    .burger { display:flex; }
    .nav-logo img { height:34px; }
    .mobile-nav { top:58px; }

    /* Hero */
    .hero { min-height:100svh; }
    .hero h1 { font-size:clamp(36px,9vw,54px); }
    .hero p { font-size:14px; }
    .hero-stats { display:none; }
    .hero-btns { flex-direction:column; align-items:center; }
    .btn-primary, .btn-outline { width:100%; max-width:280px; text-align:center; padding:14px 20px; }

    /* Sections */
    section { padding:64px 5vw; }
    h2 { font-size:clamp(28px,8vw,40px); }

    /* Clients */
    .clients-logos { gap:8px 16px; }
    .client-name { font-size:14px; }

    /* Tables catalog */
    .tables-grid { grid-template-columns:1fr; gap:2px; max-width:480px; margin-left:auto; margin-right:auto; }
    .table-img-wrap { height:280px; }

    /* Features grid */
    .features { grid-template-columns:1fr 1fr; gap:12px; }
    .feature { padding:16px; }

    /* Proof */
    .proof-grid { grid-template-columns:1fr 1fr; }
    .proof-num { font-size:36px; }
    .proof-item { padding:28px 20px; }

    /* Gallery */
    .gallery-slide { flex:0 0 calc(50% - 6px); }
    .gallery-arrow-prev { left:-16px; }
    .gallery-arrow-next { right:-16px; }

    /* Reviews */
    .reviews-grid { grid-template-columns:1fr; max-width:480px; margin-left:auto; margin-right:auto; }

    /* Form */
    .form-row { grid-template-columns:1fr; gap:0; }
    .table-options { grid-template-columns:repeat(3,1fr); gap:8px; }
    .table-option-label { padding:12px 6px; }
    .table-option-label img { width:40px; height:40px; }
    .table-option-label strong { font-size:10px; }
    .table-option-label span { font-size:9px; }
    .qty-row { flex-wrap:wrap; }

    /* SEO city grid */
    .seo-city-grid { grid-template-columns:1fr !important; }

    /* Footer */
    .footer-grid { grid-template-columns:1fr; gap:28px; }
    .footer-bottom { flex-direction:column; gap:8px; text-align:center; }
  }

  /* ── SMALL MOBILE (480px) ── */
  @media(max-width:480px) {
    section { padding:56px 5vw; }
    .hero h1 { font-size:clamp(32px,10vw,46px); }
    .hero-tag { font-size:9px; letter-spacing:0.12em; }

    /* Gallery — single column on small phones */
    .gallery-slide { flex:0 0 calc(100% - 0px); margin-right:0; }
    .gallery-arrow { width:38px; height:38px; }
    .gallery-arrow-prev { left:-8px; }
    .gallery-arrow-next { right:-8px; }
    .gallery-item img { min-height:200px; }

    /* Proof */
    .proof-grid { grid-template-columns:1fr 1fr; }
    .proof-num { font-size:32px; }

    /* Features - stack on tiny screens */
    .features { grid-template-columns:1fr; }

    /* Form */
    .hero-btns { gap:10px; }
    .btn-primary, .btn-outline { font-size:12px; padding:13px 18px; }

    /* Clients */
    .clients-logos { gap:6px 12px; }
    .client-name { font-size:13px; }

    /* FAQ */
    #faqList button span:first-child { font-size:14px; }
  }