/* ============================================
   RAPID AUTO SERVICE — DESIGN SYSTEM
   Light theme · Red accent #FB1D1D
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F7F7F7;
  --surface-1: #FFFFFF;
  --surface-2: #F2F2F2;
  --surface-3: #EAEAEA;
  --border: rgba(0,0,0,0.07);
  --border-strong: rgba(0,0,0,0.12);
  --text-1: #0B0E11;
  --text-2: rgba(11,14,17,0.54);
  --text-3: rgba(11,14,17,0.30);
  --accent: #FB1D1D;
  --accent-2: #D90E0E;
  --accent-dim: rgba(251,29,29,0.09);
  --accent-border: rgba(251,29,29,0.2);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --section-py: 112px;
  /* Hero stays dark */
  --hero-text: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-1);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  :root { --section-py: 72px; }
}

/* ===== NOISE OVERLAY ===== */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.012;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ===== NAV ===== */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 20px 24px 0;
  pointer-events: none;
}

.nav {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 100px;
  padding: 8px 8px 8px 20px;
  width: 100%;
  max-width: 920px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  transition: all 0.5s var(--ease-spring);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

/* Logo shown as-is — no filter */
.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-1);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  list-style: none;
}

.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-1);
  background: rgba(0,0,0,0.05);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-phone {
  color: var(--text-2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-phone:hover { color: var(--accent); }

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 10px 10px 18px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-spring);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.btn-primary:hover { background: #E01010; transform: scale(1.02); }
.btn-primary:active { transform: scale(0.98); }

.btn-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform 0.4s var(--ease-spring);
  flex-shrink: 0;
}

.btn-primary:hover .btn-icon { transform: translate(2px, -2px) scale(1.12); }

/* Secondary Button */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.04);
  color: var(--text-1);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid var(--border-strong);
  cursor: pointer;
  transition: all 0.4s var(--ease-spring);
}

.btn-secondary:hover { background: rgba(0,0,0,0.08); transform: scale(1.02); }
.btn-secondary:active { transform: scale(0.98); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all 0.4s var(--ease-spring);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-spring);
}

.nav-overlay.open { opacity: 1; pointer-events: all; }

.nav-overlay-links { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.nav-overlay-links li { overflow: hidden; }

.nav-overlay-links a {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 9vw, 64px);
  font-weight: 700;
  color: var(--text-1);
  text-decoration: none;
  letter-spacing: -0.04em;
  transform: translateY(60px);
  opacity: 0;
  transition: all 0.6s var(--ease-spring), color 0.2s;
  text-align: center;
}

.nav-overlay.open .nav-overlay-links a { transform: translateY(0); opacity: 1; }
.nav-overlay-links li:nth-child(1) a { transition-delay: 0.05s; }
.nav-overlay-links li:nth-child(2) a { transition-delay: 0.10s; }
.nav-overlay-links li:nth-child(3) a { transition-delay: 0.15s; }
.nav-overlay-links li:nth-child(4) a { transition-delay: 0.20s; }
.nav-overlay-links a:hover { color: var(--accent); }

.nav-overlay-phone {
  margin-top: 32px;
  font-size: 18px;
  color: var(--text-2);
  text-decoration: none;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease-spring) 0.3s;
}

.nav-overlay.open .nav-overlay-phone { opacity: 1; transform: translateY(0); }

@media (max-width: 840px) {
  .nav-links, .nav-phone, .nav-right .btn-primary { display: none; }
  .hamburger { display: flex; }
  .nav { padding: 10px 10px 10px 20px; }
}

/* ===== EYEBROW ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 22px;
}

.eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(3px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
}

.reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }
.reveal-d6 { transition-delay: 0.48s; }

/* ===== SECTION BASICS ===== */
.section { padding: var(--section-py) 0; }
.section-header { margin-bottom: 56px; }

.section-title {
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 16px;
  color: var(--text-1);
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-2);
  max-width: 460px;
  line-height: 1.75;
}

/* ===== HERO — stays dark with image ===== */
.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 60px;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(11,14,17,0.96) 30%, rgba(11,14,17,0.55) 80%),
    linear-gradient(to top, #0B0E11 0%, transparent 55%);
}

.hero-content { position: relative; z-index: 1; max-width: 740px; }

