    :root {
      --bg-0:     #070707;
      --bg:       #0b0b0b;
      --bg-2:     #111111;
      --bg-3:     #080808;
      --bg-4:     #181818;
      --ink:      #efefef;
      --ink-dim:  #a8a8a8;
      --muted:    #a4afbd;
      --acc:      #0090FF;
      --acc-h:    #0ba0ff;
      --acc-dim:  rgba(0,144,255,0.10);
      --ok:       #4ade80;
      --err:      #f87171;
      --edge:     rgba(255,255,255,0.15);
      --edge-h:   rgba(255,255,255,0.26);
      --edge-strong: rgba(255,255,255,0.38);
      --ct-grid-opacity: 0.59;
      --r:        3px;
      --f:        'Manrope', system-ui, sans-serif;
      --f-head:   'Roboto Condensed', sans-serif;
      --f-mono:   'Manrope', system-ui, sans-serif;
      --w:        1440px;
      --pad:      clamp(20px, 5vw, 80px);
      --hh:       64px;
      --admin-bar: 0px;
      --header-offset: calc(var(--admin-bar) + var(--hh));
      --page-pad-top: calc(var(--header-offset) + clamp(20px, 3vh, 40px));
    }

    @media (max-width: 780px) {
      :root { --hh: 58px; }
    }

    html:has(body.admin-bar) {
      --admin-bar: 32px;
    }

    @media (max-width: 782px) {
      html:has(body.admin-bar) {
        --admin-bar: 46px;
      }
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: var(--header-offset); }

    body {
      background: var(--bg);
      color: var(--ink);
      font-family: var(--f);
      font-size: 15px;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }

    .ct-grid-overlay {
      position: relative;
      isolation: isolate;
    }
    .ct-grid-overlay::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      --step: 24px;
      --major: 96px;
      --minor: rgba(255,255,255,0.08);
      --majorc: rgba(255,255,255,0.13);
      --fade-t: 300px;
      --fade-b: 100px;
      --fade-l: 250px;
      --fade-r: 250px;
      opacity: var(--ct-grid-opacity);
      background-image:
        repeating-linear-gradient(to right, var(--minor) 0 1px, transparent 1px var(--step)),
        repeating-linear-gradient(to bottom, var(--minor) 0 1px, transparent 1px var(--step)),
        repeating-linear-gradient(to right, var(--majorc) 0 1px, transparent 1px var(--major)),
        repeating-linear-gradient(to bottom, var(--majorc) 0 1px, transparent 1px var(--major));
      -webkit-mask-image:
        linear-gradient(to bottom, transparent, #000 var(--fade-t), #000 calc(100% - var(--fade-b)), transparent),
        linear-gradient(to right, transparent, #000 var(--fade-l), #000 calc(100% - var(--fade-r)), transparent);
      -webkit-mask-composite: source-over, destination-in;
      -webkit-mask-repeat: no-repeat;
      mask-image:
        linear-gradient(to bottom, transparent, #000 var(--fade-t), #000 calc(100% - var(--fade-b)), transparent),
        linear-gradient(to right, transparent, #000 var(--fade-l), #000 calc(100% - var(--fade-r)), transparent);
      mask-composite: intersect;
      mask-repeat: no-repeat;
    }
    .ct-grid-overlay > :where(:not(.hero5-bg):not(.hero5-marks)) {
      position: relative;
      z-index: 2;
    }

    .ct-strip-hero.ct-grid-overlay,
    .eng-hero.ct-grid-overlay {
      overflow: hidden;
    }
    .ct-strip-hero.ct-grid-overlay::before,
    .eng-hero.ct-grid-overlay::before {
      inset: -40% -20% 0;
      background-image: repeating-conic-gradient(rgba(255, 255, 255, 0.09) 0% 25%, transparent 0% 50%);
      background-size: 64px 64px;
      transform: perspective(500px) rotateX(48deg);
      transform-origin: 50% 100%;
    }

    .eyebrow {
      font-family: var(--f-mono);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--acc);
      margin-bottom: 10px;
      display: block;
    }
    .sh {
      font-family: var(--f-head);
      font-size: clamp(30px, 3.8vw, 58px);
      font-weight: 700;
      letter-spacing: 0;
      line-height: .96;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .sdesc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 520px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 20px;
      height: 44px;
      border-radius: var(--r);
      font-family: var(--f);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
      cursor: pointer;
      border: 1px solid transparent;
      white-space: nowrap;
      text-decoration: none;
      -webkit-appearance: none;
      appearance: none;
      transition: background .15s, border-color .15s, color .15s, transform .12s;
    }
    .btn:active { transform: translateY(1px); }
    .btn-p {
      background: var(--acc);
      color: #fff;
      border-color: var(--acc);
    }
    .btn-p:hover { background: var(--acc-h); color: #fff; }
    .btn-g {
      background: transparent;
      color: var(--muted);
      border-color: var(--edge-h);
    }
    .btn-g:hover {
      color: var(--ink);
      border-color: rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.03);
    }
    .btn-sm { height: 36px; padding: 0 16px; font-size: 11px; }
    .btn-full { width: 100%; justify-content: center; }

    .sw { position: relative; }
    .sw select {
      width: 100%;
      height: 38px;
      appearance: none;
      color-scheme: dark;
      background: rgba(10,10,10,0.8);
      border: 1px solid var(--edge);
      border-radius: var(--r);
      padding: 0 28px 0 12px;
      color: var(--ink);
      font-family: var(--f);
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      outline: none;
      transition: border-color .15s, box-shadow .15s;
    }
    .sw select option {
      background: #080808;
      color: var(--ink);
    }
    .sw select option[value=""] {
      color: var(--muted);
    }
    .sw.is-empty select,
    .sw select:required:invalid {
      color: var(--muted);
    }
    .sw.is-filled select {
      color: var(--ink);
    }
    .sw.is-disabled select,
    .sw select:disabled {
      opacity: 1;
      cursor: not-allowed;
      color: rgba(196,204,216,.62);
      background: rgba(0,0,0,.26);
      border-color: var(--edge);
    }
    .sw select:focus {
      border-color: var(--acc);
      box-shadow: inset 0 0 0 1px rgba(0,144,255,.72);
    }
    .sw-c {
      position: absolute;
      right: 9px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      color: var(--muted);
    }
    .sw.is-disabled .sw-c {
      opacity: .35;
    }

    .perf-tbl {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
    }
    .perf-tbl col:nth-child(2),
    .perf-tbl col:nth-child(3) { width: 33.33%; }
    .perf-row td {
      padding: clamp(10px, 1.8vh, 18px) 0;
      vertical-align: middle;
    }
    .perf-row td:first-child {
      font-size: clamp(10px, .9vw, 12px);
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--muted);
      white-space: nowrap;
      padding-right: clamp(12px, 1.8vw, 24px);
    }
    .perf-row td:nth-child(2),
    .perf-row td:nth-child(3) {
      font-size: clamp(24px, 2.8vw, 48px);
      font-weight: 800;
      letter-spacing: -.03em;
      line-height: 1.05;
      text-align: center;
    }
    .perf-row td:nth-child(3) {
      text-align: right;
    }
    .punit {
      font-size: clamp(10px, .85vw, 12px);
      font-weight: 600;
      color: var(--muted);
      font-style: italic;
      margin-left: 1px;
    }
    .perf-orig td { color: rgba(239,239,239,0.52); }
    .perf-orig td:first-child { color: var(--muted); }
    .perf-gain td:first-child { color: var(--ink); }
    .pplus { color: var(--acc); font-weight: 800; }
    .perf-stage td { color: var(--acc); }
    .perf-stage td:first-child { color: var(--acc); }
    .perf-stage .punit { color: var(--muted); }
    .perf-num {
      display: inline-block;
      line-height: inherit;
      transform: translateZ(0) scale(1);
      transform-origin: 50% 68%;
    }
    .perf-gain .perf-num.is-counting {
      animation: perfGainCount .76s cubic-bezier(.16,1,.3,1) both;
    }
    .perf-stage .perf-num.is-counting {
      animation: perfStageMass .96s cubic-bezier(.16,1,.3,1) both;
    }
    .perf-div td {
      padding: clamp(3px, .6vh, 6px) 0;
      height: 0;
      line-height: 0;
      font-size: 0;
      background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 10%, rgba(255,255,255,0.26) 40%, rgba(255,255,255,0.26) 60%, rgba(255,255,255,0.1) 90%, rgba(255,255,255,0) 100%) center/100% 1px no-repeat;
    }

    @keyframes perfGainCount {
      0% { transform: translateY(2px) scale(.98); filter: brightness(.95); }
      52% { transform: translateY(-1px) scale(1.045); filter: brightness(1.12); }
      100% { transform: translateY(0) scale(1); filter: brightness(1); }
    }

    @keyframes perfStageMass {
      0% { transform: translateY(3px) scale(.94); filter: brightness(.92); }
      42% { transform: translateY(-2px) scale(1.085); filter: brightness(1.2); }
      68% { transform: translateY(1px) scale(.995); filter: brightness(1.05); }
      100% { transform: translateY(0) scale(1); filter: brightness(1); }
    }

    .res-opts {
      padding: clamp(10px, 1.5vh, 18px) 0 clamp(14px, 3vh, 30px);
      position: relative;
    }
    .res-opts-body {
      display: flex;
      flex-direction: column;
      align-items: stretch;
    }
    .res-opts::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.26) 40%, rgba(255,255,255,0.26) 60%, rgba(255,255,255,0) 100%);
    }
    .res-opts-lbl {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--ink-dim);
      margin-bottom: 9px;
    }
    .opt-tags { display: flex; flex-wrap: wrap; gap: 5px; }
    .opt-tag {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      padding: 4px 9px;
      border: 1px solid var(--edge);
      color: var(--ink-dim);
      transition: color .15s, border-color .15s;
    }
    .opt-tag:hover {
      color: var(--acc);
      border-color: rgba(0,144,255,0.25);
    }

    .faq-item {
      background: var(--bg-2);
      border: 1px solid var(--edge);
      border-radius: var(--r);
      overflow: hidden;
      transition: border-color .15s;
    }
    .faq-item.open { border-color: var(--edge-h); }
    .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 17px;
      cursor: pointer;
      gap: 12px;
      font-family: var(--f-head);
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 0;
      text-transform: uppercase;
      color: var(--ink);
      user-select: none;
      background: transparent;
      border: none;
      width: 100%;
      text-align: left;
    }
    .faq-arrow {
      flex-shrink: 0;
      width: 15px;
      height: 15px;
      color: var(--muted);
      transition: transform .2s;
    }
    .faq-item.open .faq-arrow { transform: rotate(180deg); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .25s ease;
    }
    .faq-item.open .faq-a { max-height: 500px; }
    .faq-a-in {
      padding: 0 17px 15px;
      font-size: 12px;
      color: var(--muted);
      line-height: 1.65;
    }

    .hbtn {
      height: 30px;
      padding: 0 10px;
      background: transparent;
      border: 1px solid var(--edge);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .05em;
      color: var(--muted);
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 4px;
      font-family: var(--f);
      transition: border-color .15s, color .15s;
    }
    .hbtn:hover { border-color: var(--edge-h); color: var(--ink); }
    .hbtn-sq { width: 30px; padding: 0; justify-content: center; }

    .drawer { position: fixed; inset: 0; z-index: 500; pointer-events: none; }
    .drawer__bg {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.8);
      opacity: 0;
      transition: opacity .25s;
    }
    .drawer__panel {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      background: var(--bg-2);
      border-bottom: 1px solid var(--edge);
      transform: translateY(-100%);
      transition: transform .3s cubic-bezier(.22,1,.36,1);
      padding-bottom: 20px;
    }
    .drawer.open { pointer-events: auto; }
    .drawer.open .drawer__bg { opacity: 1; }
    .drawer.open .drawer__panel { transform: translateY(0); }
    .drawer__head {
      height: var(--hh);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      border-bottom: 1px solid var(--edge);
    }
    .drawer__links {
      display: flex;
      flex-direction: column;
      padding: 10px;
    }
    .drawer__links a {
      padding: 12px 10px;
      font-size: 14px;
      font-weight: 600;
      color: var(--muted);
      border-radius: 8px;
      transition: background .15s, color .15s;
    }
    .drawer__links a:hover {
      background: rgba(255,255,255,0.03);
      color: var(--ink);
    }
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      height: var(--hh);
      background: rgba(10,10,10,0.94);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--edge);
    }

    .header-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 clamp(24px, 5vw, 80px);
      height: 100%;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 40px;
    }

    .logo {
      text-decoration: none;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      line-height: 0;
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .lang-btn,
    .cart-btn {
      height: 34px;
      border-radius: 0;
      background: var(--bg-3);
      border: 1px solid var(--edge);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: border-color .15s, color .15s;
      color: var(--muted);
    }

    .lang-btn {
      padding: 0 12px;
      gap: 5px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .1em;
      font-family: var(--f);
    }

    .cart-btn {
      width: 34px;
      position: relative;
    }

    .cart-badge {
      position: absolute;
      top: -5px; right: -5px;
      width: 16px; height: 16px;
      border-radius: 50%;
      background: var(--acc);
      font-size: 9px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }

    @keyframes orbDrift1 {
      0%   { transform: translate(0, 0) scale(1); opacity: .7; }
      50%  { transform: translate(40px, -30px) scale(1.08); opacity: 1; }
      100% { transform: translate(0, 0) scale(1); opacity: .7; }
    }
    @keyframes orbDrift2 {
      0%   { transform: translate(0, 0) scale(1); opacity: .5; }
      50%  { transform: translate(-30px, 40px) scale(1.06); opacity: .85; }
      100% { transform: translate(0, 0) scale(1); opacity: .5; }
    }
    @keyframes heroIn {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes cardIn {
      from { opacity: 0; transform: translateY(32px) scale(.98); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }
    .badge {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: 5px;
      background: var(--acc-dim);
      color: var(--acc);
    }

    .notice-bar {
      background: var(--acc);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .04em;
      text-align: center;
      padding: 8px 20px;
      position: fixed;
      top: 60px; left: 0; right: 0;
      z-index: 150;
    }
    .swatch-bar {
      display: none !important;
      position: fixed;
      bottom: 20px; right: 20px;
      background: rgba(13,13,13,0.95);
      border: 1px solid var(--edge);
      border-radius: var(--r);
      padding: 14px 16px;
      backdrop-filter: blur(12px);
      z-index: 300;
      display: flex;
      flex-direction: column;
      gap: 7px;
      min-width: 210px;
    }

    .swatch-bar-title {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--acc);
      margin-bottom: 4px;
    }

    .swatch-row {
      display: flex;
      align-items: center;
      gap: 9px;
    }

    .swatch {
      width: 18px; height: 18px;
      border-radius: 5px;
      border: 1px solid var(--edge);
      flex-shrink: 0;
    }

    .swatch-info { font-size: 11px; color: var(--muted); font-family: monospace; }
    .swatch-name { font-size: 11px; color: var(--ink); margin-left: auto; opacity: .5; }
    .lang-wrap { position: relative; }

    .lang-dropdown {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      background: var(--bg-2);
      border: 1px solid var(--edge);
      border-radius: var(--r);
      min-width: 130px;
      padding: 6px;
      z-index: 400;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      transition: opacity .15s, transform .15s, visibility .15s;
    }
    .lang-dropdown.is-open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .lang-dropdown__item {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 8px 10px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--muted);
      transition: background .12s, color .12s;
    }
    .lang-dropdown__item:hover { background: var(--bg-3); color: var(--ink); }
    .lang-dropdown__item.is-active { color: var(--acc); }
    .lang-dropdown__flag { font-size: 16px; line-height: 1; flex-shrink: 0; }
    .hamburger {
      display: none;
      width: 34px; height: 34px;
      border-radius: 0;
      background: var(--bg-3);
      border: 1px solid var(--edge);
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--muted);
      transition: border-color .15s, color .15s;
      flex-shrink: 0;
    }
    .hamburger:hover { border-color: var(--edge-h); color: var(--ink); }
    .ham-lines { display: flex; flex-direction: column; gap: 4px; }
    .ham-line {
      width: 20px; height: 1.5px;
      background: currentColor;
      border-radius: 1px;
      transition: transform .22s cubic-bezier(.22,1,.36,1), opacity .18s;
    }
    .hamburger.is-open .ham-line:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
    .hamburger.is-open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.is-open .ham-line:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
    .mobile-drawer {
      position: fixed;
      inset: 0;
      z-index: 500;
      pointer-events: none;
    }
    .mobile-drawer__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.72);
      opacity: 0;
      transition: opacity .25s;
    }
    .mobile-drawer__panel {
      position: absolute;
      top: 0; left: 0; right: 0;
      background: var(--bg-2);
      border-bottom: 1px solid var(--edge);
      transform: translateY(-100%);
      transition: transform .32s cubic-bezier(.22,1,.36,1);
      padding-bottom: 24px;
      max-height: 100dvh;
      overflow-y: auto;
    }
    .mobile-drawer.is-open { pointer-events: auto; }
    .mobile-drawer.is-open .mobile-drawer__backdrop { opacity: 1; }
    .mobile-drawer.is-open .mobile-drawer__panel { transform: translateY(0); }

    .mobile-drawer__head {
      height: var(--hh);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      border-bottom: 1px solid var(--edge);
    }
    .mobile-drawer__close {
      width: 34px; height: 34px;
      border-radius: 0;
      background: var(--bg-3);
      border: 1px solid var(--edge);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--muted);
      transition: border-color .15s, color .15s;
    }
    .mobile-drawer__close:hover { border-color: var(--edge-h); color: var(--ink); }

    .mobile-drawer__actions {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 16px 20px 0;
      margin-top: 12px;
      border-top: 1px solid var(--edge);
    }
    .mobile-drawer__actions .cart-btn { flex-shrink: 0; }
    .mobile-lang-switcher { display: flex; gap: 4px; flex-wrap: wrap; flex: 1; }
    .mobile-lang-switcher .lang-dropdown__item { padding: 6px 10px; border-radius: 6px; text-decoration: none; }
    .cart-drawer-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.65);
      z-index: 599;
      opacity: 0;
      pointer-events: none;
      transition: opacity .25s;
    }
    .cart-drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

    .cart-drawer {
      position: fixed;
      top: 0; right: 0; bottom: 0;
      width: min(400px, 100vw);
      background: var(--bg-2);
      border-left: 1px solid var(--edge);
      z-index: 600;
      transform: translateX(100%);
      transition: transform .32s cubic-bezier(.22,1,.36,1);
      display: flex;
      flex-direction: column;
    }
    .cart-drawer.is-open { transform: translateX(0); }

    .cart-drawer__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      border-bottom: 1px solid var(--edge);
      flex-shrink: 0;
    }
    .cart-drawer__title {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .09em;
      text-transform: uppercase;
      color: var(--ink);
    }
    .cart-drawer__close {
      width: 30px; height: 30px;
      border-radius: 0;
      background: var(--bg-3);
      border: 1px solid var(--edge);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--muted);
      transition: border-color .15s, color .15s;
    }
    .cart-drawer__close:hover { border-color: var(--edge-h); color: var(--ink); }

    .cart-drawer__items {
      flex: 1;
      overflow-y: auto;
      padding: 20px 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .cart-item {
      display: grid;
      grid-template-columns: 64px 1fr auto auto;
      gap: 12px;
      align-items: start;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--edge);
    }
    .cart-item__remove {
      width: 22px;
      height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      border: none;
      padding: 0;
      color: var(--muted);
      cursor: pointer;
      transition: color .14s ease;
    }
    .cart-item__remove:hover { color: var(--acc); }
    .cart-item__remove:disabled { opacity: .4; cursor: default; }
    .cart-item__img {
      width: 64px; height: 64px;
      border-radius: 8px;
      background: var(--bg-3);
      border: 1px solid var(--edge);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      font-size: 22px;
    }
    .cart-item__name {
      font-size: 13px;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 5px;
      line-height: 1.35;
    }
    .cart-item__meta { font-size: 12px; color: var(--muted); line-height: 1.5; }
    .cart-item__price { font-size: 14px; font-weight: 700; color: var(--ink); white-space: nowrap; }

    .cart-drawer__foot {
      border-top: 1px solid var(--edge);
      padding: 20px 24px;
      flex-shrink: 0;
    }
    .cart-drawer__subtotal {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 14px;
      font-size: 13px;
      color: var(--muted);
    }
    .cart-drawer__subtotal strong { font-size: 20px; font-weight: 800; color: var(--ink); }
    .cart-drawer__foot .btn { width: 100%; justify-content: center; margin-top: 8px; }
    @media (max-width: 1024px) {
      header > .header-inner > nav { display: none; }
      .hamburger { display: flex; }
      .header-inner { grid-template-columns: auto auto; gap: 0; }
    }
    @media (max-width: 520px) {
      .cart-drawer { width: 100vw; border-left: none; }
    }

