/* Kropka Detailing — design system
   Dark studio theme: near-black surfaces, gold accent, Barlow Condensed
   headings / Manrope body / JetBrains Mono for labels & prices. */

:root {
  --bg: #0B0C0E;
  --bg-alt: #0E1013;
  --bg-footer: #0A0B0D;
  --surface: #131518;
  --surface-2: #16191D;
  --surface-3: #191C20;
  --surface-4: #101216;
  --surface-5: #101215;
  --border-1: #21242A;
  --border-2: #26292E;
  --border-3: #2C3037;
  --border-4: #24272C;
  --border-5: #22252A;
  --border-6: #34383F;
  --border-7: #1C1F23;
  --text-1: #E8E9EA;
  --text-2: #C9CCD1;
  --text-3: #D3D6DA;
  --text-4: #B4B8BE;
  --text-5: #A8ADB4;
  --text-6: #9BA0A7;
  --text-7: #8A8F96;
  --text-8: #7A7F86;
  --text-9: #6E737A;
  --text-10: #5C6169;
  --gold: #E0A83C;
  --gold-hover: #F2C368;
  --err-border: #7A3B3B;
  --err-bg: #1B1214;
  --err-text: #E8A0A0;
  --font-head: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Consolas', 'SFMono-Regular', monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); }
body {
  font-family: var(--font-body);
  color: var(--text-1);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hover); text-decoration: underline; }
::selection { background: var(--gold); color: var(--bg); }
input, textarea, select, button { font-family: inherit; }
img { max-width: 100%; display: block; }
ul { margin: 0; }

@keyframes kdIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes kdSlide { from { transform: translateX(30px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ---------- layout ---------- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-md { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.container-xs { max-width: 920px; margin: 0 auto; padding: 0 24px; }
.container-legal { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.container-post { max-width: 760px; margin: 0 auto; padding: 0 24px; }

main.page { padding-top: 64px; padding-bottom: 90px; }
.section { padding: 88px 0; border-bottom: 1px solid var(--border-1); }
.section:last-of-type { border-bottom: 0; }
.section-alt { background: var(--bg-alt); }
.section-tight { padding: 80px 0; }

.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- typography ---------- */
.eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 14px;
}
h1, h2, h3 { font-family: var(--font-head); text-transform: uppercase; font-weight: 700; margin: 0; line-height: 1; }
.h-hero { font-size: 78px; line-height: 0.96; margin: 0 0 22px; letter-spacing: 0.005em; }
.h-page { font-size: 66px; line-height: 0.98; margin: 0 0 18px; }
.h-section { font-size: 54px; line-height: 1; margin: 0 0 16px; }
.h-sub { font-size: 44px; margin: 0 0 18px; }
.h-card { font-size: 28px; line-height: 1.05; }
.h-legal { font-size: 54px; margin: 0 0 10px; }
.h-legal-inner { font-size: 30px; margin: 30px 0 10px; font-weight: 700; }
.lead { color: var(--text-5); font-size: 17px; line-height: 1.7; margin: 0 0 44px; max-width: 700px; }
.lead-lg { color: var(--text-5); font-size: 18px; line-height: 1.65; max-width: 520px; margin: 0 0 32px; }
p { line-height: 1.6; }
.text-muted { color: var(--text-6); }
.mono { font-family: var(--font-mono); }
.mono-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-7); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 16px 30px; font-size: 15px; font-weight: 700;
  cursor: pointer; border: 0; text-decoration: none; font-family: var(--font-body);
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--gold); color: var(--bg); }
.btn-primary:hover { background: var(--gold-hover); color: var(--bg); }
.btn-outline { background: transparent; color: var(--text-1); border: 1px solid var(--border-6); }
.btn-outline:hover { border-color: var(--gold); color: var(--text-1); }
.btn-block { width: 100%; }
.btn-sm { padding: 13px 18px; font-size: 14px; }
.btn-ghost {
  background: none; border: 0; padding: 0; color: var(--gold); cursor: pointer;
  font-size: 14px; text-decoration: underline; font-family: var(--font-body);
}
.btn-ghost:hover { color: var(--gold-hover); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60; background: rgba(11,12,14,0.92);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--border-1);
}
.header-inner { display: flex; align-items: center; gap: 28px; padding: 14px 24px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--gold); display: block; flex-shrink: 0; }
.brand-name {
  font-family: var(--font-head); font-weight: 700; font-size: 24px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-1);
}
.brand-name span { color: var(--text-7); font-weight: 500; }