.hero-title {
  font-size: clamp(44px, 7.5vw, 96px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin-bottom: 28px;
  color: #ffffff;
}

.hero-title em { font-style: normal; color: var(--accent); }

.hero-subtitle {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255,255,255,0.6);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 44px;
}

.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn-primary { font-size: 14px; padding: 13px 13px 13px 22px; }
.hero-actions .btn-primary .btn-icon { width: 30px; height: 30px; font-size: 13px; }

.hero-actions .btn-secondary {
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.hero-actions .btn-secondary:hover {
  background: rgba(255,255,255,0.14);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

@media (max-width: 768px) {
  .hero-scroll-hint { display: none; }
  .hero { padding-bottom: 64px; }
}

/* ===== STATS ===== */
.stats-section {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.stat-item {
  padding: 44px 32px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--text-1);
}

.stat-number .accent { color: var(--accent); }
.stat-label { font-size: 13px; color: var(--text-2); font-weight: 500; }

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 28px 20px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }
}

/* ===== BENTO SERVICES ===== */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 10px; }

.bento-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2px;
  transition: all 0.5s var(--ease-spring);
}

.bento-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(251,29,29,0.08);
}

.bento-card-inner {
  background: var(--surface-2);
  border-radius: calc(var(--radius-lg) - 2px);
  padding: 32px;
  height: 100%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
}

.bento-card-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
}

.bento-7 { grid-column: span 7; }
.bento-5 { grid-column: span 5; }
.bento-4 { grid-column: span 4; }
.bento-8 { grid-column: span 8; }
.bento-12 { grid-column: span 12; }

@media (max-width: 1024px) {
  .bento-7, .bento-5, .bento-8 { grid-column: span 6; }
  .bento-4 { grid-column: span 6; }
}

@media (max-width: 768px) {
  .bento { grid-template-columns: 1fr; gap: 8px; }
  .bento-7, .bento-5, .bento-4, .bento-8, .bento-12 { grid-column: span 1; }
}

.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
  transition: all 0.4s var(--ease-spring);
}

.bento-card:hover .svc-icon { background: var(--accent); border-color: var(--accent); }

.svc-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--text-1);
}

.svc-desc { font-size: 13.5px; color: var(--text-2); line-height: 1.65; }

.svc-list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.svc-list li {
  font-size: 13px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.7;
}

/* ===== ABOUT SPLIT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

.img-bezel {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 8px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}

.img-bezel-inner {
  border-radius: calc(var(--radius-xl) - 8px);
  overflow: hidden;
}

.img-bezel-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease-spring);
}

.img-bezel:hover .img-bezel-inner img { transform: scale(1.04); }

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px 6px 6px;
  margin-top: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.about-badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.about-badge-text { font-size: 13px; font-weight: 600; color: var(--text-1); }

.about-title { font-size: clamp(30px, 4vw, 50px); margin-bottom: 18px; color: var(--text-1); }

.about-body {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 24px;
}

.feature-list { display: flex; flex-direction: column; gap: 18px; }

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

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.feature-text h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px; letter-spacing: -0.01em; color: var(--text-1); }
.feature-text p { font-size: 13px; color: var(--text-2); }

/* ===== ADVANTAGES ===== */
.advantages-section {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

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

.adv-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2px;
  transition: all 0.5s var(--ease-spring);
}

.adv-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(251,29,29,0.07);
}

.adv-card-inner {
  background: var(--surface-2);
  border-radius: calc(var(--radius-lg) - 2px);
  padding: 36px 32px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.adv-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: rgba(251,29,29,0.1);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 20px;
}

.adv-title { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; color: var(--text-1); }
.adv-text { font-size: 14px; color: var(--text-2); line-height: 1.72; }

/* ===== CTA BANNER — dark for contrast ===== */
/* ===== GARANTIE ===== */
.garantie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.garantie-text { max-width: 480px; }
.garantie-slider { position: relative; }
.garantie-slides { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.garantie-slide { width: 100%; height: auto; display: none; border-radius: var(--radius-lg); }
.garantie-slide.active { display: block; }
.garantie-dots { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.garantie-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: background 0.3s var(--ease-spring), width 0.3s var(--ease-spring);
  padding: 0;
}
.garantie-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }
@media (max-width: 768px) {
  .garantie-grid { grid-template-columns: 1fr; gap: 36px; }
  .garantie-text { max-width: 100%; }
}

