/* ============================================================
   Osynlig tandställning Göteborg — v2 stylesheet
   Conversion-focused design system. Mobile-first.
   ============================================================ */

:root {
  /* Brand palette */
  --white: #ffffff;
  --ink: #0f1f33;             /* deepest text */
  --navy: #0a2540;            /* primary dark */
  --navy-2: #14365a;          /* hover */
  --teal: #0d8a93;            /* primary action */
  --teal-2: #0a6e75;          /* hover */
  --teal-soft: #ddf2f3;
  --teal-bg: #f0f9fa;
  --mint: #4cc9b5;            /* accent / "most popular" */
  --gold: #d4a574;            /* premium accent */

  /* Neutrals */
  --gray-50: #f8fafc;
  --gray-100: #eef2f6;
  --gray-150: #e3e9f0;
  --gray-200: #d6dee8;
  --gray-300: #b8c4d3;
  --gray-500: #5e6e82;
  --gray-700: #2d3a4a;

  /* Semantics */
  --success: #058c5a;
  --warn: #b45309;
  --info-bg: #e8f4f5;

  /* Effects */
  --shadow-xs: 0 1px 2px rgba(10, 37, 64, 0.05);
  --shadow-sm: 0 2px 6px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 16px 40px rgba(10, 37, 64, 0.12);
  --shadow-cta: 0 4px 14px rgba(13, 138, 147, 0.35);

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --container: 1120px;
  --narrow: 760px;

  --t-fast: 0.15s;
  --t-base: 0.25s;
  --t-slow: 0.45s;

  --easing: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Roboto, Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }

a {
  color: var(--teal-2);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--t-fast) var(--easing);
}
a:hover { color: var(--teal); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:focus-visible {
  outline: 3px solid var(--teal-soft);
  outline-offset: 2px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2rem, 4vw + 0.8rem, 3.1rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.5rem, 2vw + 0.8rem, 2.1rem); margin-top: 1.5em; }
h3 { font-size: 1.25rem; margin-top: 1.5em; }
h4 { font-size: 1rem; }
p { margin: 0 0 1em; }
p.lead { font-size: 1.15rem; color: var(--gray-700); }

ul, ol { padding-left: 1.25em; }
li { margin-bottom: 0.35em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: var(--narrow); margin: 0 auto; padding: 0 22px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--gray-150);
}
.site-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container); margin: 0 auto; padding: 14px 22px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; color: var(--ink); font-size: 1rem;
  text-decoration: none;
}
.brand:hover { text-decoration: none; color: var(--ink); }
.brand-mark {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--teal) 0%, var(--mint) 100%);
  color: var(--white); border-radius: 9px;
  box-shadow: var(--shadow-sm);
}
.brand-name { white-space: nowrap; }

.nav { display: none; align-items: center; gap: 4px; }
.nav a {
  color: var(--gray-700); font-size: 0.95rem;
  padding: 8px 14px; border-radius: var(--radius-sm);
  text-decoration: none; font-weight: 500;
  transition: background var(--t-fast) var(--easing);
}
.nav a:hover { background: var(--gray-50); color: var(--ink); text-decoration: none; }
.nav .nav-cta {
  background: var(--teal); color: var(--white);
  padding: 9px 18px; font-weight: 600;
  margin-left: 10px;
  box-shadow: var(--shadow-cta);
}
.nav .nav-cta:hover { background: var(--teal-2); color: var(--white); }