.nav-toggle-input {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.nav-toggle-input:focus-visible ~ .nav-toggle-label { outline: 2px solid var(--gold); outline-offset: 2px; }
.nav-toggle-label {
  display: none; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border-3);
  background: var(--surface-2); cursor: pointer; margin-left: auto; align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
}
.nav-toggle-label span { width: 18px; height: 2px; background: var(--text-1); display: block; }

.site-nav { display: flex; flex-wrap: wrap; gap: 20px; margin-left: auto; align-items: center; }
.nav-link {
  background: none; border: 0; cursor: pointer; color: var(--text-2); font-size: 14px;
  font-weight: 600; padding: 6px 0; text-decoration: none; font-family: var(--font-body);
}
.nav-link:hover { color: var(--gold); text-decoration: none; }
.nav-link.is-active { color: var(--gold); }
.cart-btn {
  display: flex; align-items: center; gap: 8px; background: var(--surface-2); border: 1px solid var(--border-3);
  border-radius: 999px; padding: 9px 16px; cursor: pointer; color: var(--text-1); font-size: 13px; font-weight: 700;
  font-family: var(--font-body); text-decoration: none;
}
.cart-btn:hover { border-color: var(--gold); text-decoration: none; color: var(--text-1); }
.cart-count { font-family: var(--font-mono); color: var(--gold); }
.phone-btn {
  background: var(--gold); color: var(--bg); border-radius: 999px; padding: 10px 18px;
  font-size: 13px; font-weight: 700; text-decoration: none;
}
.phone-btn:hover { background: var(--gold-hover); color: var(--bg); text-decoration: none; }

.promo-bar {
  background: var(--gold); color: var(--bg); font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; text-align: center; padding: 9px 16px;
}

@media (max-width: 980px) {
  .nav-toggle-label { display: flex; }
  .site-nav {
    display: none; width: 100%; flex-direction: column; align-items: flex-start; gap: 4px;
    margin-left: 0; padding: 10px 0 6px; border-top: 1px solid var(--border-1); margin-top: 12px;
  }
  .header-inner { flex-wrap: wrap; }
  .nav-toggle-input:checked ~ .site-nav { display: flex; }
  .nav-link, .cart-btn, .phone-btn { width: 100%; }
  .cart-btn { justify-content: space-between; }
  .site-nav .phone-btn, .site-nav .cart-btn { max-width: 260px; text-align: center; justify-content: center; }
}

/* ---------- hero ---------- */
.hero { position: relative; border-bottom: 1px solid var(--border-1); overflow: hidden; }
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(1000px 500px at 78% 20%, rgba(224,168,60,0.13), transparent 60%);
}
.hero-inner {
  padding: 96px 24px 88px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px;
  align-items: center; position: relative;
}
.hero-copy { animation: kdIn .5s ease both; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; max-width: 520px; }
.stat { border-left: 2px solid var(--border-3); padding-left: 14px; }
.stat.is-accent { border-left-color: var(--gold); }
.stat-num { font-family: var(--font-head); font-size: 36px; font-weight: 700; line-height: 1; }
.stat-label { font-size: 12px; color: var(--text-7); letter-spacing: 0.04em; }
.hero-media { position: relative; }
.hero-media img { border-radius: 18px; border: 1px solid var(--border-3); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.hero-badge {
  position: absolute; bottom: -22px; left: -22px; background: var(--surface); border: 1px solid var(--border-3);
  border-radius: 14px; padding: 18px 22px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); max-width: 240px;
}
.hero-badge-label { font-family: var(--font-mono); font-size: 11px; color: var(--text-7); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 6px; }
.hero-badge-value { font-family: var(--font-head); font-size: 30px; font-weight: 700; line-height: 1; }

/* ---------- media / image placeholders ---------- */
.media { border-radius: 10px; overflow: hidden; background: var(--surface); }
.media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-square { aspect-ratio: 1/1; }
.media-4-3 { aspect-ratio: 4/3; }
.media-3-2 { aspect-ratio: 3/2; }
.media-16-10 { aspect-ratio: 16/10; }
.media-card { height: 130px; border-radius: 10px; margin-bottom: 6px; }
.media-card-lg { height: 140px; border-radius: 10px; }
.media-hero-block { height: 340px; border-radius: 18px; border: 1px solid var(--border-3); overflow: hidden; margin-bottom: 44px; }
.media-hero-block img { width: 100%; height: 100%; object-fit: cover; }
.media-hero-block.is-sm { height: 320px; }

