:root {
  --bg: oklch(0.16 0.004 60);
  --bg-2: oklch(0.19 0.004 60);
  --bg-3: oklch(0.22 0.004 60);
  --line: oklch(0.27 0.005 60);
  --text: oklch(0.985 0.005 80);
  --muted: oklch(0.72 0.005 60);
  --muted-2: oklch(0.58 0.005 60);
  --accent: #fb4400;
  --accent-2: #b22300;
  --yellow: #ffd400;
  --yellow-bright: #ffff00;
  --green: #1aa758;
  --radius: 14px;
  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', 'Inter', sans-serif; line-height: 1.15; letter-spacing: -0.02em; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(21, 21, 21, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .25s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px; letter-spacing: -0.02em;
  color: #fff;
}
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(251,68,0,0.35);
}
.logo-mark svg { width: 22px; height: 22px; color: #fff; }
.logo b { color: var(--yellow); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 15.5px; font-weight: 500; color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { color: var(--accent); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600 !important; font-size: 15.5px;
  transition: transform .2s, background .2s, box-shadow .2s;
}
.nav-cta:hover { background: #ff5519; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(251,68,0,0.4); }
.menu-toggle { display: none; background: none; border: 0; color: #fff; cursor: pointer; padding: 8px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600; font-size: 16.5px;
  transition: all .2s ease;
  cursor: pointer; border: 0;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(251,68,0,0.3);
}
.btn-primary:hover { background: #ff5519; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(251,68,0,0.45); }
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }

/* ===== SECTION HEADER ===== */
section { padding: 100px 0; }
.section-eyebrow {
  color: var(--accent);
  font-size: 14.5px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 800;
  max-width: 720px;
  margin-bottom: 18px;
}
.section-sub {
  color: var(--muted);
  font-size: 18px;
  max-width: 640px;
}

/* ===== HERO (homepage) ===== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(251,68,0,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(178,35,0,0.15) 0%, transparent 50%),
    var(--bg);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(251,68,0,0.1);
  border: 1px solid rgba(251,68,0,0.25);
  color: var(--accent);
  border-radius: 999px;
  font-size: 14.5px; font-weight: 600;
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(251,68,0,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(251,68,0,0.2); }
  50% { box-shadow: 0 0 0 7px rgba(251,68,0,0.05); }
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 24px;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 18px; color: var(--muted);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px; font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}
.stat .lbl { font-size: 14.5px; color: var(--muted); margin-top: 6px; }

/* ===== HERO SLIDER (homepage) ===== */
.hero-slider {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.slides {
  position: absolute; inset: 0;
}
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active { opacity: 1; }
.slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
}
.slider-dots {
  position: absolute; bottom: 18px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 2;
}
.slider-dots button {
  width: 28px; height: 4px;
  border-radius: 2px;
  border: 0;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background .2s;
}
.slider-dots button.active { background: var(--accent); width: 36px; }
.slider-badge {
  position: absolute; top: 18px; left: 18px;
  background: rgba(21,21,21,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 2;
}
.slider-badge .yellow-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  margin-right: 6px;
  vertical-align: middle;
}

/* ===== PAGE HEADER (subpages) ===== */
.page-header {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(251,68,0,0.18) 0%, transparent 60%),
    var(--bg);
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}
.breadcrumbs {
  display: flex; gap: 8px; align-items: center;
  font-size: 14.5px; color: var(--muted);
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.breadcrumbs a:hover { color: var(--text); }
.breadcrumbs span.sep { opacity: 0.5; }
.page-header h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  position: relative; z-index: 1;
  max-width: 800px;
  margin-bottom: 20px;
}
.page-header h1 .accent { color: var(--accent); }
.page-header p.intro {
  color: var(--muted);
  font-size: 18px;
  max-width: 720px;
  position: relative; z-index: 1;
}

/* ===== SERVICE CARDS GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.service-card {
  position: relative;
  padding: 32px;
  background: linear-gradient(180deg, var(--bg-3) 0%, #1a1a1a 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(251,68,0,0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(251,68,0,0.3); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  background: linear-gradient(180deg, rgba(251,68,0,0.12) 0%, rgba(178,35,0,0.05) 100%);
  border-color: rgba(251,68,0,0.3);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: rgba(251,68,0,0.12);
  border: 1px solid rgba(251,68,0,0.25);
  display: grid; place-items: center;
  margin-bottom: 22px;
  color: var(--accent);
  position: relative; z-index: 1;
}
.service-icon img { width: 36px; height: 36px; object-fit: contain; filter: brightness(1.1); }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-size: 20px; font-weight: 700;
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.service-card p {
  color: var(--muted);
  font-size: 16.5px;
  margin-bottom: 18px;
  position: relative; z-index: 1;
  flex-grow: 1;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent);
  font-weight: 600; font-size: 15.5px;
  position: relative; z-index: 1;
  transition: gap .2s;
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 14px; height: 14px; }

/* ===== ABOUT (homepage) ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p { color: var(--muted); margin-bottom: 18px; font-size: 17px; }
.about-text strong { color: var(--text); }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.feature {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.feature-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(251,68,0,0.15);
  color: var(--accent);
  display: grid; place-items: center;
}
.feature-icon svg { width: 16px; height: 16px; }
.feature-text strong { display: block; font-size: 15.5px; margin-bottom: 2px; }
.feature-text span { font-size: 14.5px; color: var(--muted); }

.about-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(251,68,0,0.18) 0%, rgba(0,0,0,0.4) 100%);
}
.about-image-tag {
  position: absolute; bottom: 24px; left: 24px;
  z-index: 1;
  background: rgba(21,21,21,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 15.5px; font-weight: 600;
}
.about-image-tag .accent { color: var(--yellow); }

/* ===== INFO TABLES (sub-services list on homepage) ===== */
.info-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 80px;
}
.info-block {
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.info-block h3 {
  font-size: 22px;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.info-block h3 .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.info-block p { color: var(--muted); margin-bottom: 12px; font-size: 16.5px; }
.info-block .links { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-top: 12px; }
.info-block .links li a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: var(--bg-3);
  border-radius: 10px;
  color: var(--text);
  font-size: 15.5px; font-weight: 500;
  transition: background .2s, color .2s;
  border: 1px solid transparent;
}
.info-block .links li a:hover {
  background: rgba(251,68,0,0.08);
  border-color: rgba(251,68,0,0.25);
  color: var(--accent);
}
.info-block .links li a::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== PRICE TABLE ===== */
.price-table {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}
.price-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .3s, transform .3s;
}
.price-card:hover { border-color: rgba(251,68,0,0.3); transform: translateY(-2px); }
.price-card.featured {
  background: linear-gradient(180deg, rgba(251,68,0,0.1) 0%, rgba(28,28,28,0.4) 100%);
  border-color: rgba(251,68,0,0.35);
}
.price-card .pc-num {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(251,68,0,0.12);
  border: 1px solid rgba(251,68,0,0.3);
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.price-card .pc-body { min-width: 0; }
.price-card .pc-tag {
  display: inline-block;
  font-size: 14px; font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.price-card .pc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--yellow);
  margin-bottom: 12px;
}
.price-card .pc-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
}
.price-card .pc-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 16px; color: var(--muted);
}
.price-card .pc-list li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(251,68,0,0.15);
  flex-shrink: 0;
  margin-top: 4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fb4400' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.price-card .pc-list li.note {
  color: var(--accent);
  font-weight: 500;
}
.price-card .pc-list li.note::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fb4400' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><line x1='12' y1='16' x2='12' y2='12'/><line x1='12' y1='8' x2='12.01' y2='8'/></svg>");
}
.price-card .pc-price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--text);
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
}
.price-card .pc-price small {
  display: block;
  font-size: 14px; font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Compact pricing (used on diagnostika & 3D) */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 16px;
  transition: border-color .2s;
}
.price-row:hover { border-color: rgba(251,68,0,0.3); }
.price-row .label { color: var(--text); }
.price-row .val {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
}
.price-section-title {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--yellow);
  font-size: 18px;
  font-weight: 700;
  margin: 18px 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-section-title::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--accent);
}

