/* ===== Farsta Vård och Skönhet — shared styles ===== */

/* ===== Ticker bar ===== */
.ticker-wrap {
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
  padding: 14px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  animation: ticker-scroll 18s linear infinite;
}
.ticker-item {
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.92);
}
.ticker-item strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-right: 5px;
}
.ticker-dot {
  font-size: 10px;
  opacity: 0.5;
  color: #fff;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

:root {
  --blue: #2454a4;
  --blue-deep: #1e3a6e;
  --blue-soft: #dce8f5;
  --blue-tint: #eef4fb;
  --ink: #1b2540;
  --slate-600: #56627d;
  --slate-400: #8b94ac;
  --line: #e4eaf3;
  --white: #ffffff;
  --paper: #fbfcfe;
  --radius: 18px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(30, 58, 110, .06), 0 4px 14px rgba(30, 58, 110, .05);
  --shadow-md: 0 10px 30px rgba(30, 58, 110, .10);
  --shadow-lg: 0 24px 60px rgba(30, 58, 110, .16);
  --maxw: 1200px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.em-blue { color: var(--blue); font-style: italic; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 22px rgba(36, 84, 164, .28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(36, 84, 164, .36);
  background: #2a5fb8;
}
.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: rgba(36, 84, 164, .35);
}
.btn-ghost:hover {
  border-color: var(--blue);
  background: rgba(36, 84, 164, .06);
  transform: translateY(-2px);
}
.btn-sm { padding: 11px 22px; font-size: 14.5px; }

/* ===== Navbar ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 9px rgba(36, 84, 164, .32));
}
.brand-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #457a9f;
}
.brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #457a9f;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-600);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  transition: color .18s ease, background .18s ease;
}
.nav-links a:hover { color: var(--blue); background: var(--blue-tint); }
.nav-links a.active { color: var(--blue); }
.nav-cta { margin-left: 10px; }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition: background .15s;
}
.nav-toggle:hover { background: var(--blue-tint); }
.nav-toggle svg { display: block; }

/* Back button */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  padding: 10px 20px;
  background: rgba(255,255,255,0.55);
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  transition: background .15s, color .15s;
  backdrop-filter: blur(4px);
}
.back-btn:hover { background: rgba(255,255,255,0.85); }
.back-btn svg { flex-shrink: 0; }

/* ===== Section heading helpers ===== */
.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(165deg, var(--blue-soft) 0%, #eaf2fb 46%, var(--paper) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(36, 84, 164, .12), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 80px 0 96px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(36, 84, 164, .18);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue);
}
.hero h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  margin: 24px 0 22px;
  max-width: none;
}
.hero-copy { text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-lead {
  font-size: 18.5px;
  color: var(--slate-600);
  max-width: 44ch;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
  justify-content: center;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 28px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(36, 84, 164, .14);
}
.phone-item { display: flex; align-items: center; gap: 12px; }
.phone-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  color: var(--blue);
}
.phone-label { font-size: 12px; color: var(--slate-400); font-weight: 500; }
.phone-num { font-size: 16px; font-weight: 600; color: var(--ink); transition: color .18s ease; }
a.phone-num:hover { color: var(--blue); }

.hero-free {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(36, 84, 164, .18);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

/* ===== Hero visual ===== */
.hero-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hv-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  border-radius: 30px;
  overflow: hidden;
  border: 10px solid #fff;
  box-shadow: var(--shadow-lg);
  background:
    radial-gradient(120% 90% at 70% 15%, rgba(255,255,255,.9), transparent 60%),
    linear-gradient(150deg, var(--blue-soft) 0%, #cfe0f4 100%);
}
.hv-frame image-slot { width: 100%; height: 100%; display: block; }
.hv-pill {
  position: absolute;
  top: 30px;
  left: -18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
}
.hv-card {
  position: absolute;
  bottom: -26px;
  right: -22px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 270px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
}
.hv-card-ic {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--blue-tint);
  color: var(--blue);
}
.hv-card strong { font-family: var(--sans); font-size: 15px; font-weight: 700; color: var(--ink); display: block; }
.hv-card-sub { font-size: 13px; color: var(--slate-600); line-height: 1.4; display: block; margin-top: 2px; }