.admin-bar header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar header {
    top: 46px;
  }
}

    .wpdm-map.is-mapbox-ready {
      background: none;
      min-height: 640px;
    }

    .map-ph.is-mapbox-ready {
      display: block;
      position: relative;
      overflow: hidden;
      background: var(--bg-3);
    }

    .dp-list.is-loading {
      overflow: hidden;
    }

    .dp-loader-list {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 1px;
      background: var(--edge);
    }

    .dp-loader-item {
      min-height: 78px;
      padding: 16px;
      background: var(--bg-2);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 10px;
    }

    .dp-loader-item span {
      display: block;
      height: 12px;
      border-radius: var(--r);
      background: var(--bg-4);
      opacity: .72;
      animation: dpLoaderPulse 1.05s ease-in-out infinite alternate;
    }

    .dp-loader-item span:first-child {
      width: 64%;
      height: 18px;
    }

    .dp-loader-item span:last-child {
      width: 42%;
      animation-delay: .18s;
    }

    .map-ph.is-loading {
      position: relative;
      overflow: hidden;
      background: var(--bg-3);
    }

    .dp-map-loader {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: var(--bg-3);
    }

    .dp-map-empty {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: var(--bg-3);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      line-height: 1.35;
      text-transform: uppercase;
      color: var(--ink-dim);
    }

    .dp-map-loader-card {
      min-width: min(260px, 100%);
      background: var(--bg-2);
      border: 1px solid var(--edge-h);
      border-radius: var(--r);
      padding: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      box-shadow: 0 18px 42px rgba(0,0,0,.42);
    }

    .dp-map-loader-ring {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2px solid var(--edge-h);
      border-top-color: var(--acc);
      flex-shrink: 0;
      animation: dpLoaderSpin .78s linear infinite;
    }

    .dp-map-loader-text,
    .dp-empty {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      line-height: 1.35;
      text-transform: uppercase;
      color: var(--ink-dim);
    }

    .dp-empty {
      padding: 18px;
      background: var(--bg-2);
    }

    .wpdm-map.is-mapbox-ready::after {
      display: none;
    }

    .dp-marker {
      width: 30px;
      height: 34px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .dp-marker.is-hidden {
      display: none;
    }

    .dp-marker:not(.active)::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: rgba(0,144,255,0.45);
      transform: translate(-50%, -50%);
      animation: dp-marker-pulse 2.4s ease-out infinite;
      pointer-events: none;
      z-index: -1;
    }

    @keyframes dp-marker-pulse {
      0%   { transform: translate(-50%, -50%) scale(0.7); opacity: 0.55; }
      80%  { transform: translate(-50%, -50%) scale(2.6); opacity: 0; }
      100% { transform: translate(-50%, -50%) scale(2.6); opacity: 0; }
    }

    .dp-marker-dot {
      position: relative;
      width: 18px;
      height: 18px;
      border-radius: 50% 50% 50% 0;
      background: var(--acc);
      border: 1px solid var(--acc-h);
      box-shadow: 0 4px 10px rgba(0,0,0,.36), 0 0 10px rgba(0,144,255,.3);
      transition: transform .16s ease, box-shadow .16s ease;
      transform-origin: center;
      transform: rotate(-45deg) scale(1);
    }

    .dp-marker-dot::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--bg-2);
      transform: translate(-50%, -50%);
    }

    .dp-marker:hover .dp-marker-dot,
    .dp-marker.active .dp-marker-dot {
      transform: rotate(-45deg) scale(1.14);
      box-shadow: 0 5px 12px rgba(0,0,0,.4), 0 0 14px rgba(0,144,255,.46);
    }

    .dp-popup {
      z-index: 30;
    }

    .dp-popup .mapboxgl-popup-content {
      padding: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      color: var(--ink);
      animation: dpPopupIn .24s cubic-bezier(.22,1,.36,1) both;
      transform-origin: center bottom;
    }

    .dp-popup.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip {
      border-top-color: var(--bg-2);
    }

    .dp-popup-card {
      width: min(320px, calc(100vw - 48px));
      background: var(--bg-2);
      border: 1px solid var(--edge-h);
      border-radius: var(--r);
      padding: 14px;
    }

    .dp-popup-name {
      font-family: var(--f-head);
      font-size: clamp(18px, 2vw, 24px);
      font-weight: 600;
      line-height: 1;
      letter-spacing: 0;
      text-transform: uppercase;
      color: var(--ink);
      overflow-wrap: anywhere;
      text-align: center;
    }

    .dp-popup-meta {
      margin-top: 6px;
      font-size: 12px;
      color: var(--ink-dim);
      line-height: 1.4;
      text-align: center;
    }

    .dp-popup-links {
      display: grid;
      gap: 2px;
      margin-top: 12px;
      text-align: center;
    }

    .dp-popup-link {
      display: block;
      min-width: 0;
      padding: 6px 0;
      background: transparent;
      color: var(--muted);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .04em;
      line-height: 1.35;
      overflow-wrap: anywhere;
      transition: color .14s ease, background .14s ease;
    }

    .dp-popup-link:hover {
      color: var(--ink);
    }

    .dp-popup-address {
      margin-top: 8px;
      font-size: 12px;
      color: var(--ink-dim);
      line-height: 1.45;
      overflow-wrap: anywhere;
      text-align: center;
    }

    .dp-popup-actions {
      display: grid;
      grid-template-columns: 1fr;
      gap: 6px;
      margin-top: 12px;
    }

    .dp-popup-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 11px 12px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .04em;
      line-height: 1.2;
      text-transform: uppercase;
      white-space: nowrap;
      border-radius: var(--r);
      transition: background .14s ease, border-color .14s ease, color .14s ease;
    }

    .dp-popup-btn--maps {
      background: var(--acc);
      color: #fff;
    }

    .dp-popup-btn--maps:hover {
      background: var(--acc-h);
    }

    .dp-popup-btn--call {
      background: var(--acc);
      color: #fff;
    }

    .dp-popup-btn--call:hover {
      background: var(--acc-h);
    }

    .dp-popup-btn--wa {
      background: #25D366;
      color: #fff;
    }

    .dp-popup-btn--wa:hover {
      background: #1DA851;
    }

    .dp-popup-btn--tg {
      background: #229ED9;
      color: #fff;
    }

    .dp-popup-btn--tg:hover {
      background: #1E8CC0;
    }

    .dp-popup-btn-icon {
      width: 14px;
      height: 14px;
      flex: 0 0 auto;
      background: currentColor;
      -webkit-mask: no-repeat center / contain;
      mask: no-repeat center / contain;
    }

    .dp-popup-btn-icon--maps {
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E");
    }

    .dp-popup-btn-icon--call {
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79a15.5 15.5 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24 11.4 11.4 0 0 0 3.57.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.45.57 3.57a1 1 0 0 1-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79a15.5 15.5 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24 11.4 11.4 0 0 0 3.57.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.45.57 3.57a1 1 0 0 1-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
    }

    .dp-popup-btn-icon--wa {
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
    }

    .dp-popup-btn-icon--tg {
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11.944 0A12 12 0 000 12a12 12 0 0012 12 12 12 0 0012-12A12 12 0 0012 0a12 12 0 00-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 01.171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11.944 0A12 12 0 000 12a12 12 0 0012 12 12 12 0 0012-12A12 12 0 0012 0a12 12 0 00-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 01.171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z'/%3E%3C/svg%3E");
    }

    @keyframes dpPopupIn {
      from { opacity: 0; transform: translateY(8px) scale(.98); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    @keyframes dpLoaderPulse {
      from { opacity: .42; }
      to { opacity: .9; }
    }

    @keyframes dpLoaderSpin {
      to { transform: rotate(360deg); }
    }

    .mapboxgl-cooperative-gesture-screen {
      background: rgba(0, 0, 0, 0.72);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }
    .mapboxgl-cooperative-gesture-screen .mapboxgl-cooperative-gesture-screen-message {
      color: var(--ink);
      font-family: var(--f);
      font-size: 16px;
      letter-spacing: 0.02em;
      text-shadow: none;
      background: none;
    }
    #dp-map .mapboxgl-ctrl-bottom-left {
      left: auto;
      right: 40px;
    }

    #dp-map .mapboxgl-ctrl-attrib.mapboxgl-compact {
      background: var(--bg-2);
      color: var(--muted);
    }

    #dp-map .mapboxgl-ctrl-attrib.mapboxgl-compact a {
      color: var(--muted);
    }

    #dp-map .mapboxgl-ctrl-attrib.mapboxgl-compact-show {
      padding: 0;
    }

    #dp-map .mapboxgl-ctrl-attrib.mapboxgl-compact-show .mapboxgl-ctrl-attrib-inner {
      position: absolute;
      right: 0;
      bottom: 30px;
      background: var(--bg-2);
      border: 1px solid var(--edge);
      padding: 4px 10px;
      white-space: nowrap;
    }

    .mapboxgl-ctrl-group {
      background: var(--bg-2) !important;
      border: 1px solid var(--edge) !important;
      border-radius: 0 !important;
      box-shadow: none !important;
    }

    .mapboxgl-ctrl-group button {
      width: 32px !important;
      height: 32px !important;
    }

    .mapboxgl-ctrl-icon {
      filter: invert(0.7) !important;
    }

    .mapboxgl-ctrl-icon:hover {
      filter: invert(1) !important;
    }

    @media (max-width: 1024px) {
      .wpdm-map.is-mapbox-ready { min-height: 420px; }
    }

#page-contact,
#page-cart,
#page-checkout,
.page-shop-single {
  min-height: 100vh;
}
.page-shop-single.page-product-standard {
  min-height: 0;
}

.ct-strip-hero {
  background: var(--bg-2);
  border-bottom: 1px solid var(--edge);
  padding: clamp(24px, 4vh, 40px) var(--pad);
  text-align: center;
  min-height: var(--chiptuning-hero-strip-min-h, 168px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ct-strip-hero .sh { font-size: clamp(22px, 3vw, 34px); }
.ct-strip-hero .sdesc { margin: 6px auto 0; max-width: 520px; }

.fileservice-hero .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.fileservice-hero .hero-btns {
  justify-content: center;
  margin-top: 24px;
}

.woocommerce-ordering { margin: 0; }

.woocommerce-ordering select,
.shop-sort {
  height: 36px;
  padding: 0 28px 0 12px;
  background: var(--bg-2);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  color: var(--ink);
  font-family: var(--f);
  font-size: 12px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='6' viewBox='0 0 9 6'%3E%3Cpath d='M0.5 0.5L4.5 5L8.5 0.5' stroke='%238a8f96' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color .15s;
}

.woocommerce-ordering select:hover,
.shop-sort:hover { border-color: var(--edge-h); }

a.button.product_type_simple:not(.add_to_cart_button),
a.button.product_type_variable:not(.add_to_cart_button) {
  background: transparent;
  border-color: var(--edge-h);
  color: var(--muted) !important;
}

a.button.product_type_simple:not(.add_to_cart_button):hover,
a.button.product_type_variable:not(.add_to_cart_button):hover {
  background: var(--bg-3);
  border-color: var(--edge-h);
  color: var(--ink) !important;
}


a.added_to_cart.wc-forward { display: none !important; }

.add_to_cart_button.loading {
  opacity: 0.7;
  pointer-events: none;
}
.add_to_cart_button.loading::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: wc-spin 0.6s linear infinite;
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
}
@keyframes wc-spin { to { transform: rotate(360deg); } }

.add_to_cart_button.added {
  background: var(--bg-3);
  border-color: var(--edge);
  color: var(--muted) !important;
  pointer-events: none;
  cursor: default;
}
.add_to_cart_button.added:hover {
  background: var(--bg-3);
  border-color: var(--edge);
  color: var(--muted) !important;
}

.woocommerce-notices-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px clamp(24px, 5vw, 80px) 0;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  background: var(--bg-2);
  border: 1px solid var(--edge);
  border-left: 3px solid var(--acc);
  border-radius: var(--r);
  padding: 12px 16px;
  font-family: var(--f);
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
  list-style: none;
  margin: 0 0 16px;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  display: none;
}

.woocommerce-message {
  border-left-color: var(--ok);
}

.woocommerce-info {
  border-left-color: var(--muted);
}

.woocommerce-error {
  border-left-color: var(--err);
}

.product-detail .woocommerce-message,
.product-detail .woocommerce-info,
.product-detail .woocommerce-error {
  margin-bottom: 24px;
}

.woocommerce-message a.button,
.woocommerce-info a.button,
.woocommerce-error a.button,
.woocommerce-message a.button.wc-forward,
.woocommerce-info a.button.wc-forward,
.woocommerce-error a.button.wc-forward {
  float: none !important;
  height: 32px;
  padding: 0 14px;
  margin: 0;
  background: transparent !important;
  border: 1px solid var(--edge-h);
  border-radius: var(--r);
  font-family: var(--f);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted) !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s;
}

.woocommerce-message a.button:hover,
.woocommerce-info a.button:hover,
.woocommerce-error a.button:hover,
.woocommerce-message a.button.wc-forward:hover,
.woocommerce-info a.button.wc-forward:hover,
.woocommerce-error a.button.wc-forward:hover {
  background: rgba(255,255,255,0.03) !important;
  border-color: rgba(255,255,255,0.2);
  color: var(--ink) !important;
}

.shop-pagination,
.woocommerce-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 16px;
}

.woocommerce-pagination ul {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.page-btn,
.woocommerce-pagination ul .page-numbers {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-2);
  border: 1px solid var(--edge);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: border-color .15s, color .15s;
  text-decoration: none;
}

.page-btn.is-active,
.woocommerce-pagination ul .page-numbers.current { border-color: var(--acc); color: var(--acc); }

.page-btn:hover,
.woocommerce-pagination ul .page-numbers:hover { border-color: var(--edge-h); color: var(--ink); }

.woocommerce-pagination ul .prev,
.woocommerce-pagination ul .next { width: auto; padding: 0 14px; }

.product-detail {
  max-width: calc(var(--w) + var(--pad) * 2);
  margin: 0 auto;
  padding: var(--page-pad-top) var(--pad) 80px;
}

.product-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 36px;
  text-decoration: none;
  transition: color .15s;
}

.product-detail__back:hover { color: var(--ink); }

.product-detail__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

.product-gallery { display: flex; flex-direction: column; gap: 10px; }

.product-gallery__main {
  position: relative;
  height: 380px;
  background: var(--bg-2);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  overflow: hidden;
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}

.product-gallery__thumbs { display: flex; gap: 8px; flex-wrap: wrap; }

.product-gallery__thumb {
  width: 72px;
  height: 56px;
  background: var(--bg-2);
  border: 1px solid var(--edge);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: border-color .15s;
  overflow: hidden;
}

.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumb.is-active { border-color: var(--acc); }
.product-gallery__thumb:hover { border-color: var(--edge-h); }

.product-gallery__nav {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--edge-h);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.75);
  color: var(--ink);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s, opacity .15s;
  flex-shrink: 0;
}

.product-gallery__nav:hover {
  border-color: var(--acc);
  background: rgba(0, 144, 255, 0.14);
}

.product-gallery__nav:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.product-tabs { margin-top: 32px; }

.product-tabs__bar {
  display: flex;
  border-bottom: 1px solid var(--edge);
  margin-bottom: 24px;
}

.product-tab-btn {
  padding: 12px 0;
  margin-right: 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--muted);
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--f);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .15s, border-color .15s;
}

.product-tab-btn.is-active { color: var(--acc); border-bottom-color: var(--acc); }
.product-tab-btn:hover { color: var(--ink); }
.product-tab-panel { display: none; }
.product-tab-panel.is-active { display: block; }

.product-tab-panel p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.product-sidebar {
  position: sticky;
  top: 96px;
  background: var(--bg-2);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-sidebar__name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.product-sidebar__sub {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}


.product-sidebar__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.product-sidebar__price-val {
  font-size: 32px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.03em;
}

.product-sidebar__price del {
  font-size: 16px;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 400;
}

.product-sidebar__price ins { text-decoration: none; }

.product-sidebar__actions { display: flex; flex-direction: column; gap: 8px; }

.product-sidebar .cart { display: flex; flex-direction: column; gap: 10px; margin: 0; }

.product-sidebar .cart .quantity { display: flex; align-items: center; gap: 8px; }

.product-sidebar .cart .qty {
  height: 46px;
  padding: 0 16px;
  background: var(--bg-3);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  color: var(--ink);
  font-family: var(--f);
  font-size: 15px;
  width: 80px;
}

.product-sidebar .cart .single_add_to_cart_button {
  width: 100%;
  justify-content: center;
}

.product-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

.product-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}

.product-trust__icon { color: var(--acc); flex-shrink: 0; }

@media (max-width: 1024px) {
  .product-detail__inner { grid-template-columns: 1fr; }
  .product-sidebar { position: static; }
}

@media (max-width: 780px) {
  .product-detail { padding: var(--page-pad-top) var(--pad) 60px; }
  .product-gallery__thumbs { gap: 6px; }
  .product-gallery__thumb { width: 56px; height: 56px; }
}

@media (max-width: 520px) {
  .product-tabs__bar { gap: 0; flex-wrap: wrap; }
}
.contact-main {
  background: var(--bg);
  border-top: 1px solid var(--edge);
  padding: clamp(48px, 7vh, 80px) var(--pad);
}
.contact-main--top {
  border-top: none;
  padding-top: var(--page-pad-top);
}
.contact-main-inner {
  max-width: var(--w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}
.contact-main-form {
  grid-column: 1;
  background: var(--bg-2);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  padding: clamp(24px, 3.5vw, 40px);
}
.contact-channels {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-offset) + clamp(16px, 3vh, 32px));
  align-self: start;
}
.contact-channel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(16px, 1.8vw, 22px);
  row-gap: 4px;
  padding: clamp(20px, 2.4vw, 28px);
  background: transparent;
  border: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s ease;
  width: 100%;
}
.contact-channel + .contact-channel {
  border-top: 1px solid var(--edge);
}
.contact-channel:hover,
.contact-channel:focus-visible {
  background: var(--bg-3);
  outline: none;
}
.contact-channel__icon {
  color: var(--acc);
  line-height: 0;
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-channel__icon svg {
  width: clamp(40px, 4vw, 52px);
  height: clamp(40px, 4vw, 52px);
}
.contact-channel__title {
  font-family: var(--f-head);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}
.contact-channel__text {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.6;
  margin: 0;
  max-width: 40ch;
}
.contact-form-head {
  margin-bottom: clamp(20px, 3vh, 32px);
  text-align: left;
}
.contact-form-head .sh {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 8px;
}
.contact-form-head .sdesc {
  margin: 0;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
}
.form-input, .form-select, .form-textarea {
  background: var(--bg-2); border: 1px solid var(--edge); border-radius: var(--r);
  color: var(--ink); font-family: var(--f); font-size: 14px;
  padding: 0 14px; height: 46px; width: 100%;
  transition: border-color .15s; outline: none; -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--acc); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); opacity: 0.45; }
.form-select:invalid { color: var(--muted); }
.form-select option { color: var(--ink); opacity: 1; }
.form-select option[disabled] { color: var(--muted); }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='6' viewBox='0 0 9 6'%3E%3Cpath d='M0.5 0.5L4.5 5L8.5 0.5' stroke='%238a8f96' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-textarea { height: 140px; padding: 14px; resize: vertical; line-height: 1.6; }
.contact-info-card {
  background: var(--bg-2); border: 1px solid var(--edge);
  border-radius: var(--r); overflow: hidden;
}
.contact-info-map {
  height: 220px; background: var(--bg-3); border-bottom: 1px solid var(--edge);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--muted); flex-direction: column; gap: 8px;
}
.contact-info-body { padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; color: var(--muted);
}
.contact-info-item svg { color: var(--acc); flex-shrink: 0; margin-top: 2px; }
.contact-info-item strong { color: var(--ink); display: block; margin-bottom: 2px; font-weight: 600; }
.contact-info-item a { color: inherit; text-decoration: none; transition: color .15s; }
.contact-info-item a:hover { color: var(--ink); }
.contact-info-map--live { display: block; padding: 0; height: 220px; }

.vp { display: flex; flex-direction: column; gap: 6px; }
.vp[hidden] { display: none; }
.form-req, .vp__req { color: var(--acc); margin-left: 2px; font-weight: 700; }
.vp__chip {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--bg-2); border: 1px solid var(--edge); border-radius: var(--r);
  padding: 0 8px 0 14px; height: 46px; width: 100%;
  color: var(--ink); font: inherit; font-size: 14px; text-align: left;
  cursor: pointer; transition: border-color .15s, background .15s;
}
.vp__chip:hover { border-color: var(--edge-h); background: var(--bg-3); }
.vp__chip:focus-visible { outline: none; border-color: var(--acc); }
.vp__chip[hidden] { display: none; }
.vp__chip-label { font-weight: 600; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vp__chip-clear {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; flex-shrink: 0;
  color: var(--muted); cursor: pointer; font-size: 18px; line-height: 1;
  border-radius: calc(var(--r) - 2px); transition: color .15s, background .15s;
}
.vp__chip-clear:hover { color: var(--ink); background: rgba(255,255,255,0.06); }
.vp__add {
  align-self: stretch;
  width: 100%;
  height: 46px;
  padding: 0 14px;
  justify-content: flex-start;
  background: var(--bg-2);
  color: var(--ink-dim);
  border: 1px dashed var(--edge);
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 500;
}
.vp__add:hover {
  border-style: solid;
  border-color: var(--acc);
  color: var(--acc);
}
.vp__add:focus-visible {
  outline: none;
  border-style: solid;
  border-color: var(--acc);
}
.vp__add[hidden] { display: none; }
.vp__picker {
  display: flex; flex-direction: column; gap: 12px;
  padding: 16px; background: var(--bg-3);
  border: 1px solid var(--edge); border-radius: var(--r);
  margin-top: 4px;
}
.vp__picker[hidden] { display: none; }
.vp__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px;
}
.vp__actions { display: flex; gap: 10px; }
.vp__error { color: var(--err); font-size: 13px; margin: 0; }
.vp__error[hidden] { display: none; }
@media (max-width: 600px) {
  .vp__grid { grid-template-columns: 1fr; }
}

