    :root {
      --bg:       #080808;
      --bg2:      #111111;
      --bg3:      #171717;
      --surface:  #1a1a1a;
      --border:   #2a2a2a;
      --border2:  #333333;
      --red:      #e63329;
      --red-dim:  rgba(230,51,41,.12);
      --red-glow: rgba(230,51,41,.18);
      --white:    #ffffff;
      --grey:     #999999;
      --grey2:    #666666;
      --pill-bg:  #1c1c1c;
      --ff: 'Inter', sans-serif;
      --r: 12px;
      --r-lg: 20px;
      --r-xl: 32px;
      --t: .22s cubic-bezier(.4,0,.2,1);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--ff); background: var(--bg); color: var(--white); line-height: 1.6; overflow-x: hidden; }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }
    button { cursor: pointer; border: none; background: none; font: inherit; }

    /* ── LANG BAR ── */
    .lang-bar {
      background: #050505;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding: 7px 48px;
      gap: 4px;
      border-bottom: 1px solid var(--border);
    }
    .lang-btn {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      padding: 3px 12px;
      border-radius: 20px;
      color: var(--grey2);
      transition: var(--t);
    }
    .lang-btn:hover { color: var(--white); }
    .lang-btn.active { background: var(--red); color: var(--white); }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 14px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      background: rgba(8,8,8,.88);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255,255,255,.05);
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }
    .logo-mark {
      width: 36px; height: 36px;
      background: var(--red);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .logo-mark svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .logo-text { font-size: 18px; font-weight: 800; letter-spacing: -.02em; }
    .logo-text sub { font-size: 10px; font-weight: 400; color: var(--grey2); vertical-align: baseline; margin-left: 2px; }
    /* pill nav */
    .nav-pill {
      display: flex;
      align-items: center;
      gap: 2px;
      background: var(--pill-bg);
      border: 1px solid var(--border);
      border-radius: 40px;
      padding: 5px;
    }
    .nav-pill a {
      font-size: 13px;
      font-weight: 500;
      padding: 7px 18px;
      border-radius: 30px;
      color: var(--grey);
      transition: color var(--t), background var(--t);
      white-space: nowrap;
    }
    .nav-pill a:hover { color: var(--white); }
    .nav-pill a.active { background: var(--bg3); color: var(--white); }
    .nav-cta {
      font-size: 13px;
      font-weight: 700;
      padding: 10px 22px;
      background: var(--red);
      color: var(--white);
      border-radius: 30px;
      transition: background var(--t), transform var(--t);
      flex-shrink: 0;
    }
    .nav-cta:hover { background: #c9281f; transform: translateY(-1px); }
    .hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
    .hamburger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; }
    .mobile-nav { display: none; position: fixed; inset: 0; background: #050505; z-index: 200; flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
    .mobile-nav.open { display: flex; }
    .mobile-nav a { font-size: 22px; font-weight: 700; color: var(--white); transition: color var(--t); }
    .mobile-nav a:hover { color: var(--red); }
    .mobile-close { position: absolute; top: 24px; right: 28px; font-size: 28px; color: var(--grey); cursor: pointer; }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 86vh;
      display: flex;
      align-items: center;
      padding: 80px 48px;
      overflow: hidden;
    }
    /* glow backgrounds */
    .hero-glow-left {
      position: absolute;
      left: -160px; top: 50%;
      transform: translateY(-50%);
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(230,51,41,.13) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero-glow-right {
      position: absolute;
      right: -80px; top: 50%;
      transform: translateY(-50%);
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(230,51,41,.1) 0%, transparent 60%);
      pointer-events: none;
    }
    /* particle canvas */
    #particleCanvas {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      pointer-events: none; z-index: 0;
    }
    .hero-inner {
      position: relative; z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      max-width: 1240px;
      margin: 0 auto;
      width: 100%;
    }
    /* badges */
    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 28px;
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      border-radius: 30px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .04em;
      border: 1px solid var(--border2);
      background: var(--surface);
      color: var(--grey);
    }
    .badge-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
    .badge-dot.red { background: var(--red); animation: blink 1.8s ease-in-out infinite; }
    .badge-dot.green { background: #22c55e; }
    .badge-dot.yellow { background: #f59e0b; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
    /* heading */
    .hero-left h1 {
      font-size: clamp(36px, 4.5vw, 64px);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -.03em;
      margin-bottom: 6px;
    }
    .hero-left h1 .accent { color: var(--red); display: block; }
    .hero-sub {
      font-size: clamp(18px, 2vw, 26px);
      font-weight: 700;
      color: var(--grey);
      margin-bottom: 20px;
      letter-spacing: -.01em;
    }
    .hero-desc {
      font-size: 15px;
      color: var(--grey);
      line-height: 1.7;
      max-width: 460px;
      margin-bottom: 32px;
    }
    /* check tags */
    .check-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 36px;
    }
    .check-tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 16px;
      border-radius: 30px;
      font-size: 12px;
      font-weight: 600;
      background: var(--surface);
      border: 1px solid var(--border2);
      color: var(--white);
    }
    .check-tag svg { width: 13px; height: 13px; stroke: #22c55e; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
    /* buttons */
    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-red {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 14px; font-weight: 700;
      padding: 14px 28px;
      background: var(--red);
      color: var(--white);
      border-radius: 30px;
      transition: background var(--t), transform var(--t), box-shadow var(--t);
      box-shadow: 0 4px 24px rgba(230,51,41,.35);
    }
    .btn-red:hover { background: #c9281f; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(230,51,41,.45); }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 14px; font-weight: 600;
      padding: 14px 28px;
      color: var(--white);
      border: 1px solid var(--border2);
      border-radius: 30px;
      background: var(--surface);
      transition: border-color var(--t), background var(--t), transform var(--t);
    }
    .btn-outline:hover { border-color: #555; background: #222; transform: translateY(-2px); }

    /* hero right — image blob */
    .hero-right {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-img-wrap {
      position: relative;
      width: 100%;
      max-width: 540px;
    }
    .hero-img-blob {
      width: 100%;
      aspect-ratio: 1 / 1;
      border-radius: 44% 56% 60% 40% / 48% 42% 58% 52%;
      background: var(--bg3);
      border: 1px solid var(--border2);
      overflow: hidden;
      position: relative;
    }
    .hero-img-blob::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(circle at 30% 30%, rgba(230,51,41,.18) 0%, transparent 60%);
    }
    .hero-img-blob img {
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: .9;
    }
    /* placeholder when no image */
    .hero-img-placeholder {
      width: 100%; height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 40px;
    }
    .hero-img-placeholder svg { width: 64px; height: 64px; stroke: var(--red); fill: none; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; opacity: .7; }
    .hero-img-placeholder p { font-size: 13px; color: var(--grey2); text-align: center; line-height: 1.6; }
    /* status bar below image */
    .hero-status-bar {
      position: absolute;
      bottom: -20px; left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 16px;
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 30px;
      padding: 10px 22px;
      white-space: nowrap;
    }
    .status-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
    .status-dot.red { background: var(--red); }
    .status-dot.blue { background: #3b82f6; }
    .status-dot.yellow { background: #f59e0b; }
    .status-item { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 600; color: var(--grey); }

    /* ── SECTION SHARED ── */
    .section { padding: 96px 48px; }
    .section-alt { background: var(--bg2); }
	.section-label { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; justify-content: center; display: flex; align-items: center; gap: 8px; }
	.section-label::before { content: ''; width: 20px; height: 2px; background: var(--red); border-radius: 2px; }
    .section-title {
      font-size: clamp(28px, 3vw, 42px);
      font-weight: 800;
      letter-spacing: -.03em;
      line-height: 1.1;
      margin-bottom: 14px;
    }
    .section-sub { font-size: 15px; color: var(--grey); max-width: 500px; line-height: 1.7; margin-left: auto; margin-right: auto; }
	.section-header { margin-bottom: 56px; text-align: center; }
	.section-header.center { text-align: center; }
    .section-header.center .section-label { justify-content: center; }
    .section-header.center .section-label::before { display: none; }
    .section-header.center .section-sub { margin: 0 auto; }


    /* ── SERVICES ── */
    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      max-width: 1240px;
      margin: 0 auto;
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      overflow: hidden;
    }
    .svc-card {
      background: var(--bg2);
      padding: 40px 36px;
      position: relative;
      transition: background var(--t);
      display: flex;
      flex-direction: column;
    }
    .svc-card:hover { background: var(--bg3); }
    /* red top accent line */
    .svc-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--red);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--t);
    }
    .svc-card:hover::after { transform: scaleX(1); }
    .svc-card.highlight {
      background: #110808;
    }
    .svc-icon {
      width: 48px; height: 48px;
      background: var(--red-dim);
      border: 1px solid rgba(230,51,41,.2);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 24px;
    }
    .svc-icon svg { width: 24px; height: 24px; stroke: var(--red); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .svc-num {
      font-size: 11px;
      font-weight: 700;
      color: var(--red);
      letter-spacing: .1em;
      margin-bottom: 16px;
      opacity: .6;
    }
    .svc-title { font-size: 20px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
    .svc-desc { font-size: 14px; color: var(--grey); line-height: 1.65; margin-bottom: 28px; flex: 1; }
    .svc-list { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 8px; }
    .svc-list li {
      font-size: 13px;
      color: #aaa;
      display: flex; align-items: center; gap: 10px;
    }
    .svc-list li::before {
      content: '';
      width: 5px; height: 5px;
      background: var(--red);
      border-radius: 50%;
      flex-shrink: 0;
      opacity: .7;
    }
    .svc-link {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 700;
      color: var(--red);
      transition: gap var(--t);
    }
    .svc-link:hover { gap: 10px; }
    .svc-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
    .interpos-badge {
      display: inline-block;
      font-size: 10px; font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 3px 10px;
      background: var(--red-dim);
      border: 1px solid rgba(230,51,41,.25);
      color: var(--red);
      border-radius: 20px;
      margin-bottom: 14px;
    }

    /* ── GALLERY ── */
    .gallery-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 8px;
      max-width: 1240px;
      margin: 0 auto;
      height: 520px;
    }
    .gallery-item {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--r);
      overflow: hidden;
      position: relative;
      cursor: pointer;
      transition: border-color var(--t);
    }
    .gallery-item:first-child { grid-row: span 2; border-radius: var(--r-lg); }
    .gallery-item:hover { border-color: var(--red); }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
    .gallery-item:hover img { transform: scale(1.05); }
    .gallery-ph {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 10px;
    }
    .gallery-ph svg { width: 28px; height: 28px; stroke: var(--grey2); fill: none; stroke-width: 1.5; }
    .gallery-ph span { font-size: 12px; font-weight: 500; color: var(--grey2); }
    .gallery-overlay {
      position: absolute; inset: 0;
      background: rgba(0,0,0,0);
      transition: background var(--t);
      display: flex; align-items: flex-end; padding: 16px;
    }
    .gallery-item:hover .gallery-overlay { background: rgba(0,0,0,.5); }
    .gallery-caption {
      font-size: 12px; font-weight: 700;
      color: var(--white);
      opacity: 0; transform: translateY(6px);
      transition: opacity var(--t), transform var(--t);
    }
    .gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
    .gallery-hint { text-align: center; margin-top: 20px; font-size: 12px; color: var(--grey2); }
    .gallery-hint code { background: var(--surface); padding: 2px 7px; border-radius: 4px; color: var(--red); font-size: 11px; }

    /* Lightbox */
    .lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.95); z-index: 500; align-items: center; justify-content: center; }
    .lightbox.open { display: flex; }
    .lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--r); object-fit: contain; }
    .lightbox-close { position: absolute; top: 24px; right: 28px; font-size: 30px; color: var(--grey); cursor: pointer; line-height: 1; }

    /* ── WHY ── */
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      max-width: 1240px;
      margin: 0 auto;
    }
    .why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 36px; }
    .stat-box {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 22px;
      transition: border-color var(--t);
    }
    .stat-box:hover { border-color: var(--red); }
    .stat-num { font-size: 30px; font-weight: 900; color: var(--red); letter-spacing: -.03em; line-height: 1; margin-bottom: 4px; }
    .stat-lbl { font-size: 12px; color: var(--grey); }
    .why-items { display: flex; flex-direction: column; gap: 1px; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
    .why-item {
      display: flex; gap: 18px; align-items: flex-start;
      padding: 24px 28px;
      background: var(--bg2);
      transition: background var(--t);
    }
    .why-item:hover { background: var(--bg3); }
    .why-item-icon {
      width: 40px; height: 40px; flex-shrink: 0;
      background: var(--red-dim);
      border: 1px solid rgba(230,51,41,.2);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .why-item-icon svg { width: 18px; height: 18px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .why-item-body h4 { font-size: 15px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 4px; }
    .why-item-body p { font-size: 13px; color: var(--grey); line-height: 1.6; }

    /* ── CONTACT ── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      max-width: 1240px;
      margin: 0 auto;
      align-items: start;
    }
    .contact-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      padding: 44px;
    }
    .contact-items { display: flex; flex-direction: column; gap: 24px; }
    .contact-item { display: flex; gap: 16px; align-items: flex-start; }
    .c-icon {
      width: 40px; height: 40px;
      background: var(--red-dim);
      border: 1px solid rgba(230,51,41,.2);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .c-icon svg { width: 18px; height: 18px; fill: var(--red); }
    .c-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 3px; }
    .c-val { font-size: 15px; color: var(--white); }
    .c-val a:hover { color: var(--red); }

    .hours-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      padding: 44px;
    }
    .hours-title { font-size: 18px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 24px; }
    .hour-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--border); }
    .hour-row:last-of-type { border-bottom: none; }
    .hour-day { font-size: 13px; color: var(--grey); font-weight: 500; }
    .hour-time { font-size: 13px; font-weight: 700; color: var(--white); }
    .hour-time.closed { color: var(--grey2); }
    .status-badge {
      display: inline-flex; align-items: center; gap: 7px;
      margin-top: 22px; padding: 8px 18px;
      border-radius: 30px;
      font-size: 12px; font-weight: 700;
      border: 1px solid var(--border2);
    }
    .sdot { width: 7px; height: 7px; border-radius: 50%; animation: blink 2s ease-in-out infinite; }

    /* ── HOURS COMPACT ── */
    .hours-compact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
    .hours-row-compact { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r); }
    .closed-row { opacity: .5; }
    .hours-days { font-size: 12px; color: var(--grey); margin-bottom: 3px; }
    .hours-time-big { font-size: 20px; font-weight: 800; letter-spacing: -.02em; color: var(--white); }

    /* ── MAP MINI ── */
    .map-mini { margin-top: 24px; height: 180px; border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); position: relative; }
    .map-mini iframe { width: 100%; height: 100%; border: none; position: absolute; inset: 0; filter: grayscale(1) invert(1) contrast(.85) brightness(.65); }

    /* ── WIZARD ── */
    .wizard-wrap {
      max-width: 860px;
      margin: 0 auto;
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      overflow: hidden;
    }
    /* progress */
    .wizard-progress {
      display: flex;
      align-items: center;
      padding: 28px 40px;
      border-bottom: 1px solid var(--border);
      background: var(--bg3);
      gap: 0;
    }
    .wp-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      flex-shrink: 0;
    }
    .wp-num {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--surface);
      border: 2px solid var(--border2);
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 800;
      color: var(--grey2);
      transition: background var(--t), border-color var(--t), color var(--t);
    }
    .wp-step > span { font-size: 11px; font-weight: 600; color: var(--grey2); transition: color var(--t); }
    .wp-step.active .wp-num { background: var(--red); border-color: var(--red); color: var(--white); }
    .wp-step.active > span { color: var(--white); }
    .wp-step.done .wp-num { background: rgba(230,51,41,.2); border-color: var(--red); color: var(--red); }
    .wp-step.done > span { color: var(--grey); }
    .wp-line { flex: 1; height: 2px; background: var(--border); margin: 0 8px; margin-bottom: 22px; transition: background var(--t); }
    .wp-line.done { background: var(--red); }
    /* steps */
    .wizard-step { padding: 36px 40px; }
    .wizard-step.hidden { display: none; }
    .wz-prompt { font-size: 15px; font-weight: 600; color: var(--grey); margin-bottom: 24px; }
    /* brand / model grid */
    .wz-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      gap: 12px;
    }
    .wz-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      padding: 20px 12px;
      background: var(--bg3);
      border: 1px solid var(--border2);
      border-radius: var(--r);
      color: var(--white);
      font-size: 13px;
      font-weight: 600;
      transition: border-color var(--t), background var(--t), transform var(--t);
      cursor: pointer;
    }
    .wz-card:hover { border-color: var(--red); background: var(--surface); transform: translateY(-3px); }
    .wz-card svg { width: 48px; height: 48px; }
    /* service grid */
    .wz-service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 12px;
    }
    .wz-svc {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      padding: 24px 16px;
      background: var(--bg3);
      border: 1px solid var(--border2);
      border-radius: var(--r);
      color: var(--white);
      font-size: 13px;
      font-weight: 600;
      text-align: center;
      line-height: 1.4;
      transition: border-color var(--t), background var(--t), transform var(--t);
      cursor: pointer;
    }
    .wz-svc:hover { border-color: var(--red); background: var(--surface); transform: translateY(-3px); }
    /* back row */
    .wz-back-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
    .wz-back {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 12px; font-weight: 600; color: var(--grey);
      background: var(--bg3); border: 1px solid var(--border2);
      border-radius: 20px; padding: 5px 14px;
      transition: color var(--t), border-color var(--t);
    }
    .wz-back:hover { color: var(--white); border-color: #555; }
    .wz-crumb {
      font-size: 12px; font-weight: 700; color: var(--red);
      background: var(--red-dim); padding: 4px 12px;
      border-radius: 20px; border: 1px solid rgba(230,51,41,.25);
    }
    /* result */
    .wz-result { text-align: center; padding: 12px 0 8px; }
    .wz-result-icon { width: 64px; height: 64px; margin: 0 auto 20px; }
    .wz-result-icon svg { width: 64px; height: 64px; }
    .wz-result-title { font-size: 20px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 20px; }
    .wz-result-summary {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      margin-bottom: 20px;
    }
    .wz-chip {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 6px 16px;
      background: var(--red-dim);
      border: 1px solid rgba(230,51,41,.25);
      border-radius: 30px;
      font-size: 13px; font-weight: 700; color: var(--red);
    }
    .wz-result-desc { font-size: 14px; color: var(--grey); margin-bottom: 28px; line-height: 1.6; }
    .wz-result-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
    .wz-restart {
      font-size: 12px; color: var(--grey2); background: none;
      border: none; cursor: pointer; transition: color var(--t);
      padding: 4px;
    }
    .wz-restart:hover { color: var(--white); }

    /* ── FOOTER ── */
    footer {
      background: #050505;
      border-top: 1px solid var(--border);
      padding: 40px 48px;
    }
    .footer-inner {
      max-width: 1240px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 20px;
    }
    .footer-logo { display: flex; align-items: center; gap: 10px; }
    .footer-logo-mark { width: 30px; height: 30px; background: var(--red); border-radius: 7px; display: flex; align-items: center; justify-content: center; }
    .footer-logo-mark svg { width: 16px; height: 16px; stroke: var(--white); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .footer-brand { font-size: 15px; font-weight: 800; letter-spacing: -.02em; }
    .footer-brand small { font-size: 11px; font-weight: 400; color: var(--grey2); display: block; }
    .footer-links { display: flex; gap: 24px; list-style: none; }
    .footer-links a { font-size: 13px; color: var(--grey2); transition: color var(--t); }
    .footer-links a:hover { color: var(--white); }
    .footer-copy { font-size: 11px; color: var(--grey2); width: 100%; text-align: center; padding-top: 20px; border-top: 1px solid var(--border); margin-top: 16px; }

    /* ── FADE UP ── */
    .fade-up { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
    .fade-up.visible { opacity: 1; transform: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .service-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; gap: 48px; }
      .contact-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
      .gallery-item:first-child { grid-row: auto; }
    }
    @media (max-width: 768px) {
      nav { padding: 12px 24px; }
      .nav-pill, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .hero, .section { padding: 60px 24px; }
      .lang-bar { padding: 7px 24px; }
      footer { padding: 32px 24px; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
      .gallery-grid { grid-template-columns: 1fr; height: auto; }
      .contact-card, .hours-card { padding: 28px; }
      .why-stats { grid-template-columns: 1fr 1fr; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { transition: none !important; animation: none !important; }
      .fade-up { opacity: 1; transform: none; }
      #particleCanvas { display: none; }
    }
