/* Visuele taal afgestemd op CostPilot one-pager (marine + teal + wit). Fonts in base.html. */

:root {
  --navy: #001f3f;
  --navy-muted: #0a3554;
  --bg: #ffffff;
  --bg-elevated: #ffffff;
  --bg-subtle: #f4f8fa;
  --ink: #001f3f;
  --ink-muted: #3d5a6c;
  --border: #dce4ea;
  --accent: #2a7d83;
  --accent-hover: #23686d;
  --accent-soft: rgba(42, 125, 131, 0.14);
  --sky: #8ecae6;
  --sky-deep: #62a9c7;
  --shadow: 0 1px 3px rgba(0, 31, 63, 0.08), 0 10px 28px rgba(0, 31, 63, 0.06);
  --radius: 10px;
  --radius-lg: 16px;
  --font-sans: 'Open Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --max: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-hover);
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* ——— Header (one-pager: marine balk + centrale tagline) ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 6px 24px rgba(0, 31, 63, 0.2);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem 1.25rem;
  padding: 0.9rem 0;
}

@media (max-width: 900px) {
  .site-header__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-nav {
    justify-content: center;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #fff;
}

.brand:hover {
  color: var(--sky);
}

.brand__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}

/* Vector merkteken (SVG): lichte schijf zodat ring/naald rustig op marine leest */
.brand__logo {
  width: 2.9rem;
  height: 2.9rem;
  flex-shrink: 0;
  display: block;
  padding: 0.32rem;
  box-sizing: border-box;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 10px rgba(142, 202, 230, 0.22);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
  overflow: visible;
}

.site-header__tagline {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.82rem, 2vw, 0.95rem);
  font-style: italic;
  font-weight: 400;
  color: var(--sky);
  text-align: center;
  line-height: 1.35;
  padding: 0 0.5rem;
}

@media (max-width: 900px) {
  .site-header__tagline {
    max-width: 28rem;
  }
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem 0.35rem;
}

.site-nav a {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.site-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.site-nav a.nav-cta {
  background: var(--accent);
  color: #fff !important;
}

.site-nav a.nav-cta:hover {
  background: var(--accent-hover);
}

/* ——— Main ——— */
.site-main { flex: 1; padding: 2rem 0 3.5rem; }

.page-header {
  margin-bottom: 2rem;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0 0 0.5rem;
  line-height: 1.2;
  color: var(--navy);
}

.page-header p {
  margin: 0;
  color: var(--ink-muted);
  max-width: 52ch;
}

.page-header p.page-header__narrow {
  max-width: 42rem;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  padding: 2.5rem 0 2rem;
  margin-bottom: 2.5rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0 -50vw;
  margin: 0 auto;
  width: 100vw;
  max-width: none;
  background:
    radial-gradient(ellipse 70% 55% at 12% 0%, rgba(42, 125, 131, 0.12), transparent 52%),
    radial-gradient(ellipse 60% 45% at 92% 10%, rgba(0, 31, 63, 0.06), transparent 48%),
    linear-gradient(180deg, #fff 0%, var(--bg-subtle) 100%);
  z-index: -1;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.15fr 0.85fr; }
}

.tagline {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--navy);
}

.lede {
  font-size: 1.08rem;
  color: var(--ink-muted);
  max-width: 48ch;
  margin: 0 0 1.5rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  background: var(--accent);
  color: #fff !important;
  box-shadow: 0 2px 10px rgba(42, 125, 131, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(42, 125, 131, 0.45);
}

.btn-secondary {
  background: #fff;
  color: var(--navy) !important;
  border: 1px solid var(--border);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--bg-subtle);
  border-color: var(--accent);
  color: var(--accent-hover) !important;
}

/* ——— Cards & grids ——— */
.grid3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
  margin: 2rem 0;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
}

.card h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.card p { margin: 0; color: var(--ink-muted); font-size: 0.98rem; }

/* Kaarth3 = one-pager moduletitels; uitzonderingen voor subkoppen */
.schedule-embed .schedule-embed__title,
.schedule-slots .schedule-embed__title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: var(--navy);
}

.card.result-block h3 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin: 1.25rem 0 0.5rem;
}

.card.result-block h3:first-child {
  margin-top: 0;
}

.step-num {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
}

.founder {
  margin: 2.5rem 0;
}

.founder .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--navy-muted);
  margin: 1rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
}