.form-submit { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-feedback { font-size: 13px; }
.form-feedback.is-success { color: var(--ok); }
.form-feedback.is-error { color: var(--err); }
.form-feedback[hidden] { display: none !important; }

.form-hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.form-turnstile:not(:empty) { margin: 16px 0; }

.ct-model-card__name { flex: 1; }

@media (max-width: 900px) {
  .contact-main-inner {
    grid-template-columns: 1fr;
  }
  .contact-main-form,
  .contact-channels {
    grid-column: 1;
    grid-row: auto;
  }
  .contact-channels { position: static; }
}
@media (max-width: 780px) {
  .form-row { grid-template-columns: 1fr; }
}

.wc-block-cart,
.wc-block-checkout { color: var(--ink); }

.wc-block-components-sidebar-layout,
.wc-block-cart__main { background: transparent; }

.wp-block-woocommerce-cart-totals-block,
.wp-block-woocommerce-cart-order-summary-block,
.wp-block-woocommerce-checkout-order-summary-block,
.wp-block-woocommerce-checkout-fields-block {
  background: var(--bg-2);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  padding: 24px;
}

.wc-block-cart-items__header th,
.wc-block-cart-items__row td {
  border-color: var(--edge);
  color: var(--ink);
  background: transparent;
}

.wc-block-components-product-short-description,
.wc-block-components-product-metadata__description,
.wc-block-cart-item__description {
  display: none !important;
}

.wc-block-components-text-input input,
.wc-block-components-textarea textarea,
.wc-block-components-select select,
.wc-block-components-combobox input {
  background: var(--bg-3) !important;
  border-color: var(--edge) !important;
  color: var(--ink) !important;
  border-radius: var(--r) !important;
}

.wc-block-components-text-input label,
.wc-block-components-textarea label,
.wc-block-components-select label,
.wc-block-components-combobox label {
  color: var(--muted) !important;
  background: transparent !important;
}

.wc-block-components-checkout-place-order-button,
.wc-block-cart__submit-container .wc-block-components-button {
  background: var(--acc) !important;
  border-color: var(--acc) !important;
  border-radius: var(--r) !important;
  color: #fff !important;
}

.wc-block-components-checkout-place-order-button:hover,
.wc-block-cart__submit-container .wc-block-components-button:hover {
  background: var(--acc-h) !important;
}

.wc-block-components-order-summary__content,
.wc-block-order-summary-item { border-color: var(--edge) !important; }

.wc-block-components-totals-footer-item,
.wc-block-components-totals-item { border-color: var(--edge) !important; color: var(--ink) !important; }

.wc-block-components-radio-control__label,
.wc-block-components-checkbox-control__label { color: var(--ink) !important; }

.wc-block-components-radio-control-accordion-content { background: var(--bg-3) !important; border-color: var(--edge) !important; }

.wc-block-components-notice--error,
.wc-block-components-validation-error { color: var(--err) !important; }

.wc-block-cart-item__product-name,
.wc-block-components-product-name { color: var(--ink) !important; font-family: var(--f) !important; }
.wc-block-cart-item__individual-prices,
.wc-block-cart-item__total { color: var(--ink) !important; }
.wc-block-components-order-summary-item__individual-prices { display: none !important; }

.wc-block-components-product-badge { background: var(--acc-dim) !important; color: var(--acc) !important; border-radius: 6px; }

.wc-block-checkout__actions { background: transparent; }
.cart-badge--empty { display: none; }

.page-content {
  max-width: 1480px;
  margin: 0 auto;
  padding: var(--page-pad-top) var(--pad) clamp(48px, 8vh, 96px);
}
.page-content .sh { margin-bottom: 24px; }

body.error404 { display: flex; flex-direction: column; min-height: 100dvh; }
body.error404 .error-404 {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error-404 .sdesc { margin: 0 auto 32px; }
.error-404-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.checkout-scope {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--page-pad-top) var(--pad) clamp(48px, 8vh, 96px);
  animation: chiptuner-fade-in .35s ease both;
}

@keyframes chiptuner-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wc-block-checkout .wc-block-components-text-input input,
.wc-block-checkout .wc-block-components-combobox input,
.wc-block-checkout .wc-block-components-select select,
.wc-block-checkout textarea {
  background: var(--bg-3) !important;
  border: 1px solid var(--edge) !important;
  color: var(--ink) !important;
  border-radius: var(--r) !important;
  height: 46px;
  font-family: var(--f) !important;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease !important;
}

.wc-block-checkout textarea { height: auto; min-height: 90px; }

.wc-block-checkout .wc-block-components-text-input input:hover,
.wc-block-checkout .wc-block-components-combobox input:hover,
.wc-block-checkout .wc-block-components-select select:hover {
  border-color: var(--edge-h) !important;
  background: var(--bg-2) !important;
}

.wc-block-checkout .wc-block-components-text-input input:focus,
.wc-block-checkout .wc-block-components-combobox input:focus,
.wc-block-checkout .wc-block-components-select select:focus {
  border-color: var(--acc) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px var(--acc-dim) !important;
}

.wc-block-checkout .wc-block-components-combobox-control,
.wc-block-checkout .wc-block-components-select__control {
  background: var(--bg-3) !important;
  border-color: var(--edge) !important;
  border-radius: var(--r) !important;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.wc-block-checkout .wc-block-components-combobox-control *,
.wc-block-checkout .wc-block-components-select__control * { color: var(--ink) !important; }

.wc-block-checkout .components-combobox-control__suggestions-container,
.wc-block-checkout .wc-block-components-combobox-control__suggestions-container {
  background: var(--bg-2) !important;
  border: 1px solid var(--edge) !important;
  border-radius: var(--r) !important;
  margin-top: 4px;
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
  animation: chiptuner-dropdown .15s ease both;
}

@keyframes chiptuner-dropdown {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wc-block-checkout .components-form-token-field__suggestion {
  color: var(--ink) !important;
  padding: 10px 14px !important;
  transition: background .15s, color .15s;
}

.wc-block-checkout .components-form-token-field__suggestion:hover,
.wc-block-checkout .components-form-token-field__suggestion.is-selected {
  background: var(--acc-dim) !important;
  color: var(--acc) !important;
}

.wc-block-checkout .wc-block-components-select::after {
  border-color: var(--muted) transparent transparent transparent !important;
  transition: transform .2s ease;
}

.wc-block-checkout .wc-block-components-select:focus-within::after {
  transform: rotate(180deg);
}

.wc-block-checkout .wc-block-components-checkbox__input[type="checkbox"] {
  accent-color: var(--acc);
  background: var(--bg-3) !important;
  border: 1px solid var(--edge) !important;
  border-radius: 4px !important;
  transition: background .15s, border-color .15s;
}

.wc-block-checkout .wc-block-components-checkbox__input[type="checkbox"]:checked {
  background: var(--acc) !important;
  border-color: var(--acc) !important;
}

.wc-block-checkout .wc-block-components-checkbox__mark {
  fill: #fff !important;
  transition: transform .15s;
}

.wc-block-checkout .wc-block-components-checkbox__input:checked + .wc-block-components-checkbox__mark {
  transform: scale(1.05);
}

.wc-block-checkout .wc-block-components-radio-control__input {
  background: var(--bg-3) !important;
  border-color: var(--edge) !important;
}

.wc-block-checkout .wc-block-components-radio-control__input:checked {
  background: var(--acc) !important;
  border-color: var(--acc) !important;
  box-shadow: inset 0 0 0 3px var(--bg-3) !important;
}

.wc-block-checkout .wc-block-components-radio-control-accordion-option {
  box-shadow: inset 0 0 0 1px var(--edge) !important;
}

@media (max-width: 780px) {
  .wc-block-checkout .wc-block-components-main,
  .wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block,
  .wc-block-checkout .checkout-order-summary-block-fill,
  .wc-block-checkout .wc-block-components-address-card {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.wc-block-components-checkout-place-order-button {
  width: 100% !important;
  height: 50px !important;
  font-family: var(--f) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .03em !important;
  border-radius: var(--r) !important;
  background: var(--acc) !important;
  color: #fff !important;
  border: 1px solid var(--acc) !important;
  cursor: pointer !important;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease !important;
}

.wc-block-components-checkout-place-order-button:hover {
  background: var(--acc-h) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px var(--acc-dim);
}

.wc-block-components-checkout-place-order-button:active {
  transform: translateY(0);
}

.wc-block-checkout__sidebar,
.wc-block-components-sidebar { top: calc(var(--hh) + 16px) !important; }

.wp-block-woocommerce-checkout-fields-block .wc-block-components-checkout-step {
  animation: chiptuner-fade-in .35s ease both;
  animation-delay: .05s;
}

.wc-block-components-notice-banner,
.wc-block-components-notice-banner__content {
  background: var(--bg-2) !important;
  border-color: var(--edge) !important;
  color: var(--ink) !important;
  border-radius: var(--r);
}

.wc-block-components-notice-banner.is-error,
.wc-block-components-notice-banner.is-error .wc-block-components-notice-banner__content {
  border-left-color: var(--err) !important;
}

.wc-blocks-components-select__select,
.wc-block-components-select select {
  background: var(--bg-3) !important;
  color: var(--ink) !important;
  border-color: var(--edge) !important;
  border-radius: var(--r) !important;
  font-family: var(--f) !important;
  cursor: pointer;
}

.wc-blocks-components-select__select option,
.wc-block-components-select select option {
  background: var(--bg-2);
  color: var(--ink);
}

.wc-block-checkout__guest-checkout-notice {
  display: none !important;
}

@media (max-width: 960px) {
  .wc-block-checkout__sidebar,
  .wc-block-components-sidebar { top: 0 !important; position: static !important; }
}
@media (max-width: 780px) {
  .checkout-scope { padding: var(--page-pad-top) var(--pad) 60px; }
}

.woocommerce-order {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  overflow-wrap: anywhere;
}
.woocommerce-thankyou-order-received {
  margin: 0 0 clamp(30px, 5vh, 48px);
  font-family: var(--f-head);
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--ink);
}
.woocommerce-order-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 22px 20px;
  margin: 0 0 clamp(34px, 5vh, 52px);
  padding: 0;
  list-style: none;
}
.woocommerce-order-overview__email { grid-column: span 2; }
.woocommerce-order-overview__email strong { font-size: 15px; }
.woocommerce-order-overview li {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.woocommerce-order-overview li strong {
  display: block;
  margin-top: 5px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.woocommerce-order-details__title,
.woocommerce-column__title,
.woocommerce-customer-details h2 {
  margin: 0 0 16px;
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.woocommerce-order-details,
.woocommerce-customer-details {
  margin-bottom: clamp(34px, 5vh, 52px);
}
.woocommerce-table--order-details {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.woocommerce-table--order-details thead { display: none; }
.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
  padding: 11px 0;
  border-bottom: 1px solid var(--edge);
  text-align: left;
  font-weight: 400;
  color: var(--ink-dim);
}
.woocommerce-table--order-details td:last-child,
.woocommerce-table--order-details th:last-child {
  text-align: right;
  white-space: nowrap;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.woocommerce-table--order-details tfoot tr:last-child th,
.woocommerce-table--order-details tfoot tr:last-child td {
  border-bottom: 0;
  padding-top: 16px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.woocommerce-table--order-details .product-quantity { color: var(--muted); }
.woocommerce-table--order-details a { color: var(--ink-dim); text-decoration: none; }
.woocommerce-table--order-details a:hover { color: var(--acc); }
.woocommerce-columns--addresses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(28px, 4vw, 56px);
}
.woocommerce-customer-details .woocommerce-column {
  min-width: 0;
  margin: 0;
}
.woocommerce-customer-details address {
  margin: 0;
  font-style: normal;
  line-height: 1.8;
  color: var(--ink-dim);
}
.woocommerce-customer-details .woocommerce-customer-details--email,
.woocommerce-customer-details .woocommerce-customer-details--phone {
  margin: 6px 0 0;
  color: var(--ink-dim);
}
.woocommerce-order .woocommerce-button,
.woocommerce-order .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  background: var(--acc);
  border: 0;
  border-radius: var(--r);
  color: #fff;
  font-family: var(--f);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease;
}
.woocommerce-order .woocommerce-button:hover,
.woocommerce-order .button:hover { background: var(--acc-h); }

.order-back {
  margin: clamp(30px, 5vh, 48px) 0 0;
  text-align: center;
}

.verify-email {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}
.verify-email-title {
  margin: 0 0 12px;
  font-family: var(--f-head);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
}
.verify-email-text {
  margin: 0 0 26px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.verify-email-label {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
}
.verify-email-input { width: 100%; }
.verify-email-submit { width: 100%; margin-top: 16px; }
.verify-email-back {
  display: inline-block;
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}
.verify-email-back:hover { color: var(--ink); }

.cart-scope {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--page-pad-top) var(--pad) clamp(48px, 8vh, 96px);
}
.wp-block-woocommerce-empty-cart-block {
  text-align: center;
}
.wp-block-woocommerce-empty-cart-block
.wc-block-cart__empty-cart__title.with-empty-cart-icon::before,
.wc-block-checkout-empty::before {
  content: "" !important;
  display: block !important;
  width: 80px !important;
  height: 80px !important;
  margin: 0 auto 24px !important;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='20' fill='%230090FF'/%3E%3Cpath d='M11 13h2.5l3 11h9l2.5-8H16' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3Ccircle cx='17.5' cy='27.5' r='1.5' fill='%23fff'/%3E%3Ccircle cx='23.5' cy='27.5' r='1.5' fill='%23fff'/%3E%3C/svg%3E")
    center / contain no-repeat !important;
  -webkit-mask: none !important;
  mask: none !important;
  font-size: 0 !important;
  line-height: 0 !important;
  float: none !important;
}

.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title {
  color: var(--ink) !important;
  font-family: var(--f) !important;
  font-size: clamp(24px, 3vw, 32px) !important;
  font-weight: 800 !important;
  letter-spacing: -.03em !important;
  line-height: 1.15 !important;
  margin-bottom: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}
.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title::after {
  content: "Add items to get started" !important;
  display: block !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  color: var(--muted) !important;
  letter-spacing: 0 !important;
  margin-top: 8px !important;
}
.empty-cart-actions {
  margin: 28px auto 0;
  display: flex;
  justify-content: center;
}
.empty-cart-actions__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  height: 44px;
  border-radius: var(--r);
  font-family: var(--f);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid var(--acc);
  background: var(--acc);
  color: #fff;
  transition: background .15s, border-color .15s, color .15s;
  white-space: nowrap;
}
.empty-cart-actions__btn:hover {
  background: var(--acc-h);
  border-color: var(--acc-h);
  color: #fff;
}
.wp-block-woocommerce-empty-cart-block .wp-block-separator,
.wp-block-woocommerce-empty-cart-block .wp-block-heading:not(.wc-block-cart__empty-cart__title),
.wp-block-woocommerce-empty-cart-block .wc-block-grid {
  display: none !important;
}

.wc-block-checkout-empty {
  text-align: center !important;
  padding: clamp(24px, 6vh, 64px) 0 !important;
}
.wc-block-checkout-empty .wc-block-checkout-empty__image {
  display: none !important;
}
.wc-block-checkout-empty__title {
  display: block !important;
  color: var(--ink) !important;
  font-family: var(--f) !important;
  font-size: clamp(24px, 3vw, 32px) !important;
  font-weight: 800 !important;
  letter-spacing: -.03em !important;
  line-height: 1.15 !important;
}
.wc-block-checkout-empty__description {
  max-width: 520px !important;
  margin: 8px auto 0 !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: var(--muted) !important;
}
.wc-block-checkout-empty .wp-block-button {
  display: flex !important;
  justify-content: center !important;
  margin-top: 28px !important;
}
.wc-block-checkout-empty .wp-block-button__link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 24px !important;
  height: 44px !important;
  border-radius: var(--r) !important;
  font-family: var(--f) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .03em !important;
  text-decoration: none !important;
  border: 1px solid var(--acc) !important;
  background: var(--acc) !important;
  color: #fff !important;
  transition: background .15s, border-color .15s, color .15s !important;
  white-space: nowrap !important;
}
.wc-block-checkout-empty .wp-block-button__link:hover {
  background: var(--acc-h) !important;
  border-color: var(--acc-h) !important;
  color: #fff !important;
}

@media (max-width: 780px) {
  .cart-scope { padding: var(--page-pad-top) var(--pad) 60px; }
  .wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: none !important;
    gap: 12px !important;
  }
}

.chiptuner-customer-type-host,
.wc-block-components-address-form__chiptuner-customer-type,
.wc-block-components-contact-information-form__chiptuner-customer-type,
[id*="contact-information-chiptuner-customer-type"],
[id*="contact-fields-chiptuner-customer-type"] {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.wc-block-checkout .chiptuner-customer-type-host label abbr,
.wc-block-checkout .chiptuner-vat-wrap label abbr,
.wc-block-checkout .wc-block-components-text-input:has( input[data-vat="1"] ) label abbr,
.wc-block-checkout .wc-block-components-address-form__company label abbr {
  display: none !important;
}

body.chiptuner-type-unset .wp-block-woocommerce-checkout-fields-block > *:not(.chiptuner-account-type) {
  opacity: 0.48;
  transition: opacity 0.2s ease;
}

body.chiptuner-type-unset .chiptuner-account-type {
  opacity: 1;
}

body.chiptuner-type-unset .wc-block-checkout__sidebar {
  opacity: 0.48;
  transition: opacity 0.2s ease;
}

.chiptuner-account-type {
  background: var(--bg-2);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  padding: 20px clamp(16px, 3vw, 24px);
  margin: 0 0 24px;
  animation: chiptuner-fade-in .35s ease both;
}

.chiptuner-account-type__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.chiptuner-account-type__hint {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 14px;
}

.chiptuner-account-type:not(.chiptuner-account-type--unset) .chiptuner-account-type__hint {
  display: none;
}

.chiptuner-segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-3);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  padding: 4px;
  position: relative;
  transition: border-color .2s ease, background .2s ease;
}

.chiptuner-account-type--unset .chiptuner-segmented {
  border-style: dashed;
  border-color: color-mix(in srgb, var(--edge) 65%, var(--ink));
  background: color-mix(in srgb, var(--bg-3) 90%, var(--ink));
}

.chiptuner-segmented__btn {
  height: 40px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-family: var(--f);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: calc(var(--r) - 4px);
  transition: background .25s ease, color .2s ease, transform .2s ease;
}

.chiptuner-segmented__btn:hover {
  color: var(--ink);
}

.chiptuner-segmented__btn--active {
  background: var(--acc);
  color: #fff;
  box-shadow: 0 2px 10px var(--acc-dim);
}

.chiptuner-segmented__btn--active:hover {
  color: #fff;
}

.chiptuner-vat-wrap {
  grid-column: 1 / -1 !important;
}

.wc-block-checkout .chiptuner-vat-wrap .wc-block-components-validation-error {
  margin-top: 2px !important;
  margin-bottom: 0;
}

body.chiptuner-type-company .chiptuner-vat-wrap    { grid-column: span 1 !important; }
body.chiptuner-type-company .chiptuner-company-wrap { grid-column: span 1 !important; }

.chiptuner-vat-wrap.chiptuner-vat-hidden { display: none !important; }
.chiptuner-vat-wrap.chiptuner-vat-visible {
  animation: chiptuner-fade-slide .25s ease both;
}

@keyframes chiptuner-fade-slide {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}


.chiptuner-company-wrap {
  grid-column: 1 / -1 !important;
}

.chiptuner-company-wrap.chiptuner-company-hidden { display: none !important; }
.chiptuner-company-wrap.chiptuner-company-visible {
  animation: chiptuner-fade-slide .25s ease both;
}


.wc-block-components-address-form__company {
  display: none !important;
}

.chiptuner-vat-feedback {
  display: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  transition: color .15s, opacity .2s;
  opacity: 0;
}

.chiptuner-vat-feedback--loading,
.chiptuner-vat-feedback--ok,
.chiptuner-vat-feedback--error {
  display: block;
  margin-top: 2px;
  opacity: 1;
}

.chiptuner-vat-feedback--loading { color: var(--muted); }
.chiptuner-vat-feedback--ok      { color: var(--ok); }
.chiptuner-vat-feedback--error   { color: var(--err); }

.chiptuner-req {
  color: var(--err);
  font-weight: 700;
  margin-left: 2px;
}

.chiptuner-totals-busy {
  position: relative;
  pointer-events: none;
}
.chiptuner-totals-busy .wc-block-components-totals-item__label,
.chiptuner-totals-busy .wc-block-components-totals-item__value,
.chiptuner-totals-busy .wc-block-components-totals-item__description {
  color: transparent !important;
  border-radius: var(--r);
  background: var(--edge);
  animation: chiptuner-skeleton-pulse 1.2s ease-in-out infinite;
}
.chiptuner-totals-busy::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 35%, rgba(255, 255, 255, 0.07) 50%, transparent 65%);
  background-size: 220% 100%;
  animation: chiptuner-skeleton-shimmer 1.4s ease-in-out infinite;
}
@keyframes chiptuner-skeleton-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes chiptuner-skeleton-shimmer {
  0% { background-position: 150% 0; }
  100% { background-position: -60% 0; }
}

.chiptuner-entity-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  margin: 0 0 20px;
  background: var(--bg-3);
  border: 1px solid var(--edge);
  border-radius: var(--r);
}

.chiptuner-entity-toggle__btn {
  appearance: none;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--f);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 8px 18px;
  border-radius: var(--r);
  transition: background .2s ease, color .2s ease;
}

.chiptuner-entity-toggle__btn:hover {
  color: var(--ink);
}

.chiptuner-entity-toggle__btn.is-active {
  background: var(--acc);
  color: #fff;
}

body.chiptuner-entity-company .wc-block-components-address-form__company {
  display: block !important;
}

.wc-block-checkout .wc-block-components-address-form__first_name  { order: 1; }
.wc-block-checkout .wc-block-components-address-form__last_name   { order: 2; }
.wc-block-checkout .wc-block-components-address-form .wc-block-components-text-input:has( input[data-vat="1"] ) { order: 3; }
.wc-block-checkout .wc-block-components-address-form__company     { order: 4; }
.wc-block-checkout .wc-block-components-address-form__address_1   { order: 5; }
.wc-block-checkout .wc-block-components-address-form__address_2   { order: 6; }
.wc-block-checkout .wc-block-components-address-form__city        { order: 7; }
.wc-block-checkout .wc-block-components-address-form__postcode    { order: 8; }
.wc-block-checkout .wc-block-components-address-form__country     { order: 9; margin-top: 16px !important; }
.wc-block-checkout .wc-block-components-address-form__state       { order: 10; }
.wc-block-checkout .wc-block-components-address-form__phone       { order: 11; }

body.chiptuner-entity-company .wc-block-checkout .wc-block-components-address-form__company { order: 3; }
body.chiptuner-entity-company .wc-block-checkout .wc-block-components-address-form .wc-block-components-text-input:has( input[data-vat="1"] ) { order: 4; }



.chiptuning-page {
  min-height: 100vh;
  --chiptuning-hero-strip-min-h: 168px;
}
.chiptuning-page .ct-strip-hero {
  padding-top: calc(var(--header-offset) + clamp(44px, 6vh, 68px));
}

.page-engine .eng-hero {
  padding-top: var(--page-pad-top);
}

