/* ============================================================
   CarService PointG — Premium Edition
   v2026.05.18 — Inspired by Mercedes-Benz / BMW / Audi service
   ============================================================
   Design system:
   - Single typeface (Manrope) — light weights for display
   - Anthracite base + platinum silver + red CTA accent
   - Generous whitespace (140px+ sections)
   - Hairline 1px dividers, no heavy borders
   - Subtle interactions (1.02 scale, 400ms ease-out)
   ============================================================ */

:root {
  --bg: #0c0c0e;
  --bg-surface: #131318;
  --bg-card: #1a1a20;
  --bg-elevated: #22222a;

  --text: #f5f5f7;
  --text-secondary: #b4b4be;
  --text-muted: #7a7a86;
  --text-faint: #4a4a55;

  --silver: #d4d6db;
  --silver-soft: rgba(212, 214, 219, 0.65);
  --silver-faint: rgba(212, 214, 219, 0.18);

  --accent: #e84545;
  --accent-hover: #ff5e5e;
  --accent-deep: #b02b2b;
  --accent-faint: rgba(232, 69, 69, 0.08);

  --viber: #7360F2;
  --whatsapp: #25D366;

  --line-faint: rgba(255, 255, 255, 0.04);
  --line-subtle: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);

  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1320px;
  --container-tight: 1080px;
  --gutter: 32px;
  --section-y: clamp(80px, 12vw, 160px);

  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.65);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 30% 0%, rgba(232, 69, 69, 0.05), transparent 60%),
    radial-gradient(ellipse at 85% 100%, rgba(60, 60, 80, 0.08), transparent 70%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}

h1, h2, h3, h4, h5 {
  margin: 0 0 16px;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-family: var(--font);
}
h1 { font-size: clamp(40px, 6vw, 88px); font-weight: 300; }
h2 { font-size: clamp(32px, 4vw, 56px); font-weight: 300; line-height: 1.08; }
h3 { font-size: clamp(20px, 1.8vw, 26px); font-weight: 500; line-height: 1.2; letter-spacing: -0.01em; }
h4 { font-size: 14px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

p { margin: 0 0 16px; color: var(--text-secondary); line-height: 1.7; }
strong { color: var(--text); font-weight: 600; }
a { color: var(--text); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--silver); }
img, picture { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-tight { width: 100%; max-width: var(--container-tight); margin: 0 auto; padding: 0 var(--gutter); }

/* EYEBROW & SECTIONS */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--silver-soft); display: inline-block; }
.eyebrow.is-accent { color: var(--accent); }
.eyebrow.is-accent::before { background: var(--accent); }

.section { padding: var(--section-y) 0; position: relative; }
.section-dark { background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%); }
.section-head { max-width: 720px; margin-bottom: 80px; }
.section-head.is-centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 400;
  max-width: 620px;
  margin-top: 20px;
}
.section-head.is-centered .section-lead { margin-left: auto; margin-right: auto; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--r-sm);
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  transition: all .3s var(--ease);
  position: relative;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-large { padding: 20px 36px; font-size: 15px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232, 69, 69, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--silver);
  color: var(--silver);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 14, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line-faint);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 14px; color: var(--text); text-decoration: none; }
.brand-logo { width: 44px; height: 44px; filter: drop-shadow(0 2px 6px rgba(232, 69, 69, 0.25)); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; color: var(--text); }
.brand-accent { font-style: normal; color: var(--accent); margin-left: 1px; }
.brand-suffix { font-weight: 500; color: var(--text-secondary); margin-left: 6px; }
.brand-sub {
  font-style: normal;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: 18px;
}

.site-nav { display: flex; align-items: center; gap: 36px; }
.site-nav > a {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color .2s var(--ease);
  position: relative;
}
.site-nav > a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .3s var(--ease);
}
.site-nav > a:hover { color: var(--text); }
.site-nav > a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: transparent;
  color: var(--text) !important;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all .2s var(--ease);
  text-transform: none !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent); border-color: var(--accent); color: #fff !important; }