/* ——— Stat panel (hero side) ——— */
.stat-panel {
  background: var(--navy);
  color: #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(142, 202, 230, 0.25);
}

.stat-panel__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--sky);
  margin: 0 0 0.35rem;
}

.stat-panel__big {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin: 0 0 0.5rem;
}

.stat-panel__sub {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin: 0 0 1.25rem;
}

.stat-panel ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #94a3b8;
}

.stat-panel li { margin-bottom: 0.35rem; }

/* ——— Sections ——— */
.section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
}

.section-title--flush {
  margin-top: 0;
}

.pilot-banner .section-title {
  margin-top: 0;
}

.pilot-banner p:last-child {
  margin: 0;
  color: var(--ink-muted);
}

.pilot-banner {
  background: var(--accent-soft);
  border: 1px solid rgba(42, 125, 131, 0.35);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  margin: 2rem 0;
}

.pilot-banner strong {
  color: var(--navy);
}

/* ——— Forms ——— */
.form {
  display: grid;
  gap: 1rem;
  max-width: 520px;
  margin-top: 1rem;
}

.input,
.form input[type="text"],
.form input[type="email"],
.form input[type="file"]:not(.invoice-file-input),
.form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--bg-elevated);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form textarea { min-height: 120px; resize: vertical; }

.form--invoice {
  max-width: 560px;
  margin-top: 0;
}

.invoice-tool-card {
  margin-top: 1.25rem;
  padding: 1.5rem 1.45rem 1.6rem;
}

.invoice-tool-card .form {
  margin-top: 0;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.field-error {
  margin: 0;
  font-size: 0.9rem;
  color: #b42318;
  font-weight: 600;
}

.form-actions {
  margin-top: 0.25rem;
}

/* ——— AI factuurcheck: één uploadvlak (file-input als overlay — geen dubbele browserknop) ——— */
.invoice-upload-shell {
  position: relative;
  min-height: 9rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px dashed rgba(42, 125, 131, 0.35);
  background: linear-gradient(160deg, var(--bg-subtle) 0%, #fff 50%);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.invoice-upload-shell:hover {
  border-color: rgba(42, 125, 131, 0.55);
  box-shadow: 0 4px 20px rgba(42, 125, 131, 0.1);
}

.invoice-upload-shell:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.invoice-upload-shell--drag {
  border-color: var(--accent);
  border-style: solid;
  background: var(--accent-soft);
}

.invoice-file-input {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100% !important;
  height: 100%;
  min-height: 9rem;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: inherit;
  opacity: 0;
  cursor: pointer;
  font-size: 1rem;
  color: transparent;
}

.invoice-file-input::-webkit-file-upload-button {
  display: none;
  appearance: none;
}

.invoice-file-input::file-selector-button {
  display: none;
  appearance: none;
}

.invoice-upload__visual {
  position: relative;
  z-index: 1;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.5rem 1.25rem 1.65rem;
  text-align: center;
}

.invoice-upload__icon {
  color: var(--accent);
  opacity: 0.95;
}

.invoice-upload__hint {
  margin: 0;
  max-width: 22rem;
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 600;
  color: var(--navy);
}

.invoice-file-list {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0.5rem 0.75rem;
  font-size: 0.86rem;
  color: var(--ink-muted);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.invoice-file-list:empty {
  display: none;
}

.invoice-file-list__item {
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.invoice-file-list__item:last-child {
  border-bottom: none;
}

.invoice-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0;
  padding: 0.85rem 1rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-muted);
  cursor: pointer;
}

.invoice-consent__input {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.2rem 0 0 !important;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--accent);
}

.invoice-consent a {
  font-weight: 600;
}

.invoice-consent .field-error {
  flex-basis: 100%;
  margin-top: 0.25rem;
}

.form--invoice .form-actions {
  margin-top: 0.5rem;
}

.btn--invoice-submit {
  width: 100%;
  max-width: 100%;
}

.result-files {
  font-size: 0.95rem;
  color: var(--ink-muted);
  margin: 0 0 1rem;
  word-break: break-word;
}

.result-files__list {
  margin: 0.4rem 0 0;
  padding-left: 1.2rem;
}

.result-files__list li {
  margin: 0.2rem 0;
}

.result-pre {
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.88rem;
  line-height: 1.5;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  max-height: 22rem;
  overflow: auto;
}

.alert__p {
  margin: 0;
}

.alert__p + .alert__p {
  margin-top: 0.35rem;
}

/* ——— Alerts ——— */
.alert {
  background: var(--accent-soft);
  border: 1px solid rgba(42, 125, 131, 0.45);
  color: var(--navy);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* ——— Footer (one-pager: CTA + tagline + subregel) ——— */
.site-footer {
  margin-top: auto;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 0;
  font-size: 0.92rem;
}

.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 2rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(142, 202, 230, 0.2);
}

.site-footer__cta {
  margin: 0;
  font-weight: 600;
  color: #fff;
}

.site-footer__cta a {
  color: var(--sky);
  text-decoration: none;
  font-weight: 700;
}

.site-footer__cta a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer__tagline {
  margin: 0;
  font-style: italic;
  color: var(--sky);
  font-size: 0.95rem;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0 1.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
  color: #fff;
}

.price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--accent);
  margin: 0.35rem 0 0.75rem;
}

.note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: #f8fafc;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  color: var(--ink-muted);
  font-size: 0.95rem;
}

pre {
  white-space: pre-wrap;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.85rem;
  background: var(--navy);
  color: #e2e8f0;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  overflow-x: auto;
  border: 1px solid rgba(142, 202, 230, 0.25);
}

.spacer-top {
  margin-top: 2rem;
}

/* ——— Bedrijfspagina, privacy & lange content ——— */
.company-page.prose,
.privacy-page.prose {
  max-width: 720px;
  margin: 0 auto 3rem;
}

.page-header--hero .lead {
  font-size: 1.1rem;
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: none;
}

.section-block {
  margin-bottom: 2.25rem;
}

.section-block h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.75rem;
}

.section-block h3,
.h3-sub {
  font-size: 1rem;
  margin: 1.25rem 0 0.5rem;
}

.prose p,
.prose li {
  color: var(--ink-muted);
}

.prose p strong,
.prose li strong {
  color: var(--ink);
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.45rem;
}

.source-note {
  font-size: 0.82rem;
  color: #64748b;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border);
}

.pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy);
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.muted {
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.highlight-stats {
  margin: 1rem 0;
}

.highlight-stat {
  background: var(--navy);
  color: #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(142, 202, 230, 0.2);
}

.highlight-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.35rem;
}

.highlight-stat__txt {
  font-size: 0.98rem;
  line-height: 1.5;
}

.question {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--ink);
  margin: 1rem 0 0;
}

.steps-list {
  margin: 1rem 0 1.5rem;
  padding-left: 1.25rem;
}

.steps-list li {
  margin-bottom: 0.5rem;
  color: var(--ink-muted);
}

.two-col {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.card--flat {
  box-shadow: none;
  background: #f8fafc;
}

.usp-grid {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.usp-grid li {
  padding: 0.65rem 0 0.65rem 1rem;
  border-left: 3px solid var(--accent);
  margin-bottom: 0.5rem;
  background: var(--bg-elevated);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.compare-list li {
  margin-bottom: 0.5rem;
}

.badge-reco {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(142, 202, 230, 0.2);
  color: var(--sky);
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  vertical-align: middle;
  margin-left: 0.25rem;
}

.home-intro {
  color: var(--ink-muted);
  margin: -0.5rem 0 1.25rem;
}

.home-step4 {
  margin: 0.5rem 0 0;
  color: var(--ink-muted);
}

.home-more {
  margin: 1.25rem 0 0;
}

.link-arrow {
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
}

.link-arrow:hover {
  text-decoration: underline;
}

.cta-row--tight {
  margin-top: 1rem;
  margin-bottom: 0;
}

/* ——— Gratis scan: agenda + voorkeursuren ——— */
.schedule-form__layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .schedule-form__layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  }
}

.schedule-form__main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.schedule-form--stacked .schedule-form__layout {
  grid-template-columns: 1fr;
}

.schedule-embed__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.schedule-embed__intro {
  margin: 0 0 1rem;
  font-size: 0.92rem;
}

.calendly-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}

.booking-iframe {
  width: 100%;
  min-height: 720px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.schedule-slots {
  margin-top: 0;
}

.slot-picker {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.75rem;
}

.slot-day__head {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.slot-day__slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.slot-btn {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink-muted);
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.slot-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.slot-btn.is-selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.slot-summary {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin: 0.75rem 0 0;
  min-height: 2.5rem;
}