.page-engine .eng-hero,
.page-engine .eng-result {
  transition: opacity .35s ease;
}
.page-engine.is-loading .eng-hero,
.page-engine.is-loading .eng-result {
  opacity: 0;
  pointer-events: none;
}
.eng-preloader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  z-index: 1500;
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease, visibility 0s linear 0s;
}
.page-engine:not(.is-loading) .eng-preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility 0s linear .3s;
}
.eng-preloader__spin {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.1);
  border-top-color: var(--acc);
  border-radius: 50%;
  animation: eng-preloader-spin .9s linear infinite;
}
@keyframes eng-preloader-spin {
  to { transform: rotate(360deg); }
}

.ct-scope {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.ct-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 30px 0 0;
  font-size: 0;
  line-height: 1;
  color: var(--muted);
  flex-wrap: wrap;
}

.ct-breadcrumb > * {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
}

.ct-breadcrumb .ct-b-crumbTxt {
  letter-spacing: 0.1em;
}

.ct-breadcrumb > a.ct-b-crumbLink {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}

.ct-breadcrumb > span.ct-b-crumb {
  margin: 0;
  padding: 0;
  min-width: 0;
}

.ct-breadcrumb .ct-b-sep {
  font-weight: 600;
}

.ct-breadcrumb a.ct-b-crumbLink:hover { color: var(--ink); }

.ct-breadcrumb .is-active {
  color: var(--acc);
}

.ct-cta-bar {
  background: var(--bg);
  border-top: 1px solid var(--edge);
  padding: 64px clamp(24px, 5vw, 80px);
  text-align: center;
}

.ct-cta-bar p {
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 28px;
}

.ct-cta-bar__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}


.ct-brands-section {
  background: var(--bg);
  padding: 0 0 80px;
}

.ct-brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
  padding: 32px 0 0;
}

.ct-brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  aspect-ratio: 1;
  background: rgba(255,255,255,0.04);
  border: 0;
  border-radius: var(--r);
  color: var(--ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  overflow: hidden;
  transition: background .15s;
}

.ct-brand-card:hover {
  background: rgba(255,255,255,0.07);
}

.ct-brand-card.has-brand-logo {
  background: var(--ink);
  color: var(--bg);
}

.ct-brand-card.has-brand-logo:hover {
  background: #fff;
  color: #050505;
}

.ct-brand-card.has-brand-logo .brand-logo-surface {
  width: min(96px, 76%);
  background: transparent;
  border-color: transparent;
}

.chiptuning-page .ct-strip-hero .sh {
  color: #fff;
}

.chiptuning-page .ct-strip-hero .sdesc {
  color: rgba(255, 255, 255, 0.72);
}

.chiptuning-page .ct-breadcrumb,
.page-engine .ct-breadcrumb {
  gap: 4px;
}

.chiptuning-page .ct-breadcrumb .ct-b-crumbTxt,
.page-engine .ct-breadcrumb .ct-b-crumbTxt {
  letter-spacing: 0.04em;
}

.chiptuning-page .ct-breadcrumb,
.chiptuning-page .ct-breadcrumb a,
.page-engine .ct-breadcrumb,
.page-engine .ct-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
}

.chiptuning-page .ct-breadcrumb a:hover,
.page-engine .ct-breadcrumb a:hover {
  color: #fff;
}

.chiptuning-page .ct-breadcrumb .is-active,
.page-engine .ct-breadcrumb .is-active {
  color: var(--acc);
}

.chiptuning-page .ct-brands-section {
  background: var(--bg);
}

.chiptuning-page .ct-brand-card {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.chiptuning-page .ct-brand-card:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.chiptuning-page .ct-brand-card.has-brand-logo {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.chiptuning-page .ct-brand-card.has-brand-logo:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.chiptuning-page .ct-brand-card .brand-logo-surface {
  background: transparent;
  border: none;
  padding: 6px 8px;
}

.chiptuning-page .ct-cta-bar p {
  color: rgba(255, 255, 255, 0.78);
}

.brand-logo-surface {
  width: min(86px, 72%);
  aspect-ratio: 4 / 3;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: var(--r);
  padding: 9px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .ct-brand-card:hover .brand-logo-surface,
  .ct-brand-card:focus-visible .brand-logo-surface {
    transform: scale(1.12);
  }
}

.ct-brand-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ct-brand-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 40px 0;
}

.ct-brand-hero__icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: var(--r);
  padding: 10px;
}

.ct-model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 32px 0 0;
}

.ct-model-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--bg-2);
  border: 0;
  border-radius: var(--r);
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  transition: background .15s;
}

.ct-model-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--acc);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.ct-model-card__arrow {
  color: var(--acc);
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .ct-model-card:hover,
  .ct-model-card:focus-visible {
    background: var(--bg-3);
  }

  .ct-model-card:hover::before,
  .ct-model-card:focus-visible::before {
    transform: scaleY(1);
  }

  .ct-model-card:hover .ct-model-card__arrow,
  .ct-model-card:focus-visible .ct-model-card__arrow {
    transform: translateX(4px);
  }
}

@media (max-width: 1024px) {
  .ct-model-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ct-model-grid { grid-template-columns: 1fr; }
  .ct-brand-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ct-brand-hero__icon { justify-self: center; }
}


.hero5 {
  min-height: calc(100dvh - var(--admin-bar));
  position: relative;
  overflow: hidden;
  display: grid;
  background: var(--bg);
}
.hero5-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpg') center right / cover no-repeat;
  filter: saturate(.96) contrast(1.05);
  transform-origin: 70% 50%;
  animation: heroCarDrift 14s ease-in-out infinite alternate;
}
.hero5-marks {
  position: absolute;
  inset: 24px;
  z-index: 3;
  pointer-events: none;
}
.hero5-marks::before,
.hero5-marks::after,
.hero5-marks span {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid var(--edge-h);
  opacity: 0;
  transform: scale(.72);
  animation: heroMarkIn .72s cubic-bezier(.2,.8,.2,1) .18s both;
}
.hero5-marks::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hero5-marks::after { right: 0; bottom: 0; border-left: 0; border-top: 0; animation-delay: .36s; }
.hero5-marks span:first-child { top: 0; right: 0; border-left: 0; border-bottom: 0; animation-delay: .24s; }
.hero5-marks span:last-child { bottom: 0; left: 0; border-right: 0; border-top: 0; animation-delay: .3s; }
.hero5-left {
  align-self: start;
  text-align: center;
}
.hero5-content {
  position: relative;
  z-index: 4;
  padding: clamp(42px, 8vh, 86px) var(--pad);
  padding-top: max(var(--page-pad-top), clamp(42px, 8vh, 86px));
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  align-self: center;
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(360px, 5fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
@keyframes h5In {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroWordReveal {
  from { opacity: 0; transform: translateY(.22em); clip-path: inset(100% 0 0 0); }
  to { opacity: 1; transform: translateY(0); clip-path: inset(0); }
}
@keyframes heroCarDrift {
  from { transform: scale(1) translate3d(0,0,0); }
  to { transform: scale(1.025) translate3d(-10px,0,0); }
}
@keyframes heroMarkIn {
  0% { opacity: 0; transform: scale(.72); }
  70% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes heroFormIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroButtonIn {
  from { transform: translateY(10px); }
  to { transform: translateY(0); }
}
.hero5-h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--f-head);
  font-size: clamp(52px, 7.5vw, 118px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: .86;
  text-transform: uppercase;
  margin-bottom: clamp(12px, 1.5vh, 20px);
}
.hero5-word {
  display: block;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(.22em);
  clip-path: inset(100% 0 0 0);
  animation: heroWordReveal .72s cubic-bezier(.16,1,.3,1) .24s both;
}
.hero5-word:nth-child(2) {
  animation-delay: .36s;
}
.hero5-word:nth-child(3) {
  animation-delay: .48s;
}
.hero5-h1 .hl {
  color: var(--acc);
}
.hero5-sub {
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 600;
  line-height: 1.55;
  max-width: 520px;
  margin: 0 auto;
  color: rgba(239, 239, 239, 0.72);
  opacity: 0;
  animation: heroFadeUp .58s cubic-bezier(.2,.8,.2,1) .54s both;
}
.hero5-form {
  position: relative;
  isolation: isolate;
  animation: heroFormIn .76s cubic-bezier(.16,1,.3,1) .42s both;
  align-self: start;
}
.perf-tbl-wrap { padding: 0; }
.f-logo-link { display: inline-block; margin-bottom: 10px; }
.cart-drawer__count { color: var(--muted); font-weight: 400; }
.hf5 {
  position: relative;
  background: linear-gradient(180deg, #0a0a0a, #060606);
  border: 1px solid var(--edge-strong);
  overflow: hidden;
  box-shadow: 0 16px 34px -24px rgba(0,0,0,.9), 0 0 0 1px rgba(255,255,255,.1), inset 0 1px 0 rgba(255,255,255,.18), inset 0 0 0 1px rgba(255,255,255,.08);
  backdrop-filter: blur(22px) saturate(1.08);
  -webkit-backdrop-filter: blur(22px) saturate(1.08);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.hf5.is-ready {
  border-color: var(--acc);
  box-shadow: 0 16px 34px -24px rgba(0,0,0,.9), 0 0 0 1px var(--acc), inset 0 1px 0 rgba(255,255,255,.18), inset 0 0 0 1px var(--acc-dim);
}
.hf5-inner {
  position: relative;
  z-index: 1;
  padding: clamp(18px, 2vw, 24px);
}
.hf5-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--edge);
  opacity: 0;
  animation: heroFadeUp .45s cubic-bezier(.2,.8,.2,1) .6s both;
}
.hf5-lbl {
  font-family: var(--f);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.hf5-sels {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.hf5-sels .sw {
  opacity: 0;
  animation: heroFadeUp .44s cubic-bezier(.2,.8,.2,1) both;
}
.hf5-sels .sw:nth-child(1) { animation-delay: .66s; }
.hf5-sels .sw:nth-child(2) { animation-delay: .72s; }
.hf5-sels .sw:nth-child(3) { animation-delay: .78s; }
.hf5-sels .sw:nth-child(4) { animation-delay: .84s; }
.hf5-btn {
  width: 100%;
  height: 48px;
  position: relative;
  overflow: hidden;
  background: var(--acc);
  color: #fff;
  border: none;
  border-radius: var(--r);
  font-family: var(--f);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  animation: heroButtonIn .48s cubic-bezier(.2,.8,.2,1) .9s both;
  transition: background .15s, box-shadow .15s, transform .15s;
}
.hf5-btn svg {
  transition: transform .18s;
}
.hf5-btn:hover {
  background: var(--acc-h);
  transform: translateY(-1px);
  box-shadow: none;
}
.hf5-btn:hover svg {
  transform: translateX(1px) scale(1.08);
}
.hf5-btn[disabled] {
  opacity: 1;
  cursor: not-allowed;
  background: #2b2b2b;
  color: rgba(216,222,232,.7);
}
.hf5-btn[disabled]:hover {
  background: #2b2b2b;
  transform: none;
  box-shadow: none;
}
.hf5-btn[disabled]:hover svg {
  transform: none;
}
.hf5-btn.is-loading {
  color: transparent;
  pointer-events: none;
}
.hf5-btn.is-loading svg {
  opacity: 0;
}
.hf5-btn.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(255,255,255,0.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: eng-preloader-spin .9s linear infinite;
}

.hero-result {
  max-height: 0;
  overflow: hidden;
  transition: max-height .65s cubic-bezier(.22,1,.36,1);
  position: relative;
}
.hero-result.show { max-height: 1400px; }
.hero-description {
  max-height: 0;
  overflow: hidden;
  transition: max-height .65s cubic-bezier(.22,1,.36,1);
  position: relative;
}
.hero-description.show { max-height: 4000px; }
.hero-description.is-open { overflow: visible; max-height: none; }
.hero-description .eng-car-section { transition: opacity .35s ease; }
.hero-description.is-loading .eng-car-section { opacity: 0; pointer-events: none; }
.hero-result .eng-hero { border-top: 1px solid var(--edge); }
.hero-result .eng-hero,
.hero-result .eng-result {
  transition: opacity .35s ease;
}
.hero-result.is-loading .eng-hero,
.hero-result.is-loading .eng-back-wrap,
.hero-result.is-loading .eng-result {
  opacity: 0;
  pointer-events: none;
}
.hero-result.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.1);
  border-top-color: var(--acc);
  border-radius: 50%;
  animation: eng-preloader-spin .9s linear infinite;
  z-index: 2;
  pointer-events: none;
}

.sw.is-loading select { pointer-events: none; }
.sw.is-loading::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--acc) 50%, transparent 100%);
  background-size: 50% 100%;
  background-repeat: no-repeat;
  background-position: -50% 0;
  animation: sw-progress 1.2s linear infinite;
  border-radius: 0 0 var(--r) var(--r);
  pointer-events: none;
  z-index: 2;
}
@keyframes sw-progress {
  0%   { background-position: -50% 0; }
  100% { background-position: 150% 0; }
}
.hr-inner {
  border-top: 1px solid var(--edge);
  background: var(--bg);
}
.hr-car-bar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--edge);
  padding: clamp(18px, 2.5vh, 30px) var(--pad);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.hr-brand-logo {
  display: none;
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  flex-shrink: 0;
}
.hr-brand-logo.is-loaded { display: block; }
.hr-car-name {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.25;
  white-space: nowrap;
}
.hr-grid {
  display: grid;
  grid-template-columns: 9fr 11fr;
  gap: clamp(12px, 2vw, 28px);
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(20px, 3vh, 36px) clamp(14px, 3vw, 40px) clamp(24px, 4vh, 44px);
}
.perf-stack {
  flex: 1;
  position: relative;
  isolation: isolate;
}
.perf-result-band {
  display: contents;
}
.perf-result-band > * {
  position: relative;
  z-index: 1;
}
.perf-stack::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(13,13,13,0.7);
  mask-image: linear-gradient(to right, transparent, #000 clamp(14px, 3vw, 44px), #000 calc(100% - clamp(14px, 3vw, 44px)), transparent),
    linear-gradient(to bottom, transparent, #000 clamp(10px, 2vh, 32px), #000 calc(100% - clamp(10px, 2vh, 32px)), transparent);
  mask-composite: intersect;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 clamp(14px, 3vw, 44px), #000 calc(100% - clamp(14px, 3vw, 44px)), transparent),
    linear-gradient(to bottom, transparent, #000 clamp(10px, 2vh, 32px), #000 calc(100% - clamp(10px, 2vh, 32px)), transparent);
  -webkit-mask-composite: source-in;
}
.res-dyno { min-height: 0; }
.dyno-wr {
  position: relative;
  width: calc(100% + clamp(12px, 2vw, 44px));
  margin-left: clamp(-12px, -2vw, -44px);
  aspect-ratio: 2.1 / 1;
  max-height: min(480px, 90vw);
}
.dyno-wr canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.hr-actions {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(14px, 2vh, 20px) clamp(14px, 3vw, 40px) clamp(20px, 3vh, 32px);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid var(--edge);
}
.hr-actions .btn { font-size: 11px; height: 36px; }
.hr-actions--inline {
  max-width: none;
  margin: 0;
  padding: clamp(6px, 1vh, 12px) 0 0;
  border-top: 0;
  justify-content: flex-start;
}

.section-svc {
  background: var(--bg-2);
  border-top: 1px solid var(--edge);
  padding: clamp(48px, 7vh, 80px) var(--pad);
}
.svc-head { text-align: center; margin-bottom: clamp(28px, 4vh, 48px); }
.svc-head .eyebrow { margin-bottom: 4px; }
.svc-head .sdesc { margin: 8px auto 0; }
.svc-grid {
  --svc-edge: color-mix(in srgb, var(--edge) 52%, transparent);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--svc-edge);
  border: 1px solid var(--svc-edge);
}
.svc-card {
  background: var(--bg-2);
  min-height: 156px;
  padding: 24px 24px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  overflow: hidden;
  position: relative;
  transition: box-shadow .2s ease;
}
.svc-icon {
  width: 50px;
  height: 50px;
  color: var(--acc);
  opacity: 1;
  transition: color .2s ease, opacity .2s ease, transform .2s ease;
}
.svc-name {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0;
  line-height: 1.1;
  transition: color .2s ease;
}
.svc-desc {
  grid-column: 1 / -1;
  font-size: 12.5px;
  color: var(--ink-dim);
  line-height: 1.6;
  margin: 0;
  max-width: 30ch;
}

#page-home .section-how,
#page-engine .section-how,
#page-become-dealer .section-how {
  background: var(--bg);
  border-top: 1px solid var(--edge);
  padding: clamp(48px, 7vh, 80px) var(--pad);
  overflow: hidden;
}
#page-become-dealer .how-timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.how-wrap {
  display: block;
  max-width: var(--w);
  margin: 0 auto;
}
.how-head {
  text-align: left;
  max-width: 760px;
  margin: 0 0 clamp(28px, 4vh, 48px);
}
.how-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--edge);
  border-radius: var(--r);
  background: var(--bg);
}
.how-timeline::before {
  content: none;
}
.how-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: clamp(24px, 4vh, 44px);
  min-height: clamp(190px, 19vw, 260px);
  padding: clamp(26px, 3vw, 42px);
  border-right: 1px solid var(--edge);
  border-left: none;
  overflow: hidden;
}
.how-step + .how-step {
  border-top: none;
}
.how-step:last-child {
  border-right: none;
}
.how-node {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}
.step-n {
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: var(--f-head);
  font-size: clamp(280px, 26vw, 440px);
  font-weight: 600;
  line-height: .72;
  letter-spacing: 0;
  color: rgba(255,255,255,.045);
  transform: translateX(6%);
}
.how-step-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 18px;
  min-width: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}
.step-icon {
  grid-row: auto;
  width: 44px;
  height: 44px;
  color: var(--acc);
  margin: 0;
  display: block;
}
.step-title {
  font-size: clamp(18px, 2vw, 28px);
  line-height: .95;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0;
}
.step-txt {
  grid-column: auto;
  max-width: 380px;
  margin: 0;
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.7;
}

#page-home .section-dealers,
#page-engine .section-dealers,
#page-fileservice .section-dealers,
#page-contact .section-dealers {
  border-top: 1px solid var(--edge);
  background: var(--bg-2);
  padding: clamp(48px, 7vh, 80px) var(--pad) 0;
}
.dealers-head {
  margin-bottom: clamp(28px, 4vh, 48px);
}
.dealers-wrap {
  display: grid;
  grid-template-columns: clamp(380px, 36vw, 520px) 1fr;
  min-height: 500px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.dealers-note {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}
.dealers-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dealers-note a:hover { color: var(--ink); }
.section-dealers .dealers-wrap > .dp,
.section-dealers .dealers-wrap > .map-area {
  transition: opacity .35s ease;
}
.section-dealers.is-loading .dealers-wrap > .dp,
.section-dealers.is-loading .dealers-wrap > .map-area {
  opacity: 0;
  pointer-events: none;
}
.dealers-preloader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  z-index: 5;
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease, visibility 0s linear 0s;
  pointer-events: none;
}
.section-dealers:not(.is-loading) .dealers-preloader {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility 0s linear .3s;
}
.dealers-preloader__spin {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.1);
  border-top-color: var(--acc);
  border-radius: 50%;
  animation: eng-preloader-spin .9s linear infinite;
}
.dp {
  background: var(--bg-2);
  border-left: 1px solid var(--edge);
  border-right: 1px solid var(--edge);
  display: flex;
  flex-direction: column;
}
.dp-title {
  font-size: clamp(30px, 3.8vw, 58px);
  font-weight: 700;
  line-height: .96;
  letter-spacing: 0;
  margin-top: 10px;
}
.dp-search {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40%;
  z-index: 10;
  display: flex;
  align-items: center;
  background: rgba(17,17,17,0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(.22,1,.36,1), opacity 0.42s ease;
}
.section-dealers.in-view .dp-search {
  transform: translateY(0);
  opacity: 1;
}
.dp-search svg {
  position: absolute;
  left: 18px;
  color: var(--muted);
  pointer-events: none;
  flex-shrink: 0;
}
.dp-search input {
  width: 100%;
  background: transparent;
  border: none;
  padding: 14px 16px 14px 46px;
  color: var(--ink);
  font-family: var(--f);
  font-size: 14px;
  outline: none;
}
.dp-search input:focus { border-color: var(--acc); }
.dp-search input::placeholder { color: var(--muted); }
.dp-list {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--edge);
  border-top: 1px solid var(--edge);
  scrollbar-width: thin;
  scrollbar-color: #1a1a1a transparent;
}
.dp-list::-webkit-scrollbar { width: 8px; }
.dp-list::-webkit-scrollbar-track { background: transparent; }
.dp-list::-webkit-scrollbar-thumb { background: #1a1a1a; border-radius: 4px; }
.dp-list::-webkit-scrollbar-thumb:hover { background: #2a2a2a; }
.dp-item {
  background: var(--bg-2);
  flex-shrink: 0;
  padding: 14px 16px;
  border-left: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .12s;
}
.dp-item:hover {
  border-color: var(--edge);
  border-left-color: var(--edge-h);
}
.dp-item:hover .dp-name {
  transform: scale(1.02);
}
.dp-item.active {
  background: var(--bg);
  border-color: var(--edge);
  border-left-color: var(--acc);
}
.dp-name {
  font-size: clamp(18px, 2vw, 28px);
  font-family: var(--f-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
  transform-origin: left center;
  transition: transform .2s ease;
}
.dp-item.active .dp-name { color: var(--acc); }
.dp-meta { font-size: 12px; color: var(--ink-dim); }
.dp-item.active .dp-meta { color: var(--ink); }
.map-area { background: #080808; position: relative; overflow: hidden; }
.map-ph {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.012) 0, transparent 1px, transparent 60px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.012) 0, transparent 1px, transparent 60px),
    #080808;
}
.map-ph svg { width: 38px; height: 38px; color: rgba(0,144,255,0.22); }
.map-ph p { font-size: 11px; color: var(--ink-dim); }

footer.site-footer {
  background: rgba(7,7,7,.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--edge);
  padding: clamp(36px, 5vh, 56px) var(--pad) clamp(18px, 2vh, 28px);
}
.footer-g {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(140px, 1fr)) auto;
  gap: 36px;
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--edge);
  margin-bottom: 20px;
}
.footer-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-badge a {
  display: flex;
  align-items: center;
  height: 100%;
  color: var(--muted);
  transition: color .15s;
}
.footer-badge a:hover { color: var(--ink); }
.f-dealer-badge {
  height: 100%;
  width: auto;
  max-height: 200px;
  color: inherit;
}
.footer-brand {
  min-width: 0;
}
footer.site-footer .f-logo-link {
  margin-bottom: 0;
}
.f-logo-link svg {
  display: block;
  height: 28px;
  width: auto;
  max-width: 220px;
}
.f-logo {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.f-logo em { color: var(--acc); font-style: normal; }
.f-brand-copy {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.55;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.f-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.f-socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--edge);
  border-radius: var(--r);
  color: var(--muted);
  transition: border-color .15s, color .15s, background .15s;
}
.f-socials a:hover {
  color: var(--ink);
  border-color: var(--edge-h);
  background: var(--bg-3);
}
.f-socials svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.f-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 220px;
}
.f-col-t {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.f-col-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  background: transparent;
  color: inherit;
  padding: 0;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}