.nav-cta svg { width: 14px; height: 14px; }

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: flex-end;
  padding: 0 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(95deg, rgba(12, 12, 14, 0.92) 0%, rgba(12, 12, 14, 0.7) 38%, rgba(12, 12, 14, 0.3) 65%, rgba(12, 12, 14, 0.55) 100%),
    image-set(
      url('/images/hero-vito-1920.webp') type('image/webp') 1x,
      url('/images/hero-vito.jpg') type('image/jpeg') 1x
    );
  background-size: cover;
  background-position: center 35%;
}
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, var(--bg) 100%); }
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 32px;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--silver); }
.hero-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #88c97a;
  border-radius: 50%;
  box-shadow: 0 0 10px #88c97a;
  margin-right: 8px;
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
  font-size: clamp(44px, 6.5vw, 96px);
  font-weight: 300;
  line-height: 0.98;
  margin: 0 0 32px;
  max-width: 920px;
  letter-spacing: -0.03em;
}
.hero-title em { font-style: italic; font-weight: 200; color: var(--silver); }
.hero-subtitle {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-messengers {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line-faint);
}
.hero-messengers-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-right: 8px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--line-faint);
  justify-content: start;
}
.trust-num {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 200;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.04em;
}
.trust-label { font-size: 11px; color: var(--text-muted); margin-top: 12px; letter-spacing: 0.16em; text-transform: uppercase; }

/* MESSENGERS */
.messenger-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all .25s var(--ease);
}
.messenger-btn svg { width: 18px; height: 18px; }
.messenger-btn.messenger-viber:hover { background: var(--viber); border-color: var(--viber); color: #fff; }
.messenger-btn.messenger-whatsapp:hover { background: var(--whatsapp); border-color: var(--whatsapp); color: #fff; }

.messenger-btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  transition: all .25s var(--ease);
  text-decoration: none;
}
.messenger-btn-small svg { width: 20px; height: 20px; }
.messenger-btn-small.messenger-viber:hover { background: var(--viber); border-color: var(--viber); color: #fff; }
.messenger-btn-small.messenger-whatsapp:hover { background: var(--whatsapp); border-color: var(--whatsapp); color: #fff; }
.messenger-btn-small.messenger-form:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* BRANDS SECTION */
.brands-section {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
  background: var(--bg-surface);
}
.brands-grid { text-align: center; }
.brands-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 0;
  margin-top: 56px;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 200;
  letter-spacing: -0.01em;
  color: var(--silver);
  line-height: 1.4;
}
.brands-list span { padding: 0 24px; }
.brands-list span:not(:last-child) { border-right: 1px solid var(--line); }
.brands-models {
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  line-height: 1.9;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1px;
  background: var(--line-faint);
  border: 1px solid var(--line-faint);
  border-radius: var(--r-md);
  overflow: hidden;
}
.service-card {
  position: relative;
  padding: 48px 40px;
  background: var(--bg);
  border: none;
  border-radius: 0;
  text-align: left;
  cursor: pointer;
  color: var(--text);
  font-family: inherit;
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: background .3s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.service-card:hover { background: var(--bg-card); }
.service-card:hover::before { opacity: 1; }
.service-card-featured { background: linear-gradient(180deg, var(--bg) 0%, var(--accent-faint) 100%); }
.service-card-featured:hover { background: linear-gradient(180deg, var(--bg-card) 0%, var(--accent-faint) 100%); }

.service-num {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.service-badge {
  display: inline-block;
  position: absolute;
  top: 36px;
  right: 36px;
  padding: 4px 10px;
  background: var(--accent-faint);
  border: 1px solid rgba(232, 69, 69, 0.3);
  border-radius: 100px;
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: all .3s var(--ease);
}
.service-card:hover .service-icon { border-color: var(--accent); color: var(--accent); }
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 24px; font-weight: 400; margin-bottom: 16px; letter-spacing: -0.01em; }
.service-card p { font-size: 14.5px; color: var(--text-secondary); margin-bottom: 28px; flex-grow: 1; line-height: 1.7; }
.service-card p strong { color: var(--silver); font-weight: 500; }
.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line-faint);
  transition: gap .25s var(--ease), color .2s var(--ease);
}
.service-card-cta::after { content: '→'; font-size: 14px; transition: transform .25s var(--ease); }
.service-card:hover .service-card-cta { color: var(--accent); gap: 14px; }
.service-card:hover .service-card-cta::after { transform: translateX(4px); }

/* STATS */
.stats-section {
  padding: var(--section-y) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; }
.stat-item { padding: 32px; text-align: center; border-left: 1px solid var(--line-faint); }
.stat-item:first-child { border-left: none; }
.stat-num { font-size: clamp(48px, 6vw, 84px); font-weight: 200; color: var(--text); letter-spacing: -0.04em; line-height: 1; }
.stat-num small { font-size: 0.5em; color: var(--silver); vertical-align: top; margin-left: 2px; font-weight: 300; }
.stat-label { margin-top: 16px; font-size: 12px; color: var(--text-muted); letter-spacing: 0.16em; text-transform: uppercase; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { margin-bottom: 32px; }
.about-text p { font-size: 16px; line-height: 1.75; margin-bottom: 20px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line-faint);
}
.about-feature { display: flex; flex-direction: column; gap: 12px; }
.about-feature-icon {
  font-size: 22px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--silver);
  margin-bottom: 4px;
}
.about-feature strong { display: block; font-size: 15px; color: var(--text); font-weight: 500; margin-bottom: 4px; letter-spacing: -0.005em; }
.about-feature p { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.6; }