.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); width: 42px; height: 42px; cursor: pointer;
  transition: background var(--t-fast) var(--easing);
}
.menu-toggle:hover { background: var(--gray-50); }
.menu-toggle:focus-visible { outline: 3px solid var(--teal-soft); }
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block; width: 18px; height: 2px; background: var(--ink);
  border-radius: 2px;
}
.menu-toggle span { position: relative; }
.menu-toggle span::before,
.menu-toggle span::after {
  content: ""; position: absolute; left: 0;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

.mobile-nav {
  display: none; background: var(--white);
  border-bottom: 1px solid var(--gray-150);
  padding: 6px 22px 18px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 14px 0; color: var(--ink);
  border-bottom: 1px solid var(--gray-100); font-weight: 500;
  text-decoration: none;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .mobile-cta {
  margin-top: 12px; background: var(--teal); color: var(--white) !important;
  padding: 14px 18px; border-radius: var(--radius-sm); text-align: center;
  font-weight: 600;
}

@media (min-width: 820px) {
  .nav { display: flex; }
  .menu-toggle { display: none; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--teal); color: var(--white) !important;
  font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: var(--radius-sm);
  border: 1px solid var(--teal);
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-cta);
  transition: transform var(--t-fast) var(--easing), background var(--t-fast) var(--easing), box-shadow var(--t-fast) var(--easing);
}
.btn:hover {
  background: var(--teal-2); border-color: var(--teal-2);
  transform: translateY(-1px); text-decoration: none;
  box-shadow: 0 6px 18px rgba(13, 138, 147, 0.4);
}
.btn:active { transform: translateY(0); }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }
.btn-secondary {
  background: var(--white); color: var(--teal-2) !important;
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover {
  background: var(--white); color: var(--teal) !important;
  border-color: var(--teal); box-shadow: var(--shadow-sm);
}
.btn-arrow::after {
  content: "→"; font-size: 1.1em; transition: transform var(--t-fast) var(--easing);
}
.btn:hover .btn-arrow::after,
.btn-arrow:hover::after { transform: translateX(3px); }
.btn-ghost {
  background: transparent; color: var(--gray-700) !important;
  border: none; box-shadow: none; font-weight: 500;
}
.btn-ghost:hover {
  background: var(--gray-50); color: var(--ink) !important;
  transform: none; box-shadow: none;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(800px 400px at 90% -10%, rgba(76, 201, 181, 0.18), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(13, 138, 147, 0.12), transparent 60%),
    linear-gradient(180deg, var(--teal-bg) 0%, var(--white) 100%);
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}
.hero-grid {
  display: grid; gap: 40px; align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 60px; }
  .hero { padding: 72px 0 80px; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-150);
  color: var(--teal-2); font-weight: 600; font-size: 0.85rem;
  padding: 6px 14px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-xs);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(76, 201, 181, 0.2);
}

.hero h1 { max-width: 16ch; margin-bottom: 22px; }
.hero .lead { max-width: 50ch; margin-bottom: 28px; color: var(--gray-700); }

.hero-cta-row {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 22px;
}
@media (min-width: 520px) {
  .hero-cta-row { flex-direction: row; align-items: center; flex-wrap: wrap; }
}
.hero-cta-micro {
  font-size: 0.88rem; color: var(--gray-500);
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.hero-cta-micro span { display: inline-flex; align-items: center; gap: 6px; }
.hero-cta-micro svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }

/* Pricing pill above the fold */
.price-pill {
  display: inline-flex; align-items: baseline; gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-150);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  margin-top: 22px;
  box-shadow: var(--shadow-xs);
  font-size: 0.92rem;
}
.price-pill strong { color: var(--ink); font-weight: 700; }
.price-pill .price-pill-meta { color: var(--gray-500); }

/* Hero illustration container */
.hero-art {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-art svg { width: 100%; max-width: 460px; height: auto; }

/* ============================================================
   Trust strip
   ============================================================ */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 18px 0;
}
.trust-strip-inner {
  display: flex; flex-wrap: wrap; gap: 28px; justify-content: center;
  align-items: center;
  font-size: 0.88rem; color: var(--gray-500);
}
.trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500;
}
.trust-item svg {
  width: 18px; height: 18px; color: var(--teal-2); flex-shrink: 0;
}

/* ============================================================
   Sections
   ============================================================ */
section { padding: 64px 0; }
section.alt { background: var(--gray-50); }
section.tight { padding: 40px 0; }
section h2 { max-width: 28ch; }

.section-eyebrow {
  display: inline-block; color: var(--teal-2); font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 12px;
}

/* ============================================================
   Cards / grids
   ============================================================ */