/* ===== TWO COLUMN CONTENT (subpages) ===== */
.content-cols {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: flex-start;
}
.content-cols .left img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 18px;
  border: 1px solid var(--line);
}
.content-cols .left p { color: var(--muted); font-size: 17px; margin-bottom: 16px; }
.content-cols .left h2 { font-size: 28px; margin-bottom: 18px; }
.content-cols .left h3 { font-size: 22px; margin: 24px 0 12px; }

/* ===== FAQ ===== */
.faq {
  margin-top: 40px;
  display: grid;
  gap: 12px;
}
.faq details {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq details[open] { border-color: rgba(251,68,0,0.3); }
.faq summary {
  cursor: pointer;
  padding: 22px 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 18px;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body {
  padding: 0 28px 24px;
  color: var(--muted);
  font-size: 15.5px;
}
.faq .faq-body p { margin-bottom: 12px; }
.faq .faq-body ul { padding-left: 20px; }
.faq .faq-body li { margin-bottom: 6px; }

/* ===== GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .3s, border-color .3s;
}
.gallery img:hover { transform: scale(1.02); border-color: rgba(251,68,0,0.4); }

/* ===== ALERT / PROMO BAND ===== */
.promo-band {
  margin-top: 56px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(251,68,0,0.18) 0%, rgba(178,35,0,0.1) 100%);
  border: 1px solid rgba(251,68,0,0.3);
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.promo-band .promo-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--accent);
  display: grid; place-items: center;
}
.promo-band .promo-icon svg { width: 28px; height: 28px; color: #fff; }
.promo-band .promo-text { flex: 1; min-width: 240px; }
.promo-band .promo-text strong {
  display: block;
  color: var(--yellow);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  margin-bottom: 4px;
}
.promo-band .promo-text span { color: var(--muted); font-size: 16.5px; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-top: 56px;
  align-items: stretch;
}
.contact-info {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  display: flex; flex-direction: column; gap: 20px;
}
.contact-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-of-type { border: 0; }
.contact-row .ci {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(251,68,0,0.12);
  color: var(--accent);
  display: grid; place-items: center;
}
.contact-row .ci svg { width: 20px; height: 20px; }
.contact-row strong { display: block; font-size: 14.5px; color: var(--muted); margin-bottom: 4px; font-weight: 500; }
.contact-row a, .contact-row span.val {
  font-size: 18px; font-weight: 600; color: var(--text);
  transition: color .2s;
}
.contact-row a:hover { color: var(--accent); }
.contact-cta {
  margin-top: auto;
  padding: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 12px;
  text-align: center;
  color: #fff !important;
}
.contact-cta strong { display: block; font-size: 16.5px; margin-bottom: 4px; }
.contact-cta span { font-size: 14.5px; opacity: 0.9; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 480px;
  position: relative;
  background: var(--bg-2);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 480px; border: 0; filter: invert(0.92) hue-rotate(180deg) saturate(0.4); }

/* ===== FOOTER ===== */
footer {
  padding: 60px 0 30px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h5 {
  font-size: 14.5px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 16px; font-weight: 600;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { color: var(--muted); font-size: 15.5px; transition: color .2s; }
.footer-grid a:hover { color: var(--text); }
.footer-tagline { color: var(--muted); font-size: 15.5px; margin-top: 12px; max-width: 320px; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  color: var(--muted); font-size: 14.5px;
}

/* ===== PROCESS ===== */
.process { background: var(--bg-2); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 24px 24px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: -16px; left: 24px;
  background: var(--accent);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(251,68,0,0.4);
}
.step h4 { font-size: 18px; margin: 12px 0 8px; }
.step p { color: var(--muted); font-size: 15.5px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .hero { padding: 120px 0 60px; }
  .hero-grid, .about-grid, .contact-grid, .content-cols, .info-blocks { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .about-features { grid-template-columns: 1fr; }
  .price-card { grid-template-columns: auto 1fr; }
  .price-card .pc-price { grid-column: 1 / -1; text-align: left; padding-top: 8px; border-top: 1px dashed var(--line); margin-top: 8px; }
  section { padding: 70px 0; }
}
@media (max-width: 540px) {
  .process-grid, .footer-grid, .price-grid, .gallery { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }
