/* Self-hosted fonts — eliminates Google Fonts network chain */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('/assets/fonts/sora-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('/assets/fonts/sora-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --accent:       #C94B1A;
  --accent-dark:  #A33D14;
  --accent-light: #FBE8DE;
  --ink:          #111827;
  --ink2:         #1E2D40;
  --muted:        #6B7280;
  --line:         #E8E6E2;
  --paper:        #FFFFFF;
  --soft:         #F5F4F2;

  --font-display: 'Sora', sans-serif;
  --font-body:    'Inter', Arial, sans-serif;

  --radius:    12px;
  --radius-sm:  6px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(17,24,39,.06);
  --shadow:    0 4px 20px rgba(17,24,39,.10);
  --shadow-lg: 0 8px 40px rgba(17,24,39,.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -.03em;
  line-height: 1.1;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.nav.scrolled {
  box-shadow: 0 1px 24px rgba(17,24,39,.08);
}
.nav .wrap {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--accent); }

.logo-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 6px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 44px;
  width: 44px;
  display: block;
  flex-shrink: 0;
}
.footer .logo img {
  height: 38px;
  width: 38px;
  filter: brightness(0) invert(1);
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.menu a { transition: color .15s; }
.menu a:hover { color: var(--accent); }

/* ── Language Toggle ──────────────────────────── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 3px;
  gap: 2px;
  flex-shrink: 0;
}
.lang-toggle-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  padding: 0 10px;
  border-radius: 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
  line-height: 1;
  user-select: none;
  color: var(--muted);
}
.lang-toggle-item.active {
  background: var(--accent);
  color: #fff !important;
  box-shadow: 0 1px 8px rgba(201,75,26,.28);
  cursor: default;
}
a.lang-toggle-item:hover {
  color: var(--ink) !important;
  background: rgba(17,24,39,.07);
}
/* ── Nav Right + Nav End ─────────────────────────── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-end {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: var(--radius-sm);
  padding: 12px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-accent,
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(201,75,26,.25);
}
.btn-accent:hover,
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline,
.btn-dark,
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover,
.btn-dark:hover,
.btn-ghost:hover {
  border-color: #9CA3AF;
  background: var(--soft);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-light:hover {
  border-color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
}

.btn-whatsapp {
  background: #128c7e;
  color: #fff;
  border-color: #128c7e;
}
.btn-whatsapp:hover {
  background: #0f7469;
  border-color: #0f7469;
}

.mobile-note { display: none; }

.hero {
  min-height: 92vh;
  background: var(--ink2);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero > img,
.hero > picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

.hero > img,
.hero > picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17,24,39,.70) 0%,
    rgba(17,24,39,.42) 55%,
    rgba(17,24,39,.82) 100%
  );
  z-index: 1;
}

.hero .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 64px;
  padding-bottom: 104px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  padding: 6px 12px;
  color: rgba(255,255,255,.78);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.04;
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.04em;
  color: #fff;
}

.hero p {
  max-width: 560px;
  color: rgba(255,255,255,.70);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(17,24,39,.58);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.10);
}
.hero-stats .wrap {
  display: flex;
  padding-top: 18px;
  padding-bottom: 18px;
}
.hero-stat {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-n {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
}
.hero-stat-l {
  font-size: 12px;
  color: rgba(255,255,255,.50);
  margin-top: 3px;
}

.section { padding: 78px 0; }
.section.soft { background: var(--soft); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.eyebrow { color: var(--accent); font-weight: 900; text-transform: uppercase; font-size: 12px; letter-spacing: .14em; }
.h2 { font-size: 38px; line-height: 1.1; letter-spacing: -.035em; margin: 8px 0 0; }
.lead { font-size: 17px; color: var(--muted); max-width: 710px; }
.tech-desc .lead { max-width: none; }
.machine-desc .lead { max-width: none; }
.machine-desc p { font-size: 16px; line-height: 1.7; color: var(--muted); margin: 0 0 14px; }
.machine-desc p:last-child { margin-bottom: 0; }
.machine-desc a { color: var(--accent); font-weight: 600; }
.machine-desc a:hover { text-decoration: underline; }
.grid { display: grid; gap: 22px; }
.equipment-grid { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.machine-img {
  height: 300px;
  background: linear-gradient(135deg, #1f2937, #374151);
  position: relative;
  overflow: hidden;
}
.machine-img img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s ease; }
.card:hover .machine-img img { transform: scale(1.04); }

.status {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px 4px 8px;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: #15803D;
  color: #fff;
  box-shadow: 0 2px 10px rgba(21,128,61,.40);
  backdrop-filter: blur(2px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.status::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #86efac;
  flex-shrink: 0;
  animation: status-pulse 2s ease-in-out infinite;
}
@keyframes status-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.8); }
}
.status[style*="fef3c7"],
.status[style*="92400e"] {
  background: var(--accent) !important;
  color: #fff !important;
}

.machine-body { padding: 20px; }

.machine-body h3 {
  font-size: 16px;
  line-height: 1.3;
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
}

.specs {
  display: grid;
  gap: 0;
  margin: 0 0 16px;
  color: #475569;
  font-size: 14px;
}
.specs div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed var(--line);
  padding: 6px 0;
}
.specs div:last-child { border-bottom: none; }
.specs span { color: var(--muted); font-size: 13px; }
.specs b { color: var(--ink); font-weight: 600; font-size: 13px; }

.card-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.card-actions .btn {
  padding: 9px 12px;
  font-size: 13px;
  flex: 1;
}

.cats { grid-template-columns: repeat(4, 1fr); }

.cat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  min-height: 130px;
  transition: all .2s ease;
  display: flex;
  flex-direction: column;
}
.cat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.cat-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-light);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.cat b { display: block; font-size: 14px; font-weight: 600; line-height: 1.3; color: var(--ink); }
.cat p { font-size: 13px; color: var(--muted); margin: 6px 0 0; line-height: 1.4; }

.cat-text { min-height: 90px; padding: 14px 18px; }
.cat-text b { font-size: 15px; }
.cat-avail { color: var(--accent); font-weight: 600; }

.dark-band {
  background: var(--ink2);
  color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  position: relative;
}

.dark-band-img {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.dark-band-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}

.dark-band-content { padding: 48px 44px; }
.dark-band-content .h2 { color: #fff; margin-bottom: 12px; }
.dark-band-content > p { color: rgba(255,255,255,.68); margin-bottom: 24px; }
.dark-band-content .eyebrow { color: var(--accent); margin-bottom: 8px; }

.checks { display: grid; gap: 14px; }
.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity .4s ease, transform .4s ease;
}
.check.visible { opacity: 1; transform: none; }

.check span:first-child {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}
.check-text { color: rgba(255,255,255,.82); font-size: 15px; line-height: 1.5; }

.features { grid-template-columns: repeat(4, 1fr); }

.feature {
  padding: 28px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .2s ease;
}
.feature:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-light);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.feature b {
  display: block;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--ink);
  margin-bottom: 8px;
}
.feature p { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.6; }

.cta {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta .h2 { margin-bottom: 12px; }
.cta .lead { margin-bottom: 24px; }

.cta-contacts { display: flex; flex-direction: column; gap: 10px; }

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.cta-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--accent-light);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cta-contact-label { font-size: 11px; color: var(--muted); margin-bottom: 1px; }
.cta-contact-val { font-size: 14px; font-weight: 600; color: var(--ink); }

.cta-trust {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

.footer {
  background: var(--ink);
  color: #9CA3AF;
  padding: 56px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 24px;
}
.footer .logo {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer .logo span { color: var(--accent); }
.footer-desc { font-size: 14px; line-height: 1.6; max-width: 220px; }
.footer b {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer a {
  display: block;
  margin: 0 0 10px;
  font-size: 14px;
  color: #9CA3AF;
  transition: color .15s;
}
.footer a:hover { color: #fff; }
.footer-bottom {
  font-size: 13px;
  color: #6B7280;
  text-align: center;
}

.page-hero { background: linear-gradient(135deg, #0d1726, #1f2937); color: #fff; padding: 68px 0; }
.page-hero h1 { font-size: 46px; line-height: 1.06; margin: 0 0 12px; letter-spacing: -.035em; }
.page-hero p { color: #cbd5e1; max-width: 760px; }
.content-date { color: rgba(255,255,255,.55); font-size: 13px; margin-top: 4px; }
.filters {
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  margin: 0 0 32px;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}
.filters::-webkit-scrollbar { display: none; }
.pill {
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  border-radius: 0;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  margin-bottom: -1px;
  transition: color .15s, border-color .15s;
}
.pill.active { color: var(--ink); border-bottom-color: var(--accent); }
.pill:hover:not(.active) { color: var(--ink); }
.pill-count {
  margin-left: 5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
}
.pill.active .pill-count { color: var(--accent); }
.detail { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 34px; align-items: start; }
.gallery { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 12px; box-shadow: var(--shadow); }
.gallery-main { height: 430px; border-radius: 20px; background: linear-gradient(135deg, #111827, #475569); position: relative; overflow: hidden; }
.gallery-main:before { content: ""; position: absolute; inset: 70px; background: linear-gradient(135deg, rgba(255,255,255,.26), rgba(255,255,255,.04)); clip-path: polygon(9% 58%,23% 31%,60% 31%,77% 51%,92% 51%,92% 77%,9% 77%); }
.thumbs { display: flex; gap: 10px; margin-top: 10px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 2px; }
.thumbs::-webkit-scrollbar { display: none; }
.thumb { flex: 0 0 90px; height: 76px; border-radius: 14px; background: #cbd5e1; scroll-snap-align: start; }
.side-panel { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 28px; box-shadow: var(--shadow); }
.side-panel h1 { font-size: 34px; line-height: 1.1; margin: 0 0 18px; }
.facts { display: grid; gap: 10px; margin: 20px 0; }
.facts div { display: flex; justify-content: space-between; border-bottom: 1px solid #edf1f6; padding-bottom: 9px; }
.facts span { color: var(--muted); }
.table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); }
.table td { padding: 14px 18px; border-bottom: 1px solid var(--line); }
.table tr:last-child td { border-bottom: 0; }
.table td:first-child { color: var(--muted); width: 42%; }
.form { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 28px; box-shadow: 0 8px 30px rgba(15,23,42,.05); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.input, textarea { width: 100%; border: 1px solid #d7dee9; border-radius: 14px; padding: 14px 15px; font: inherit; }
textarea { min-height: 130px; resize: vertical; }
.full { grid-column: 1/-1; }
.service-grid { grid-template-columns: repeat(3, 1fr); }
.service-card { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.service-card h3 { margin-top: 0; }
.service-card p { color: var(--muted); }
.text-link { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.text-link:hover { opacity: 0.8; }
.gallery-main > img:not(.gallery-img), .gallery-main > iframe { position: relative; width: 100%; height: 100%; display: block; object-fit: cover; border: 0; }
.gallery-main .status { z-index: 2; }
.thumb { position: relative; overflow: hidden; cursor: pointer; border: 2px solid transparent; }
.thumb.active { border-color: var(--accent); }
.thumb img { width: 100%; height: 100%; display: block; object-fit: cover; }
.video-thumb .play-icon { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; background: rgba(13,23,38,.35); font-size: 24px; text-shadow: 0 2px 8px rgba(0,0,0,.45); }
.breadcrumb { background: #fff; border-bottom: 1px solid var(--line); }
.breadcrumb-list { display: flex; gap: 9px; align-items: center; flex-wrap: wrap; list-style: none; margin: 0; padding: 15px 0; font-size: 14px; color: var(--muted); }
.breadcrumb-list li + li:before { content: "›"; margin-right: 9px; color: #94a3b8; }
.breadcrumb-list a:hover { color: var(--accent); }

.section:not(.hero) {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.section.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .menu { display: none; }
  .mobile-note { display: inline-flex; }
  .hero h1 { font-size: 38px; }
  .hero > .wrap { padding-bottom: 160px; }
  .hero-stats .wrap { flex-wrap: wrap; }
  .hero-stat { flex: 0 0 50%; border-right: none; }
  .equipment-grid, .features, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .dark-band { grid-template-columns: 1fr; }
  .dark-band-img { min-height: 200px; }
  .cta { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 620px) {
  .hero { min-height: 100svh; }
  .hero > .wrap { padding-bottom: 200px; }
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 16px; }
  .section { padding: 52px 0; }
  .section-head { display: block; }
  .h2 { font-size: 28px; }
  .equipment-grid, .features, .cats, .service-grid { grid-template-columns: 1fr; }
  .card-actions, .hero-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta { padding: 28px; border-radius: var(--radius); }
  .dark-band-content { padding: 28px 24px; }
  .hero-stat { flex: 0 0 50%; border: none; padding: 10px 12px; }
}

/* ── Status badge modifiers ─────────────────────────── */
.status-hot { background: var(--accent); box-shadow: 0 2px 10px rgba(201,75,26,.35); }
.status-hot::before { background: #fca78e; }
.status-sold { background: #7f1d1d; box-shadow: 0 2px 10px rgba(127,29,29,.25); }
.status-sold::before { animation: none; background: rgba(255,255,255,.45); }
.status-unavailable { background: var(--muted); box-shadow: none; }
.status-unavailable::before { animation: none; background: rgba(255,255,255,.4); }

/* ── Page hero eyebrow on dark bg ───────────────────── */
.page-hero .eyebrow { color: rgba(255,255,255,.6); letter-spacing: .18em; }

/* ── Contact page ───────────────────────────────────── */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  cursor: pointer;
  margin-top: 4px;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.form-consent a { color: var(--accent); font-weight: 600; }
.form-note { font-size: 12px; color: var(--muted); margin: 0; }
.form-notice { display: flex; align-items: flex-start; gap: 12px; border-radius: var(--radius); padding: 14px 16px; margin-bottom: 20px; font-size: 14px; line-height: 1.5; }
.form-notice svg { flex-shrink: 0; margin-top: 2px; }
.form-notice--success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.form-notice--error   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.side-panel-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin: 0 0 4px; }
.side-panel-sub { font-size: 14px; color: var(--muted); margin: 0 0 20px; }
.facts a { color: var(--accent); }
.table a { color: var(--accent); }
.compare-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); }
.compare-table th, .compare-table td { padding: 14px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table thead th { background: #f8fafc; font-family: var(--font-display); font-size: 14px; color: var(--ink); }
.compare-table td:first-child, .compare-table th:first-child { color: var(--muted); width: 26%; }
.compare-table td:not(:first-child) { width: 37%; }
@media (max-width: 620px) {
  .compare-table { display: block; overflow-x: auto; }
}
.side-panel-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }

/* ================================================
   SERVICES PAGE — new components
   ================================================ */

/* Label above service card title */
.service-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 6px;
}

