/* ============ TOKENS ============ */
:root {
  --bg: #1A1C1E;
  --surface: #23262A;
  --surface-2: #2a2e33;
  --accent: #2D7DD2;
  --accent-soft: rgba(45, 125, 210, 0.14);
  --silver: #B8BEC7;
  --text: #F0F2F5;
  --muted: #7C8491;
  --border: rgba(184, 190, 199, 0.10);
  --border-strong: rgba(184, 190, 199, 0.18);
  --divider: rgba(45, 125, 210, 0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-glow: 0 0 0 1px rgba(45,125,210,0.5), 0 12px 32px -8px rgba(45,125,210,0.45);
  --font-head: "Montserrat", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
[hidden] { display: none !important; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; cursor: pointer; }
p { margin: 0; }
h1,h2,h3,h4,h5 { margin: 0; font-family: var(--font-head); font-weight: 700; letter-spacing: -0.01em; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26, 28, 30, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}
.nav--scrolled {
  background: rgba(26, 28, 30, 0.92);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 15px;
}
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 13px;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.nav-phone:hover { color: var(--accent); }
.nav-menu-btn { display: none; color: var(--text); }
.nav-mobile {
  display: none;
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-menu-btn { display: inline-flex; }
  .nav-mobile {
    display: flex;
    flex-direction: column;
    padding: 8px 24px 20px;
    gap: 8px;
    background: rgba(26,28,30,0.96);
    border-bottom: 1px solid var(--border);
  }
  .nav-mobile a {
    padding: 10px 0;
    color: var(--silver);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--border);
  }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform 0.15s, box-shadow 0.2s, background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--lg { padding: 16px 26px; font-size: 15px; }
.btn--xl { padding: 20px 36px; font-size: 17px; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(45,125,210,0.0), 0 8px 24px -10px rgba(45,125,210,0.6);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 3px rgba(45,125,210,0.18), 0 14px 32px -10px rgba(45,125,210,0.8);
}
.btn--primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
.btn--white {
  background: #F0F2F5;
  color: #1A1C1E;
}
.btn--white:hover {
  transform: translateY(-1px);
  background: #fff;
}
.btn--link {
  padding: 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  background: transparent;
}
.btn--link:hover { gap: 12px; }
.btn--link svg { transition: transform 0.15s; }
.btn--link:hover svg { transform: translateX(2px); }

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 120px 0;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg image-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  --is-bg: 1;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(26,28,30,0.92) 35%, rgba(26,28,30,0.55) 65%, rgba(26,28,30,0.25) 100%),
    linear-gradient(180deg, rgba(26,28,30,0.4) 0%, transparent 30%, transparent 70%, rgba(26,28,30,0.6) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
}
.hero-left {
  max-width: 640px;
}
.hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title--inline {
  text-transform: none;
  letter-spacing: -0.025em;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.05;
}
.hero-title .accent { color: var(--accent); }
.hero-title .muted-headline { color: var(--silver); }
.hero-sub {
  font-size: 17px;
  color: var(--silver);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero { padding: 72px 0; min-height: 520px; }
  .hero-bg-overlay {
    background:
      linear-gradient(180deg, rgba(26,28,30,0.55) 0%, rgba(26,28,30,0.85) 70%, var(--bg) 100%);
  }
}

/* ============ USP STRIP ============ */
.usp {
  background: var(--surface);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.usp-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.usp-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 16px;
  border-right: 1px solid var(--border);
}
.usp-item:last-child { border-right: none; }
.usp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  flex-shrink: 0;
}
.usp-label {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .usp-inner { grid-template-columns: repeat(2, 1fr); }
  .usp-item { padding: 18px 16px; border-right: 1px solid var(--border); }
  .usp-item:nth-child(2n) { border-right: none; }
  .usp-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}

/* ============ SECTIONS ============ */
.section {
  padding: 100px 0;
}
.section--alt { background: var(--surface); }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 3.6vw, 48px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--silver);
  font-size: 17px;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
}

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

/* ============ CARDS ============ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.section--alt .card { background: var(--surface-2); }
.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(45,125,210,0.25), 0 20px 40px -16px rgba(45,125,210,0.4);
}

/* SERVICE */
.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
}
.service-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
}
.service-name {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 20px;
  margin-bottom: 12px;
}
.service-desc {
  color: var(--silver);
  font-size: 15px;
  margin-bottom: 24px;
  min-height: 48px;
}
.service-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--divider);
}
.service-price {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
}
.service-price .muted {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-right: 6px;
  text-transform: lowercase;
}
.ruble { color: var(--muted); font-weight: 500; }

/* ============ STEPS ============ */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.steps-line {
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--divider);
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px var(--surface);
}
.section:not(.section--alt) .step-num { box-shadow: 0 0 0 6px var(--bg); }
.section--alt .step-num { background: var(--surface); box-shadow: 0 0 0 6px var(--surface); }
.step-title {
  font-family: var(--font-head);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.step-desc {
  color: var(--silver);
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .steps-line { display: none; }
  .step { text-align: left; display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: center; }
  .step-num { margin: 0; }
  .step .step-title, .step .step-desc { grid-column: 2; }
  .step-title { margin-bottom: 4px; }
}

/* ============ PRICES ============ */
.prices-grid { align-items: stretch; }
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 28px;
}
.price-card--hl {
  background: linear-gradient(180deg, rgba(45,125,210,0.10), transparent 50%), var(--surface);
  border-color: var(--accent);
  border-radius: 0; /* sharp on price highlight */
  box-shadow: 0 0 0 1px var(--accent), 0 30px 60px -24px rgba(45,125,210,0.5);
  transform: translateY(-12px);
}
.price-card--hl:hover { transform: translateY(-16px); }
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 0;
  white-space: nowrap;
}
.price-head { margin-bottom: 24px; }
.price-name {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.price-blurb {
  color: var(--silver);
  font-size: 14px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--divider);
}
.price-amount .muted {
  font-size: 13px;
  color: var(--muted);
  text-transform: lowercase;
}
.price-num {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.price-amount .ruble {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-features li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--silver);
  align-items: flex-start;
}
.price-features svg {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}
.prices-note {
  margin: 36px auto 0;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  width: fit-content;
  max-width: 100%;
}
.prices-note svg { color: var(--accent); }

@media (max-width: 900px) {
  .price-card--hl { transform: none; }
  .price-card--hl:hover { transform: translateY(-4px); }
}

/* ============ REVIEWS ============ */
.review-card { display: flex; flex-direction: column; }
.review-stars {
  color: #f5b400;
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.review-text {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}
.review-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--divider);
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-head);
}
.review-name { font-weight: 600; font-size: 14px; }
.review-car { font-size: 12px; color: var(--muted); }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: var(--accent);
  position: relative;
  overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-banner::before {
  background:
    radial-gradient(600px 400px at 90% 50%, rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(500px 300px at 10% 100%, rgba(0,0,0,0.25), transparent 60%);
}
.cta-banner::after {
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(90deg, transparent, #000 50%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 50%, transparent);
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 72px 24px;
}
.cta-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
  font-weight: 600;
}
.cta-title {
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  margin-bottom: 12px;
  max-width: 640px;
  text-transform: uppercase;
}
.cta-sub {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  max-width: 560px;
}
@media (max-width: 900px) {
  .cta-inner { flex-direction: column; align-items: flex-start; padding: 56px 24px; }
}

/* ============ FOOTER ============ */
.footer {
  background: #131517;
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col h5 {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  color: var(--silver);
}
.footer-col p {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col p svg { color: var(--accent); }
.footer-col .muted { color: var(--muted); font-size: 13px; }
.footer-col a:hover { color: var(--accent); }
.footer-brand .logo { margin-bottom: 16px; }
.footer-tag { color: var(--silver); font-size: 14px; line-height: 1.5; }

.footer-map {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-strong);
}
.map-placeholder {
  position: relative;
  height: 100%;
  min-height: 160px;
  background:
    radial-gradient(400px 200px at 50% 50%, rgba(45,125,210,0.18), transparent 70%),
    #1A1C1E;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,190,199,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,190,199,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.map-pin {
  position: relative;
  color: var(--accent);
  filter: drop-shadow(0 0 12px rgba(45,125,210,0.7));
}
.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 24px;
  height: 6px;
  border-radius: 50%;
  background: rgba(45,125,210,0.4);
  transform: translateX(-50%);
  filter: blur(2px);
}
.map-caption {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 1000px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-map { grid-column: span 2; min-height: 200px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ============ MODAL ============ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 12, 14, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 36px;
  animation: modalIn 0.25s cubic-bezier(.16,1,.3,1);
}
@keyframes modalIn {
  from { transform: translateY(20px) scale(0.96); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
}
.modal-close:hover { background: var(--accent-soft); color: var(--accent); }
.modal-head { margin-bottom: 24px; }
.modal-head h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 22px;
  margin: 4px 0 16px;
}
.modal-progress {
  width: 100%;
  height: 3px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.modal-progress span {
  display: block;
  height: 100%;
  background: var(--accent);
  transition: width 0.3s;
  box-shadow: 0 0 8px var(--accent);
}
.modal-body { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.field-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 8px;
}
.input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45,125,210,0.2);
}
.chip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.chip {
  padding: 12px 8px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.15s;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip--active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}
.date-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}
.date-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 4px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 11px;
  color: var(--muted);
  transition: all 0.15s;
  gap: 2px;
}
.date-pill .date-day {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.date-pill .date-mon { font-size: 10px; text-transform: uppercase; }
.date-pill:hover { border-color: var(--accent); }
.date-pill--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.date-pill--active .date-day,
.date-pill--active .date-mon,
.date-pill--active .date-dow { color: #fff; }
.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.time-pill {
  padding: 10px 4px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.15s;
}
.time-pill:hover { border-color: var(--accent); color: var(--accent); }
.time-pill--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.summary {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.summary-row span { color: var(--muted); }
.modal-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-done {
  text-align: center;
  padding: 16px 0;
}
.modal-done h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 24px;
  margin: 24px 0 12px;
}
.modal-done p {
  color: var(--silver);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.check-burst {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: burstIn 0.4s cubic-bezier(.5,1.6,.3,1);
  box-shadow: 0 0 0 0 rgba(45,125,210,0.4);
  position: relative;
}
.check-burst::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  animation: burstRing 0.8s ease-out;
}
@keyframes burstIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@keyframes burstRing {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}