.grid { display: grid; gap: 18px; }
@media (min-width: 620px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 880px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--white); border: 1px solid var(--gray-150);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base) var(--easing), box-shadow var(--t-base) var(--easing), border-color var(--t-base) var(--easing);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--gray-200); }
.card h3 { margin-top: 0; }
a.card-link { color: inherit; text-decoration: none; display: block; }
a.card-link:hover { text-decoration: none; }
a.card-link:hover .card { border-color: var(--teal); box-shadow: var(--shadow-md); }

.card .card-tag {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  background: var(--teal-soft); color: var(--teal-2);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 10px; letter-spacing: 0.02em;
}

/* ============================================================
   Feature lists
   ============================================================ */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  position: relative; padding: 8px 0 8px 32px;
  line-height: 1.55;
}
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 20px; height: 20px;
  background: var(--teal-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a6e75' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: 13px;
}
.feature-list-warn li::before {
  background: #fef3e2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b45309' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='12' x2='19' y2='12'/></svg>");
}

/* ============================================================
   Process timeline (visual)
   ============================================================ */
.timeline {
  display: grid; gap: 16px;
  margin-top: 24px;
}
@media (min-width: 760px) {
  .timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px; position: relative;
  }
  .timeline::before {
    content: ""; position: absolute; top: 30px; left: 8%; right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-soft) 0%, var(--mint) 100%);
    z-index: 0;
  }
}
.timeline-step {
  position: relative; text-align: center; z-index: 1;
  background: transparent;
}
.timeline-step .step-icon {
  width: 60px; height: 60px;
  background: var(--white);
  border: 2px solid var(--teal);
  color: var(--teal);
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.timeline-step h4 { margin: 0 0 4px; font-size: 0.95rem; color: var(--ink); }
.timeline-step p { font-size: 0.88rem; color: var(--gray-500); margin: 0; }

/* ============================================================
   Pricing cards
   ============================================================ */
.pricing-grid {
  display: grid; gap: 18px;
  margin-top: 32px;
}
@media (min-width: 760px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-150);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  transition: transform var(--t-base) var(--easing), box-shadow var(--t-base) var(--easing);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.pricing-card .pricing-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--mint); color: var(--ink);
  font-weight: 700; font-size: 0.78rem;
  padding: 6px 16px; border-radius: 999px;
  letter-spacing: 0.04em;
}
.pricing-card h3 { margin-top: 0; font-size: 1.15rem; }
.pricing-card .price {
  font-size: 1.85rem; font-weight: 700; color: var(--ink);
  margin: 14px 0 4px; line-height: 1.1;
}
.pricing-card .price-detail {
  font-size: 0.9rem; color: var(--gray-500); margin-bottom: 18px;
}
.pricing-card .pricing-features {
  list-style: none; padding: 0; margin: 18px 0 22px;
  border-top: 1px solid var(--gray-100); padding-top: 18px;
}
.pricing-card .pricing-features li {
  position: relative; padding: 5px 0 5px 26px;
  font-size: 0.93rem;
  line-height: 1.5;
}
.pricing-card .pricing-features li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--teal); font-weight: 700;
}

/* ============================================================
   Comparison table — better visual
   ============================================================ */
.compare {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--gray-150); font-size: 0.95rem;
  margin: 1em 0;
  box-shadow: var(--shadow-xs);
}
.compare th, .compare td {
  text-align: left; padding: 14px 16px; vertical-align: top;
  border-bottom: 1px solid var(--gray-100);
}
.compare th {
  background: var(--gray-50); color: var(--ink); font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.02em;
  text-transform: uppercase;
}
.compare tr:last-child td { border-bottom: none; }
.compare tbody tr:hover { background: var(--gray-50); }

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(76, 201, 181, 0.15), transparent 70%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-top: 0; }
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 56ch; margin: 0 auto 1.8em;
  font-size: 1.05rem;
}
.cta-banner .btn {
  background: var(--mint); border-color: var(--mint); color: var(--ink) !important;
  box-shadow: 0 4px 14px rgba(76, 201, 181, 0.4);
}
.cta-banner .btn:hover {
  background: var(--white); border-color: var(--white); color: var(--ink) !important;
}
.cta-banner-micro {
  color: rgba(255, 255, 255, 0.65); font-size: 0.88rem;
  margin-top: 14px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: var(--narrow); margin: 0 auto; }