/* ---------- brand strip ---------- */
.brand-strip { border-bottom: 1px solid var(--border-1); background: var(--bg-alt); }
.brand-strip-inner { padding: 28px 24px; display: flex; flex-wrap: wrap; gap: 38px; align-items: center; justify-content: space-between; }
.brand-strip-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-9); }
.brand-name-item { font-family: var(--font-head); font-size: 22px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-10); }

/* ---------- cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--border-2); border-radius: 16px; padding: 28px;
}
.card-hover:hover { border-color: #3E434B; }
.card-flex { display: flex; flex-direction: column; gap: 12px; }
.card-foot {
  display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border-4);
  padding-top: 14px; margin-top: 6px;
}
.card-price { font-family: var(--font-mono); font-size: 13px; color: var(--gold); }
.card-time { font-size: 12px; color: var(--text-8); }

.case-card { border: 1px solid var(--border-2); border-radius: 16px; overflow: hidden; background: var(--surface); }
.case-body { padding: 22px; }
.case-tag { font-family: var(--font-mono); font-size: 11px; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px; }
.case-title { font-size: 26px; margin: 0 0 8px; }
.case-desc { margin: 0; color: var(--text-6); font-size: 14px; line-height: 1.6; }

.review-card { background: var(--surface); border: 1px solid var(--border-2); border-radius: 16px; padding: 28px; }
.review-stars { color: var(--gold); letter-spacing: 0.2em; font-size: 14px; margin-bottom: 14px; }
.review-text { margin: 0 0 18px; color: var(--text-3); font-size: 15.5px; line-height: 1.7; }
.review-name { font-size: 13.5px; font-weight: 700; }
.review-car { font-size: 12.5px; color: var(--text-8); }

/* ---------- steps / process ---------- */
.step { display: flex; gap: 20px; background: var(--surface); border: 1px solid var(--border-2); border-radius: 12px; padding: 20px 22px; }
.step-n { font-family: var(--font-mono); font-size: 13px; color: var(--gold); min-width: 34px; }
.step-title { font-family: var(--font-head); font-size: 24px; font-weight: 600; text-transform: uppercase; margin: 0 0 4px; }
.step-desc { margin: 0; color: var(--text-6); font-size: 14.5px; line-height: 1.6; }
.info-box { background: var(--surface); border: 1px solid var(--border-2); border-radius: 14px; padding: 22px; }