/* ===== Populära behandlingar (preview) ===== */
.preview { background: var(--paper); }
.preview .cards { grid-template-columns: repeat(3, 1fr); }
.preview-foot { text-align: center; margin-top: 44px; }

/* monogram (replaces portrait photo) */
.monogram-ring {
  position: relative;
  padding: 12px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, rgba(36,84,164,.18), rgba(255,255,255,.7), rgba(36,84,164,.18));
  box-shadow: var(--shadow-lg);
}
.monogram {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 6px solid #fff;
  background: linear-gradient(150deg, var(--blue) 0%, var(--blue-deep) 100%);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 116px;
  font-weight: 600;
  letter-spacing: .02em;
  color: #fff;
}

/* hero right */
.hero-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.portrait-ring {
  position: relative;
  padding: 12px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, rgba(36,84,164,.18), rgba(255,255,255,.7), rgba(36,84,164,.18));
  box-shadow: var(--shadow-lg);
}
.portrait-ring image-slot {
  width: 360px;
  height: 360px;
  border: 6px solid #fff;
  display: block;
}
.portrait-card {
  margin-top: -36px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.portrait-card .name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
}
.portrait-card .role {
  font-size: 13.5px;
  color: var(--blue);
  font-weight: 500;
  letter-spacing: .02em;
  margin-top: 2px;
}

/* ===== Trust bar ===== */
.trust {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.trust-cell {
  padding: 42px 20px;
  border-left: 1px solid var(--line);
}
.trust-cell:first-child { border-left: none; }
.trust-num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1;
}
.trust-cell .label {
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--slate-600);
  font-weight: 500;
}

/* ===== Friskvård ===== */
.section { padding: 86px 0; }
.friskvard { background: #fff; text-align: center; }
.friskvard .eyebrow { display: block; margin-bottom: 30px; }
.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 26px;
}
.logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 88px;
  padding: 0 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  filter: grayscale(1);
  opacity: .6;
  transition: filter .35s ease, opacity .35s ease, transform .25s ease, box-shadow .3s ease, border-color .3s ease;
}
.logo-chip img { width: auto; display: block; }
.logo-chip:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-4px);
  border-color: rgba(36,84,164,.3);
  box-shadow: var(--shadow-md);
}

/* generic section header (centered) */
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.sec-head h2 { font-size: clamp(32px, 4vw, 46px); margin: 14px 0 16px; }
.sec-head p { color: var(--slate-600); font-size: 18px; }