.f-col-toggle svg {
  width: 16px;
  height: 16px;
  color: var(--ink-dim);
  transition: transform .18s;
  display: none;
}
.f-col-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.f-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.f-links a {
  font-size: 12px;
  color: var(--muted);
  transition: color .15s;
}
.f-links a:hover { color: var(--ink); }
@media (max-width: 1200px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .how-step { min-height: 260px; }
  .dealers-wrap { grid-template-columns: clamp(300px, 40vw, 420px) 1fr; }
  .footer-g { grid-template-columns: 1fr 1fr; gap: 22px; }
  .footer-badge { justify-content: flex-start; }
  .footer-badge a { height: auto; }
  .f-dealer-badge { height: auto; width: clamp(100px, 22vw, 150px); max-height: none; }
}
@media (max-width: 960px) {
  .hero5-content { max-width: 100%; width: 100%; }
  .hr-grid { grid-template-columns: 1fr; }
  .dyno-wr { width: 100%; margin-left: 0; margin-top: 20px; aspect-ratio: 2/1; max-height: none; }
  .dealers-wrap {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .map-area {
    order: 1;
  }
  .dp {
    order: 2;
    height: auto;
    max-height: none;
    min-height: 0;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--edge);
  }
  .dp-list {
    flex: none;
    min-height: 0;
    max-height: none;
    overflow: visible;
  }
  .dp-item {
    min-height: 68px;
    padding: 16px 18px;
    overflow: visible;
  }
  .dp-name {
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.08;
    margin-bottom: 7px;
  }
  .dp-meta {
    display: block;
    line-height: 1.45;
  }
  .map-ph { min-height: 320px; }
  .dp-search { left: 16px; right: 16px; width: auto; }
  .how-head { max-width: 680px; }
  .how-timeline,
  #page-become-dealer .how-timeline { grid-template-columns: 1fr; }
  .how-step {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    padding: 28px;
    border-right: none;
    border-bottom: 1px solid var(--edge);
  }
  .how-step:last-child { border-bottom: none; }
  .step-n { font-size: clamp(150px, 28vw, 260px); transform: translateX(4%); }
  .how-step-body { row-gap: 12px; }
  .step-txt { max-width: 620px; }
}
@media (max-width: 780px) {
  .f-col-t {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 0;
  }
  .dp-search { display: none; }
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .how-head { text-align: center; max-width: 640px; margin: 0 auto; }
  .how-step {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }
  .step-n { font-size: clamp(120px, 34vw, 220px); }
  .how-step-body { padding: 0; }
  .f-col-toggle svg {
    display: block;
  }
  .footer-g { grid-template-columns: 1fr; }
  .footer-brand {
    display: contents;
  }
  .footer-brand .f-logo-link {
    display: none;
  }
  .footer-col {
    order: 1;
    border-top: 1px solid var(--edge);
    padding-top: 16px;
  }
  .f-socials {
    order: 2;
    justify-content: center;
    gap: 12px;
    margin-top: 0;
  }
  .f-socials a {
    width: 56px;
    height: 56px;
  }
  .f-socials svg {
    width: 24px;
    height: 24px;
  }
  .footer-badge {
    order: 3;
    justify-content: center;
  }
  .f-dealer-badge {
    width: min(190px, 62vw);
    height: auto;
    max-height: none;
  }
  .f-brand-copy {
    order: 4;
    align-items: center;
    text-align: center;
    margin-top: 18px;
  }
  .footer-col .f-links {
    display: none;
    margin-top: 12px;
  }
  .footer-col.is-open .f-links {
    display: flex;
    align-items: center;
  }
  .footer-badge a {
    justify-content: center;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 520px) {
  .hero5-h1 { font-size: clamp(34px, 9vw, 50px); }
  .hf5-sels { gap: 5px; }
  .hr-grid { padding: 16px; }
  .hr-actions { flex-direction: column; align-items: stretch; }
  .hr-actions .btn { justify-content: center; }
  .dp-item {
    min-height: 72px;
    padding: 16px;
  }
  .dp-name {
    font-size: 20px;
  }
  .dp-meta {
    font-size: 12.5px;
  }
  .how-step { padding: 20px; }
  .step-n { font-size: clamp(112px, 46vw, 180px); transform: translateX(7%); }
  .how-step-body { row-gap: 10px; }
  .step-icon { width: 36px; height: 36px; }
  .step-txt { font-size: 12.5px; }
  .fs-btns,
  .ct-cta-bar__btns,
  .form-submit { flex-direction: column; align-items: stretch; }
  .fs-btns .btn,
  .ct-cta-bar__btns .btn,
  .form-submit .btn { width: 100%; justify-content: center; }
}
@media (max-width: 360px) {
  .svc-grid { grid-template-columns: 1fr; }
}

.eng-hero {
  min-height: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--edge);
  padding: clamp(42px, 6vh, 72px) var(--pad) clamp(30px, 4vh, 52px);
  text-align: left;
}
.eng-hero-inner {
  max-width: var(--w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
}
.eng-hero-text {
  flex: 1 1 0;
  min-width: 0;
}
.brand-badge {
  width: clamp(78px, 8.2vw, 118px);
  height: clamp(78px, 8.2vw, 118px);
  background: var(--bg);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--f-mono);
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  overflow: hidden;
}
.brand-badge.has-brand-logo {
  background: rgba(0, 0, 0, 0.45);
  border-color: var(--edge-h);
}
.brand-badge img {
  width: auto;
  height: auto;
  max-width: 78%;
  max-height: 72%;
  object-fit: contain;
}
.eng-hero-text h1 {
  max-width: none;
  font-family: var(--f-head);
  font-size: clamp(30px, 4.2vw, 58px);
  font-weight: 700;
  line-height: .94;
  letter-spacing: 0;
  text-transform: uppercase;
}
.eng-hero-sub {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0;
  row-gap: 0.35em;
  font-family: var(--f-mono);
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 10px;
  line-height: 1.45;
}
.eng-hero-k {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}
.eng-hero-k + .eng-hero-k::before {
  content: '\00a0·\00a0';
  user-select: none;
}

.eng-result { padding: 0 0 clamp(18px, 3vh, 36px); }
.eng-result > .ct-scope,
.ct-scope.eng-back-wrap {
  max-width: calc(1440px + 2 * clamp(24px, 5vw, 80px));
}
.eng-back-wrap {
  display: flex;
  justify-content: flex-end;
  padding: 30px clamp(24px, 5vw, 80px) 0;
}
.eng-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  cursor: pointer;
  transition: color .15s;
}
.eng-back:hover { color: var(--acc); }
.eng-back__arrow { font-size: 13px; line-height: 1; }
@media (max-width: 782px) {
  .eng-back-wrap:has(#hero-reset-btn) { display: none; }
  .page-engine .eng-back-wrap { display: none; }
}
.eng-result-grid {
  display: grid;
  grid-template-columns: 9fr 11fr;
  gap: clamp(12px, 2vw, 28px);
  align-items: stretch;
}
.res-right-eng { min-height: 0; }
.dyno-wrap-eng {
  position: relative;
  width: calc(100% + clamp(12px, 2vw, 44px));
  margin-left: clamp(-12px, -2vw, -44px);
  aspect-ratio: 2.1 / 1;
  max-height: min(480px, 88vw);
}
.dyno-wrap-eng canvas { display: block; width: 100% !important; height: 100% !important; }

.eng-car-section {
  background: var(--bg-2);
  border-top: 1px solid var(--edge);
  padding: clamp(42px, 8vh, 86px) var(--pad);
}
.eng-car-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.eng-car-text {
  min-width: 0;
  width: 100%;
  --eng-block-head-gap: clamp(18px, 2.4vh, 24px);
  --eng-section-stack: clamp(32px, 4vh, 44px);
}
.eng-car-text > :last-child { margin-bottom: 0; }
.eng-car-text > .eyebrow { margin-bottom: 8px; display: block; }
.eyebrow-muted { color: var(--muted); }
.eng-subtitle {
  font-family: var(--f-head);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 18px;
}
.eng-car-text .eng-subtitle {
  margin: 0 0 var(--eng-block-head-gap);
}
.eng-title {
  max-width: none;
  font-family: var(--f-head);
  font-size: clamp(30px, 3.8vw, 58px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: .96;
  text-transform: uppercase;
  margin: 0 0 22px;
  color: var(--ink);
}
.eng-title .acc { color: var(--acc); }
.eng-title .stock { color: rgba(239,239,239,0.52); }
.eng-intro {
  max-width: 980px;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.eng-intro p {
  margin: 0;
  max-width: none;
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-dim);
}
.eng-recalibrate {
  max-width: 1140px;
  margin: 0 0 var(--eng-section-stack);
}
.eng-calibration-grid {
  --svc-edge: color-mix(in srgb, var(--edge) 52%, transparent);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--svc-edge);
  border: 1px solid var(--svc-edge);
  border-radius: var(--r);
  overflow: hidden;
}
.eng-calibration-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: start;
  align-items: center;
  gap: 18px;
  min-height: 156px;
  padding: 24px;
  background: var(--bg-2);
  position: relative;
  isolation: isolate;
}
.eng-cal-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  color: var(--acc);
  opacity: 1;
  transition: transform .2s ease;
}
.eng-cal-icon.eng-cal-icon--masked {
  display: block;
  background-color: var(--acc);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.eng-cal-name {
  font-family: var(--f-head);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.eng-cal-state {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-dim);
  align-self: start;
}
@media (hover: hover) and (pointer: fine) {
  .eng-calibration-card:hover .eng-cal-icon,
  .eng-calibration-card:focus-visible .eng-cal-icon {
    transform: scale(1.08);
  }
}
.eng-note {
  max-width: none;
  width: 100%;
  margin: 0 0 36px;
  padding: 0;
  display: grid;
  grid-template-columns: clamp(72px, 10vw, 110px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  grid-template-areas:
    "photo quote"
    "photo meta";
  column-gap: 0;
  row-gap: clamp(2px, 0.4vw, 4px);
  align-items: stretch;
  background: var(--bg-2);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  overflow: hidden;
}
.eng-note-photo {
  grid-area: photo;
  align-self: stretch;
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0;
  border: 0;
  border-right: 1px solid var(--edge);
  background: var(--bg-4);
  overflow: hidden;
}
.eng-note-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.eng-note-photo .eng-note-init {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.eng-note-init {
  font-family: var(--f-mono);
  font-size: clamp(17px, 1.75vw, 22px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--acc);
}
.eng-note-frame {
  grid-area: quote;
  position: relative;
  padding: clamp(8px, 1vw, 12px) clamp(18px, 2.5vw, 28px) 0 clamp(16px, 2vw, 22px);
  margin: 0;
  background: transparent;
  overflow: visible;
}
.eng-note blockquote {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: var(--f);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(13px, 0.92vw, 15px);
  line-height: 1.42;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.eng-note-meta {
  grid-area: meta;
  padding: 0 clamp(18px, 2.5vw, 28px) clamp(8px, 1vw, 12px) clamp(16px, 2vw, 22px);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 0;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.eng-note-meta strong {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.12em;
}
.eng-note-meta span {
  color: var(--muted);
  font-weight: 600;
}
.eng-note-meta > * + *::before {
  content: "·";
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.22);
  font-weight: 700;
}
.eng-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 0;
  margin-bottom: var(--eng-section-stack);
  max-width: 720px;
}
.eng-car-text .eng-accordion {
  max-width: none;
}
.eng-acc-item {
  border: 1px solid var(--edge);
  border-radius: var(--r);
  background: var(--bg-2);
  overflow: hidden;
  transition: border-color .2s ease;
}
.eng-acc-item:hover {
  border-color: var(--edge-h);
}
.eng-acc-item[open] {
  border-color: rgba(0,144,255,0.4);
}
.eng-acc-trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  cursor: pointer;
  list-style: none;
}
.eng-acc-label {
  flex: 1 1 auto;
  font-family: var(--f-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--ink);
}
.eng-acc-trigger::-webkit-details-marker { display: none; }
.eng-acc-trigger::marker { display: none; content: ''; }
.eng-acc-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform .2s ease, color .2s ease;
}
.eng-acc-item[open] .eng-acc-arrow {
  transform: rotate(180deg);
  color: var(--acc);
}
.eng-acc-body {
  padding: 0 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.eng-acc-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-dim);
  margin: 0;
  max-width: none;
}
@media (prefers-reduced-motion: reduce) {
  .eng-acc-arrow { transition: none; }
  .eng-calibration-card { transition: none; }
  .eng-acc-item { transition: none; }
}
.eng-faq-section {
  background: var(--bg);
  border-top: 1px solid var(--edge);
  padding: clamp(36px, 5vh, 56px) var(--pad);
}
.eng-faq-inner { max-width: 720px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 28px; }
.e-faq { display: flex; flex-direction: column; gap: 4px; }

.eng-seo-section {
  background: var(--bg-2);
  border-top: 1px solid var(--edge);
  padding: clamp(36px, 5vh, 56px) var(--pad);
}
.eng-seo-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.eng-seo-inner p { font-size: 12px; color: var(--muted); line-height: 1.7; }
.eng-seo-inner p:first-child { font-size: 13px; font-weight: 700; color: var(--ink); }

@media (max-width: 1180px) {
  .eng-car-inner { grid-template-columns: minmax(0, 1fr) 340px; gap: 28px; }
  .eng-calibration-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1100px) and (min-width: 821px) {
  .dyno-wrap-eng { aspect-ratio: 1.5 / 1; max-height: none; }
}
@media (max-width: 820px) {
  .eng-result-grid { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .page-engine .eng-result .ct-scope.eng-result-grid {
    padding-left: var(--pad);
    padding-right: var(--pad);
  }
  .page-engine .eng-result-grid > .perf-stack {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    padding-left: 0;
    padding-right: 0;
  }
  .page-engine .eng-result-grid > .res-right-eng {
    justify-self: stretch;
    width: 100%;
    min-width: 0;
  }
  .dyno-wrap-eng { width: 100%; margin-left: 0; margin-top: 10px; aspect-ratio: 1.38 / 1; max-height: none; }
  .eng-car-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
    align-items: start;
    justify-items: center;
  }
  .eng-car-inner .eng-car-text {
    order: 2;
    grid-column: 1;
    width: 100%;
    max-width: 720px;
    justify-self: center;
  }
  .eng-car-inner .eng-offer-card {
    order: 1;
    grid-column: 1;
    position: static;
    top: auto;
    max-width: 520px;
    width: 100%;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    z-index: auto;
  }
  .page-engine .eng-car-text > .eyebrow,
  .page-engine .eng-title,
  .page-engine .eng-car-text .eng-subtitle {
    text-align: center;
  }
  .page-engine .eng-result .perf-stack::before {
    opacity: 0;
  }
  .page-engine .perf-result-band {
    display: block;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .page-engine .perf-tbl-wrap {
    display: block;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
    padding-left: var(--pad);
    padding-right: var(--pad);
  }
  .page-engine .perf-tbl {
    width: 100%;
    max-width: 100%;
  }
  .page-engine .perf-tbl .perf-row td:first-child {
    text-align: left;
  }
  .page-engine .dyno-wrap-eng {
    width: min(100%, 440px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .page-engine .res-right-eng {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .page-engine .res-opts {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-width: 0;
    max-width: min(calc(100% - 20px), 400px);
    margin-left: auto;
    margin-right: auto;
  }
  .page-engine .res-opts-body {
    display: contents;
  }
  .page-engine .res-opts-lbl {
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
  .page-engine .opt-tags {
    justify-content: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .page-engine .eng-calibration-grid {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: var(--r);
  }
}
@media (max-width: 780px) {
  .eng-car-inner .eng-offer-card { max-width: 100%; }
}
@media (max-width: 640px) {
  .eng-car-section { padding: clamp(34px, 6vh, 60px) var(--pad); }
  .eng-car-text {
    --eng-block-head-gap: 14px;
    --eng-section-stack: clamp(26px, 4.5vh, 36px);
  }
  .eng-calibration-card { min-height: 0; padding: 20px; gap: 16px; grid-template-columns: 44px 1fr; }
  .eng-cal-icon { width: 40px; height: 40px; }
  .eng-cal-name { font-size: 18px; }
  .eng-result-grid { gap: 8px; }
  .res-opts {
    padding-top: clamp(6px, 1vh, 12px);
    padding-bottom: clamp(6px, 1.2vh, 14px);
  }
  .dyno-wrap-eng {
    margin-top: 4px;
  }
  .eng-note {
    grid-template-columns: 56px minmax(0, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas:
      "photo quote"
      "photo meta";
    column-gap: 14px;
    row-gap: 6px;
    align-items: start;
    justify-items: stretch;
    text-align: left;
    padding: clamp(14px, 3.2vw, 20px) clamp(14px, 3.5vw, 18px);
  }
  .eng-note-photo {
    grid-area: photo;
    width: 56px;
    height: 56px;
    min-height: 56px;
    align-self: start;
    border-right: 1px solid var(--edge);
    border-radius: var(--r);
  }
  .eng-note-photo img {
    object-fit: cover;
  }
  .eng-note-frame {
    padding: 0;
    text-align: left;
  }
  .eng-note blockquote {
    text-align: left;
    font-size: clamp(13px, 3.5vw, 15px);
    line-height: 1.52;
  }
  .eng-note-meta {
    padding: 0;
    justify-content: flex-start;
    text-align: left;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 4px;
  }
  .eng-note-meta > * + *::before {
    display: inline;
  }
  .eng-note-meta span {
    display: inline;
    width: auto;
    margin-top: 0;
    letter-spacing: 0.12em;
  }
  .eng-acc-trigger { padding: 12px 14px; gap: 10px; }
  .eng-acc-label { font-size: 15px; }
  .eng-acc-body { padding: 0 14px 14px; }
  .eng-acc-body p { font-size: 13px; line-height: 1.65; }
}

.fs-hero {
  position: relative;
  min-height: calc(100dvh - var(--admin-bar));
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  background: #000;
}
.fs-hero-bg {
  position: absolute;
  inset: -12px;
  background: url('../img/fileservice-hero.jpg') center center / cover no-repeat;
  filter: saturate(.96) contrast(1.05) blur(3px);
  transform-origin: center center;
  animation: heroZoom 14s ease-in-out infinite alternate;
  z-index: 1;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.fs-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 100% at 50% 45%, color-mix(in srgb, var(--bg) 52%, transparent) 0%, color-mix(in srgb, var(--bg) 66%, transparent) 55%, color-mix(in srgb, var(--bg) 94%, transparent) 100%);
  pointer-events: none;
  z-index: 2;
}
.fs-hero-inner {
  position: relative;
  z-index: 4;
  padding: clamp(42px, 8vh, 86px) var(--pad);
  max-width: var(--w);
  margin: 0 auto;
  width: 100%;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.fs-hero-inner .eyebrow {
  margin-bottom: clamp(18px, 2.6vh, 30px);
}
.fs-hero-h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--f-head);
  font-size: clamp(52px, 7.5vw, 118px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: .95;
  text-transform: uppercase;
  margin-bottom: clamp(16px, 2.4vh, 28px);
  color: var(--ink);
  max-width: 100%;
}
.fs-hero-word {
  display: block;
}
.fs-hero-h1 .hl {
  color: var(--acc);
}

.f-link-btn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
}
.f-link-btn:hover { color: var(--acc); }

.ct-consent-modal {
  width: min(480px, calc(100vw - 32px));
}
.ct-consent-intro {
  margin: 0 0 18px;
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.5;
}
.ct-consent-intro a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ct-consent-intro a:hover { color: var(--ink); }

.ct-modal {
  border: 1px solid var(--edge);
  border-radius: var(--r);
  background: var(--bg-3);
  color: var(--ink);
  padding: 0;
  width: min(520px, calc(100vw - 32px));
  max-height: calc(100dvh - 48px);
  margin: auto;
  inset: 0;
  position: fixed;
}
.ct-modal::backdrop { background: rgba(0, 0, 0, .68); }
.ct-modal-inner { padding: 24px; }
.ct-modal-title {
  font-size: 20px;
  margin: 0 0 16px;
}
.ct-modal-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 20px;
  flex-wrap: wrap;
}
.ct-modal :focus {
  outline: none;
}
.ct-consent-modal .ct-modal-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.ct-consent-modal .ct-modal-actions .btn {
  width: 100%;
  padding: 8px;
  height: auto;
  min-height: 44px;
  white-space: normal;
  line-height: 1.25;
  text-align: center;
}
@media (max-width: 520px) {
  .ct-modal-actions {
    flex-direction: column-reverse;
  }
  .ct-modal-actions .btn {
    width: 100%;
  }
}
.ct-slave-modal-text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-dim);
}
.ct-slave-modal-text a {
  color: var(--acc);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ct-slave-modal-confirm {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
}
.ct-slave-modal-confirm input { margin-top: 2px; }

.ct-consent-groups {
  display: grid;
  gap: 14px;
}
.ct-consent-groups[hidden] { display: none; }
.ct-modal-actions .btn[hidden] { display: none; }
.ct-consent-group {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  cursor: pointer;
}
.ct-consent-group input { margin-top: 3px; }
.ct-consent-group-label {
  display: block;
  color: var(--ink);
  font-weight: 700;
}
.ct-consent-group-desc {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.fs-hero-sub {
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 600;
  line-height: 1.55;
  max-width: 560px;
  margin: 0 0 clamp(28px, 4vh, 44px);
  color: rgba(239, 239, 239, 0.72);
}
.fs-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 520px) {
  .fs-hero-h1,
  .bd-hero-h1 { font-size: clamp(34px, 9vw, 50px); }
}
@media (max-width: 780px) {
  .fs-hero-word,
  .bd-hero-word {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

.fs-pricing-sec {
  background: var(--bg-2);
  border-top: 1px solid var(--edge);
  padding: clamp(48px, 7vh, 80px) var(--pad);
}
.fs-pricing-scope {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}
.fs-pricing-left,
.fs-pricing-right {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vh, 40px);
  min-width: 0;
}
.fs-pricing-head .eyebrow {
  display: block;
  margin-bottom: 8px;
}
.fs-pricing-intro {
  margin-top: clamp(16px, 2.4vh, 24px);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-dim);
}
.fs-pricing-intro p {
  margin: 0 0 14px;
}
.fs-pricing-intro p:last-child {
  margin-bottom: 0;
}
@media (max-width: 960px) {
  .fs-pricing-sec .fs-pricing-scope {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vh, 22px);
  }
  .fs-pricing-sec .fs-pricing-left,
  .fs-pricing-sec .fs-cfg,
  .fs-pricing-sec .fs-cfg-main,
  .fs-pricing-sec .fs-calc,
  .fs-pricing-sec .fs-calc-main {
    display: contents;
  }
  .fs-pricing-sec .fs-pricing-right {
    display: none;
  }
}

.fs-role-mobile,
.fs-price-inline,
.cfg-opt-price { display: none; }

@media (max-width: 960px) {
  .fs-role-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .fs-role-mobile > .eyebrow { color: var(--muted); }
  .fs-role-mobile-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--edge);
    border: 1px solid var(--edge);
    border-radius: var(--r);
    overflow: hidden;
  }
  .fs-role-mobile-btn {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: var(--bg-2);
    color: var(--muted);
    font-family: var(--f);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 14px 0;
    cursor: pointer;
    transition: background .15s, color .15s;
  }
  .fs-role-mobile-btn[aria-pressed="true"] {
    background: var(--acc);
    color: #fff;
  }

  .fs-pricing-sec .cfg-opts-grid { grid-template-columns: 1fr; }
  .fs-pricing-sec .cfg-opt { grid-template-columns: 18px minmax(0, 1fr) auto; }
  .cfg-opt-price {
    display: inline-block;
    justify-self: end;
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--acc);
    white-space: nowrap;
  }

  .fs-price-inline {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 12px;
    background: var(--bg-2);
    border: 1px solid var(--edge);
    border-radius: var(--r);
    padding: 22px 20px;
  }
  .fs-price-inline-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .fs-price-inline-label,
  .fs-price-inline-from {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .fs-price-inline-from { display: none; }
  .fs-pricing-scope:has(.fs-cfg.is-from-price) .fs-price-inline-label {
    display: none;
  }
  .fs-pricing-scope:has(.fs-cfg.is-from-price) .fs-price-inline-from {
    display: inline-block;
  }
  .fs-price-inline-amt {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    margin-left: auto;
  }
  .fs-price-inline-amt strong {
    font-family: var(--f-head);
    font-size: 30px;
    font-weight: 700;
    color: var(--ink);
  }
  .fs-price-inline-vat {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
  }
}
.cfg-stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cfg-stage {
  appearance: none;
  background: var(--bg-2);
  border: 1.5px solid var(--edge);
  border-radius: var(--r);
  padding: 22px 18px;
  text-align: left;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  font-family: var(--f);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 120px;
}
.cfg-stage:hover { border-color: var(--edge-h); }
.cfg-stage.active {
  border-color: var(--acc);
  background: rgba(0,144,255,0.06);
}
.cfg-stage-name {
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
}
.cfg-stage-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.cfg-opts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}
.cfg-opt {
  appearance: none;
  background: var(--bg-2);
  border: 1px solid var(--edge);
  color: var(--ink);
  font-family: var(--f);
  font-size: 12px;
  font-weight: 600;
  padding: 11px 14px;
  border-radius: var(--r);
  cursor: pointer;
  text-align: left;
  transition: border-color .15s, background .15s, color .15s;
}
.cfg-opt:hover { border-color: var(--edge-h); }
.cfg-opt.active {
  background: var(--acc);
  border-color: var(--acc);
  color: #fff;
}