/* Callout / highlight note box */
.sv-note {
  margin-top: 24px;
  padding: 14px 18px;
  border-left: 3px solid var(--accent);
  background: var(--soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

/* Two-column layout for text + card sections */
.sv-2col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 52px;
  align-items: flex-start;
}

/* Light info card (right column) */
.sv-info-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--accent);
}

.sv-info-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 18px;
}

/* Dark service formats card */
.sv-formats {
  background: var(--ink2);
  border-radius: var(--radius);
  padding: 28px 26px;
  color: #fff;
}

.sv-formats .eyebrow {
  color: var(--accent);
  margin-bottom: 8px;
}

.sv-formats h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
}

.sv-formats-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sv-formats-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}

.sv-formats-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.sv-formats-list strong {
  color: #fff;
}

/* FAQ items */
.sv-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sv-faq-item {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sv-faq-item:hover {
  border-left-color: var(--accent);
  box-shadow: var(--shadow);
}

.sv-faq-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 8px;
}

.sv-faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Page hero CTA buttons */
.page-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.sv-dark-copy-secondary {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
}

.sv-dark-action {
  margin-top: 20px;
}

.sv-2col .check-text,
.sv-info-card .check-text,
.service-card .check-text {
  color: var(--muted);
}

.sv-2col .check,
.sv-info-card .check,
.service-card .check {
  opacity: 1;
  transform: none;
}

