/**
 * Gratis Konsultationssamtal — landing page template.
 *
 * Scoped under .svea-konsultation. Local tokens point to svea-blocks's
 * svea-base.css tokens (--svea-color-*) so the palette swaps automatically
 * if the template is ever used under another brand.
 *
 * Class naming: .svea-konsultation wrapper + per-section BEM blocks
 * (.hero, .doors, .voice, etc.). The wrapper scopes the short names so
 * they can't bleed into theme styles outside the template.
 *
 * Body class .has-svea-konsultation is added by the provider on pages
 * using this template. Used here to neutralize theme wrappers
 * (GeneratePress .one-container, .grid-container, .site-content, etc.)
 * that otherwise add padding/max-width and break full-bleed sections.
 */

/* ==================== THEME WRAPPER RESET ==================== */
/* Neutralize the active theme's container padding/margin/max-width so the
   template's full-bleed background sections (voices = cream, steps =
   primary-10) actually fill the viewport. !important required to beat
   inline customizer-generated styles in GeneratePress. */
.has-svea-konsultation .site-content,
.has-svea-konsultation .content-area,
.has-svea-konsultation .inside-article,
.has-svea-konsultation .entry-content,
.has-svea-konsultation main,
.has-svea-konsultation #primary,
.has-svea-konsultation .one-container .site-content,
.has-svea-konsultation .grid-container,
.has-svea-konsultation .grid-container.container.hfeed {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
}
.has-svea-konsultation .inside-article {
  border: 0 !important;
  background: transparent !important;
}

/* ==================== WRAPPER + LOCAL TOKENS ==================== */
.svea-konsultation {
  --svk-paper:           #faf8f5;
  --svk-cream:           var(--svea-color-accent-2, #FBF0E0);
  --svk-ink:             var(--svea-color-text, #3d3d3d);
  --svk-ink-strong:      #1a1a1a;
  --svk-ink-soft:        var(--svea-color-text-secondary, #666666);
  --svk-line:            #dcdad5;
  --svk-primary:         var(--svea-color-primary, #833EA9);
  --svk-primary-dark:    var(--svea-color-primary-dark, #6B2D8B);
  --svk-primary-10:      var(--svea-color-primary-10, #F1E9F4);
  --svk-primary-25:      var(--svea-color-primary-25, #DBC9E4);
  --svk-pink:            var(--svea-color-accent-1, #DAA6C9);
  --svk-star:            #eab308;

  background: var(--svk-paper);
  font-family: 'Hind', system-ui, sans-serif;
  color: var(--svk-ink);
  font-size: 16px;
  line-height: 1.65;
  padding-bottom: 88px;
}
.svea-konsultation * { box-sizing: border-box; }
.svea-konsultation img { max-width: 100%; height: auto; display: block; }
.svea-konsultation--no-sticky { padding-bottom: 0; }

/* ==================== BUTTONS ==================== */
.svea-konsultation .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.95rem 1.5rem; border-radius: 999px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem;
  text-decoration: none; transition: all 0.2s ease; border: 2px solid;
}
.svea-konsultation .btn--primary { background: var(--svk-primary); color: #fff; border-color: var(--svk-primary); }
.svea-konsultation .btn--primary:hover { background: var(--svk-primary-dark); border-color: var(--svk-primary-dark); transform: translateY(-1px); }
/* Secondary button — matches svea-blocks .svea-btn--secondary pattern:
   transparent bg, primary border + text, light primary tint on hover. */
.svea-konsultation .btn--ghost {
  background: transparent;
  color: var(--svk-primary);
  border-color: var(--svk-primary);
}
.svea-konsultation .btn--ghost:hover {
  background: color-mix(in srgb, var(--svk-primary) 8%, transparent);
  border-color: var(--svk-primary-dark);
  color: var(--svk-primary-dark);
  transform: translateY(-1px);
}

/* ==================== HERO (V2 centered manifesto) ====================
   All elements centered. Symmetric. No portrait. Quiet authority.
   Based on svea-blocks/templates/yrkessidor/sveakbt-frontpage/wireframe.html → v2h.
*/
.svea-konsultation .hero {
  padding: 1rem 1rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column;
}

/* Trust pill (eyebrow) — centered at top */
.svea-konsultation .hero__meta {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.68rem, 2.1vw, 0.85rem);
  color: var(--svk-ink); font-weight: 500;
  margin: 0 auto 2rem;
  display: inline-flex; align-items: center; flex-wrap: nowrap;
  column-gap: 0.4rem;
  background: #fff;
  border: 1px solid var(--svk-line);
  border-radius: 999px;
  padding: 0.45rem 0.95rem 0.45rem 0.6rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  white-space: nowrap;
}
.svea-konsultation .hero__google { display: inline-flex; align-items: center; line-height: 1; flex-shrink: 0; }
.svea-konsultation .hero__google svg { width: 16px; height: 16px; display: block; }
.svea-konsultation .hero__stars { color: var(--svk-star); letter-spacing: 0.03em; font-size: 0.92rem; line-height: 1; }
.svea-konsultation .hero__meta strong { color: var(--svk-primary); font-weight: 600; }
.svea-konsultation .hero__meta .dot { opacity: 0.4; margin: 0 0.05em; }

/* H1 — huge light-weight display. Two-row manifesto layout:
   row 1 = "Gratis" (purple accent), row 2 = "konsultationssamtal" (ink).
   font-size scales with viewport (7.5vw) so the 19-char second word
   always sits on one line from ~320px viewport up to the 5.5rem cap. */
.svea-konsultation .hero__h {
  font-family: 'Poppins', sans-serif; font-weight: 200;
  font-size: clamp(1.75rem, 7.5vw, 5.5rem); line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0 auto 1.75rem;
  color: var(--svk-ink-strong);
}
/* Each word locked to its own line so the H1 is ALWAYS exactly two rows,
   regardless of viewport — "konsultationssamtal" never wraps to a third row.
   font-size (clamp below) is tuned so the long word still fits within the
   container at the smallest viewports. */
.svea-konsultation .hero__h-accent {
  display: block;
  white-space: nowrap;
  color: var(--svk-primary);
}
.svea-konsultation .hero__h-main {
  display: block;
  white-space: nowrap;
}
.svea-konsultation .hero__h em {
  font-style: normal; font-weight: 500;
  color: var(--svk-primary);
}

/* Byline — centered, narrow column for readability */
.svea-konsultation .hero__byline {
  font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.55;
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  color: var(--svk-ink);
}

/* USPs — metric-style strip with icon + uppercase mini-caps label, vertical
   dividers between items. Mirrors svea-blocks/templates/framsida-forslag.php
   .fp-hero__usps pattern. */
.svea-konsultation .hero__bullets {
  list-style: none; padding: 0;
  margin: 2rem auto 0;
  max-width: 720px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  font-family: 'Poppins', sans-serif;
}
.svea-konsultation .hero__bullets li {
  padding: 0 0.5rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}
.svea-konsultation .hero__bullets li:last-child { border-right: 0; }
.svea-konsultation .hero__bullets .ico { color: var(--svk-primary); display: inline-flex; }
.svea-konsultation .hero__bullets .ico svg { width: 22px; height: 22px; fill: currentColor; }
.svea-konsultation .hero__bullets .lbl {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--svk-ink-strong); line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Responsive label variants — mirrors framsida-forslag.php pattern.
   Mobile shows the shorter version, desktop the fuller one. */
.svea-konsultation .hero__bullets .lbl-desktop { display: none; }
.svea-konsultation .hero__bullets .lbl-mobile { display: inline; }

/* CTAs — stacked + full-width on mobile, side-by-side centered on desktop */
.svea-konsultation .hero__ctas {
  display: flex; flex-direction: column;
  align-items: stretch; justify-content: center;
  gap: 0.75rem;
  margin: 0 auto 1.5rem;
  max-width: 480px;
}
.svea-konsultation .hero__ctas .btn { width: 100%; }

/* Stats grid stays below the manifesto, full-width 4 columns on desktop */
.svea-konsultation .hero__stats {
  display: none; grid-template-columns: repeat(4, 1fr);
  margin-top: 3.5rem; border-top: 1px solid var(--svk-line);
  text-align: left;
}
.svea-konsultation .hero__stat { padding: 1.5rem 0.75rem 0; border-right: 1px solid var(--svk-line); }
.svea-konsultation .hero__stat:last-child { border-right: 0; }
.svea-konsultation .hero__stat-num {
  font-family: 'Poppins', sans-serif; font-weight: 200;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem); line-height: 1;
  letter-spacing: -0.025em; display: block; margin-bottom: 0.4rem;
  color: var(--svk-ink-strong);
}
.svea-konsultation .hero__stat-num strong { color: var(--svk-primary); font-weight: 200; }
.svea-konsultation .hero__stat-lbl {
  font-family: 'Poppins', sans-serif; font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--svk-ink-soft); font-weight: 600; display: block;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .svea-konsultation .hero { padding: 4rem 1rem 5rem; }
  .svea-konsultation .hero__meta { font-size: 0.85rem; padding: 0.55rem 1.15rem 0.55rem 0.75rem; column-gap: 0.55rem; margin-bottom: 2.5rem; }
  /* USPs: bigger icons + labels on desktop */
  .svea-konsultation .hero__bullets { margin: 2.5rem auto 0; }
  .svea-konsultation .hero__bullets li { padding: 0 1.25rem; gap: 0.6rem; }
  .svea-konsultation .hero__bullets .ico svg { width: 28px; height: 28px; }
  .svea-konsultation .hero__bullets .lbl { font-size: 0.7rem; letter-spacing: 0.15em; line-height: 1.4; }
  .svea-konsultation .hero__bullets .lbl-desktop { display: inline; }
  .svea-konsultation .hero__bullets .lbl-mobile { display: none; }
  /* CTAs side by side, content-width. They sit directly under the byline
     (the byline's margin-bottom supplies the gap), so no extra margin-top. */
  .svea-konsultation .hero__ctas { flex-direction: row; gap: 1rem; max-width: none; margin: 0 auto; }
  .svea-konsultation .hero__ctas .btn { width: auto; padding: 1rem 1.75rem; font-size: 0.95rem; }
  .svea-konsultation .hero__stats { display: grid; }
  /* Desktop: CTAs above USPs so the buttons land above the fold. The USP
     strip follows below (matches mobile DOM order). */
  .svea-konsultation .hero__ctas { order: 1; }
  .svea-konsultation .hero__bullets { order: 2; margin-top: 2.5rem; }
  .svea-konsultation .hero__stats { order: 3; }
}

/* ==================== DOORS ==================== */
.svea-konsultation .doors { padding: 3rem 1rem; max-width: 1200px; margin: 0 auto; }
.svea-konsultation .doors__h {
  font-family: 'Poppins', sans-serif; font-weight: 200;
  font-size: clamp(2rem, 5vw, 3rem); line-height: 1.05;
  letter-spacing: -0.025em; margin: 0 0 2rem;
}
.svea-konsultation .doors__h em { font-style: normal; font-weight: 500; color: var(--svk-primary); }
.svea-konsultation .doors__grid { display: grid; gap: 1rem; }

.svea-konsultation .door {
  position: relative; padding: 2rem; border-radius: 28px; overflow: hidden;
  display: flex; flex-direction: column;
}
.svea-konsultation .door--primary {
  background: linear-gradient(135deg, var(--svk-primary) 0%, var(--svk-primary-dark) 100%);
  color: #fff;
}
.svea-konsultation .door--secondary { background: #fff; color: var(--svk-ink); border: 1px solid var(--svk-cream); }
.svea-konsultation .door__pill {
  display: inline-block; background: rgba(255, 255, 255, 0.25); color: #fff;
  font-family: 'Poppins', sans-serif; font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  padding: 0.3rem 0.8rem; border-radius: 999px; margin-bottom: 1rem;
  align-self: flex-start; backdrop-filter: blur(10px);
}
.svea-konsultation .door__title {
  font-family: 'Poppins', sans-serif; font-weight: 300;
  font-size: 1.65rem; line-height: 1.15; margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  color: inherit; /* defeat theme heading color so .door--primary white wins */
}
.svea-konsultation .door__body { font-size: 0.98rem; line-height: 1.55; margin: 0 0 1.5rem; opacity: 0.94; flex-grow: 1; color: inherit; }
.svea-konsultation .door__cta {
  align-self: stretch; /* full-width on mobile */
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: #fff; color: var(--svk-primary);
  padding: 0.8rem 1.3rem; border-radius: 999px;
  text-decoration: none; font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 0.92rem; transition: transform 0.2s;
}
.svea-konsultation .door__cta:hover { transform: translateX(3px); }
.svea-konsultation .door--secondary .door__cta { background: var(--svk-primary); color: #fff; }

@media (min-width: 768px) {
  .svea-konsultation .doors { padding: 5rem 1rem; }
  .svea-konsultation .doors__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .svea-konsultation .door { padding: 2.5rem; }
  .svea-konsultation .door__title { font-size: 2rem; }
  /* Desktop: door CTAs back to content-width */
  .svea-konsultation .door__cta { align-self: flex-start; display: inline-flex; justify-content: flex-start; }
}

/* ==================== VOICES ==================== */
.svea-konsultation .voices { padding: 3rem 1rem; background: var(--svk-cream); }
.svea-konsultation .voices__inner { max-width: 1200px; margin: 0 auto; }
.svea-konsultation .voices__h {
  font-family: 'Poppins', sans-serif; font-weight: 200;
  font-size: clamp(2rem, 5vw, 3rem); text-align: center;
  margin: 0 0 2rem; line-height: 1.1; letter-spacing: -0.02em;
}
.svea-konsultation .voices__h em { font-style: normal; font-weight: 500; color: var(--svk-primary); }
.svea-konsultation .voices__stage { max-width: 700px; margin: 0 auto; }

.svea-konsultation .voice {
  background: #fff; padding: 1.1rem 1.4rem; border-radius: 26px;
  max-width: 88%; margin-bottom: 0.85rem;
  font-family: 'Hind', sans-serif; font-size: 1rem; line-height: 1.5;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.svea-konsultation .voice--left { border-bottom-left-radius: 8px; margin-right: auto; }
.svea-konsultation .voice--right { border-bottom-right-radius: 8px; margin-left: auto; background: var(--svk-primary); color: #fff; }
.svea-konsultation .voice__rating {
  display: inline-flex; align-items: center; gap: 0.45rem;
  margin-bottom: 0.55rem;
}
.svea-konsultation .voice__google { display: inline-flex; align-items: center; }
.svea-konsultation .voice__google svg { display: block; width: 16px; height: 16px; }
.svea-konsultation .voice__stars { color: var(--svk-star); font-size: 0.9rem; letter-spacing: 0.05em; line-height: 1; }
.svea-konsultation .voice--right .voice__stars { color: #fde047; }
.svea-konsultation .voice__text { margin: 0; }
.svea-konsultation .voice__attr {
  display: block; font-size: 0.75rem; color: var(--svk-ink-soft);
  margin-top: 0.5rem; font-weight: 600;
}
.svea-konsultation .voice--right .voice__attr { color: rgba(255, 255, 255, 0.85); text-align: right; }

@media (min-width: 768px) {
  .svea-konsultation .voices { padding: 5rem 1rem; }
  .svea-konsultation .voices__stage {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; max-width: 1200px;
  }
  .svea-konsultation .voice {
    max-width: none; margin: 0;
    padding: 1.75rem; border-radius: 18px;
    background: #fff; color: var(--svk-ink);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }
  .svea-konsultation .voice--right { background: #fff; color: var(--svk-ink); }
  .svea-konsultation .voice--right .voice__stars { color: var(--svk-star); }
  .svea-konsultation .voice--right .voice__attr { color: var(--svk-ink-soft); text-align: left; }
}

/* ==================== HELP ==================== */
.svea-konsultation .help { padding: 3rem 1rem; max-width: 1200px; margin: 0 auto; }
.svea-konsultation .help__h {
  font-family: 'Poppins', sans-serif; font-weight: 200;
  font-size: clamp(2rem, 5vw, 3rem); line-height: 1.05;
  letter-spacing: -0.025em; margin: 0 0 1.5rem;
}
.svea-konsultation .help__h strong { font-weight: 500; color: var(--svk-primary); }
.svea-konsultation .help__lead { font-size: 1.08rem; line-height: 1.7; margin: 0 0 2rem; max-width: 60ch; }
.svea-konsultation .help__lead::first-letter {
  font-family: 'Poppins', sans-serif; font-weight: 200;
  font-size: 4rem; line-height: 0.85; float: left;
  padding: 0.2rem 0.7rem 0 0; color: var(--svk-primary);
}
.svea-konsultation .help__cats { display: grid; gap: 2rem; }
.svea-konsultation .help__cat { max-width: 56ch; }
.svea-konsultation .help__subhead {
  font-family: 'Poppins', sans-serif; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.25em;
  color: var(--svk-primary); font-weight: 700;
  margin: 0 0 0.75rem;
}
.svea-konsultation .help__list { list-style: none; padding: 0; margin: 0; }
.svea-konsultation .help__list li {
  padding: 0.95rem 0 0.95rem 1.75rem; border-top: 1px solid var(--svk-line);
  font-size: 1rem; line-height: 1.5; position: relative;
}
.svea-konsultation .help__list li:last-child { border-bottom: 1px solid var(--svk-line); }
.svea-konsultation .help__list li::before {
  content: '—'; position: absolute; left: 0; top: 0.95rem;
  color: var(--svk-primary); font-weight: 600;
}
.svea-konsultation .help__close {
  font-size: 1rem; line-height: 1.7;
  margin: 2rem 0 0; max-width: 60ch;
  color: var(--svk-ink);
}

@media (min-width: 768px) {
  .svea-konsultation .help { padding: 5rem 1rem; }
  .svea-konsultation .help__cats { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

/* ==================== STEPS ==================== */
.svea-konsultation .steps { padding: 3rem 1rem; background: var(--svk-primary-10); }
.svea-konsultation .steps__inner { max-width: 1200px; margin: 0 auto; }
.svea-konsultation .steps__h {
  font-family: 'Poppins', sans-serif; font-weight: 200;
  font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 2rem;
  letter-spacing: -0.025em;
}
.svea-konsultation .steps__grid { display: block; }

.svea-konsultation .step { padding: 1.75rem 0; border-top: 1px solid var(--svk-pink); }
.svea-konsultation .step:first-of-type { border-top-color: var(--svk-primary); }
.svea-konsultation .step__num {
  font-family: 'Poppins', sans-serif; font-weight: 200;
  font-size: clamp(3.5rem, 9vw, 5.5rem); line-height: 0.85;
  letter-spacing: -0.04em; color: var(--svk-primary);
  display: block; margin-bottom: 0.5rem;
}
.svea-konsultation .step__title {
  font-family: 'Poppins', sans-serif; font-weight: 500;
  font-size: 1.35rem; margin: 0.5rem 0 0.5rem;
  letter-spacing: -0.01em;
}
.svea-konsultation .step__body { font-size: 1rem; line-height: 1.6; margin: 0; max-width: 56ch; }

@media (min-width: 768px) {
  .svea-konsultation .steps { padding: 5rem 1rem; }
  .svea-konsultation .steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
  .svea-konsultation .step {
    padding: 0 1.5rem 0 2rem;
    border-top: 0;
    border-left: 1px solid var(--svk-pink);
  }
  .svea-konsultation .step:first-of-type { border-left-color: var(--svk-primary); }
  .svea-konsultation .step__num { font-size: clamp(4rem, 6vw, 5.5rem); }
}

/* ==================== BEFORE / AFTER ==================== */
.svea-konsultation .ba { padding: 3rem 1rem; max-width: 1200px; margin: 0 auto; }
.svea-konsultation .ba__h {
  font-family: 'Poppins', sans-serif; font-weight: 200;
  font-size: clamp(2rem, 5vw, 3rem); line-height: 1.05;
  letter-spacing: -0.025em; margin: 0 0 2rem;
}
.svea-konsultation .ba__h em { font-style: normal; font-weight: 500; color: var(--svk-primary); }
/* Mobile: stacked single column — before first, after below. */
.svea-konsultation .ba__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}
.svea-konsultation .ba__col {
  padding: 1.1rem;
  border-radius: 14px;
  border: 1px solid;
}
.svea-konsultation .ba__col--before { background: var(--svk-cream); border-color: #f0d9b5; }
.svea-konsultation .ba__col--after { background: var(--svk-primary-10); border-color: var(--svk-primary-25); }
.svea-konsultation .ba__lbl {
  font-family: 'Poppins', sans-serif; font-size: 0.62rem;
  text-transform: uppercase; letter-spacing: 0.2em;
  font-weight: 700; margin: 0 0 0.6rem;
}
.svea-konsultation .ba__col--before .ba__lbl { color: var(--svk-ink-soft); }
.svea-konsultation .ba__col--after .ba__lbl { color: var(--svk-primary); }
.svea-konsultation .ba__title {
  font-family: 'Poppins', sans-serif; font-weight: 500;
  font-size: 0.95rem; line-height: 1.25; margin: 0 0 0.85rem; color: var(--svk-ink-strong);
}
.svea-konsultation .ba__list { list-style: none; padding: 0; margin: 0; }
.svea-konsultation .ba__list li {
  font-size: 0.82rem; line-height: 1.4;
  padding: 0.5rem 0 0.5rem 1.4rem; position: relative;
}
.svea-konsultation .ba__col--before .ba__list li::before {
  content: '×'; position: absolute; left: 0; top: 0.45rem;
  color: var(--svk-ink-soft); font-weight: 700; font-size: 1.05rem;
  line-height: 1;
}
.svea-konsultation .ba__col--after .ba__list li::before {
  content: '✓'; position: absolute; left: 0; top: 0.5rem;
  color: var(--svk-primary); font-weight: 700; font-size: 0.92rem;
}

@media (min-width: 768px) {
  .svea-konsultation .ba { padding: 5rem 1rem; }
  /* Desktop: 2-column with subgrid so list items align horizontally
     across both cards even when content lengths differ. */
  .svea-konsultation .ba__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto repeat(5, auto);
    column-gap: 1.5rem;
    row-gap: 0;
  }
  .svea-konsultation .ba__col {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 1 / -1;
    padding: 2.5rem;
    border-radius: 20px;
  }
  .svea-konsultation .ba__list { display: contents; }
  .svea-konsultation .ba__lbl { font-size: 0.7rem; letter-spacing: 0.25em; margin-bottom: 0.85rem; }
  .svea-konsultation .ba__title { font-size: 1.2rem; margin-bottom: 1rem; }
  .svea-konsultation .ba__list li { font-size: 0.98rem; padding: 0.6rem 0 0.6rem 1.85rem; }
  .svea-konsultation .ba__col--before .ba__list li::before { font-size: 1.25rem; top: 0.55rem; }
  .svea-konsultation .ba__col--after .ba__list li::before { font-size: 1rem; top: 0.6rem; }
}

/* ==================== FAQ ==================== */
.svea-konsultation .faq { padding: 3rem 1rem 4rem; max-width: 1200px; margin: 0 auto; }
.svea-konsultation .faq__h {
  font-family: 'Poppins', sans-serif; font-weight: 200;
  font-size: clamp(2rem, 5vw, 3rem); line-height: 1.05;
  letter-spacing: -0.025em; margin: 0 0 2rem;
}
.svea-konsultation .faq__h em { font-style: normal; font-weight: 500; color: var(--svk-primary); }
.svea-konsultation .faq__item { border-top: 1px solid var(--svk-ink-strong); }
.svea-konsultation .faq__item:last-of-type { border-bottom: 1px solid var(--svk-ink-strong); }
.svea-konsultation .faq__item summary {
  padding: 1.35rem 3rem 1.35rem 0; cursor: pointer; list-style: none;
  font-family: 'Poppins', sans-serif; font-weight: 500;
  font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.3;
  letter-spacing: -0.005em; position: relative;
}
.svea-konsultation .faq__item summary::-webkit-details-marker { display: none; }
.svea-konsultation .faq__item summary::after {
  content: '+'; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  color: var(--svk-primary); font-weight: 400; font-size: 1.6rem;
  transition: transform 0.25s;
}
.svea-konsultation .faq__item[open] summary::after { content: '−'; }
.svea-konsultation .faq__answer {
  padding: 0 0 1.5rem; font-size: 1rem; line-height: 1.65;
  color: var(--svk-ink); margin: 0;
}

@media (min-width: 768px) { .svea-konsultation .faq { padding: 5rem 1rem 6rem; } }

/* ==================== DESKTOP CONTAINER: drop L/R padding at ≥1200 ==================== */
@media (min-width: 1200px) {
  .svea-konsultation .hero,
  .svea-konsultation .doors,
  .svea-konsultation .voices,
  .svea-konsultation .help,
  .svea-konsultation .steps,
  .svea-konsultation .ba,
  .svea-konsultation .faq {
    padding-left: 0; padding-right: 0;
  }
}

/* ==================== STICKY (V1-style — copy left, single CTA right) ==================== */
.svea-konsultation .sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: var(--svk-ink-strong); color: #fff;
  padding: 0.75rem 1rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  display: flex; gap: 0.75rem; align-items: center; justify-content: space-between;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.15);
}
.svea-konsultation .sticky.is-hidden { display: none; }
.svea-konsultation .sticky__copy {
  font-family: 'Poppins', sans-serif; font-size: 0.85rem;
  min-width: 0;
}
.svea-konsultation .sticky__copy span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.18em;
  font-weight: 600; margin-bottom: 0.15rem;
}
.svea-konsultation .sticky__copy strong {
  display: block; font-weight: 600; color: #fff;
  font-size: 0.95rem; line-height: 1.2;
}
.svea-konsultation .sticky__cta {
  background: var(--svk-pink); color: var(--svk-ink-strong); border: 0;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.88rem;
  padding: 0.75rem 1.25rem; border-radius: 999px; text-decoration: none;
  white-space: nowrap; flex-shrink: 0;
  transition: all 0.2s;
}
.svea-konsultation .sticky__cta:hover { background: var(--svk-primary); color: #fff; transform: translateY(-1px); }

/* Sticky is mobile-only — desktop has the hero CTAs + doors visible enough
   that a bottom-anchored bar would be redundant and steal vertical space. */
@media (min-width: 768px) {
  .svea-konsultation .sticky { display: none; }
  .svea-konsultation { padding-bottom: 0; }
}

/* ==================== BOOKING MODAL CONTENT ==================== */
/* Outside .svea-konsultation scope because .svea-modal renders globally.
   Modal feature's CSS handles the flex column layout when an iframe is
   present (header + iframe[flex:1] + footer fill the container). */
.konsultation-iframe {
  display: block;
  width: 100%;
  border: 0;
}

.konsultation-modal__header {
  padding: 1.5rem 3.5rem 1rem 1.5rem; /* extra right for close button */
  border-bottom: 1px solid #e5e5e5;
}
.konsultation-modal__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 0.35rem;
  color: #1a1a1a;
}
.konsultation-modal__brand {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--svea-color-primary, #833EA9);
  margin: 0 0 0.7rem;
}
.konsultation-modal__contact {
  font-family: 'Hind', sans-serif;
  font-size: 0.85rem;
  line-height: 1.55;
  color: #666;
  margin: 0;
}
.konsultation-modal__contact a {
  color: var(--svea-color-primary, #833EA9);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.konsultation-modal__note {
  padding: 0.85rem 1.5rem;
  margin: 0;
  font-family: 'Hind', sans-serif;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #666;
  background: #faf8f5;
  border-top: 1px solid #e5e5e5;
}
.konsultation-modal__note strong {
  color: #1a1a1a;
}