.cfg-summary {
  background: var(--bg-2);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  padding: 22px;
  margin-bottom: clamp(18px, 2.5vh, 24px);
}
.cfg-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--edge);
}
.cfg-sum-lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.cfg-sum-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.cfg-sum-opts {
  padding: 12px 0;
  border-bottom: 1px solid var(--edge);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cfg-sum-opt {
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
}
.cfg-sum-opt::before {
  content: '+ ';
  color: var(--acc);
  font-weight: 700;
}
.cfg-sum-empty {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}
.cfg-sum-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 16px;
}
.cfg-sum-total-lbl {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.cfg-sum-total-val {
  font-family: var(--f-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--acc);
  letter-spacing: -.03em;
}
.fs-bundles-panel {
  margin-top: clamp(36px, 5vh, 56px);
  padding-top: clamp(28px, 4vh, 40px);
  border-top: 1px solid var(--edge);
}
.fs-bundles-panel[hidden] {
  display: none;
}
.fs-bundles-head {
  margin-bottom: clamp(20px, 3vh, 28px);
}
.fs-bundles-panel .bundle-grid {
  margin-top: clamp(20px, 3vh, 28px);
}
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: clamp(28px, 4vh, 48px);
}
.bnd {
  background: var(--bg-2);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  text-align: center;
}
.bnd.feat {
  border-color: var(--acc);
}
.bnd-badge {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--acc);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 2px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}
.bnd-tier {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.bnd-amt {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.03em;
}
.bnd-bonus { font-size: 12px; font-weight: 700; color: var(--acc); }
.bnd-cred { font-size: 11px; color: var(--muted); margin-bottom: 4px; }
.bnd-cred span { color: var(--ink); font-weight: 600; }

.fs-slave-promo {
  position: relative;
  background: var(--bg);
  border-top: 1px solid var(--edge);
  padding: clamp(48px, 7vh, 80px) var(--pad);
  overflow: hidden;
  isolation: isolate;
}
.fs-slave-promo-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../images/AT-2.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.fs-slave-promo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--bg) 93%, transparent) 0%, color-mix(in srgb, var(--bg) 80%, transparent) 46%, color-mix(in srgb, var(--bg) 26%, transparent) 100%);
  pointer-events: none;
}
.fs-slave-promo-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.fs-slave-promo-copy > .eyebrow {
  display: block;
  margin-bottom: 8px;
}
.fs-slave-promo-copy > .sh {
  margin-bottom: clamp(16px, 2.4vh, 24px);
}
.fs-slave-promo-p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-dim);
}
.fs-slave-promo-list {
  margin: 0 0 clamp(22px, 3vh, 28px);
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fs-slave-promo-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}
.fs-slave-promo-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.fs-slave-promo-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acc);
}

@media (max-width: 780px) {
  .cfg-stage-grid { grid-template-columns: 1fr; }
  .cfg-opts-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .bundle-grid { grid-template-columns: 1fr; }
}

.fs-cfg {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  display: block;
}

.fs-cfg.is-ready {
  display: block;
}

.fs-cfg-main {
  min-width: 0;
}

.cfg-panel,
.cfg-summary {
  background: transparent;
  border: 0;
  border-radius: 0;
}

.cfg-panel-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.cfg-step-kicker {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--acc);
}

.cfg-block-title {
  margin: 0;
  font-family: var(--f-head);
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink);
}

.fs-calc[hidden] {
  display: none;
}

.fs-calc {
  animation: fsCalcIn .22s ease both;
}

.fs-calc-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.cfg-panel {
  padding: clamp(28px, 4vh, 44px) 0 0;
}

.cfg-options-panel[hidden] {
  display: none;
}

.fs-price-options[hidden] {
  display: none;
}

.cfg-stage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.cfg-stage {
  position: relative;
  min-height: 86px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "name"
    "note";
  align-items: center;
  row-gap: 6px;
  background: var(--bg-2);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .12s, background .12s;
}

.cfg-stage::before {
  content: '';
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 0;
  width: 2px;
  background: var(--fs-select-marker, var(--edge-h));
  opacity: 0;
  transform: scaleY(.35);
  transform-origin: center;
  transition: opacity .18s ease, transform .18s ease;
}

.cfg-stage:hover {
  --fs-select-marker: var(--edge-h);
  background: var(--bg-2);
  border-color: var(--edge);
}

.cfg-stage:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.cfg-stage.active {
  --fs-select-marker: var(--acc);
  border-color: var(--edge);
  background: var(--bg);
  box-shadow: none;
}

.cfg-stage.active::before {
  opacity: 1;
  transform: scaleY(1);
}

.cfg-stage-name {
  grid-area: name;
  font-size: 24px;
  transform-origin: left center;
  transition: color .2s ease, transform .2s ease;
}

.cfg-stage.active .cfg-stage-name {
  color: var(--acc);
}

.cfg-stage:hover .cfg-stage-name {
  transform: scale(1.02);
}

.cfg-stage-note {
  grid-area: note;
  min-height: 34px;
}

.cfg-opts-grid {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 0 18px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.cfg-opt {
  min-height: 42px;
  padding: 10px 0;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  transition: color .12s;
}

.cfg-opt:hover {
  background: transparent;
}

.cfg-opt.active {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.cfg-opt-check {
  width: 16px;
  height: 16px;
  border: 1px solid var(--edge-h);
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  transition: background .15s, border-color .15s, color .15s;
}

.cfg-opt-check::before {
  content: '';
  width: 8px;
  height: 4px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-1px) rotate(-45deg);
}

.cfg-opt.active .cfg-opt-check {
  background: var(--acc);
  border-color: var(--acc);
  color: #fff;
}

.cfg-opt > span:not(.cfg-opt-check) {
  text-transform: uppercase;
  transition: color .15s ease;
}

.cfg-opt.active > span:not(.cfg-opt-check) {
  color: var(--acc);
}

.cfg-opt:disabled {
  cursor: not-allowed;
  opacity: .42;
}

.cfg-summary {
  padding: 0;
  margin-bottom: 0;
}

.fs-price-bar { display: none; }

@media (max-width: 960px) {
  .fs-cfg.has-plan.summary-offscreen .fs-price-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    background: var(--bg-2);
    border-top: 1px solid var(--edge);
    box-shadow: 0 -10px 28px -14px rgba(0,0,0,0.65);
    padding: 11px var(--pad);
    padding-bottom: calc(11px + env(safe-area-inset-bottom));
  }
  body:has(.fs-cfg.has-plan.summary-offscreen) .woot-widget-bubble {
    bottom: calc(68px + env(safe-area-inset-bottom)) !important;
  }
  .fs-price-bar-inner {
    max-width: var(--w);
    margin: 0 auto;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
  }
  .fs-price-bar-label {
    font-family: var(--f-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .fs-price-bar-num {
    margin-left: auto;
    font-family: var(--f-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
  }
  .fs-price-bar-from {
    display: none;
    font-family: var(--f-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .fs-pricing-scope:has(.fs-cfg.is-from-price) .fs-price-bar-label {
    display: none;
  }
  .fs-pricing-scope:has(.fs-cfg.is-from-price) .fs-price-bar-from {
    display: inline-block;
  }
  .fs-pricing-sec:has(.fs-cfg.has-plan) {
    padding-bottom: 76px;
  }
}

.fs-price-card {
  position: sticky;
  top: calc(var(--page-pad-top) + 16px);
  min-width: 0;
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.fs-price-card::before {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--acc) 0%, rgba(0,144,255,0.3) 100%);
  flex-shrink: 0;
}

.fs-price-card-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 30px 22px;
  background: var(--bg);
  border-bottom: 1px solid var(--edge);
}

.fs-price-card-head .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fs-tool-toggle-eyebrow {
  display: block;
  margin: 0 0 -4px;
}
.fs-tool-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  padding: 4px;
  background: var(--bg-3);
  border: 1px solid var(--edge);
  border-radius: var(--r);
}
.fs-tool-toggle-btn {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 8px 18px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  border-radius: calc(var(--r) - 4px);
  transition: color .15s, background .15s;
}
.fs-tool-toggle-btn[aria-pressed="true"] {
  background: var(--acc);
  color: #fff;
}
.fs-tool-toggle-btn:not([aria-pressed="true"]):hover {
  color: var(--ink);
}

.fs-price-tool {
  display: block;
  font-family: var(--f-head);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink);
}

.fs-price-total {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.fs-price-from {
  display: none;
  margin-bottom: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--muted);
  flex-basis: 100%;
}
.fs-pricing-scope:has(.fs-cfg.is-from-price) .fs-price-from {
  display: block;
}
.fs-register-btn {
  pointer-events: none;
  opacity: 0.4;
  cursor: not-allowed;
  filter: grayscale(1);
}
.fs-pricing-scope:has(.fs-cfg.has-plan):not(:has(.fs-cfg.needs-options)) .fs-register-btn {
  pointer-events: auto;
  opacity: 1;
  cursor: pointer;
  filter: none;
}

.fs-price-total strong {
  display: block;
  font-family: var(--f-head);
  font-size: clamp(52px, 4.2vw, 64px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: 0;
  color: var(--ink);
}

.fs-price-vat {
  display: block;
  margin-bottom: 5px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--muted);
}

.fs-price-breakdown {
  padding: 20px 30px 18px;
  background: var(--bg);
  border-bottom: 1px solid var(--edge);
}

.fs-price-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fs-price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.45;
}

.fs-price-line + .fs-price-line {
  margin-top: 0;
}

.fs-price-line span {
  min-width: 0;
  flex: 1 1 auto;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 700;
}

.fs-price-line strong {
  flex-shrink: 0;
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 700;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.fs-price-line-remove {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  background: transparent;
  border: none;
  padding: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: color .14s ease;
}

.fs-price-line-remove:hover { color: var(--acc); }

.cfg-sum-row {
  gap: 14px;
  padding: 12px 0;
}

.cfg-sum-val {
  text-align: right;
}

.cfg-sum-opts {
  min-height: 54px;
  padding: 14px 0 0;
  border-bottom: 0;
}

.cfg-sum-opt {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.cfg-sum-opt::before {
  content: none;
}

.cfg-sum-opt-price {
  flex-shrink: 0;
  color: var(--acc);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
}

.cfg-sum-total {
  margin: 2px 0 18px;
}

.cfg-sum-total-val {
  font-size: 44px;
  letter-spacing: 0;
}

.fs-price-actions {
  padding: 20px 30px 30px;
  background: var(--bg);
}

.fs-price-actions .btn {
  height: 48px;
  font-size: 11px;
  letter-spacing: .14em;
}

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

@media (max-width: 1100px) {
  .fs-cfg.is-ready {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
  }
}

@media (max-width: 980px) {
  .fs-cfg.is-ready {
    grid-template-columns: 1fr;
  }

  .cfg-summary {
    position: static;
  }
}

@media (max-width: 760px) {
  .fs-cfg {
    margin-top: 0;
  }

  .cfg-panel {
    padding-top: 18px;
  }

  .fs-price-card-head,
  .fs-price-breakdown,
  .fs-price-options,
  .fs-price-actions {
    padding-left: 22px;
    padding-right: 22px;
  }

  .cfg-stage-grid {
    grid-template-columns: 1fr;
  }

  .cfg-stage {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "name"
      "note";
    align-items: start;
  }

  .cfg-opts-grid {
    grid-template-columns: 1fr;
  }

  .cfg-sum-total-val {
    font-size: 36px;
  }
}


.sf {
  position: relative;
  min-height: calc(100dvh - var(--admin-bar));
  background: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sf-bg {
  position: absolute;
  inset: 0;
  background: #000 url('../images/slave-kit-hero.webp') center center / auto 100% no-repeat;
  z-index: 0;
}
.sf-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, color-mix(in srgb, var(--bg) 90%, transparent) 0%, color-mix(in srgb, var(--bg) 74%, transparent) 42%, color-mix(in srgb, var(--bg) 30%, transparent) 100%);
  pointer-events: none;
}
.sf-inner {
  position: relative;
  z-index: 1;
  max-width: calc(var(--w) + var(--pad) * 2);
  margin: 0 auto;
  width: 100%;
  padding: var(--page-pad-top) var(--pad) clamp(48px, 7vh, 80px);
}
.sf-l {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 620px;
}
.sf-title {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 9px;
}
.sf-desc {
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 600;
  line-height: 1.55;
  max-width: 520px;
  margin: 0 0 20px;
  color: rgba(239, 239, 239, 0.72);
}
.sf-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.sf-price small {
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}
.sf-ship {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 22px;
}
.sf-ship-ico {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.sf-btns { display: flex; gap: 9px; flex-wrap: wrap; justify-content: space-between; }

#page-shop .shop-scope { max-width: calc(var(--w) + var(--pad) * 2); margin: 0 auto; padding: clamp(24px, 4vh, 40px) var(--pad) 80px; }
#page-shop .shop-tb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 8px;
}
.shop-cnt { font-size: 12px; color: var(--muted); }
.shop-cnt strong { color: var(--ink); }
#page-shop .shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pc {
  background: var(--bg-2);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .15s, transform .18s;
}
.pc:hover { border-color: var(--edge-h); transform: translateY(-2px); }
.pc-img {
  aspect-ratio: 16 / 9;
  background: var(--bg-3);
  border-bottom: 1px solid var(--edge);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  color: var(--muted);
  position: relative;
  overflow: hidden;
}
.pc-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.pc-img svg { width: 32px; height: 32px; opacity: .18; }
.pc-img span { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; opacity: .25; }
.pc-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.pc-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}
.pc-name:hover { color: var(--acc); }
.pc-meta { font-size: 11px; color: var(--muted); line-height: 1.5; flex: 1; }
.pc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 11px;
  padding-top: 11px;
  border-top: 1px solid var(--edge);
}
.pc-price { font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.pc-price del { color: var(--muted); font-weight: 400; font-size: 12px; margin-right: 5px; }
.pc-price ins { text-decoration: none; }
.pc-oos { font-size: 10px; color: var(--muted); font-weight: 600; }

.add-btn {
  height: 28px;
  padding: 0 11px;
  background: var(--acc);
  border: none;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  font-family: var(--f);
  transition: background .15s;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}
.add-btn:hover { background: var(--acc-h); color: #fff; }

@media (max-width: 1024px) {
  #page-shop .shop-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  #page-shop .shop-grid { grid-template-columns: 1fr; }
  .sf-bg::after {
    background: linear-gradient(180deg, color-mix(in srgb, var(--bg) 84%, transparent) 0%, color-mix(in srgb, var(--bg) 76%, transparent) 55%, color-mix(in srgb, var(--bg) 88%, transparent) 100%);
  }
  .sf-l { align-items: center; text-align: center; max-width: 100%; }
  .sf-desc { margin-inline: auto; }
  .sf-price,
  .sf-ship { justify-content: center; }
  .sf-btns { flex-direction: column; align-items: stretch; }
  .sf-btns .btn { width: 100%; justify-content: center; }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 200;
  height: var(--hh);
  background: rgba(7,7,7,.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--edge);
}

.header-inner {
  max-width: 1600px;
  gap: clamp(20px, 3vw, 44px);
}

@media (max-width: 1024px) {
  .header-inner { gap: 0; }
}

@media (max-width: 400px) {
  header .logo svg { height: 20px; width: auto; }
}

nav {
  gap: 0;
}

.lang-dropdown,
.mobile-drawer__panel,
.cart-drawer {
  border-radius: 0;
}

.lang-btn,
.cart-btn,
.hamburger,
.mobile-drawer__close {
  border-radius: var(--r);
  background: transparent;
  border-color: transparent;
  color: var(--ink-dim);
  transition: color .15s ease, transform .15s ease, background .15s ease, border-color .15s ease;
}

.lang-btn,
.cart-btn {
  height: 40px;
}

.lang-btn:hover,
.cart-btn:hover {
  background: transparent;
  border-color: transparent;
  color: var(--acc);
  transform: scale(1.06);
}

.hamburger:hover,
.mobile-drawer__close:hover {
  background: rgba(255,255,255,0.03);
  border-color: var(--edge);
  color: var(--ink);
}

.cart-btn {
  width: 40px;
}

.hamburger {
  width: 44px;
  height: 44px;
}

.hf5 .sw select {
  height: 44px;
  border-radius: var(--r);
  background: rgba(3,3,3,.82);
  border-color: var(--edge-strong);
  box-shadow: 0 0 0 1px rgba(255,255,255,.1), inset 0 1px 0 rgba(255,255,255,.18), inset 0 0 0 1px rgba(255,255,255,.08);
  font-size: 13px;
  transition: border-color .15s, background .15s, color .15s;
}

.hf5 .sw-c {
  right: 14px;
}

.hf5 .sw:not(.is-disabled) select:hover {
  border-color: rgba(0,144,255,.72);
  box-shadow: inset 0 0 0 1px rgba(0,144,255,.5), 0 0 0 1px rgba(0,144,255,.12);
}

.hf5 .sw.is-empty select,
.hf5 .sw select:required:invalid {
  color: rgba(216,222,232,.84);
}

.hf5 .sw.is-disabled select,
.hf5 .sw select:disabled {
  background: rgba(8,8,8,.6);
  border-color: var(--edge-h);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  color: rgba(196,204,216,.62);
}

.hf5 .sw.is-disabled .sw-c {
  opacity: .35;
}

@media (prefers-reduced-motion: reduce) {
  .hero5-bg,
  .fs-hero-bg {
    animation: none !important;
    transform: none;
  }

  .hero5-marks::before,
  .hero5-marks::after,
  .hero5-marks span,
  .hero5-word,
  .hero5-sub,
  .hero5-form,
  .hf5-head,
  .hf5-sels .sw,
  .hf5-btn {
    animation: none !important;
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .hf5::before,
  .hf5::after {
    display: none;
  }

  .hf5-btn,
  .hf5-btn svg {
    transition: none;
  }

  .hf5-btn[disabled] {
    opacity: 1;
  }
}

.hr-inner {
  background: var(--bg);
}

.dp-title,
.dp-name,
.svc-name,
.step-title,
.sf-title,
.pc-name,
.bnd-amt,
.kit-name,
.kit-price {
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-svc {
  background: var(--bg-2);
}

.svc-head,
.how-head,
.dealers-head {
  text-align: left;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.svc-grid {
  max-width: 1440px;
  margin: 0 auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--svc-edge);
}

.svc-card {
  min-height: 156px;
  padding: 24px 24px;
  border: 0;
  background: var(--bg-2);
  position: relative;
  isolation: isolate;
}

.svc-icon {
  width: 50px;
  height: 50px;
  color: var(--acc);
  opacity: 1;
}

.svc-name {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 500;
  margin-top: 0;
}

.svc-desc {
  font-size: 12.5px;
  color: var(--ink-dim);
  margin-top: 0;
  max-width: 30ch;
  transform-origin: top left;
}

@media (hover: hover) and (pointer: fine) {
  .svc-card:hover .svc-icon,
  .svc-card:focus-visible .svc-icon {
    transform: scale(1.08);
  }
}

.how-wrap {
  max-width: 1440px;
}

.how-head {
  max-width: 760px;
  margin-left: 0;
  margin-right: 0;
}

.how-step-body {
  background: transparent;
}

.dealers-wrap {
  height: clamp(540px, 72vh, 820px);
  border-bottom: 1px solid var(--edge);
}

.dp {
  background: var(--bg-2);
  min-height: 0;
}

.dp-list {
  min-height: 0;
}

@media (max-width: 960px) {
  .dealers-wrap {
    height: auto;
    min-height: 0;
  }

  .map-area {
    order: 1;
  }

  .dp {
    order: 2;
    height: auto;
    max-height: none;
  }

  .dp-list {
    flex: none;
    max-height: 62vh;
    overflow-y: auto;
  }
}


.form-input,
.form-select,
.form-textarea {
  border-radius: var(--r);
  background: var(--bg-3);
}


.ct-strip-hero {
  min-height: 0;
  align-items: center;
  text-align: center;
  padding: clamp(42px, 6vh, 72px) var(--pad) clamp(44px, 6vh, 68px);
  background: var(--bg);
}

.ct-strip-hero .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.ct-strip-hero .sh {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(30px, 4.2vw, 58px);
}

.ct-strip-hero .sdesc {
  margin: 10px auto 0;
  max-width: 560px;
  color: var(--ink-dim);
}


.sf-title {
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: .9;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 12px;
}
.sf-title-word {
  display: block;
}
.sf-title .hl {
  color: var(--acc);
}


.sf-price,
.pc-price,
.product-sidebar__price-val {
  font-family: var(--f-head);
}

.pc-img,
.product-gallery__main {
  background: var(--bg-3);
  border-radius: 0;
}

.pc {
  border-radius: var(--r);
}

.pc:hover {
  transform: none;
  background: var(--bg-3);
}

.pc-name {
  font-size: 18px;
  line-height: 1.1;
}

.pc-meta {
  font-size: 12px;
}

.add-btn {
  height: 36px;
  padding: 0 18px;
  border-radius: var(--r);
  font-family: var(--f);
  font-size: 13px;
  letter-spacing: .02em;
  text-transform: none;
  gap: 7px;
}

.add-btn svg { flex-shrink: 0; }

.badge {
  border-radius: var(--r);
  font-family: var(--f-mono);
  letter-spacing: .12em;
}

.form-label {
  font-size: 10px;
  font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
  min-height: 44px;
}

@media (max-width: 1200px) {
  .hero5-content {
    grid-template-columns: 1fr;
  }

  .hero5-bg {
    background-position: center left;
  }

  .fs-hero-bg {
    background-position: center center;
  }

  .hero5-left {
    width: 100%;
    max-width: 520px;
  }

  .hero5-h1 {
    font-size: 80px;
  }

  .hero5-form {
    max-width: 520px;
    justify-self: start;
    width: 100%;
  }

  .svc-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .hero5-content {
    gap: 42px;
  }
}

@media (max-width: 780px) {
  .hero5-marks {
    inset: 16px;
  }

  .svc-head,
  .how-head,
  .dealers-head {
    text-align: center;
  }

  .how-head {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .svc-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .svc-card {
    min-height: 156px;
  }

  .how-timeline {
    margin-left: auto;
    margin-right: auto;
  }

  .chiptuning-page .ct-breadcrumb,
  .page-engine .ct-breadcrumb {
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 2px;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .chiptuning-page .ct-breadcrumb .ct-b-crumbTxt,
  .page-engine .ct-breadcrumb .ct-b-crumbTxt {
    letter-spacing: 0.03em;
  }

  .chiptuning-page .ct-breadcrumb::-webkit-scrollbar,
  .page-engine .ct-breadcrumb::-webkit-scrollbar {
    display: none;
    height: 0;
  }
}

@media (max-width: 520px) {
  .hero5-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero5-h1,
  #page-fileservice .fs-hero .sh {
    font-size: clamp(52px, 14vw, 72px);
  }

  .ct-strip-hero .sh {
    font-size: clamp(28px, 9vw, 42px);
  }

  .eng-hero-inner {
    gap: 14px;
  }

  .brand-badge {
    width: clamp(62px, 18vw, 82px);
    height: clamp(62px, 18vw, 82px);
  }

  .eng-hero-text h1 {
    font-size: clamp(28px, 8.5vw, 42px);
  }

  .eng-hero-sub {
    flex-wrap: nowrap;
    white-space: nowrap;
    row-gap: 0;
    font-size: clamp(5.5px, min(2.35vw, 2.05vmin), 11px);
    letter-spacing: 0.02em;
    line-height: 1.22;
    max-width: 100%;
  }

  .eng-hero-k {
    flex-shrink: 0;
    overflow-wrap: normal;
  }

  .hf5-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .svc-grid,
  #page-become-dealer .svc-grid {
    grid-template-columns: 1fr;
  }

  .svc-card {
    min-height: auto;
    padding: 22px 20px;
  }

  .svc-desc {
    max-width: none;
  }
}

.eng-offer-card {
  position: sticky;
  top: calc(var(--page-pad-top) + 16px);
  min-width: 0;
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.eng-offer-card::before {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--acc) 0%, rgba(0,144,255,0.3) 100%);
  flex-shrink: 0;
}
.eng-offer-card:has(.eng-offer-media)::before {
  display: none;
}

.eng-offer-media {
  position: relative;
  aspect-ratio: 1.34 / 1;
  overflow: hidden;
  background: var(--bg-2);
}
.eng-offer-media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eng-offer-media--placeholder,
.eng-offer-media--blank {
  display: flex;
  align-items: center;
  justify-content: center;
}
.eng-offer-media--placeholder::after,
.eng-offer-media--blank::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 20%, var(--bg-0) 100%);
  pointer-events: none;
}
.eng-offer-media--placeholder > img.eng-offer-brand-logo {
  width: auto;
  height: auto;
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
  opacity: .85;
  position: relative;
  z-index: 1;
}

.eng-media-zoom {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r);
  background: rgba(0,0,0,0.34);
  color: #fff;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  transition: background .2s ease;
}
.eng-media-zoom:hover { background: rgba(0,0,0,0.6); }
.eng-media-zoom svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}