.cta-card {
  background: #0B0E11;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 4px;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(251,29,29,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-card-inner {
  background: #111417;
  border-radius: calc(var(--radius-xl) - 4px);
  padding: 72px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
  .cta-card-inner { padding: 48px 28px; flex-direction: column; align-items: flex-start; }
}

.cta-title { font-size: clamp(26px, 4vw, 46px); max-width: 480px; letter-spacing: -0.03em; color: #ffffff; }
.cta-sub { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 12px; max-width: 380px; line-height: 1.7; }

.cta-right { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; flex-shrink: 0; }

@media (max-width: 768px) { .cta-right { align-items: flex-start; } }

.cta-phone {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.04em;
  transition: opacity 0.2s;
}

.cta-phone:hover { opacity: 0.8; }

/* ===== FOOTER — dark ===== */
.footer {
  background: #0B0E11;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-grid > div:first-child,
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

/* Footer logo — white version (filter to invert since logo is dark) */
.footer-logo {
  height: 34px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 260px; margin-bottom: 28px; }

.footer-socials { display: flex; gap: 8px; }

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
}

.footer-social:hover { background: var(--accent-dim); border-color: var(--accent-border); transform: translateY(-2px); }

.footer-col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover { color: #ffffff; }

.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-row:last-child { margin-bottom: 0; }
.footer-ci { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

.footer-ct { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.footer-ct a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-ct a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.22); }

.lang-switch { display: flex; gap: 2px; }

.lang-switch a {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 7px;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}

.lang-switch a:hover, .lang-switch a.active {
  color: #ffffff;
  background: rgba(255,255,255,0.08);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: #0B0E11;
  padding-top: 160px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(251,29,29,0.08) 0%, transparent 60%);
}

.page-hero .eyebrow { position: relative; z-index: 1; }

.page-hero-title {
  font-size: clamp(40px, 7vw, 88px);
  letter-spacing: -0.045em;
  line-height: 0.96;
  margin-bottom: 20px;
  max-width: 800px;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.page-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

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

.contact-grid-simple {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
@media (max-width: 768px) { .contact-grid-simple { grid-template-columns: 1fr; } }

.info-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.info-card-inner {
  background: var(--surface-2);
  border-radius: calc(var(--radius-lg) - 2px);
  padding: 40px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:first-child { padding-top: 0; }
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }

.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.ci-label { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-3); margin-bottom: 4px; }

.ci-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-1);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  letter-spacing: -0.01em;
}

a.ci-value:hover { color: var(--accent); }
.ci-sub { font-size: 13px; color: var(--text-2); margin-top: 2px; }

/* Form */
.form-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}

.form-inner {
  background: var(--surface-2);
  border-radius: calc(var(--radius-lg) - 2px);
  padding: 48px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

@media (max-width: 640px) { .form-inner { padding: 28px 20px; } }

.form-title { font-size: 28px; letter-spacing: -0.03em; margin-bottom: 6px; color: var(--text-1); }
.form-sub { font-size: 14px; color: var(--text-2); margin-bottom: 36px; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-row-2 { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }

.form-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
}

.form-input, .form-textarea, .form-select {
  background: var(--surface-1);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--text-1);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  transition: all 0.3s var(--ease-out);
  width: 100%;
  -webkit-appearance: none;
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--text-3); }

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: rgba(251,29,29,0.4);
  box-shadow: 0 0 0 3px rgba(251,29,29,0.07);
}

.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; color: var(--text-2); }

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 15px 15px 15px 28px;
  margin-top: 8px;
  border-radius: 14px;
}

.btn-submit .btn-icon { width: 32px; height: 32px; font-size: 14px; }

/* Map */
.map-wrap {
  margin-top: 56px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 4px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.map-inner {
  border-radius: calc(var(--radius-xl) - 4px);
  overflow: hidden;
  height: 450px;
}

.map-inner iframe { width: 100%; height: 100%; border: none; display: block; }

/* ===== SERVICES PAGE ===== */
.svc-row-list { display: flex; flex-direction: column; gap: 12px; }

.svc-row {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2px;
  transition: all 0.4s var(--ease-spring);
  box-shadow: 0 1px 8px rgba(0,0,0,0.03);
}

.svc-row:hover {
  border-color: var(--accent-border);
  transform: translateX(5px);
  box-shadow: 0 4px 24px rgba(251,29,29,0.08);
}

.svc-row-inner {
  background: var(--surface-2);
  border-radius: calc(var(--radius-lg) - 2px);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

@media (max-width: 640px) { .svc-row-inner { padding: 22px 20px; gap: 16px; } }

.svc-row-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-3);
  width: 28px;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) { .svc-row-num { display: none; } }