.about-image { position: relative; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line-faint); }
.about-image img { width: 100%; height: auto; display: block; transition: transform .8s var(--ease); }
.about-image:hover img { transform: scale(1.03); }
.about-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
  font-size: 12px;
  color: var(--silver);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* WORKSHOP */
.workshop-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; height: 720px; }
.workshop-tile {
  position: relative;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line-faint);
  background: var(--bg-card);
  cursor: pointer;
  transition: transform .5s var(--ease), border-color .3s var(--ease);
}
.workshop-tile-large { grid-column: 1; grid-row: 1 / 3; }
.workshop-tile picture, .workshop-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease); }
.workshop-tile:hover { border-color: var(--silver-faint); }
.workshop-tile:hover img { transform: scale(1.06); }
.workshop-tile figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
  font-size: 12px;
  color: var(--text);
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* PROCESS */
.process-list { list-style: none; padding: 0; margin: 0; max-width: 920px; position: relative; }
.process-list::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--line) 50%, var(--line-faint) 100%);
}
.process-step { display: grid; grid-template-columns: 80px 1fr; gap: 48px; padding: 28px 0; position: relative; }
.process-step:not(:last-child) { border-bottom: 1px solid var(--line-faint); }
.process-num {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.2em;
  background: var(--bg);
  z-index: 2;
  position: relative;
  padding-top: 4px;
}
.process-num::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 8px;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--bg);
}
.process-body h3 { font-size: 22px; font-weight: 400; margin-bottom: 12px; letter-spacing: -0.01em; }
.process-body p { font-size: 15px; color: var(--text-secondary); margin: 0; line-height: 1.7; }

/* CONTACTS */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-faint);
  border: 1px solid var(--line-faint);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 32px;
}
.contact-card { padding: 40px 32px; background: var(--bg); text-align: center; transition: background .3s var(--ease); }
.contact-card:hover { background: var(--bg-card); }
.contact-card-featured { background: linear-gradient(180deg, var(--bg) 0%, var(--accent-faint) 100%); }
.contact-icon { font-size: 24px; margin-bottom: 20px; opacity: 0.85; }
.contact-label { font-size: 10px; color: var(--text-muted); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; }
.contact-value { color: var(--text); font-size: 15px; line-height: 1.65; font-weight: 400; }
.contact-value strong { font-weight: 500; }
.contact-phone {
  font-size: 28px;
  font-weight: 300;
  color: var(--text);
  display: block;
  margin: 4px 0 8px;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color .2s var(--ease);
}
.contact-phone:hover { color: var(--accent); }
.contact-email { display: block; font-size: 13px; color: var(--text-secondary); text-decoration: none; margin-bottom: 24px; word-break: break-all; letter-spacing: 0.02em; }
.contact-email:hover { color: var(--silver); }
.contact-messengers { display: flex; justify-content: center; gap: 10px; }

.map-wrapper { position: relative; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line-faint); }
.map-wrapper iframe { display: block; filter: invert(0.9) hue-rotate(180deg) brightness(0.95); }
.map-link { display: inline-block; margin-top: 16px; font-size: 12px; color: var(--silver); letter-spacing: 0.04em; text-decoration: none; }
.map-link:hover { color: var(--accent); }