/* Responsive — services page */
@media (max-width: 980px) {
  .sv-2col {
    grid-template-columns: 1fr;
    gap: 28px;
  }

}

@media (max-width: 620px) {
  .page-hero .hero-actions {
    flex-direction: column;
  }
  .page-hero .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

}

/* ── Gallery: image crossfade ───────────────────────── */
.gallery-main { cursor: zoom-in; }
.gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .38s ease;
  border-radius: 0;
}
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-img.active { opacity: 1; }

/* ── Gallery: nav arrows ────────────────────────────── */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.92);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity .2s ease, background .15s ease;
  z-index: 3;
  color: var(--ink);
  box-shadow: 0 2px 12px rgba(17,24,39,.18);
  padding: 0;
}
.gallery-main:hover .gallery-nav { opacity: 1; }
.gallery-nav:hover { background: #fff; }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

/* ── Gallery: zoom button ───────────────────────────── */
.gallery-zoom-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255,255,255,.88);
  border: none;
  border-radius: var(--radius-sm);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity .2s ease;
  z-index: 3;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(17,24,39,.14);
  padding: 0;
}
.gallery-main:hover .gallery-zoom-btn { opacity: 1; }

/* ── Lightbox ───────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}
.lightbox.open { opacity: 1; visibility: visible; pointer-events: auto; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,14,20,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox-img-wrap {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 88vh;
  cursor: zoom-in;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius);
}
.lightbox-img-wrap.zoomed { cursor: zoom-out; }

.lightbox-img {
  display: block;
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  transition: transform .32s ease;
  transform-origin: center center;
  user-select: none;
}
.lightbox-img-wrap.zoomed .lightbox-img { transform: scale(2); }

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background .15s ease;
  padding: 0;
}
.lightbox-close:hover { background: rgba(255,255,255,.22); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background .15s ease;
  padding: 0;
}
.lightbox-nav:hover { background: rgba(255,255,255,.20); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.7);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  background: rgba(0,0,0,.35);
  border-radius: 20px;
  padding: 5px 14px;
}

/* ── Detail page responsive ─────────────────────────── */
@media (max-width: 980px) {
  .detail { grid-template-columns: minmax(0, 1fr); }
  .lightbox-nav { display: none; }
}
@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; }
  .gallery-nav { opacity: 1; width: 34px; height: 34px; }
}