.svc-row-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: all 0.4s var(--ease-spring);
}

.svc-row:hover .svc-row-icon { background: var(--accent); border-color: var(--accent); }

.svc-row-content { flex: 1; }
.svc-row-title { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; color: var(--text-1); }
.svc-row-desc { font-size: 13.5px; color: var(--text-2); }

.svc-row-arrow {
  font-size: 18px;
  color: var(--text-3);
  flex-shrink: 0;
  transition: all 0.3s var(--ease-spring);
}

.svc-row:hover .svc-row-arrow { color: var(--accent); transform: translate(4px, -4px); }

/* ===== ABOUT PAGE ===== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }

.val-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2px;
  transition: all 0.5s var(--ease-spring);
  box-shadow: 0 1px 8px rgba(0,0,0,0.03);
}

.val-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(251,29,29,0.07);
}

.val-card-inner {
  background: var(--surface-2);
  border-radius: calc(var(--radius-lg) - 2px);
  padding: 36px;
  height: 100%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.val-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: rgba(251,29,29,0.09);
  letter-spacing: -0.055em;
  line-height: 0.85;
  margin-bottom: 24px;
}

.val-title { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; color: var(--text-1); }
.val-text { font-size: 14px; color: var(--text-2); line-height: 1.75; }

.certs-section {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-1);
}

.certs-inner { display: flex; align-items: center; gap: 24px; justify-content: center; flex-wrap: wrap; }

.cert-pill {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.cert-pill-inner {
  background: var(--surface-2);
  border-radius: calc(var(--radius-md) - 2px);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.cert-icon { font-size: 28px; }
.cert-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-3); }
.cert-value { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; color: var(--text-1); letter-spacing: -0.02em; }

/* ===== TEAM/IMAGE SECTION ===== */
.images-bento { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 640px) { .images-bento { grid-template-columns: 1fr; } }

.img-bezel-tall .img-bezel-inner { aspect-ratio: 3/4; }
.img-bezel-wide .img-bezel-inner { aspect-ratio: 3/4; }

/* ===== MOBILE BOTTOM BAR ===== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 98;
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  background: #0B0E11;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
  gap: 10px;
}

@media (max-width: 840px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 0; }
  .footer { padding-bottom: 100px; }
}

.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
  -webkit-tap-highlight-color: transparent;
}

.mobile-bar-btn:active { transform: scale(0.96); }

.mobile-bar-addr {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.12);
}

.mobile-bar-addr:hover { background: rgba(255,255,255,0.14); }

.mobile-bar-call {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(251,29,29,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  flex: 1.2;
}

.mobile-bar-call:hover { background: var(--accent-2); }

.mobile-bar-icon { font-size: 17px; line-height: 1; }

/* ===== MAP PICKER SHEET ===== */
.map-sheet-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0);
  pointer-events: none;
  transition: background 0.35s var(--ease-out);
}

.map-sheet-overlay.open {
  background: rgba(0,0,0,0.35);
  pointer-events: all;
}

.map-sheet {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(248,248,248,0.88);
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  border-top: 1px solid rgba(255,255,255,0.6);
  border-radius: 24px 24px 0 0;
  padding: 8px 16px;
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform 0.45s var(--ease-spring);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.12);
}

.map-sheet-overlay.open .map-sheet {
  transform: translateY(0);
}

.map-sheet-handle {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: rgba(0,0,0,0.18);
  margin: 8px auto 20px;
}

.map-sheet-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  text-align: center;
  margin-bottom: 12px;
}

.map-sheet-addr {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-1);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.map-sheet-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.map-sheet-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.02em;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 1px 8px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,1);
  transition: all 0.2s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}

.map-sheet-option:active { transform: scale(0.98); background: rgba(245,245,245,0.95); }