/* FAQ */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line-faint); padding: 0; transition: border-color .2s var(--ease); }
.faq-item:last-child { border-bottom: none; }
.faq-item[open] { border-bottom-color: var(--line); }
.faq-item summary {
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 28px 56px 28px 0;
  letter-spacing: -0.005em;
  transition: color .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--silver);
  transition: transform .3s var(--ease);
}
.faq-item summary::before {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--silver);
  transform: rotate(90deg);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq-item[open] summary::before { transform: rotate(0deg); opacity: 0; }
.faq-item p { margin: 0 0 32px; padding-right: 56px; font-size: 15px; line-height: 1.75; color: var(--text-secondary); }

/* CTA BAND */
.cta-band {
  padding: clamp(80px, 10vw, 140px) 0;
  background:
    radial-gradient(ellipse at center, rgba(232, 69, 69, 0.1) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg-surface) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
  text-align: center;
}
.cta-inner h2 { font-size: clamp(32px, 4vw, 56px); margin-bottom: 20px; }
.cta-inner p { font-size: 17px; margin-bottom: 48px; color: var(--text-secondary); max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.site-footer { background: var(--bg-surface); border-top: 1px solid var(--line-faint); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.footer-brand .brand { margin-bottom: 20px; }
.footer-tagline { font-size: 14px; color: var(--text-muted); margin: 0 0 24px; max-width: 320px; line-height: 1.7; }
.footer-messengers { display: flex; gap: 10px; }
.footer-col h4 { font-size: 11px; font-weight: 600; color: var(--text); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 24px; }
.footer-col a, .footer-col span, .footer-link-btn {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  background: transparent;
  border: none;
  padding: 0;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  transition: color .2s var(--ease);
  text-decoration: none;
  width: 100%;
}
.footer-col a:hover, .footer-link-btn:hover { color: var(--silver); }
.footer-hours { color: var(--text-secondary); cursor: default; }
.footer-bottom { border-top: 1px solid var(--line-faint); padding: 28px 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.02em;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* FLOATING */
.floating-actions { position: fixed; bottom: 32px; right: 32px; display: flex; flex-direction: column; gap: 12px; z-index: 90; }
.floating-btn { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; color: #fff; transition: transform .25s var(--ease); }
.floating-btn svg { width: 24px; height: 24px; }
.floating-btn.floating-viber { background: var(--viber); box-shadow: 0 10px 30px rgba(115, 96, 242, 0.4); }
.floating-btn.floating-whatsapp { background: var(--whatsapp); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
.floating-btn.floating-call {
  background: var(--accent);
  box-shadow: 0 10px 30px rgba(232, 69, 69, 0.45);
  animation: callPulse 2.4s var(--ease) infinite;
}
.floating-btn:hover { transform: scale(1.1); }
@keyframes callPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(232, 69, 69, 0.45), 0 0 0 0 rgba(232, 69, 69, 0.5); }
  50% { box-shadow: 0 10px 30px rgba(232, 69, 69, 0.45), 0 0 0 14px rgba(232, 69, 69, 0); }
}

/* MODALS */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.modal.is-open { visibility: visible; opacity: 1; }
.modal-overlay { position: absolute; inset: 0; background: rgba(8, 8, 10, 0.86); backdrop-filter: blur(10px); cursor: pointer; }
.modal-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 880px;
  max-height: calc(100vh - 40px);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform .35s var(--ease);
}
.modal.is-open .modal-dialog { transform: translateY(0); }
.modal-dialog-form { max-width: 600px; }

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: all .25s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 3;
}
.modal-close:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: rotate(90deg); }

.modal-header { padding: 48px 48px 32px; border-bottom: 1px solid var(--line-faint); }
.modal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.modal-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--accent); }
.modal-header h3 { font-size: clamp(24px, 3vw, 34px); font-weight: 300; margin: 0 0 12px; letter-spacing: -0.02em; line-height: 1.15; }
.modal-header p { margin: 0; font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

.modal-body {
  padding: 32px 48px;
  overflow-y: auto;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  align-content: start;
}

.works-group h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-faint);
}
.works-list { list-style: none; padding: 0; margin: 0; }
.works-list li { position: relative; padding: 8px 0 8px 22px; font-size: 14px; color: var(--text-secondary); line-height: 1.55; }
.works-list li::before { content: ''; position: absolute; left: 0; top: 16px; width: 8px; height: 1px; background: var(--silver-soft); }