/* ===== Footer ===== */
.footer {
  background: var(--blue-deep);
  color: #c4d3ec;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}
.footer .brand-name, .footer h4 { color: #fff; }
.footer-about p {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #a9bcdc;
  max-width: 38ch;
}
.footer .brand-mark img { filter: drop-shadow(0 3px 8px rgba(0, 0, 0, .35)); }
.footer-friskvard {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 10px;
  margin-top: 24px;
}
.fbadge {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #cfdcf2;
}
a.fbadge { transition: background .2s ease, border-color .2s ease, color .2s ease; }
a.fbadge:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.3); color: #fff; }
.footer h4 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8ba6d4;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a, .footer-col li { font-size: 15px; color: #b7c8e6; transition: color .18s ease; }
.footer-col a:hover { color: #fff; }
.footer-contact .line { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact .ic { color: #7e9ace; flex: none; margin-top: 3px; }
.social-row { display: flex; gap: 12px; margin-top: 22px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  display: grid; place-items: center;
  color: #cfdcf2;
  transition: background .2s ease, transform .2s ease;
}
.social-row a:hover { background: var(--blue); transform: translateY(-3px); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13.5px;
  color: #8ba6d4;
}

/* ===== Page header (subpages) ===== */
.page-head {
  background: linear-gradient(165deg, var(--blue-soft) 0%, #eaf2fb 55%, var(--paper) 100%);
  padding: 72px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  top: -160px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 360px;
  background: radial-gradient(ellipse at center, rgba(36,84,164,.10), transparent 70%);
}
.page-head h1 { font-size: clamp(40px, 5.5vw, 64px); margin: 16px 0 14px; position: relative; }
.page-head p { color: var(--slate-600); font-size: 18.5px; max-width: 52ch; margin: 0 auto; position: relative; }
.page-head .back-btn { display: inline-flex; margin-bottom: 20px; }
.back-row { width: 100%; text-align: left; }

/* ===== Treatments grid ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .28s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(36,84,164,.22);
}
.card image-slot { width: 100%; height: 220px; display: block; }
.card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.card-cat {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.card-body { padding: 18px 20px 20px; justify-content: center; gap: 8px; }
.card-body h3 { font-size: 18px; margin: 0; }
.card-price { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--blue); }
.card-price .from { font-family: var(--sans); font-size: 11px; font-weight: 600; color: var(--slate-400); letter-spacing: .08em; text-transform: uppercase; display: block; margin-bottom: 2px; }
.friskvard-tag { color: #1f8a4d; font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 0; white-space: nowrap; }
.card-body p { font-size: 15px; color: var(--slate-600); line-height: 1.62; }
.card-foot {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price-badge {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}
.price-badge .from { font-family: var(--sans); font-size: 11px; font-weight: 600; color: var(--slate-400); letter-spacing: .08em; text-transform: uppercase; display: block; }
.lasmer {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s ease;
}
.card:hover .lasmer { gap: 11px; }

/* ===== Price list ===== */
.price-section { margin-bottom: 52px; }
.price-section h2 {
  font-size: 30px;
  font-style: italic;
  color: var(--blue);
  margin-bottom: 6px;
}
.price-section .ps-note { color: var(--slate-400); font-size: 14.5px; margin-bottom: 18px; }
.price-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  transition: background .18s ease;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--blue-tint); }
.price-row .pr-name { font-size: 16.5px; font-weight: 600; color: var(--ink); }
.price-row .pr-desc { font-size: 14px; color: var(--slate-600); margin-top: 2px; font-weight: 400; }
.price-row .pr-price {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
}

/* ===== CTA strip ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  border-radius: 26px;
  padding: 58px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-strip h2 { color: #fff; font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; }
.cta-strip p { color: #cfdcf2; font-size: 18px; max-width: 46ch; margin: 0 auto 28px; }
.cta-strip .btn-primary { background: #fff; color: var(--blue); box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.cta-strip .btn-primary:hover { background: #f0f5fc; }

/* ===== Treatment detail page ===== */
.crumbs { display: flex; gap: 8px; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--slate-400); position: relative; margin-bottom: 18px; }
.crumbs a { color: var(--blue); }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { color: var(--slate-400); }

.detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: start;
}
.detail-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 10px solid #fff;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 11;
  background:
    radial-gradient(120% 90% at 70% 15%, rgba(255,255,255,.9), transparent 60%),
    linear-gradient(150deg, var(--blue-soft) 0%, #cfe0f4 100%);
}
.detail-visual image-slot { width: 100%; height: 100%; display: block; }
.detail-body { margin-top: 34px; }
.detail-body > p { font-size: 17.5px; color: var(--slate-600); line-height: 1.75; margin-bottom: 18px; }
.detail-body > p:first-child { font-size: 20px; color: var(--ink); line-height: 1.6; }

.body-subhead {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 36px 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--slate-200);
}

.body-bullets {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.body-bullets li {
  font-size: 16px;
  color: var(--slate-600);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.body-bullets li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 600;
}

.body-warning {
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-700);
  background: #fff8f0;
  border-left: 3px solid #e8a060;
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.detail-block { margin-top: 34px; }
.detail-block h2 { font-size: 24px; margin-bottom: 16px; }
.good-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.good-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--slate-600); }
.good-list li .gi { flex-shrink: 0; width: 22px; height: 22px; border-radius: 999px; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; margin-top: 1px; }