.faq details {
  border: 1px solid var(--gray-150);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 12px;
  background: var(--white);
  transition: border-color var(--t-base) var(--easing), box-shadow var(--t-base) var(--easing);
}
.faq details:hover { border-color: var(--gray-200); }
.faq details[open] {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  font-weight: 600; color: var(--ink); cursor: pointer;
  list-style: none; padding-right: 32px; position: relative;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 18px; height: 18px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d8a93' stroke-width='2.5' stroke-linecap='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: center;
  transition: transform var(--t-base) var(--easing);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.faq details > *:not(summary) {
  animation: faqReveal 0.3s var(--easing);
}
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.faq details p { margin-top: 14px; margin-bottom: 0; color: var(--gray-700); }

/* ============================================================
   Disclaimer block
   ============================================================ */
.disclaimer {
  background: var(--info-bg);
  border-left: 4px solid var(--teal);
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--gray-700);
  margin: 24px 0;
}
.disclaimer strong { color: var(--ink); }

/* ============================================================
   Form (default / single-step)
   ============================================================ */
.form {
  background: var(--white);
  border: 1px solid var(--gray-150);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-top: 24px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block; font-weight: 600; color: var(--ink);
  font-size: 0.95rem; margin-bottom: 7px;
}
.form-row .hint {
  display: block; color: var(--gray-500); font-size: 0.85rem; margin-top: 4px;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--white);
  transition: border-color var(--t-fast) var(--easing), box-shadow var(--t-fast) var(--easing);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}
.form-row textarea { min-height: 110px; resize: vertical; }
.form-row.checkbox { display: flex; gap: 12px; align-items: flex-start; }
.form-row.checkbox input[type="checkbox"] {
  margin-top: 3px; width: 20px; height: 20px; flex-shrink: 0;
  accent-color: var(--teal);
}
.form-row.checkbox label { font-weight: 400; color: var(--gray-700); margin: 0; line-height: 1.5; }
.form-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-trust {
  font-size: 0.9rem; color: var(--gray-500); margin-top: 16px;
  display: flex; align-items: center; gap: 8px;
}
.form-trust svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }

/* ============================================================
   Multi-step form
   ============================================================ */
.msf {
  background: var(--white);
  border: 1px solid var(--gray-150);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  position: relative;
}
@media (min-width: 720px) {
  .msf { padding: 40px 44px; }
}

.msf-progress {
  margin-bottom: 28px;
}
.msf-progress-bar {
  height: 6px; background: var(--gray-100);
  border-radius: 999px; overflow: hidden;
  margin-bottom: 10px;
}
.msf-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal) 0%, var(--mint) 100%);
  border-radius: 999px;
  width: 25%;
  transition: width var(--t-slow) var(--easing);
}
.msf-progress-text {
  font-size: 0.85rem; color: var(--gray-500);
  display: flex; justify-content: space-between;
}

.msf-step { display: none; }
.msf-step.active { display: block; animation: msfStepIn 0.35s var(--easing); }
@keyframes msfStepIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.msf-step h3 {
  margin-top: 0; font-size: 1.4rem;
}
.msf-step .msf-step-hint {
  color: var(--gray-500); font-size: 0.95rem;
  margin-bottom: 22px;
}