/* ── FAQ accordion ──────────────────────────────────── */
.faq { border-top: 1px solid var(--line); }

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

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  transition: color .15s ease;
}
.faq-q:hover { color: var(--accent); }
.faq-item.open .faq-q { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform .3s ease, color .15s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }

.faq-a > p {
  overflow: hidden;
  margin: 0;
  padding-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  transition: padding-bottom .32s ease;
}
.faq-item.open .faq-a > p { padding-bottom: 20px; }

/* ── Related links grid ─────────────────────────────── */
.related-grid { grid-template-columns: repeat(3, 1fr); }

.related-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  color: inherit;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.related-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.related-card b {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-top: 4px;
}

.related-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-arrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
}

@media (max-width: 980px) {
  .related-grid { grid-template-columns: 1fr; }
}

/* =============================================
   MEDIA TABS — video integration in gallery
   ============================================= */

.media-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 0 8px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.media-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 16px 12px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color .15s;
}

.media-tab:hover { color: var(--ink); }
.media-tab.active { color: var(--ink); border-bottom-color: var(--accent); }

.tab-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.media-tab.active .tab-count { color: var(--accent); }

.tab-icon { color: var(--muted); }
.video-tab .tab-icon { color: var(--accent); }

.gallery-video-panel {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: #000;
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.gallery-video-panel.active {
  opacity: 1;
  pointer-events: auto;
}

.video-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: opacity .3s;
  border-radius: var(--radius);
  overflow: hidden;
}

.video-cover-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.52) saturate(.8);
}

.video-cover-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.video-play-btn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 40px rgba(201,75,26,.55);
  animation: ring 2.5s ease-in-out infinite;
  transition: transform .2s ease, background .15s;
  cursor: pointer;
}
.video-play-btn:hover {
  transform: scale(1.08);
  background: var(--accent-dark);
  animation: none;
}
.video-play-btn svg { margin-left: 5px; }

@keyframes ring {
  0%,100% { box-shadow: 0 8px 40px rgba(201,75,26,.55), 0 0 0 0 rgba(201,75,26,.25); }
  50%      { box-shadow: 0 8px 40px rgba(201,75,26,.55), 0 0 0 14px rgba(201,75,26,0); }
}

.video-cover-label {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
}

.gallery-video-panel iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.gallery-video-panel.playing .video-cover {
  opacity: 0;
  pointer-events: none;
}
.gallery-video-panel.playing iframe {
  opacity: 1;
  pointer-events: auto;
}

.thumbs.hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  padding: 0 !important;
  margin: 0;
  overflow: hidden;
  transition: max-height .3s ease, opacity .2s ease;
}
/* === Privacy page === */
.privacy-content {
  max-width: 820px;
  margin: 0 auto;
}
.privacy-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 36px 0 12px;
  letter-spacing: -0.02em;
}
.privacy-content h3:first-child { margin-top: 0; }
.privacy-content p { margin: 0 0 14px; font-size: 15px; line-height: 1.75; color: var(--muted); }
.privacy-content ul { margin: 0 0 18px; padding-left: 22px; }
.privacy-content li { margin-bottom: 8px; font-size: 15px; line-height: 1.7; color: var(--muted); }
.privacy-content a { color: var(--accent); font-weight: 600; }
.privacy-content strong { color: var(--ink); }
.privacy-highlight {
  margin: 22px 0;
  padding: 16px 20px;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  background: var(--soft);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink2);
}
.privacy-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 16px 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.privacy-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14px;
}
.privacy-table th,
.privacy-table td {
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
}
.privacy-table thead tr { background: var(--soft); }
.privacy-table th { font-weight: 600; color: var(--ink); font-family: var(--font-display); }
.privacy-table tbody tr + tr td { border-top: 1px solid var(--line); }

/* ── Cookie Consent Banner ─────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--paper);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(17,24,39,.10);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .3s ease;
}
#cookie-banner.cookie-banner--visible { transform: translateY(0); }
.cookie-banner__text {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  font-family: var(--font-body);
}
.cookie-banner__text a { color: var(--accent); font-weight: 600; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 480px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-banner__actions { width: 100%; justify-content: flex-end; }
}

/* Mobile nav drawer */
.burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--soft);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background .15s, border-color .15s;
}
.burger[aria-expanded="true"] {
  background: var(--accent-light);
  border-color: rgba(201,75,26,.30);
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--paper);
  border-radius: 24px 24px 0 0;
  padding: 0 16px calc(24px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 40px rgba(17,24,39,.14);
  z-index: 200;
  max-height: 85dvh;
  overflow-y: auto;
  transform: translateY(105%);
  transition: transform .38s cubic-bezier(0.32, 0.72, 0, 1);
}
.mobile-nav.is-open {
  transform: translateY(0);
}
.mobile-nav-handle {
  width: 40px;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  margin: 14px auto 20px;
  flex-shrink: 0;
}
.mobile-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 14px 14px;
  background: var(--soft);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
}
.mobile-nav-link span { flex: 1; }
.mobile-nav-link svg {
  color: var(--muted);
  flex-shrink: 0;
  transition: color .15s, transform .15s;
}
.mobile-nav-link:hover,
.mobile-nav-link[aria-current="page"] {
  background: var(--accent-light);
  color: var(--accent);
  border-color: rgba(201,75,26,.15);
}
.mobile-nav-link:hover svg,
.mobile-nav-link[aria-current="page"] svg {
  color: var(--accent);
  transform: translateX(2px);
}
.mobile-nav-footer {
  padding-top: 4px;
}
.mobile-nav-footer .btn {
  width: 100%;
  justify-content: center;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 199;
}