.machines-list { list-style: none; padding: 0; margin: 10px 0 20px; display: flex; flex-direction: column; gap: 6px; }
.machines-list li { font-size: 16px; color: var(--blue); font-weight: 600; padding-left: 18px; position: relative; }
.machines-list li::before { content: "—"; position: absolute; left: 0; color: var(--slate-400); }
.info-list { padding: 0; margin: 10px 0 0; display: flex; flex-direction: column; gap: 14px; list-style: none; }
.info-list li { font-size: 15.5px; color: var(--slate-600); line-height: 1.7; padding-left: 22px; position: relative; }
.info-list li::before { content: "•"; position: absolute; left: 0; color: var(--blue); font-size: 18px; line-height: 1.5; }
.detail-inline-img { margin: 24px auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); max-width: 340px; }
.detail-inline-img img { width: 100%; height: auto; display: block; max-height: 280px; object-fit: cover; }
.detail-note {
  margin-top: 34px;
  background: var(--blue-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  gap: 14px;
}
.detail-note .ni { flex-shrink: 0; color: var(--blue); margin-top: 2px; }
.detail-note h4 { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.detail-note p { font-size: 15px; color: var(--slate-600); line-height: 1.7; }

.detail-side {
  position: sticky;
  top: 96px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 30px 28px;
}
.detail-side .ds-cat { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.detail-side .ds-price { font-family: var(--serif); font-size: 34px; font-weight: 600; color: var(--ink); line-height: 1; }
.detail-side .ds-price small { display: block; font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-400); margin-bottom: 6px; }
.detail-facts { list-style: none; padding: 0; margin: 24px 0; border-top: 1px solid var(--line); }
.detail-facts li { display: flex; flex-direction: column; gap: 2px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.detail-facts .fk { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--slate-400); }
.detail-facts .fv { font-size: 15.5px; font-weight: 500; color: var(--ink); }
.detail-side .btn { width: 100%; justify-content: center; }
.detail-side .ds-tip { font-size: 13px; color: var(--slate-400); text-align: center; margin-top: 12px; }

@media (max-width: 880px) {
  .detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .detail-side { position: static; }
}

/* ===== Team ===== */
.team-section { background: var(--paper); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 28px; }
.team-card { text-align: center; }
.team-photo { width: 140px; height: 180px; border-radius: 12px; overflow: hidden; margin: 0 auto 16px; border: 3px solid var(--blue-soft); box-shadow: var(--shadow-md); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.team-name { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.team-role { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--slate-400); }
@media (max-width: 720px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; padding: 52px 0 76px; }
  .hero-visual { order: -1; }
  .hv-frame { max-width: 380px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-cell:nth-child(3) { border-left: none; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .preview .cards { grid-template-columns: repeat(2, 1fr); }
  .preview .cards .card:nth-child(3) { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-cta { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.10);
    border-top: 1px solid var(--slate-200);
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    font-size: 16px;
  }
  .nav-links .mobile-boka {
    display: block;
    margin-top: 8px;
    text-align: center;
    background: var(--blue);
    color: #fff !important;
    border-radius: var(--radius-pill);
    font-weight: 600;
    padding: 13px 16px;
  }
  .nav-links .mobile-boka:hover { background: var(--blue-dark, #1a5ea8); }
  .cards, .preview .cards { grid-template-columns: repeat(2, 1fr); }
  .preview .cards .card:nth-child(3) { display: flex; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-strip { padding: 40px 26px; }
  .price-row { grid-template-columns: 1fr; gap: 8px; }
  .wrap { padding: 0 20px; }
  .hv-card { right: 0; max-width: 240px; }
}