.eng-offer-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 28px 30px 22px;
  border-bottom: 1px solid var(--edge);
}
.eng-offer-price .eyebrow {
  display: block;
  margin: 0;
}
.eng-offer-price strong {
  display: block;
  font-family: var(--f-head);
  font-size: clamp(52px, 4.2vw, 64px);
  font-weight: 700;
  line-height: .9;
  color: var(--ink);
}
.eng-offer-price strong.is-no-price {
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.05;
}

.eng-included {
  list-style: none;
  margin: 0;
  padding: 20px 30px 18px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-bottom: 1px solid var(--edge);
}
.eng-included li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.45;
}
.eng-included-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--acc);
  stroke: var(--acc);
  stroke-width: 1.8;
}

.eng-dealers {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  border-bottom: 1px solid var(--edge);
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}
.eng-dealers strong {
  color: var(--ink);
  font-weight: 800;
}
.eng-dealers-dot {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--acc);
  box-shadow: 0 0 0 0 rgba(0,144,255,0.5);
  animation: eng-dealer-pulse 2s ease-in-out infinite;
}
@keyframes eng-dealer-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,144,255,0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(0,144,255,0); }
}
@media (prefers-reduced-motion: reduce) {
  .eng-dealers-dot { animation: none; }
}

.eng-actions {
  padding: 20px 30px 14px;
}
.eng-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  font-size: 11px;
  letter-spacing: .14em;
}
.eng-actions .btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn-full { width: 100%; }

.eng-offer-note {
  padding: 0 30px 24px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}
.eng-offer-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.eng-offer-note a:hover { color: var(--ink); }

@media (max-width: 640px) {
  .eng-offer-price,
  .eng-included,
  .eng-dealers,
  .eng-actions,
  .eng-offer-note { padding-left: 22px; padding-right: 22px; }
}


.section-fs-about {
  background: var(--bg);
  border-top: 1px solid var(--edge);
  padding: clamp(48px, 7vh, 80px) var(--pad);
}
.fs-about-inner {
  max-width: 1440px;
  margin: 0 auto;
}
.fs-about-head > .eyebrow {
  display: block;
  margin-bottom: 8px;
}
.fs-about-head > .sh {
  margin-bottom: clamp(28px, 4vh, 44px);
}
.fs-about-article {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vh, 56px);
}
.fs-about-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 3.5vw, 48px);
  align-items: start;
}
.fs-about-row--reverse .fs-about-figure {
  order: 2;
}
.fs-about-row--reverse .fs-about-copy {
  order: 1;
}
.fs-about-figure {
  margin: 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg-3);
}
.fs-about-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fs-about-figure--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-3);
}
.fs-about-figure-label {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 20px;
}
.fs-about-copy p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-dim);
}
.fs-about-copy p:last-child {
  margin-bottom: 0;
}
.fs-about-trust {
  list-style: none;
  margin: clamp(20px, 3vh, 32px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}
.fs-about-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  min-width: 0;
}
.fs-about-trust-icon {
  display: inline-flex;
  color: var(--acc);
  line-height: 0;
}
.fs-about-trust-icon svg {
  width: clamp(48px, 5vw, 64px);
  height: clamp(48px, 5vw, 64px);
  display: block;
}
.fs-about-trust-item:nth-child(1) .fs-about-trust-icon,
.fs-about-trust-item:nth-child(3) .fs-about-trust-icon {
  transform: translateX(-4px);
}
.fs-about-trust-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.fs-about-trust-value {
  font-family: var(--f-head);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.fs-about-trust-label {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}
@media (max-width: 520px) {
  .fs-about-trust { gap: 10px; }
}
@media (max-width: 780px) {
  .fs-about-row,
  .fs-about-row--reverse {
    grid-template-columns: 1fr;
  }
  .fs-about-row--reverse .fs-about-figure,
  .fs-about-row--reverse .fs-about-copy {
    order: unset;
  }
  .fs-slave-promo-inner {
    grid-template-columns: 1fr;
  }
  .fs-slave-promo-bg {
    background-image:
      linear-gradient(rgba(11, 11, 11, 0.8), rgba(11, 11, 11, 0.8)),
      url("../images/AT-2.webp");
    background-position: 88% center;
  }
  .fs-slave-promo-bg::after {
    background: none;
  }
}


.bd-hero {
  position: relative;
  min-height: calc(100dvh - var(--admin-bar));
  background: var(--bg);
  padding: var(--page-pad-top) var(--pad) clamp(48px, 7vh, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.bd-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/bcmdealer_hero.webp') center center / cover no-repeat;
  z-index: 0;
}
.bd-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
  pointer-events: none;
}
.bd-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--w);
  margin: 0 auto;
  width: 100%;
}
.bd-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.bd-hero-copy .eyebrow {
  margin-bottom: clamp(18px, 2.6vh, 30px);
}
.bd-hero-h1 {
  font-size: clamp(52px, 7.5vw, 118px);
  line-height: 0.95;
  margin: 0 0 clamp(16px, 2.4vh, 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.bd-hero-word {
  display: block;
}
.bd-hero-h1 .hl {
  color: var(--acc);
}
.bd-hero-copy .sdesc {
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
  margin: 0 0 14px;
  max-width: 560px;
  color: rgba(239, 239, 239, 0.72);
}
.bd-hero-copy .sdesc:last-of-type {
  margin-bottom: clamp(28px, 4vh, 44px);
}
.bd-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.bd-bens {
  background: var(--bg-2);
  border-top: 1px solid var(--edge);
  padding: clamp(48px, 7vh, 80px) var(--pad);
}
.bd-bens-inner {
  max-width: var(--w);
  margin: 0 auto;
}
#page-become-dealer .svc-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 640px) {
  #page-become-dealer .svc-grid {
    grid-template-columns: 1fr;
  }
}
#page-become-dealer .fs-slave-promo-list li {
  padding-left: 24px;
}
#page-become-dealer .fs-slave-promo-list li::before {
  top: 0.3em;
  width: 14px;
  height: 14px;
  border-radius: 0;
  background: var(--acc);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
}

.bd-network {
  background: var(--bg-2);
  border-top: 1px solid var(--edge);
  padding: clamp(48px, 7vh, 80px) var(--pad);
}
.bd-network-inner {
  max-width: var(--w);
  margin: 0 auto;
}
.bd-network-head {
  margin: 0 0 clamp(32px, 4vh, 48px);
}
.bd-network-head .eyebrow {
  display: block;
  margin-bottom: 12px;
}
.bd-network-map .section-dealers {
  padding: 0;
  border-top: 0;
  background: transparent;
}
.bd-network-map .dealers-head {
  display: none;
}

@media (max-width: 1100px) {
  #page-become-dealer .how-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .bd-hero {
    padding-bottom: clamp(40px, 6vh, 64px);
  }
}

@media (max-width: 600px) {
  .bd-hero-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .bd-hero-btns .btn {
    text-align: center;
  }
}

header > .header-inner > nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1024px) {
  header > .header-inner > nav {
    display: none;
  }
}

header .primary-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
  align-items: center;
}

header .primary-nav .menu-item {
  list-style: none;
  position: relative;
}

header .primary-nav .menu-item > a {
  display: inline-block;
  font-family: var(--f);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  text-decoration: none;
  padding: 8px 14px;
  white-space: nowrap;
  position: relative;
  transform-origin: center;
  transition: color .15s ease, transform .15s ease;
}

@media (max-width: 1200px) {
  header .primary-nav .menu-item > a { padding: 8px 7px; }
}

header .primary-nav .menu-item > a:hover,
header .primary-nav .menu-item.current-menu-item > a,
header .primary-nav .menu-item.current-menu-ancestor > a,
header .primary-nav .menu-item-has-children:hover > a {
  color: var(--acc);
  transform: scale(1.06);
}

header .primary-nav .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: var(--bg-2);
  border: 1px solid var(--edge);
  border-radius: 0;
  padding: 6px 0;
  margin: 0;
  list-style: none;
  z-index: 300;
}

header .primary-nav .menu-item-has-children:hover > .sub-menu,
header .primary-nav .menu-item-has-children:focus-within > .sub-menu {
  display: block;
}

header .primary-nav .sub-menu .menu-item {
  display: block;
  position: static;
}

header .primary-nav .sub-menu .menu-item > a {
  display: block;
  padding: 9px 16px;
  font-size: 11px;
  letter-spacing: .1em;
}

header .primary-nav .sub-menu .menu-item > a::after {
  display: none;
}

.mobile-drawer__menu {
  list-style: none;
  margin: 0;
  padding: 12px 12px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-drawer__menu .menu-item {
  list-style: none;
}

.mobile-drawer__menu .menu-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink-dim);
  text-decoration: none;
  border-radius: var(--r);
  transition: background .15s, color .15s;
}

.mobile-drawer__menu .menu-item > a:hover {
  background: var(--bg-3);
  color: var(--ink);
}

.mobile-drawer__menu .menu-item.current-menu-item > a,
.mobile-drawer__menu .menu-item.current-menu-ancestor > a {
  color: var(--acc);
}

.mobile-drawer__menu .menu-item-has-children > a::after {
  content: '';
  width: 9px;
  height: 6px;
  margin-left: 10px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='9' height='6' viewBox='0 0 9 6'><path d='M.5.5L4.5 5L8.5.5' stroke='black' stroke-width='1.2' fill='none' stroke-linecap='round'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='9' height='6' viewBox='0 0 9 6'><path d='M.5.5L4.5 5L8.5.5' stroke='black' stroke-width='1.2' fill='none' stroke-linecap='round'/></svg>") no-repeat center / contain;
  transition: transform .2s;
}

.mobile-drawer__menu .menu-item-has-children.is-open > a::after {
  transform: rotate(180deg);
}

.mobile-drawer__menu .sub-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 0 4px 12px;
}

.mobile-drawer__menu .menu-item-has-children.is-open > .sub-menu {
  display: block;
}

.mobile-drawer__menu .sub-menu .menu-item > a {
  padding: 10px 12px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

:is(.page-at,.page-product-standard) {
  background: var(--bg);
}

:is(.page-at,.page-product-standard) .product-detail {
  padding-bottom: clamp(28px, 4vh, 44px);
}

:is(.page-at,.page-product-standard) .product-detail__inner {
  grid-template-columns: 1fr 420px;
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}

:is(.page-at,.page-product-standard) .product-detail__inner > div {
  display: flex;
  flex-direction: column;
}

:is(.page-at,.page-product-standard) .product-gallery {
  --at-gallery-main-h: clamp(300px, 44vh, 430px);
  --at-thumb-gap: 10px;
  --at-thumb-count: 5;
  --at-thumb-strip: 88px;
  flex: 1;
  flex-direction: row;
  gap: var(--at-thumb-gap);
  align-items: stretch;
  min-height: clamp(460px, 56vh, 600px);
}

:is(.page-at,.page-product-standard) .product-gallery__main {
  flex: 1;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: none;
  border: none;
  border-radius: var(--r);
}

:is(.page-at,.page-product-standard) .product-gallery__thumbs-wrap {
  order: -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: var(--at-thumb-strip);
  height: auto;
  flex-shrink: 0;
}

:is(.page-at,.page-product-standard) .product-gallery__thumbs {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: 1fr;
  grid-auto-rows: 64px;
  flex: 1;
  width: 100%;
  min-width: 0;
  gap: var(--at-thumb-gap);
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

:is(.page-at,.page-product-standard) .product-gallery__thumbs::-webkit-scrollbar {
  display: none;
}

:is(.page-at,.page-product-standard) .product-gallery__nav {
  position: static;
  transform: none;
  display: inline-flex;
}

:is(.page-at,.page-product-standard) .product-gallery__nav svg {
  transform: rotate(90deg);
}

:is(.page-at,.page-product-standard) .product-gallery__thumb {
  width: 100%;
  height: 64px;
  border-radius: var(--r);
}

:is(.page-at,.page-product-standard) .product-detail__inner { align-items: stretch; }

:is(.page-at,.page-product-standard) .product-detail__inner > div:first-child { display: flex; }

:is(.page-at,.page-product-standard) .product-gallery { flex: 1; }

:is(.page-at,.page-product-standard) .product-gallery__main {
  position: relative;
  flex: 1;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
}

:is(.page-at,.page-product-standard) .product-gallery__main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

:is(.page-at,.page-product-standard) .product-sidebar {
  position: sticky;
  top: calc(var(--page-pad-top) + 16px);
  align-self: start;
  background: var(--bg);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  padding: 26px 28px clamp(36px, 5vh, 56px);
  gap: 18px;
  overflow: hidden;
}

:is(.page-at,.page-product-standard) .product-sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--acc) 0%, rgba(0,144,255,0.3) 100%);
}

:is(.page-at,.page-product-standard) .product-sidebar .at-usp-strip,
:is(.page-at,.page-product-standard) .product-sidebar .at-compat-note { margin-top: 0; }

:is(.page-at,.page-product-standard) .product-sidebar__name {
  font-family: var(--f-head);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

:is(.page-at,.page-product-standard) .product-sidebar__price {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding-top: 4px;
}

:is(.page-at,.page-product-standard) .product-sidebar__price-val {
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: var(--ink);
}

:is(.page-at,.page-product-standard) .single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  padding: 0 20px;
  background: var(--acc);
  color: #fff;
  border: 1px solid var(--acc);
  border-radius: var(--r);
  font-family: var(--f);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: background .15s, border-color .15s;
}

:is(.page-at,.page-product-standard) .single_add_to_cart_button:hover {
  background: var(--acc-h);
  border-color: var(--acc-h);
}

:is(.page-at,.page-product-standard) .single_add_to_cart_button:disabled,
:is(.page-at,.page-product-standard) .single_add_to_cart_button.disabled {
  opacity: .4;
  cursor: not-allowed;
}

:is(.page-at,.page-product-standard) .single_add_to_cart_button.loading,
.single_add_to_cart_button.loading {
  color: transparent;
  pointer-events: none;
  position: relative;
}

:is(.page-at,.page-product-standard) .single_add_to_cart_button.loading::after,
.single_add_to_cart_button.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: eng-preloader-spin .9s linear infinite;
}

:is(.page-at,.page-product-standard) .single_add_to_cart_button.is-added,
.single_add_to_cart_button.is-added {
  gap: 8px;
}

.single_add_to_cart_button.is-added svg { flex-shrink: 0; }

:is(.page-at,.page-product-standard) table.variations {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

:is(.page-at,.page-product-standard) table.variations th,
:is(.page-at,.page-product-standard) table.variations td {
  display: block;
  padding: 0;
  text-align: left;
}

:is(.page-at,.page-product-standard) table.variations th.label {
  display: block;
  width: fit-content;
  max-width: 100%;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 15px;
}

:is(.page-at,.page-product-standard) table.variations tr + tr th.label {
  margin-top: 14px;
}

:is(.page-at,.page-product-standard) table.variations th.label:has(.at-var-help) {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
}

:is(.page-at,.page-product-standard) table.variations th.label label {
  display: inline;
  line-height: 1.3;
  margin: 0;
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

:is(.page-at,.page-product-standard) table.variations td.value {
  margin: 0;
}

:is(.page-at,.page-product-standard) .variations_form.cart {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
}

:is(.page-at,.page-product-standard) .single_variation_wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3.5vh, 34px);
  margin-top: 24px;
}