.map-sheet-option-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.map-sheet-option-icon.waze { background: #33CCFF; }
.map-sheet-option-icon.gmaps { background: #fff; border: 1px solid rgba(0,0,0,0.08); }

.map-sheet-option-text {}
.map-sheet-option-name { font-size: 16px; font-weight: 700; display: block; }
.map-sheet-option-sub { font-size: 12px; font-weight: 500; color: var(--text-2); display: block; margin-top: 1px; }

.map-sheet-cancel {
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  border: none;
  background: rgba(0,0,0,0.06);
  color: var(--text-1);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
  letter-spacing: -0.01em;
}

.map-sheet-cancel:active { background: rgba(0,0,0,0.1); }

/* ============================================
   RED SERVICES BAR (replaces stats section)
   ============================================ */

.services-bar {
  background: var(--accent);
  overflow: hidden;
  position: relative;
}

.services-bar-track {
  display: flex;
  width: max-content;
  animation: svc-ticker 28s linear infinite;
}
.services-bar-track:hover { animation-play-state: paused; }

@keyframes svc-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.svc-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 36px;
  border-right: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  text-align: center;
  min-width: 180px;
  flex-shrink: 0;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.svc-bar-item svg {
  width: 38px;
  height: 38px;
  opacity: 0.95;
}

.svc-bar-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.35;
  color: #fff;
}

/* ============================================
   GOOGLE REVIEWS SECTION
   ============================================ */

.reviews-section {
  background: var(--surface-2);
  padding: 80px 0;
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.reviews-rating-block {
  display: flex;
  align-items: center;
  gap: 20px;
}

.reviews-big-score {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-1);
}

.reviews-meta {}

.reviews-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 4px;
}

.reviews-stars svg { width: 18px; height: 18px; }

.reviews-count {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
}

.reviews-gmaps-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border-strong);
  background: var(--surface-1);
  transition: all 0.2s;
}
.reviews-gmaps-link:hover { color: var(--text-1); border-color: var(--text-3); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 840px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
  .reviews-big-score { font-size: 48px; }
}

.review-card {
  background: var(--surface-1);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.review-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.01em;
}

.review-date {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
}

.review-card-stars {
  display: flex;
  gap: 2px;
}
.review-card-stars svg { width: 14px; height: 14px; }

.review-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-2);
  font-weight: 500;
  flex: 1;
}

.review-gmaps-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ===== HERO CENTERING ===== */
.hero-content {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.hero-subtitle { margin-left: auto; margin-right: auto; }
.hero-actions { justify-content: center; }

/* ===== NAV LANGUAGE SWITCHER ===== */
.nav-lang {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
  margin-left: 4px;
}

.nav-lang-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 100px;
  text-decoration: none;
  color: var(--text-2);
  transition: all 0.2s;
  letter-spacing: 0.05em;
}

.nav-lang-btn:hover, .nav-lang-btn.active {
  background: rgba(0,0,0,0.06);
  color: var(--text-1);
}

/* ===== MOBILE OVERLAY LANG ===== */
.nav-overlay-lang {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.nav-overlay-lang .nav-lang-btn {
  font-size: 15px;
  padding: 8px 20px;
  border: 1px solid var(--border-strong);
  color: var(--text-2);
}

.nav-overlay-lang .nav-lang-btn.active {
  background: var(--text-1);
  color: #ffffff;
  border-color: var(--text-1);
}

/* ===== DIPLOMAS SECTION ===== */
.diplomas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.diploma-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-1);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.diploma-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.diploma-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.diploma-cta {
  text-align: center;
  margin-top: 44px;
}

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

@media (max-width: 600px) {
  .diplomas-grid { grid-template-columns: 1fr; }
  .nav-lang { display: none; }
}

/* ===== FAQ ACCORDION ===== */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-1);
  transition: box-shadow 0.2s;
}
.faq-item.open { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  line-height: 1.4;
}
.faq-q:hover { background: var(--surface-2); }
.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-2);
  transition: transform 0.25s, background 0.2s;
  line-height: 1;
}
.faq-icon::after { content: '+'; }
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.faq-a {
  height: 0;
  overflow: hidden;
  transition: height 0.32s ease;
}
.faq-a > div {
  padding: 4px 28px 22px;
  color: var(--text-2);
  line-height: 1.65;
  font-size: 14.5px;
}

/* ===== LOCATION PILLS (RU service pages) ===== */
.loc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.loc-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  background: var(--surface-1);
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: all 0.2s;
}

.loc-pill:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

/* ===== CTA BUTTONS LEFT-ALIGN ON MOBILE ===== */
@media (max-width: 768px) {
  .cta-right > div { align-items: flex-start !important; }
}