/* ---------- FAQ (native details/summary — works without JS) ---------- */
.faq-item { background: var(--surface); border: 1px solid var(--border-2); border-radius: 12px; overflow: hidden; }
.faq-item + .faq-item { margin-top: 10px; }
.faq-item summary {
  list-style: none; display: flex; gap: 18px; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; color: var(--text-1); font-size: 16.5px; font-weight: 700;
  font-family: var(--font-body);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-sign { color: var(--gold); font-family: var(--font-mono); font-size: 20px; line-height: 1; }
.faq-item[open] .faq-sign-plus { display: none; }
.faq-sign-minus { display: none; }
.faq-item[open] .faq-sign-minus { display: inline; }
.faq-answer { margin: 0; padding: 0 24px 22px; color: var(--text-6); font-size: 15px; line-height: 1.7; }

/* ---------- CTA band ---------- */
.cta-band {
  border: 1px solid var(--border-3); border-radius: 20px; padding: 54px 48px;
  background: linear-gradient(120deg, #15181C, #0F1114); display: grid;
  grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center;
}
.cta-title { font-size: 48px; margin: 0 0 14px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-actions .btn, .cta-actions a { text-align: center; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border-1); background: var(--bg-footer); }
.footer-grid { padding: 60px 24px 30px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand span.brand-name { font-size: 22px; }
.footer-about { margin: 0 0 16px; color: var(--text-7); font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-contact { color: var(--text-7); font-size: 14px; line-height: 1.8; }
.footer-col { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-col-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-10); margin-bottom: 4px; }
.footer-col a, .footer-col button {
  background: none; border: 0; padding: 0; cursor: pointer; color: var(--text-4); font-size: 14px;
  font-family: var(--font-body); text-decoration: none;
}
.footer-col a:hover, .footer-col button:hover { color: var(--gold); text-decoration: none; }
.footer-bottom { padding: 0 24px 40px; }
.footer-bottom-inner {
  border-top: 1px solid var(--border-7); padding-top: 20px; display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; color: var(--text-10); font-size: 12.5px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(5,6,7,0.66); z-index: 80; border: 0; padding: 0; cursor: pointer;
}
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 92vw; background: var(--surface-4);
  border-left: 1px solid var(--border-3); z-index: 90; display: flex; flex-direction: column;
  animation: kdSlide .22s ease both; transform: translateX(0);
}
.cart-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 24px 26px; border-bottom: 1px solid var(--border-4); }
.cart-drawer-title { font-family: var(--font-head); font-size: 28px; text-transform: uppercase; font-weight: 700; }
.cart-close { background: none; border: 0; color: var(--text-7); font-size: 22px; cursor: pointer; line-height: 1; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 20px 26px; }
.cart-empty-msg { color: var(--text-7); font-size: 15px; line-height: 1.7; margin: 20px 0 0; }
.cart-line { display: grid; grid-template-columns: 64px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border-5); }
.cart-line-thumb { height: 64px; border-radius: 8px; background: var(--surface-2); overflow: hidden; }
.cart-line-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-name { font-size: 14.5px; font-weight: 700; margin-bottom: 2px; }
.cart-line-unit { font-size: 12.5px; color: var(--text-8); margin-bottom: 10px; }
.cart-line-controls { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 28px; height: 28px; border-radius: 8px; background: var(--surface-3); border: 1px solid var(--border-3); color: var(--text-1); cursor: pointer; font-size: 15px; line-height: 1; }
.qty-val { font-family: var(--font-mono); font-size: 14px; min-width: 18px; text-align: center; }
.cart-line-price { margin-left: auto; font-family: var(--font-mono); font-size: 14px; color: var(--gold); }
.cart-line-rm { background: none; border: 0; color: var(--text-9); font-size: 12px; cursor: pointer; text-decoration: underline; font-family: var(--font-body); }
.cart-drawer-foot { border-top: 1px solid var(--border-4); padding: 22px 26px; }
.cart-summary-row { display: flex; justify-content: space-between; color: var(--text-6); font-size: 14px; margin-bottom: 6px; }
.cart-summary-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.cart-summary-total .label { font-family: var(--font-head); font-size: 24px; text-transform: uppercase; font-weight: 700; }
.cart-summary-total .value { font-family: var(--font-head); font-size: 30px; font-weight: 700; }
.cart-note { margin: 12px 0 0; color: var(--text-9); font-size: 12px; line-height: 1.6; }
body.cart-open { overflow: hidden; }
.cart-overlay, .cart-drawer { display: none; }
body.cart-open .cart-overlay { display: block; }
body.cart-open .cart-drawer { display: flex; flex-direction: column; }