:is(.page-at,.page-product-standard) .variations select { display: none; }

:is(.page-at,.page-product-standard) .at-var-btns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 8px;
  width: 100%;
}

:is(.page-at,.page-product-standard) .at-var-btn {
  width: auto;
  min-width: 0;
  text-align: center;
}

:is(.page-product-standard, .page-at--kit) .at-var-btns {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: none;
  width: auto;
}

:is(.page-product-standard, .page-at--kit) .at-var-btn {
  min-width: 96px;
  flex: 0 1 auto;
}

.at-var-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.at-var-btn {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  min-width: 96px;
  padding: 11px 18px;
  background: var(--bg-3);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  color: var(--ink-dim);
  font-family: var(--f);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: border-color .15s, color .15s, background .15s;
}

.at-var-btn:hover { border-color: var(--edge-h); color: var(--ink); }

.at-var-btn.is-active {
  border-color: var(--acc);
  color: var(--ink);
}

.at-var-help {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--f);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  transition: color .15s;
}

.at-var-help svg { flex-shrink: 0; }
.at-var-help:hover { color: var(--acc); }

.at-var-note {
  margin: 20px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}

:is(.page-at,.page-product-standard) .woocommerce-variation-price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
}

:is(.page-at,.page-product-standard) .woocommerce-variation-price .woocommerce-Price-amount {
  font-family: var(--f-head);
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: 0;
  color: var(--ink);
}

:is(.page-at,.page-product-standard) .woocommerce-variation-price .at-vat-note {
  margin-bottom: 5px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 1024px) {
  :is(.page-at,.page-product-standard),
  :is(.page-at,.page-product-standard) .product-detail,
  :is(.page-at,.page-product-standard) .product-detail__inner,
  :is(.page-at,.page-product-standard) .product-detail__inner > div {
    max-width: 100%;
    min-width: 0;
  }
  :is(.page-at,.page-product-standard) .product-detail {
    overflow-x: hidden;
  }
  :is(.page-at,.page-product-standard) .product-detail__inner { grid-template-columns: 1fr; }
  :is(.page-at,.page-product-standard) .product-sidebar { position: static; }
  :is(.page-at,.page-product-standard) .product-gallery {
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
  }
  :is(.page-at,.page-product-standard) .product-gallery__thumbs-wrap {
    order: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    width: 100%;
    height: auto;
  }
  :is(.page-at,.page-product-standard) .product-gallery__nav svg {
    transform: none;
  }
  :is(.page-at,.page-product-standard) .product-gallery__thumbs {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 84px;
    grid-auto-rows: auto;
    flex: 1;
    max-width: 100%;
    min-width: 0;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    height: auto;
    min-height: 0;
  }
  :is(.page-at,.page-product-standard) .product-gallery__nav {
    position: static;
    transform: none;
    display: inline-flex;
  }
  :is(.page-at,.page-product-standard) .product-gallery__nav--prev svg,
  :is(.page-at,.page-product-standard) .product-gallery__nav--next svg {
    transform: none;
  }
  :is(.page-at,.page-product-standard) .product-gallery__thumb {
    width: 100%;
    height: 48px;
  }
  :is(.page-at,.page-product-standard) .product-gallery__main {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    max-height: none;
    min-height: 340px;
  }
}

.at-vendor {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 10px;
}

.at-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.at-tag {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  background: var(--bg-2);
  border: 1px solid var(--edge);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
}

.at-price-note {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.at-price-select {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

.at-usp-strip {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding: 18px;
  background: var(--bg-2);
  border: 1px solid var(--edge);
  border-radius: var(--r);
}

.at-usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-dim);
}

.at-usp-item svg { flex-shrink: 0; color: var(--acc); }

.at-compat-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 14px;
  background: var(--acc-dim);
  border: 1px solid rgba(0,144,255,.2);
  border-radius: var(--r);
  font-size: 12px;
  color: var(--ink-dim);
  line-height: 1.5;
}

.at-compat-note svg { flex-shrink: 0; margin-top: 1px; color: var(--acc); }


.at-section {
  padding: clamp(48px, 7vh, 80px) var(--pad);
  border-top: 1px solid var(--edge);
}

.at-section-inner {
  max-width: var(--w);
  margin: 0 auto;
}

.at-eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 12px;
}

.at-sh {
  font-family: var(--f-head);
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 16px;
}

.at-sdesc {
  font-size: 15px;
  color: var(--ink-dim);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.at-methods { background: var(--bg-2); }

.at-methods-grid {
  --svc-edge: color-mix(in srgb, var(--edge) 52%, transparent);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 36px;
  border-top: 1px solid var(--svc-edge);
  border-left: 1px solid var(--svc-edge);
}

.at-methods-grid .svc-card {
  border-right: 1px solid var(--svc-edge);
  border-bottom: 1px solid var(--svc-edge);
}

.at-methods-grid .svc-icon,
.at-methods-grid .svc-icon path {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 1200px) {
  .at-methods-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.at-methods-grid.at-methods--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) {
  .at-methods-grid.at-methods--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .at-methods-grid.at-methods--4 { grid-template-columns: 1fr; }
}

.at-description { background: var(--bg-2); }

.at-description-body {
  max-width: 760px;
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-dim);
}

.at-description-body > :first-child { margin-top: 0; }
.at-description-body > :last-child { margin-bottom: 0; }

.at-description-body p { margin: 0 0 18px; }

.at-description-body h3,
.at-description-body h4 {
  font-family: var(--f-head);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  margin: 32px 0 12px;
}

.at-description-body h3 { font-size: 22px; }
.at-description-body h4 { font-size: 17px; }

.at-description-body ul,
.at-description-body ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.at-description-body li { margin-bottom: 8px; }

.at-description-body a {
  color: var(--acc);
  text-decoration: underline;
}

.at-description-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.at-description-body strong { color: var(--ink); }


.at-compat { background: var(--bg-3); }

.at-compat-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 4vh, 40px);
}

.at-compat-head {
  text-align: center;
  max-width: 640px;
}

.at-compat-head .at-sdesc { margin: 0 auto; }

.at-compat-stat { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }

.at-stat-num {
  font-family: var(--f-head);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.at-stat-plus { color: var(--acc); }

.at-stat-label {
  font-size: 13px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.at-compat-vehicles {
  width: 100%;
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: clamp(16px, 2vw, 28px);
}

.at-vehicle-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.at-vehicle-type svg {
  width: clamp(40px, 3.4vw, 52px);
  height: clamp(40px, 3.4vw, 52px);
  color: var(--ink-dim);
  transition: color .2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .at-vehicle-type:hover svg,
  .at-vehicle-type:focus-visible svg {
    color: var(--ink);
  }
}

.at-compat-btn { align-self: center; margin-top: clamp(10px, 2vh, 24px); }

@media (max-width: 1024px) {
  .at-compat-vehicles { grid-template-columns: repeat(4, 1fr); }
}

.at-compat-dots { display: none; }

@media (max-width: 640px) {
  .at-compat-vehicles {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .at-compat-vehicles::-webkit-scrollbar { display: none; }

  .at-compat-vehicles .at-vehicle-type {
    flex: 0 0 100%;
    scroll-snap-align: center;
  }

  .at-vehicle-type svg { width: 56px; height: 56px; }

  .at-compat-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
  }

  .at-compat-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--edge-h);
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
  }

  .at-compat-dot.is-active {
    background: var(--acc);
    transform: scale(1.35);
  }
}


.at-box-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.at-box-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.at-box-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-dim);
}

.at-box-item svg { flex-shrink: 0; color: var(--acc); }

.at-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.at-specs-table th,
.at-specs-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--edge);
  vertical-align: top;
}

.at-specs-table th {
  width: 40%;
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: var(--bg-2);
}

.at-specs-table td { color: var(--ink-dim); }

.at-specs-table tr:last-child th,
.at-specs-table tr:last-child td { border-bottom: none; }


.at-usps { background: var(--bg-2); }

.at-usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.at-usp-card {
  background: var(--bg);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  padding: 24px 20px;
}

.at-usp-card-icon {
  width: 40px;
  height: 40px;
  background: var(--acc-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--acc);
  margin-bottom: 16px;
}

.at-usp-card-icon svg { width: 20px; height: 20px; }

.at-usp-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}

.at-usp-desc {
  font-size: 12px;
  color: var(--ink-dim);
  line-height: 1.6;
  margin: 0;
}


.at-hardware {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
}

.at-hardware-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../images/AT-2.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

@media (min-width: 1921px) {
  .fs-slave-promo-bg,
  .at-hardware-bg {
    background-image:
      linear-gradient(to right,
        var(--bg) calc(50% - 960px),
        rgba(11, 11, 11, 0) calc(50% - 700px),
        rgba(11, 11, 11, 0) calc(50% + 700px),
        var(--bg) calc(50% + 960px)),
      url("../images/AT-2.webp");
    background-size: auto, 1920px auto;
    background-position: center;
  }
}

.at-hardware-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.at-hardware-text {
  max-width: 620px;
}

.at-hw-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.at-hw-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.at-hw-dot {
  width: 8px;
  height: 8px;
  background: var(--acc);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.at-hw-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.at-hw-desc {
  font-size: 12px;
  color: var(--ink-dim);
  line-height: 1.6;
  margin: 0;
}


.at-software { background: var(--bg-2); }

.at-software-header { max-width: 640px; }

.at-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.at-step-card {
  background: var(--bg);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  padding: 24px 20px;
}

.at-step-num {
  font-family: var(--f-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--acc);
  margin-bottom: 12px;
}

.at-step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}

.at-step-desc {
  font-size: 12px;
  color: var(--ink-dim);
  line-height: 1.6;
  margin: 0;
}


.at-masterslave { background: var(--bg-3); scroll-margin-top: var(--header-offset); }

.at-ms-intro {
  max-width: 720px;
  margin: 0;
  display: grid;
  gap: 12px;
}
.at-ms-intro p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-dim);
  margin: 0;
}
.at-ms-cta-note {
  margin: 20px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.at-ms-ctas {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.at-masterslave .at-eyebrow,
.at-masterslave .at-sh {
  display: block;
  text-align: center;
}
.at-masterslave .at-sdesc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.at-ms-body { margin: 24px 0 40px; }
.at-ms-photo { display: none; }
@media (min-width: 781px) {
  .at-masterslave .at-ms-photo {
    display: block;
    width: 100%;
    max-width: 720px;
    height: auto;
    margin: 0 auto 24px;
    border-radius: var(--r);
  }
  .at-masterslave .at-ms-intro {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1200px) {
  .at-masterslave .at-ms-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 620px;
    gap: clamp(24px, 4vw, 64px);
    align-items: center;
    margin: 32px 0 48px;
  }
  .at-masterslave .at-ms-photo {
    max-width: none;
    margin: 0;
  }
  .at-masterslave .at-ms-intro {
    max-width: 620px;
    margin-right: 0;
  }
}

.at-ms-table-wrap {
  overflow-x: auto;
  margin-top: 8px;
  border-radius: var(--r);
  border: 1px solid var(--edge);
}

.at-ms-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.at-ms-table th,
.at-ms-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--edge);
  text-align: center;
  vertical-align: middle;
}

.at-ms-table th { background: var(--bg-2); font-weight: 700; color: var(--ink); font-size: 14px; }
.at-ms-table th:first-child,
.at-ms-table td:first-child { text-align: left; }
.at-ms-table td:first-child { color: var(--ink-dim); }
.at-ms-dash { font-size: 16px; }
.at-ms-table tr:last-child th,
.at-ms-table tr:last-child td { border-bottom: none; }

.at-ms-yes { color: var(--acc); }
.at-ms-no  { color: var(--muted); }

.at-ms-price-row td { font-weight: 700; color: var(--ink); font-size: 15px; }
.at-ms-price-row td:first-child { color: var(--ink-dim); font-weight: 600; font-size: 13px; }

.at-ms-disclaimer {
  margin-top: clamp(18px, 3vh, 28px);
  max-width: 720px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}



.at-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
  border: 1px solid var(--edge);
  border-radius: var(--r);
  overflow: hidden;
}

.at-faq-item {
  border-bottom: 1px solid var(--edge);
}

.at-faq-item:last-child { border-bottom: none; }

.at-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  background: var(--bg-2);
  transition: background .15s;
}

.at-faq-q::-webkit-details-marker { display: none; }
.at-faq-q:hover { background: var(--bg-4); }

.at-faq-chevron { flex-shrink: 0; color: var(--muted); transition: transform .2s; }

.at-faq-item[open] .at-faq-chevron { transform: rotate(180deg); }

.at-faq-a {
  padding: 16px 22px 20px;
  background: var(--bg);
}

.at-faq-a p {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.7;
  margin: 0;
}


.at-cta-banner {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
}

.at-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.at-cta-text .at-sh { margin-bottom: 8px; }
.at-cta-text .at-sdesc { margin-bottom: 0; }


.at-upsell { background: var(--bg-2); }

.at-upsell-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  padding: 32px;
  margin-top: 8px;
}

.at-upsell-img {
  background: var(--bg-2);
  border-radius: var(--r);
  border: 1px solid var(--edge);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  overflow: hidden;
}

.at-upsell-img img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }

.at-upsell-img svg { width: 56px; height: 56px; color: var(--muted); }

.at-upsell-name {
  font-family: var(--f-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.at-upsell-desc {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.65;
  margin: 0 0 20px;
}

.at-upsell-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.at-upsell-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-right: 4px;
}


@media (max-width: 1100px) {
  .at-usp-grid    { grid-template-columns: repeat(2, 1fr); }
  .at-hardware-inner { grid-template-columns: 1fr; }
  .at-hardware-bg {
    background-image:
      linear-gradient(rgba(11, 11, 11, 0.55), rgba(11, 11, 11, 0.55)),
      url("../images/AT-2.webp");
    background-position: 75% center;
  }
}

@media (max-width: 780px) {
  .at-steps-grid   { grid-template-columns: 1fr; }
  .at-box-specs-grid { grid-template-columns: 1fr; }
  .at-usp-grid     { grid-template-columns: 1fr; }
  .at-upsell-card  { grid-template-columns: 1fr; }
  .at-cta-inner    { flex-direction: column; align-items: flex-start; }
  .at-ms-table-wrap { font-size: 12px; }
  .at-ms-table th,
  .at-ms-table td  { padding: 10px 12px; }
}

@media (max-width: 640px) {
  .at-methods-grid { grid-template-columns: 1fr; }
}

.apply-hero {
  background: var(--bg);
  padding: var(--page-pad-top) var(--pad) clamp(28px, 4vh, 48px);
}
.apply-hero-inner {
  max-width: var(--w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.apply-hero-inner .eyebrow {
  margin-bottom: 18px;
}
.apply-hero-h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.9;
  margin: 0 0 clamp(12px, 1.5vh, 20px);
  text-align: center;
}
.apply-hero-h1 .hl {
  color: var(--acc);
}
.apply-hero-sub {
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
  margin: 0 auto;
  max-width: 560px;
  color: rgba(239, 239, 239, 0.72);
}
.apply-hero-sub[hidden] { display: none; }
.apply-form {
  background: var(--bg);
  padding: 0 var(--pad) clamp(56px, 9vh, 104px);
}
.apply-form-inner {
  max-width: 720px;
  margin: 0 auto;
}
.apply-form-el {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vh, 28px);
}
.apply-form-el[hidden] { display: none; }
.apply-nav .btn[hidden] { display: none; }
.apply-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(240px, 40vh, 360px);
}
.apply-loading[hidden] { display: none; }
.apply-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--acc);
  border-radius: 50%;
  animation: eng-preloader-spin 0.9s linear infinite;
}
.apply-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  min-height: clamp(240px, 40vh, 360px);
}
.apply-intro[hidden] { display: none; }
.apply-intro-title {
  font-family: var(--f-head);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  margin: 0;
}
.apply-intro-text {
  color: rgba(239, 239, 239, 0.78);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 620px;
}
.apply-intro-start {
  margin-top: 8px;
  align-self: center;
}
@media (max-width: 600px) {
  .apply-intro-start { align-self: stretch; text-align: center; }
}
.apply-primary.is-sending {
  position: relative;
  color: transparent;
  pointer-events: none;
}
.apply-primary.is-sending::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: eng-preloader-spin 0.8s linear infinite;
}
.apply-progress {
  height: 4px;
  border-radius: 999px;
  background: var(--edge);
  overflow: hidden;
}
.apply-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--acc);
  transition: width 0.35s ease;
}
.apply-progress-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: right;
}
.apply-slides {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(240px, 40vh, 360px);
}
.apply-slide {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.apply-slide[hidden] { display: none; }
.apply-slide:not([hidden]) { animation: applySlideIn 0.35s ease; }
@keyframes applySlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.apply-section-head {
  margin-bottom: 6px;
}
.apply-section-title {
  font-family: var(--f-head);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.1;
  margin: 0 0 8px;
}
.apply-section-help {
  color: var(--muted);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.55;
  margin: 0;
  max-width: 560px;
}
.apply-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.apply-q {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.apply-q-label {
  font-weight: 700;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.4;
}
.apply-q-help {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.apply-opts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.apply-opt {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid var(--edge);
  border-radius: var(--r);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.apply-opt:hover { border-color: var(--acc); }
.apply-opt:has(.apply-opt-input:checked) {
  border-color: var(--acc);
  background: color-mix(in srgb, var(--acc) 10%, transparent);
}
.apply-opt-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
}
.apply-opt-mark {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 2px solid var(--edge);
  background: transparent;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.apply-opt-mark--radio { border-radius: 50%; }
.apply-opt-mark--checkbox { border-radius: 4px; }
.apply-opt-input:focus-visible + .apply-opt-mark {
  outline: 2px solid var(--acc);
  outline-offset: 2px;
}
.apply-opt-input:checked + .apply-opt-mark { border-color: var(--acc); }
.apply-opt-mark--radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--acc);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.15s ease;
}
.apply-opt-input:checked + .apply-opt-mark--radio::after { transform: translate(-50%, -50%) scale(1); }
.apply-opt-mark--checkbox::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  background: var(--acc);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.15s ease;
}
.apply-opt-input:checked + .apply-opt-mark--checkbox::after { transform: translate(-50%, -50%) scale(1); }
.apply-opt-label {
  font-size: clamp(14px, 1vw, 15px);
  line-height: 1.45;
  font-weight: 500;
}
.apply-other-input { margin-top: 4px; }
.apply-field.is-invalid .apply-input {
  border-color: var(--err);
}
.apply-field.is-invalid .apply-opts {
  padding: 8px;
  margin: -8px;
  border-radius: var(--r);
  box-shadow: inset 0 0 0 1px var(--err);
}
.apply-field-error {
  color: var(--err);
  font-size: 13px;
  font-weight: 600;
}
.apply-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: clamp(16px, 2.5vh, 28px);
  border-top: 1px solid var(--edge);
}
.apply-primary { margin-left: auto; }
.apply-feedback { font-size: 13px; flex-basis: 100%; margin: 0; }
.apply-result {
  border: 1px solid var(--edge);
  border-radius: var(--r);
  background: var(--bg-2);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.apply-result[hidden] { display: none; }
.apply-result--success { border-color: color-mix(in srgb, var(--ok) 55%, var(--edge)); }
.apply-result-title {
  font-family: var(--f-head);
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.12;
  margin: 0;
}
.apply-result-text {
  color: rgba(239, 239, 239, 0.78);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 560px;
}
.apply-result-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .apply-nav .btn { flex: 1 1 auto; text-align: center; }
  .apply-primary { margin-left: 0; }
  .apply-result-links { flex-direction: column; }
  .apply-result-links .btn { text-align: center; }
}

.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--page-pad-top) var(--pad) clamp(48px, 8vh, 96px);
}
.legal-page .sh {
  margin-bottom: 12px;
}
.legal-updated {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 28px;
}
.legal-lead {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-dim);
  margin: 0 0 36px;
}
.legal-section {
  margin: 0 0 36px;
  padding-top: 28px;
  border-top: 1px solid var(--edge);
}
.legal-section:first-of-type {
  border-top: none;
  padding-top: 0;
}
.legal-section h2 {
  font-family: var(--f-head);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 14px;
}
.legal-section h3 {
  font-family: var(--f);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 22px 0 10px;
}
.legal-section p,
.legal-section li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-dim);
}
.legal-section p {
  margin: 0 0 12px;
}
.legal-section p:last-child,
.legal-section ul:last-child,
.legal-section ol:last-child {
  margin-bottom: 0;
}
.legal-section ul,
.legal-section ol {
  margin: 0 0 12px;
  padding-left: 1.2em;
}
.legal-section li {
  margin: 0 0 8px;
}
.legal-section li:last-child {
  margin-bottom: 0;
}
.legal-section a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-section a:hover {
  color: var(--ink);
}
.legal-section strong {
  color: var(--ink);
  font-weight: 600;
}
.legal-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 16px 0;
  border: 1px solid var(--edge);
  border-radius: var(--r);
  background: var(--bg-3);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.legal-table th,
.legal-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--edge);
  text-align: left;
  vertical-align: top;
  font-size: 13px;
  line-height: 1.55;
}
.legal-table th {
  background: var(--bg-2);
  color: var(--ink);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.legal-table td {
  color: var(--ink-dim);
}
.legal-table tr:last-child th,
.legal-table tr:last-child td {
  border-bottom: none;
}
.legal-quote {
  margin: 16px 0;
  padding: 16px 18px;
  border-left: 3px solid var(--acc);
  background: var(--bg-3);
  border-radius: 0 var(--r) var(--r) 0;
  color: var(--ink-dim);
  font-size: 13px;
  line-height: 1.7;
}
.legal-note {
  margin: 16px 0;
  padding: 14px 16px;
  border: 1px dashed var(--edge-h);
  border-radius: var(--r);
  background: var(--bg-2);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--edge);
}
.legal-nav a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
}
.legal-nav a:hover {
  color: var(--ink);
}