.modal-footer { padding: 28px 48px 36px; border-top: 1px solid var(--line-faint); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.modal-note { margin: 0; font-size: 13px; color: var(--text-muted); line-height: 1.55; }
.modal-note strong { color: var(--silver); font-weight: 500; }

/* FORM */
.contact-form { padding: 32px 48px 40px; overflow-y: auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.form-field { display: block; margin-bottom: 20px; }
.form-label { display: block; font-size: 10px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 10px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  transition: all .2s var(--ease);
  resize: vertical;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 69, 69, 0.12);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-faint); }
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b4b4be' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.contact-form select option { background: var(--bg-card); color: var(--text); }

.form-consent { margin: 20px 0 16px; }
.form-check { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--text-secondary); line-height: 1.55; cursor: pointer; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--accent); flex-shrink: 0; }
.form-check a { color: var(--silver); text-decoration: underline; }

.form-status { font-size: 13px; padding: 12px 16px; border-radius: var(--r-sm); margin: 12px 0; display: none; letter-spacing: 0.01em; }
.form-status.is-success { display: block; background: rgba(136, 201, 122, 0.1); border: 1px solid rgba(136, 201, 122, 0.25); color: #88c97a; }
.form-status.is-error { display: block; background: rgba(255, 113, 90, 0.1); border: 1px solid rgba(255, 113, 90, 0.25); color: #ff715a; }

.form-actions { margin-top: 12px; }
.form-alt { text-align: center; font-size: 13px; color: var(--text-muted); margin: 20px 0 0; }
.form-alt-link { font-weight: 500; margin: 0 6px; color: var(--silver); }
.form-alt-link:hover { color: var(--accent); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .workshop-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
  .workshop-tile, .workshop-tile-large { grid-column: span 1; grid-row: span 1; aspect-ratio: 16/10; }
  .workshop-tile-large { aspect-ratio: 16/10; grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 880px) {
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-trust { gap: 32px; }
  .trust-num { font-size: 32px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-features { grid-template-columns: 1fr; }

  .contacts-grid { grid-template-columns: 1fr; }

  .service-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-left: none; border-top: 1px solid var(--line-faint); }
  .stat-item:first-child, .stat-item:nth-child(2) { border-top: none; }

  .process-step { grid-template-columns: 1fr; gap: 12px; padding-left: 32px; }
  .process-list::before { left: 4px; }
  .process-num { padding-top: 0; }

  .modal-body { grid-template-columns: 1fr; padding: 24px 28px; gap: 28px; }
  .modal-header { padding: 36px 28px 24px; }
  .modal-footer { padding: 20px 28px 28px; flex-direction: column; align-items: stretch; }
  .modal-footer .btn { width: 100%; }
  .contact-form { padding: 24px 28px 28px; }
  .form-row { grid-template-columns: 1fr; }

  .brands-list { font-size: 22px; }
  .brands-list span { padding: 0 14px; }
}

@media (max-width: 720px) {
  .container, .container-tight { padding: 0 20px; }
  .header-inner { padding: 14px 20px; }
  .brand-suffix, .brand-sub { display: none; }

  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px;
    background: rgba(12, 12, 14, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line-faint);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all .25s var(--ease);
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav > a { padding: 14px 4px; border-bottom: 1px solid var(--line-faint); font-size: 14px; }
  .site-nav > a::after { display: none; }
  .nav-cta { margin-top: 14px; justify-content: center; padding: 14px 20px; font-size: 13px; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-messengers { width: 100%; }
  .messenger-btn { flex: 1; min-width: 0; justify-content: center; }

  .workshop-grid { grid-template-columns: 1fr; }
  .workshop-tile, .workshop-tile-large { grid-column: span 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }

  .service-card { padding: 36px 28px; }

  .floating-actions { bottom: 18px; right: 18px; }
  .floating-btn { width: 50px; height: 50px; }
  .floating-btn svg { width: 22px; height: 22px; }

  .modal { padding: 12px; }
  .modal-dialog { max-height: calc(100vh - 24px); }

  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