/* ---------- cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 100; display: flex; justify-content: center;
}
.cookie-banner[hidden] { display: none; }
.cookie-box {
  max-width: 960px; width: 100%; background: var(--surface); border: 1px solid var(--border-3); border-radius: 16px;
  padding: 26px 28px; box-shadow: 0 24px 60px rgba(0,0,0,0.6); display: grid; grid-template-columns: 1fr auto;
  gap: 26px; align-items: center;
}
.cookie-title { font-family: var(--font-head); font-size: 24px; text-transform: uppercase; font-weight: 700; margin-bottom: 6px; }
.cookie-text { margin: 0; color: var(--text-6); font-size: 14px; line-height: 1.65; }
.cookie-actions { display: flex; flex-direction: column; gap: 10px; min-width: 210px; }
@media (max-width: 700px) {
  .cookie-box { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
}

/* ---------- forms ---------- */
.form-panel { background: var(--surface); border: 1px solid var(--border-2); border-radius: 16px; padding: 30px; display: grid; gap: 14px; }
.field {
  background: var(--surface-4); border: 1px solid var(--border-3); border-radius: 10px; padding: 14px 16px;
  color: var(--text-1); font-size: 15px; width: 100%; font-family: var(--font-body);
}
.field:focus { outline: 2px solid var(--gold); outline-offset: -1px; }
textarea.field { resize: vertical; }
.field-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-row-zip { display: grid; grid-template-columns: 140px 1fr; gap: 14px; }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; color: var(--text-6); font-size: 13px; line-height: 1.6; margin-top: 6px; }
.checkbox-row input { margin-top: 3px; }
.form-error { border: 1px solid var(--err-border); background: var(--err-bg); border-radius: 10px; padding: 12px 14px; color: var(--err-text); font-size: 13.5px; }
.form-success { margin: 0; color: var(--text-5); font-size: 15.5px; line-height: 1.7; }
label.field-label, .field-caption { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-7); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- pills / tags ---------- */
.pill {
  border-radius: 999px; padding: 9px 18px; font-size: 13px; font-weight: 700; cursor: pointer;
  background: transparent; border: 1px solid var(--border-6); color: var(--text-2); font-family: var(--font-body);
  text-decoration: none; display: inline-block;
}
.pill.is-active { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.tag { border: 1px solid var(--border-3); border-radius: 999px; padding: 6px 12px; font-size: 12px; color: var(--text-4); display: inline-block; }

/* ---------- shop / products ---------- */
.product-card { background: var(--surface); border: 1px solid var(--border-2); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; }
.product-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-8); }
.product-name { font-family: var(--font-head); font-size: 23px; text-transform: uppercase; margin: 0; line-height: 1.1; font-weight: 600; }
.product-desc { margin: 0; color: var(--text-7); font-size: 13px; line-height: 1.55; flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.product-price { font-family: var(--font-head); font-size: 26px; font-weight: 700; }
.btn-add { background: var(--gold); color: var(--bg); border: 0; border-radius: 999px; padding: 10px 16px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: var(--font-body); }
.btn-add:hover { background: var(--gold-hover); }

/* ---------- services (long list) ---------- */
.service-row {
  background: var(--surface); border: 1px solid var(--border-2); border-radius: 16px; padding: 30px;
  display: grid; grid-template-columns: 220px 1fr 200px; gap: 28px; align-items: start;
}
.service-row-price { border-left: 1px solid var(--border-4); padding-left: 24px; }
.service-row-price .amount { font-family: var(--font-head); font-size: 34px; font-weight: 700; line-height: 1; margin-bottom: 12px; }
.service-row-price .time { font-size: 13px; color: var(--text-7); margin-bottom: 18px; }

/* ---------- price list ---------- */
.price-group h2 { border-bottom: 1px solid var(--border-2); padding-bottom: 12px; font-size: 34px; margin: 0 0 14px; }
.price-row {
  display: grid; grid-template-columns: 1fr 130px 130px; gap: 16px; padding: 16px 18px;
  background: var(--surface); border: 1px solid var(--border-5); border-radius: 10px; align-items: center;
}
.price-row-name { font-size: 15.5px; font-weight: 600; }
.price-row-note { font-size: 13px; color: var(--text-8); }
.price-row-net { font-family: var(--font-mono); font-size: 14px; color: var(--text-6); text-align: right; }
.price-row-gross { font-family: var(--font-mono); font-size: 14px; color: var(--gold); text-align: right; }

/* ---------- coatings / ppf tiers ---------- */
.tier-card { background: var(--surface); border: 1px solid var(--border-2); border-radius: 16px; padding: 30px; display: flex; flex-direction: column; gap: 10px; }
.tier-name { font-size: 32px; margin: 0; }
.tier-price { font-family: var(--font-head); font-size: 30px; color: var(--text-1); font-weight: 600; }
.tier-list { margin: 8px 0 0; padding-left: 18px; color: var(--text-6); font-size: 14.5px; line-height: 1.85; }
.ppf-row {
  background: var(--surface); border: 1px solid var(--border-2); border-radius: 14px; padding: 26px 30px;
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between;
}
.ppf-row-name { font-size: 28px; margin: 0 0 6px; }
.ppf-row-desc { margin: 0; color: var(--text-6); font-size: 14.5px; line-height: 1.65; max-width: 640px; }
.ppf-row-price { font-family: var(--font-head); font-size: 30px; color: var(--gold); font-weight: 700; }
.fact-card { border: 1px solid var(--border-2); border-radius: 14px; padding: 26px; background: var(--bg-alt); }
.fact-num { font-family: var(--font-head); font-size: 30px; margin-bottom: 6px; }
.fact-desc { margin: 0; color: var(--text-6); font-size: 14px; line-height: 1.6; }

/* ---------- gallery / blog / team ---------- */
.gallery-card { border: 1px solid var(--border-2); border-radius: 14px; overflow: hidden; background: var(--surface); }
.gallery-body { padding: 18px 20px; }
.gallery-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.gallery-work { font-size: 13px; color: var(--text-7); }

.post-card { background: var(--surface); border: 1px solid var(--border-2); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; }
.post-card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-meta { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-8); }
.post-title { font-size: 26px; margin: 0; line-height: 1.1; }
.post-lead { margin: 0; color: var(--text-6); font-size: 14px; line-height: 1.6; flex: 1; }