/* ================================================
   404 ERROR PAGE
   ================================================ */
.error-hero {
  background-image:
    repeating-linear-gradient(0deg,  rgba(255,255,255,.022) 0, rgba(255,255,255,.022) 1px, transparent 1px, transparent 52px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.022) 0, rgba(255,255,255,.022) 1px, transparent 1px, transparent 52px),
    linear-gradient(150deg, #0d1726 0%, #1f2937 60%, #0f1f35 100%);
  color: #fff;
  text-align: center;
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.error-hero::before {
  content: '404';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42vw;
  line-height: 1;
  color: rgba(255,255,255,.018);
  pointer-events: none;
  letter-spacing: -.06em;
  user-select: none;
}
.error-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 32px;
}
.error-code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(96px, 18vw, 180px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--accent);
  margin: 0 0 36px;
  display: flex;
  justify-content: center;
  gap: .02em;
  position: relative;
}
@keyframes stamp-in {
  from { opacity: 0; transform: translateY(-28px) scale(.82); filter: blur(4px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}
.error-code-digit {
  animation: stamp-in .65s cubic-bezier(.16,1,.3,1) both;
  display: inline-block;
}
.error-code-digit:nth-child(1) { animation-delay: .04s; }
.error-code-digit:nth-child(2) { animation-delay: .16s; }
.error-code-digit:nth-child(3) { animation-delay: .28s; }
.error-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
  margin: 0 auto 36px;
}
.error-divider::before,
.error-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.18);
}
.error-divider svg { flex-shrink: 0; opacity: .55; }
.error-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 14px;
}
.error-hero .lead {
  color: #94a3b8;
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 40px;
}
.error-hero .hero-actions { justify-content: center; }
@media (max-width: 620px) {
  .error-hero { padding: 64px 0 56px; }
  .error-hero::before { font-size: 80vw; }
}

@media (max-width: 980px) {
  .burger { display: flex; }
  .mobile-note { display: none !important; }
}

/* ── Brand pages ── */

.model-table-wrap { overflow-x: auto; margin-top: 32px; }
.model-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9375rem;
}
.model-table th {
  text-align: left;
  font-family: var(--font-display);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 16px;
  border-bottom: 2px solid var(--line);
}
.model-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.45;
}
.model-table tr:last-child td { border-bottom: none; }
.model-table tr:hover td { background: var(--soft); }
.model-table td:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  white-space: nowrap;
}
.model-table td:nth-child(2) { font-weight: 600; }
.badge-stock { color: var(--accent); font-weight: 700; font-size: .875rem; }
.badge-sold  { color: var(--muted);  font-weight: 500; font-size: .875rem; }

/* ─── Resource Cards (/resources/) ───────────────────────── */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.resource-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.resource-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.10);
  border-color: rgba(201,75,26,.25);
}
.resource-card-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 14px;
  width: fit-content;
}
.resource-card-tag.tag--guide  { color: var(--accent); background: var(--accent-light); }
.resource-card-tag.tag--tech   { color: #0F5085; background: #E0F0FB; }
.resource-card-tag.tag--app    { color: #0F6B4F; background: #DCF5EC; }
.resource-card-tag.tag--market { color: #3730A3; background: #EEF2FF; }
.resource-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin: 0 0 10px;
}
.resource-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.resource-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.resource-card-time {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
}
.resource-card-date {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
}
.resource-card-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.resource-card-link:hover { text-decoration: underline; }
@media (max-width: 768px) { .resource-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .resource-grid { grid-template-columns: 1fr; } }