/* Selectable option cards (radio replacement) */
.msf-options {
  display: grid; gap: 10px; margin-bottom: 20px;
}
.msf-option {
  position: relative;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--t-fast) var(--easing), background var(--t-fast) var(--easing), transform var(--t-fast) var(--easing);
}
.msf-option input { position: absolute; opacity: 0; pointer-events: none; }
.msf-option label {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; cursor: pointer;
  font-weight: 500; color: var(--ink);
  margin: 0;
}
.msf-option label::before {
  content: ""; width: 20px; height: 20px;
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color var(--t-fast) var(--easing), background var(--t-fast) var(--easing);
}
.msf-option:hover { border-color: var(--teal); background: var(--gray-50); }
.msf-option:has(input:checked) {
  border-color: var(--teal); background: var(--teal-bg);
}
.msf-option:has(input:checked) label::before {
  border-color: var(--teal); background: var(--teal);
  box-shadow: inset 0 0 0 4px var(--white);
}

.msf-actions {
  display: flex; gap: 12px; justify-content: space-between;
  margin-top: 22px;
}
.msf-actions .btn-back {
  background: transparent; color: var(--gray-500) !important;
  border: 1.5px solid var(--gray-200);
  box-shadow: none;
}
.msf-actions .btn-back:hover {
  background: var(--gray-50); color: var(--ink) !important; border-color: var(--gray-300);
  transform: none; box-shadow: none;
}
.msf-actions .btn-next,
.msf-actions .btn-submit { flex-grow: 1; }
@media (min-width: 520px) {
  .msf-actions .btn-next,
  .msf-actions .btn-submit { flex-grow: 0; min-width: 200px; }
  .msf-actions { justify-content: space-between; }
}

.msf-error {
  background: #fef2f2; color: #9b1c1c;
  padding: 10px 14px; border-radius: 8px;
  font-size: 0.9rem; margin-bottom: 14px;
  display: none;
}
.msf-error.show { display: block; animation: shake 0.3s var(--easing); }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

.msf-trust {
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--gray-100);
  display: flex; align-items: center; gap: 8px;
  color: var(--gray-500); font-size: 0.85rem;
}
.msf-trust svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }

/* ============================================================
   Sticky mobile CTA
   ============================================================ */
.sticky-mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-150);
  box-shadow: 0 -4px 16px rgba(10, 37, 64, 0.08);
  padding: 12px 16px;
  z-index: 40;
  transition: transform var(--t-base) var(--easing);
}
.sticky-mobile-cta.visible { display: block; }
.sticky-mobile-cta.hidden { transform: translateY(100%); }
.sticky-mobile-cta .btn {
  width: 100%; padding: 15px 18px; font-size: 1rem;
}
@media (min-width: 820px) {
  .sticky-mobile-cta { display: none !important; }
}

/* Body padding so sticky CTA doesn't cover content */
body.has-sticky-cta {
  padding-bottom: 80px;
}
@media (min-width: 820px) {
  body.has-sticky-cta { padding-bottom: 0; }
}

/* ============================================================
   Eyebrow / breadcrumb
   ============================================================ */
.breadcrumb {
  font-size: 0.88rem; color: var(--gray-500);
  padding: 18px 0 0;
}
.breadcrumb a { color: var(--gray-500); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal-2); text-decoration: underline; }
.breadcrumb-sep { margin: 0 8px; color: var(--gray-300); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
  padding: 56px 0 32px;
  margin-top: 80px;
  font-size: 0.92rem;
}
.site-footer h4 { color: var(--white); margin: 0 0 14px; font-size: 0.95rem; letter-spacing: 0.02em; }
.site-footer a { color: rgba(255, 255, 255, 0.8); }
.site-footer a:hover { color: var(--white); }
.footer-grid {
  display: grid; gap: 32px; margin-bottom: 32px;
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-weight: 700;
  margin-bottom: 14px;
}
.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px; font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6); line-height: 1.65;
}

/* ============================================================
   Reveal animation utility
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--easing), transform 0.6s var(--easing);
}
.reveal.in {
  opacity: 1; transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Utilities
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
hr { border: none; border-top: 1px solid var(--gray-150); margin: 32px 0; }

.skip-link {
  position: absolute; left: -9999px;
  background: var(--ink); color: var(--white) !important;
  padding: 10px 14px; border-radius: 6px; z-index: 100;
  font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Print */
@media print {
  .site-header, .site-footer, .sticky-mobile-cta, .cta-banner { display: none; }
  body { color: black; }
}