.team-card { background: var(--surface); border: 1px solid var(--border-2); border-radius: 16px; overflow: hidden; }
.team-body { padding: 22px; }
.team-name { font-family: var(--font-head); font-size: 26px; text-transform: uppercase; font-weight: 700; }
.team-role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin: 4px 0 10px; }
.team-bio { margin: 0; color: var(--text-6); font-size: 14px; line-height: 1.6; }

/* ---------- legal pages ---------- */
.legal-date { font-family: var(--font-mono); font-size: 12px; color: var(--text-8); margin: 0 0 34px; }
.legal-para { color: var(--text-5); font-size: 15.5px; line-height: 1.8; margin: 0 0 14px; }
.legal-table-row { display: flex; justify-content: space-between; gap: 16px; padding: 16px 18px; background: var(--surface); border: 1px solid var(--border-5); border-radius: 10px; }
.legal-table-row .name { font-size: 15.5px; font-weight: 600; }
.legal-table-row .time { font-size: 13px; color: var(--text-8); }
.legal-table-row .price { font-family: var(--font-mono); color: var(--gold); font-size: 15px; white-space: nowrap; }
.cookie-table-head {
  display: grid; grid-template-columns: 1.1fr 1fr 0.7fr; gap: 14px; padding: 12px 16px; font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-8); border-bottom: 1px solid var(--border-2);
}
.cookie-table-row {
  display: grid; grid-template-columns: 1.1fr 1fr 0.7fr; gap: 14px; padding: 14px 16px; background: var(--surface);
  border: 1px solid var(--border-5); border-radius: 10px; font-size: 14px; color: var(--text-4);
}
.cookie-table-row .code { font-family: var(--font-mono); font-size: 13px; color: var(--text-1); }

/* ---------- company data ---------- */
.company-box { border: 1px solid var(--border-2); border-radius: 18px; padding: 36px; background: var(--bg-alt); }
.company-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; color: var(--text-4); font-size: 15px; line-height: 1.7; }

/* ---------- checkout summary ---------- */
.summary-box { background: var(--bg-alt); border: 1px solid var(--border-2); border-radius: 16px; padding: 28px; }
.summary-line { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border-5); font-size: 14px; }
.summary-line .name { color: var(--text-2); }
.summary-line .val { font-family: var(--font-mono); }
.summary-total { display: flex; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border-3); font-family: var(--font-head); font-size: 30px; font-weight: 700; }

/* ---------- misc ---------- */
.utility-strip { border: 1px solid var(--border-2); border-radius: 14px; padding: 24px; background: var(--bg-alt); }
.utility-strip h3 { font-size: 24px; margin: 0 0 8px; }
.utility-strip p { margin: 0; color: var(--text-6); font-size: 14px; line-height: 1.6; }
.split-panel { border: 1px solid var(--border-3); border-radius: 18px; padding: 36px; background: var(--bg-alt); display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.split-panel h3 { font-size: 34px; margin: 0 0 6px; }
.split-panel p { margin: 0; color: var(--text-5); font-size: 15.5px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--gold); color: var(--bg); padding: 12px 18px;
  border-radius: 0 0 10px 0; z-index: 200; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .h-hero { font-size: 56px; }
  .h-page { font-size: 48px; }
  .h-section { font-size: 40px; }
  .cta-band { grid-template-columns: 1fr; padding: 40px 28px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .service-row-price { border-left: 0; padding-left: 0; border-top: 1px solid var(--border-4); padding-top: 18px; }
  .price-row { grid-template-columns: 1fr; text-align: left; gap: 4px; }
  .price-row-net, .price-row-gross { text-align: left; }
  .company-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .h-hero { font-size: 42px; }
  .h-page { font-size: 38px; }
  .h-section { font-size: 32px; }
  .field-row-2, .field-row-zip { grid-template-columns: 1fr; }
  main.page { padding-top: 40px; padding-bottom: 60px; }
  .section { padding: 56px 0; }
  .hero-inner { padding: 56px 20px 56px; }
  .hero-badge { position: static; margin-top: 16px; max-width: none; }
}
