/* =====================================================
   SELF-HOSTED FONTS
===================================================== */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: block;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: block;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: block;
  src: url('../fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: block;
  src: url('../fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* =====================================================
   DESIGN TOKENS
===================================================== */
:root {
  --color-primary:        #2e7d32;
  --color-primary-hover:  #388e3c;
  --color-primary-soft:   #dcfce7;
  --color-accent:         #2563eb;
  --color-bg-white:       #ffffff;
  --color-bg-subtle:      #f8fafc;
  --color-bg-cream:       #faf6f1;
  --color-text-header:    #0f172a;
  --color-text-body:      #475569;
  --color-text-muted:     #94a3b8;
  --color-border:         #e2e8f0;
  --color-border-soft:    #eef2f7;
  --color-star:           #f59e0b;
  --radius-standard:      0.5rem;
  --radius-pill:          999px;
  --shadow-soft:          0 1px 2px rgba(0,0,0,0.05);
  --shadow-card:          0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-hero-form:     0 10px 30px rgba(15, 23, 42, 0.08);
  --max-width:            1200px;
  --header-height:        68px;
}

/* =====================================================
   BASE
===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-body);
  background: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: var(--color-text-header);
  line-height: 1.2;
}
a   { color: inherit; text-decoration: none; }

.prose-stack a,
.seo-text-block a,
.text-lead a,
.customer-story a,
.partner-description a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.prose-stack a:hover,
.seo-text-block a:hover,
.text-lead a:hover,
.customer-story a:hover,
.partner-description a:hover {
  text-decoration-thickness: 2px;
}
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { font-family: inherit; }

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* =====================================================
   BUTTON
===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-standard);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.25);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.22);
}
.btn-primary:hover .btn-arrow {
  transform: translateX(2px);
}
.btn-sm  { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg  { padding: 0.875rem 1.5rem; font-size: 0.9375rem; }
.btn-pill { border-radius: var(--radius-pill); }
.btn-arrow { width: 14px; height: 14px; transition: transform 0.2s ease; }
.btn-sm .btn-arrow { width: 12px; height: 12px; }
.btn-lg .btn-arrow { width: 16px; height: 16px; }

/* =====================================================
   HEADER
===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg-white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.2s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-text-header);
  letter-spacing: -0.01em;
}
.logo-tld { color: var(--color-primary); }

/* ── Main nav ── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  flex: 1;
}

.nav-item { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-body);
  border-radius: var(--radius-standard);
  transition: background 0.15s ease, color 0.15s ease;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  text-decoration: none;
}
.nav-link:hover,
.nav-has-dropdown.open > .nav-link {
  background: var(--color-bg-subtle);
  color: var(--color-text-header);
}

.nav-caret {
  width: 10px;
  height: 10px;
  opacity: 0.6;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.nav-has-dropdown.open > .nav-link .nav-caret {
  transform: rotate(180deg);
}

/* ── Dropdown ── */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-standard);
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  min-width: 180px;
  padding: 1.125rem 1.375rem 1.25rem;
  z-index: 300;
}
.nav-has-dropdown.open .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 0.25rem 0;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--color-text-body);
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.15s ease;
}
.nav-dropdown a:hover { color: var(--color-text-header); }
.nav-dropdown-all {
  border-top: 1px solid var(--color-border);
  margin-top: 0.25rem;
  padding-top: 0.625rem !important;
  color: var(--color-primary) !important;
  font-weight: 600 !important;
}

/* ── Header right ── */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-left: auto;
}
.header-right .btn-primary {
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
  border-radius: 8px;
}
.header-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-body);
  padding: 0.5rem 0.25rem;
  transition: color 0.15s ease;
  white-space: nowrap;
}
.header-link:hover { color: var(--color-text-header); }


/* ── Burger ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-header);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mega menu (multi-column card dropdown) ── */
.nav-mega {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-standard);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  padding: 1.125rem 1.375rem 1.25rem;
  z-index: 300;
}
.nav-has-dropdown.open .nav-mega { display: block; }

/* Desktop: hover + keyboard focus open panels without JS */
@media (hover: hover) and (pointer: fine) {
  .nav-has-dropdown:hover > .nav-dropdown,
  .nav-has-dropdown:hover > .nav-mega,
  .nav-has-dropdown:focus-within > .nav-dropdown,
  .nav-has-dropdown:focus-within > .nav-mega { display: block; }

  /* Invisible bridge fills the 6px gap between nav button and panel,
     keeping :hover alive while the mouse moves diagonally. */
  .nav-dropdown::before,
  .nav-mega::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    height: 6px;
  }
}

.nav-mega-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  min-width: 600px;
}
.nav-mega-inner-2col {
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  min-width: 460px;
}
.nav-mega-inner-4col {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  min-width: 820px;
}
.nav-mega-inner-slim {
  grid-template-columns: 1fr;
  min-width: 180px;
}
.nav-mega-inner-hire {
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  min-width: 560px;
  align-items: start;
}
.nav-mega-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.5rem;
  row-gap: 0;
}
.nav-mega-col ul + .nav-mega-label {
  margin-top: 0.875rem;
}

/* Right-align dropdowns whose nav item sits on the right side of the bar,
   so the panel doesn't overflow the viewport. */
.nav-align-right .nav-dropdown,
.nav-align-right .nav-mega {
  left: auto;
  right: 0;
}

.nav-mega-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-mega-col li { margin: 0; }
.nav-mega-col a {
  display: block;
  padding: 0.25rem 0;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--color-text-body);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.15s ease;
}
.nav-mega-col a:hover { color: var(--color-text-header); }

.nav-mega-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 0.5rem;
}

.nav-mega-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.5rem;
}

.nav-mega-all {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}
.nav-mega-all:hover { text-decoration: underline; }

/* ── Star highlight (Alla flyttfirmor, Få gratis offerter, Alla guider) ── */
.nav-star {
  font-weight: 700 !important;
  color: var(--color-primary) !important;
}

/* ── Promo column in guides mega ── */
.nav-mega-promo {
  background: var(--color-primary-soft);
  border-radius: var(--radius-standard);
  padding: 1rem 1rem 0.875rem;
}
.nav-mega-promo-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text-header);
  margin-bottom: 0.375rem;
}
.nav-mega-promo-text {
  font-size: 0.8125rem;
  color: var(--color-text-body);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}


/* ── Divider inside dropdowns / mega columns ── */
.nav-divider {
  list-style: none;
  height: 1px;
  background: var(--color-border);
  margin: 0.5rem 0.75rem;
  border: 0;
  padding: 0;
}
.nav-mega-col .nav-divider { margin: 0.625rem 0; }

/* =====================================================
   HERO
===================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.8), transparent 45%),
    var(--color-bg-cream);
  padding: 4.5rem 0 5.5rem;
}

.hero-media {
  position: absolute;
  top: 0;
  right: max(0px, calc((100vw - 1200px) / 2));
  bottom: 0;
  width: 58%;
  overflow: hidden;
}
.hero-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--color-bg-cream) 0%,
    rgba(250,246,241,0.92) 12%,
    rgba(250,246,241,0.45) 28%,
    transparent 42%
  );
  z-index: 1;
  pointer-events: none;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0 0 0 auto;
  width: 80px;
  background: linear-gradient(to left, var(--color-bg-cream) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: scale(1.22);
  transform-origin: right center;
}

.hero-card {
  position: relative;
  z-index: 2;
  max-width: 490px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.hero-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 1rem;
}
.google-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}
.google-stars {
  color: #FBBC05;
  letter-spacing: -1px;
  line-height: 1;
  font-size: 0.8125rem;
}
.google-rating {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.h1-static {
  display: block;
  white-space: nowrap;
}

.hero-card h1 {
  font-size: clamp(1.625rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  color: var(--color-text-header);
}
/* ── Rotating H1 phrase ── */
.rotating-text {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  color: var(--color-primary);
}
.rt-clip {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  overflow: hidden;
}
.rt-ghost {
  display: inline-block;
  visibility: hidden;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.rt-current {
  position: absolute;
  inset: 0 auto auto 0;
  white-space: nowrap;
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 0.55s cubic-bezier(.22,.61,.36,1),
    opacity   0.45s ease;
  will-change: transform, opacity;
}
.rt-current.rt-enter { transform: translateY(100%); opacity: 0; }
.rt-current.rt-exit  { transform: translateY(-100%); opacity: 0; }

@media (max-width: 768px) {
  .rotating-text { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  .rt-current { transition: opacity 0.2s ease; }
  .rt-current.rt-enter,
  .rt-current.rt-exit { transform: none; }
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--color-text-body);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 500px;
}

/* ── Two-input search form ── */
.hero-form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(17,24,39,0.06);
  border-radius: var(--radius-standard);
  box-shadow: 0 10px 30px rgba(15,23,42,0.05);
  margin-bottom: 1.25rem;
}

.form-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}
.form-icon {
  position: absolute;
  left: 0.75rem;
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  pointer-events: none;
}
.hero-form-row input[type="text"] {
  width: 100%;
  height: 52px;
  padding: 0.75rem 0.875rem;
  border: 1px solid rgba(17,24,39,0.07);
  border-radius: var(--radius-standard);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--color-text-header);
  background: var(--color-bg-white);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.hero-form-row input[type="text"]::placeholder {
  color: var(--color-text-muted);
}
.hero-form-row input[type="text"]:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.hero-form-row .btn-primary {
  height: 52px;
  padding: 0 1.5rem;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(22,101,52,0.20);
  align-self: stretch;
}

/* ── Trust checkmarks row ── */
.trust-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  opacity: 0.75;
}
.trust-row li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--color-text-body);
  letter-spacing: -0.01em;
  line-height: 1.4;
  list-style: none;
}
.trust-row li svg {
  width: 15px;
  height: 15px;
  color: var(--color-text-muted);
  flex-shrink: 0;
  margin-top: 1px;
}
.hero .trust-row {
  max-width: 490px;
  position: relative;
  z-index: 2;
}

/* ── Social proof row ── */
.social-proof {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
  margin-bottom: 1.25rem;
}
.sp-rating, .sp-customers {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.google-g {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.sp-rating-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.2;
}
.tp-stars {
  font-size: 0.95rem;
  color: var(--color-star);
  letter-spacing: 0.05em;
  line-height: 1;
}
.sp-meta {
  font-size: 0.75rem;
  color: var(--color-text-body);
}
.avatar-stack {
  display: inline-flex;
  flex-shrink: 0;
}
.avatar-stack img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--color-bg-cream);
  object-fit: cover;
}
.avatar-stack img + img { margin-left: -10px; }


/* =====================================================
   SECTION UTILITIES
===================================================== */
.section { padding: 5rem 0; }
.section-alt { background: var(--color-bg-subtle); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--color-text-body);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.65;
}

/* =====================================================
   SECTION HEADER ROW (with side link)
===================================================== */
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}
.section-head-row .section-eyebrow {
  margin-bottom: 0.5rem;
}
.section-head-row h2 {
  font-size: clamp(1.625rem, 2.25vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}
.google-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-body);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-standard);
  transition: background 0.15s ease;
}
.google-link:hover { background: var(--color-bg-subtle); }
.google-g-sm { width: 18px; height: 18px; }

/* =====================================================
   REVIEWS
===================================================== */
.reviews-section { padding: 4.5rem 0 4rem; }
.reviews-carousel { position: relative; }

.reviews-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* allow shadow to extend below */
  padding-bottom: 0.5rem;
  margin-bottom: -0.5rem;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track > .review-card {
  flex: 0 0 calc((100% - 1.25rem * 3) / 4);
  scroll-snap-align: start;
}

.review-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-standard);
  padding: 1.5rem 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  box-shadow: var(--shadow-soft);
}
.review-card .tp-stars {
  font-size: 1rem;
  color: var(--color-primary);
  letter-spacing: 0.1em;
}
.review-quote {
  font-size: 0.9375rem;
  color: var(--color-text-header);
  line-height: 1.55;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.25rem;
}
.review-author .avatar {
  width: 44px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-text-header);
  line-height: 1.2;
}
.review-author span {
  font-size: 0.8125rem;
  color: var(--color-text-body);
}

/* ── Carousel dots ── */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: var(--color-border);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s ease, width 0.2s ease;
}
.carousel-dots button.is-active {
  background: var(--color-primary);
  width: 22px;
  border-radius: var(--radius-pill);
}

/* =====================================================
   GENERIC: arrow links + section header variants
===================================================== */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}
.link-arrow svg { width: 14px; height: 14px; transition: transform 0.15s ease; }
.link-arrow:hover svg { transform: translateX(3px); }
.link-arrow-strong { font-size: 0.9375rem; }

.section-sub-left {
  font-size: 0.9375rem;
  color: var(--color-text-body);
  max-width: 540px;
  margin-top: 0.5rem;
}

.section-header-left {
  text-align: left;
  margin-bottom: 2.5rem;
}
.section-header-left .section-eyebrow { margin-bottom: 0.5rem; }
.section-header-left h2 {
  font-size: clamp(1.625rem, 2.25vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.trust-row-center {
  justify-content: center;
  margin-top: 2.5rem;
  margin-bottom: 0;
  gap: 0;
  background: var(--color-bg-subtle);
  border-radius: var(--radius-standard);
  padding: 1.25rem 2.5rem;
  width: fit-content;
  margin-inline: auto;
}

.trust-row-center li {
  padding: 0 1.75rem;
  border-right: 1px solid var(--color-border-soft);
}

.trust-row-center li:first-child {
  padding-left: 0;
}

.trust-row-center li:last-child {
  padding-right: 0;
  border-right: none;
}

/* =====================================================
   REAL EXAMPLES
===================================================== */
.examples-section { padding: 4rem 0 4rem; }

.badge-card {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  padding: 0.625rem 1rem;
  border-radius: var(--radius-standard);
}
.badge-card svg { width: 22px; height: 22px; color: var(--color-primary); flex-shrink: 0; }
.badge-card strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--color-text-header);
  line-height: 1.2;
}
.badge-card .tp-stars { font-size: 0.75rem; color: var(--color-star); letter-spacing: 0.05em; }

.examples-carousel {
  position: relative;
}
.examples-grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.5rem;
  margin-bottom: -0.5rem;
}
.examples-grid::-webkit-scrollbar { display: none; }
.examples-grid > .example-card {
  flex: 0 0 calc((100% - 1.5rem) / 2);
  scroll-snap-align: start;
}

/* arrow nav */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  z-index: 2;
  transition: background 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
}
.carousel-arrow:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}
.carousel-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.carousel-arrow:disabled:hover {
  background: var(--color-bg-white);
  color: var(--color-primary);
  transform: translateY(-50%);
}
.carousel-arrow svg { width: 16px; height: 16px; }
.carousel-arrow-prev { left: -20px; }
.carousel-arrow-next { right: -20px; }

.example-card {
  position: relative;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-standard);
  padding: 1.5rem;
  display: grid;
  align-content: start;
  grid-template-columns: 1fr 100px;
  grid-template-areas:
    "head   photo"
    "desc   photo"
    "badges photo"
    "stats  stats";
  gap: 0.75rem 1.25rem;
}
.example-head   { grid-area: head; }
.example-desc-wrap { grid-area: desc; display: flex; flex-direction: column; gap: 0.35rem; }
.example-desc   { font-size: 0.875rem; line-height: 1.55; color: var(--color-text-body); margin: 0; }
.example-desc-full { font-size: 0.8125rem; color: var(--color-text-muted); line-height: 1.6; }
.example-desc-full summary { cursor: pointer; color: var(--color-primary); font-size: 0.8125rem; font-weight: 500; list-style: none; display: inline-flex; align-items: center; gap: 0.25rem; }
.example-desc-full summary::-webkit-details-marker { display: none; }
.example-desc-full summary::after { content: '↓'; font-size: 0.75rem; transition: transform 0.2s; }
.example-desc-full[open] summary::after { transform: rotate(180deg); }
.example-desc-full[open] summary { margin-bottom: 0.35rem; }
.example-badges { grid-area: badges; align-self: end; display: flex; gap: 0.5rem; }
.example-photo {
  grid-area: photo;
  width: 100%;
  height: 110px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: calc(var(--radius-standard) - 2px);
  align-self: start;
}

/* ── Type pill ── */
.example-type-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.275rem 0.625rem;
  border-radius: var(--radius-pill);
  background: var(--color-bg-subtle);
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}
.example-type-pill.is-current {
  background: var(--color-primary-soft);
  color: var(--color-primary);
}
.example-type-icon { width: 14px; height: 14px; flex-shrink: 0; display: flex; }
.example-type-icon svg { width: 14px; height: 14px; display: block; }

.example-head h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--color-text-header);
  line-height: 1.3;
}

/* ── Stat badges ── */
.example-badge {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  background: var(--color-bg-subtle);
  border-radius: var(--radius-standard);
  padding: 0.5rem 0.75rem;
}
.badge-label {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}
.badge-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-header);
}

/* ── Stats footer ── */
.example-stats {
  grid-area: stats;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-top: 0.875rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.8125rem;
  color: var(--color-text-body);
}
.example-stats > span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.example-stats svg {
  width: 15px;
  height: 15px;
  color: var(--color-primary);
}
.example-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.875rem;
}
.example-cta svg { width: 14px; height: 14px; }

/* =====================================================
   INLINE CTA BAND
===================================================== */
.cta-inline-section {
  padding: 0 0 4.5rem;
}
.cta-inline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem 2.5rem;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-standard);
  padding: 1.5rem 2.5rem;
}
.cta-inline-illust {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}
.cta-inline-illust img { width: 100%; height: 100%; object-fit: contain; }
.cta-inline-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cta-inline-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-inline-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}
.cta-inline-text p {
  font-size: 0.875rem;
  color: var(--color-text-body);
  margin: 0;
}
.cta-inline-rating { display: flex; align-items: center; gap: 0.4rem; white-space: nowrap; }
.cta-inline-rating .tp-stars { font-size: 0.875rem; color: var(--color-star); }
.cta-rating-score { font-size: 0.875rem; font-weight: 600; color: var(--color-text-header); }
.cta-inline-checks {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  list-style: none;
  margin: 0; padding: 0;
  padding-top: 0.625rem;
  border-top: 1px solid var(--color-border-soft);
}
.cta-inline-checks li {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--color-text-body);
}
.cta-inline-checks li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--color-primary);
}

/* =====================================================
   HOW IT WORKS — Steps
===================================================== */
.steps-section { padding: 5rem 0; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  position: relative;
  max-width: 980px;
  margin-inline: auto;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-illust {
  display: block;
  width: 100%;
  max-width: 200px;
  height: 160px;
  object-fit: contain;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

/* Dashed connector arrow between step cards */
.step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 74px;
  right: -2rem;
  width: 2rem;
  height: 12px;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='12' viewBox='0 0 32 12'><line x1='0' y1='6' x2='22' y2='6' stroke='%23cbd5e1' stroke-width='2' stroke-dasharray='4 3'/><polyline points='18,2 26,6 18,10' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 2;
}

.step-card h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-text-header);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--color-text-body);
  line-height: 1.6;
  max-width: 260px;
  margin-inline: auto;
}

/* =====================================================
   SERVICES GRID
===================================================== */
.services-section { padding: 4.5rem 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.services-grid a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.125rem;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-standard);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-header);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.services-grid a:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.services-grid svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.services-foot { text-align: center; margin-top: 2rem; }

/* =====================================================
   TRUST — two column
===================================================== */
.trust-section { padding: 5rem 0; }
.trust-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.trust-text h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.trust-lead {
  font-size: 1rem;
  color: var(--color-text-body);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
.trust-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.trust-features li {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}
.trust-features .check {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-features strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-text-header);
  margin-bottom: 0.125rem;
}
.trust-features p {
  font-size: 0.875rem;
  color: var(--color-text-body);
  line-height: 1.55;
  margin: 0;
}

.trust-media-photo {
  position: relative;
}
.trust-media-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-standard);
  object-fit: cover;
  object-position: center top;
}
.trustpilot-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-standard);
  box-shadow: var(--shadow-card);
  font-size: 0.75rem;
}
.trustpilot-badge strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--color-text-header);
  font-size: 0.8125rem;
}
.trustpilot-badge .tp-stars {
  color: #00b67a;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
.trustpilot-badge .tp-text { color: var(--color-text-body); }
.trustpilot-badge .tp-brand {
  font-weight: 700;
  color: var(--color-text-header);
  padding-left: 0.375rem;
  border-left: 1px solid var(--color-border);
  margin-left: 0.125rem;
}


/* =====================================================
   TOOLS — cards
===================================================== */
.tools-section { padding: 4.5rem 0; }

.tools-header {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 1.25rem;
}
.tools-header-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tools-header-text .section-eyebrow {
  margin-bottom: 0.25rem;
}
.tools-header-text h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.heading-em {
  font-style: italic;
  color: var(--color-primary);
}
.tools-lead {
  font-size: 0.9375rem;
  color: var(--color-text-body);
  line-height: 1.65;
}
.tools-header-img {
  width: 200px;
  height: auto;
  display: block;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: -2rem;
}

.tools-dots,
.steps-dots { display: none; }

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.tool-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-standard);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tool-illust {
  width: 100%;
  background: var(--color-bg-white);
  overflow: hidden;
}
.tool-illust img {
  width: 100%;
  height: auto;
  display: block;
}
.tool-body {
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tool-body h3 {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--color-text-header);
  line-height: 1.3;
}
.tool-body p {
  font-size: 0.9375rem;
  color: var(--color-text-body);
  line-height: 1.65;
}
.tool-card > .link-arrow {
  font-size: 0.8125rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tool-card > .link-arrow svg {
  width: 26px;
  height: 26px;
  background: var(--color-primary);
  border-radius: 50%;
  color: #fff;
  padding: 5px;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}
.tool-card > .link-arrow:hover svg {
  background: var(--color-primary-hover);
  transform: translateX(2px);
}

/* Tool card, coming-soon (disabled) state */
.tool-card--coming-soon {
  position: relative;
  cursor: not-allowed;
  background: var(--color-bg-soft, #f7f7f8);
}
.tool-card--coming-soon .tool-body h3,
.tool-card--coming-soon .tool-body p {
  opacity: 0.55;
}
.tool-card--coming-soon .tool-illust img {
  filter: grayscale(0.85);
  opacity: 0.6;
  transition: none;
}
.tool-coming-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  background: var(--color-text-header, #1a1a1a);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  line-height: 1;
}
.link-arrow--disabled {
  color: var(--color-text-muted, #888);
  pointer-events: none;
  user-select: none;
}
.link-arrow--disabled svg {
  background: var(--color-text-muted, #aaa) !important;
  opacity: 0.6;
}
.link-arrow--disabled:hover svg {
  background: var(--color-text-muted, #aaa) !important;
  transform: none !important;
}

.tools-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border-soft);
}
.tools-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.tools-feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tools-feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-text-header);
}
.tools-feature-item strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text-header);
  margin-bottom: 0.2rem;
}
.tools-feature-item p {
  font-size: 0.8125rem;
  color: var(--color-text-body);
  line-height: 1.5;
  margin: 0;
}

/* =====================================================
   ARTICLES — cards
===================================================== */
.articles-section { padding: 4.5rem 0; }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.article-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-standard);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.article-card > img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.article-body {
  padding: 1.25rem 1.25rem 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}
.article-body h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.3;
}
.article-body h3 a { color: var(--color-text-header); }
.article-body h3 a:hover { color: var(--color-primary); }
.article-body p {
  font-size: 0.875rem;
  color: var(--color-text-body);
  line-height: 1.55;
  flex: 1;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.75rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--color-border-soft);
}
.article-meta img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.meta-label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--color-text-header);
}
.meta-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-body);
}

/* =====================================================
   FAQ
===================================================== */
.faq-section { padding: 4.5rem 0; }

.faq-accordion {
  max-width: 760px;
  margin-inline: auto;
}
.faq-item {
  position: relative;
  border-bottom: 1px solid var(--color-border);
  padding-left: 1.25rem;
}
.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}
.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.faq-item:hover::before,
.faq-item.is-open::before {
  opacity: 1;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.375rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text-header);
  transition: color 0.15s ease;
}
.faq-question:hover,
.faq-item.is-open .faq-question {
  color: var(--color-primary);
}
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform 0.25s ease, color 0.15s ease;
}
.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  color: var(--color-primary);
}
.faq-body {
  padding-bottom: 1.375rem;
}
.faq-body[hidden] { display: none; }
.faq-body > p {
  font-size: 0.9375rem;
  color: var(--color-text-body);
  line-height: 1.65;
  margin-bottom: 0.875rem;
}
.faq-featured-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-text-header);
  margin-bottom: 0.5rem;
}
.faq-prices {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
}
.faq-prices li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-body);
}
.faq-prices li svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.faq-prices strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--color-text-header);
}
.faq-prices span { font-weight: 600; color: var(--color-text-header); }
.faq-foot {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 0;
}

/* =====================================================
   CITIES GRID
===================================================== */
.cities-section { padding: 4.5rem 0; }
.cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.cities-grid a {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon name"
    "icon region";
  column-gap: 0.75rem;
  row-gap: 0.15rem;
  align-items: center;
  padding: 0.875rem 1.125rem;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-standard);
  min-height: 64px;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.cities-grid a:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.cities-grid svg {
  grid-area: icon;
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  align-self: center;
}
.cities-grid strong {
  grid-area: name;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-text-header);
  line-height: 1.2;
  align-self: end;
}
.cities-grid span {
  grid-area: region;
  font-size: 0.75rem;
  color: var(--color-text-body);
  line-height: 1.3;
  align-self: start;
}

/* =====================================================
   GREEN CTA BAND
===================================================== */
.cta-green-section { padding: 0 0 4rem; }
.cta-green {
  background: var(--color-bg-subtle);
  border-radius: var(--radius-standard);
  padding: 2.5rem 2.75rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.cta-green-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.cta-green h2 {
  font-size: clamp(1.5rem, 2vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.625rem;
}
.cta-green-text > p {
  font-size: 0.9375rem;
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.cta-green-trust {
  display: flex;
  gap: 1rem;
}
.cta-green-trust li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}
.cta-trust-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-trust-icon svg {
  width: 16px;
  height: 16px;
  color: var(--color-text-header);
}
.cta-green-trust div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.cta-green-trust strong {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-text-header);
}
.cta-green-trust span {
  font-size: 0.625rem;
  color: var(--color-text-muted);
}
.cta-green-right {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.cta-green-form {
  display: flex;
  gap: 0.5rem;
}
.cta-green-form .form-input-wrap { flex: 1; }
.cta-green-form input[type="text"] {
  width: 100%;
  padding: 0.875rem 0.875rem 0.875rem 2.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-standard);
  font-size: 0.9375rem;
  outline: none;
  background: #fff;
}
.cta-green-form input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
}
.cta-green-checks {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cta-green-checks li {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--color-text-body);
}
.cta-green-checks svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* =====================================================
   FOOTER (dark)
===================================================== */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 4rem 0 1.5rem;
}
.site-footer a { color: #cbd5e1; transition: color 0.15s ease; }
.site-footer a:hover { color: #fff; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #1e293b;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-icon { color: var(--color-primary-soft); }
.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 1rem 0;
  max-width: 280px;
}
.footer-trust {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  font-size: 0.8125rem;
}
.footer-trust .tp-stars { color: var(--color-star); font-size: 0.95rem; }

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-col li { font-size: 0.875rem; }

.footer-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #1e293b;
}
.social-icons {
  display: flex;
  gap: 0.5rem;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1e293b;
  transition: background 0.15s ease;
}
.social-icons a:hover { background: var(--color-primary); }
.social-icons svg { width: 16px; height: 16px; color: #fff; }
.footer-business-link {
  font-size: 0.875rem;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: #94a3b8;
  margin: 0;
}
.footer-copy { font-size: 0.8125rem; color: #94a3b8; margin: 0; }
.footer-legal { margin-top: 0.375rem !important; }
.footer-legal a { color: inherit; text-decoration: underline; }
.footer-badges {
  display: flex;
  gap: 1.5rem;
}
.footer-badges li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.footer-badges svg {
  width: 26px;
  height: 26px;
  color: #cbd5e1;
}
.footer-badges strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  color: #fff;
}
.footer-badges span {
  font-size: 0.6875rem;
  color: #94a3b8;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1080px) {
  .hero-media { width: 52%; }
  .hero-media img { object-position: 75% center; }
  .reviews-track > .review-card { flex-basis: calc((100% - 1.25rem) / 2); }
  .customer-stories-grid > .customer-story { flex-basis: 100%; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
  .tools-header { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .tools-header-img { display: none; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); }
  .footer-grid .footer-col:last-child { grid-column: span 3; }
}

@media (max-width: 991px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    background: var(--color-bg-white);
    border-bottom: 1px solid var(--color-border);
    padding: 0.75rem 1.5rem 1.5rem;
    gap: 0.125rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
    z-index: 200;
  }
  .main-nav.open .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 0.75rem 0.5rem;
    border-radius: var(--radius-standard);
  }
  .main-nav.open .nav-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0.25rem 0;
    min-width: 0;
  }
  .main-nav.open .nav-dropdown a,
  .main-nav.open .nav-mega-col a {
    padding: 0.5rem 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
  }
  /* Mega menus collapse into the drawer flow */
  .main-nav.open .nav-has-mega { position: relative; }
  .main-nav.open .nav-mega {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
  }
  .main-nav.open .nav-mega-label {
    color: var(--color-primary);
    opacity: 1;
  }
  .main-nav.open .nav-mega-inner,
  .main-nav.open .nav-mega-inner-slim,
  .main-nav.open .nav-mega-inner-2col,
  .main-nav.open .nav-mega-inner-4col,
  .main-nav.open .nav-mega-inner-hire {
    display: block;
    min-width: 0;
    padding: 0.25rem 0;
    gap: 0;
  }
  .main-nav.open .nav-mega-col + .nav-mega-col { margin-top: 1rem; }
  .main-nav.open .nav-mega-grid-2 { display: block; }
  .main-nav.open .nav-mega-grid-3 { display: block; }
.burger { display: flex; }
  .hero-media { width: 48%; }
  .hero-media img { object-position: 75% center; }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
  }
  .hero-google-badge { margin-bottom: 0.5rem; }
  .hero-media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 58%;
    max-width: none;
  }
  .hero-media::before {
    background: linear-gradient(
      90deg,
      var(--color-bg-cream) 0%,
      rgba(250,246,241,0.65) 20%,
      rgba(250,246,241,0.12) 42%,
      transparent 56%
    );
  }
  .hero-media::after { display: none; }
  .hero-media img {
    object-position: 60% center;
    transform: scale(1.2);
    transform-origin: center center;
  }
  .hero-card { max-width: 72%; display: flex; flex-direction: column; }
  .hero-card h1 { font-size: 1.5rem; }
  .hero-sub { font-size: 0.9rem; line-height: 1.5; margin-top: 0.875rem; margin-bottom: 1.75rem; }
  .hero-sub-long { display: inline; }
  .hero-form-row {
    grid-template-columns: 1fr auto;
    background: #fff;
  }
  .hero-form-row input[type="text"] {
    background: transparent;
    border: none;
  }
  .hero-form-row .btn-primary {
    width: 40px;
    height: 40px;
    padding: 0 0.625rem 0 0;
    font-size: 0;
    align-self: center;
    border-radius: 8px;
    flex-shrink: 0;
    background: transparent;
    box-shadow: none;
    color: var(--color-primary);
  }
  .hero-form-row .btn-primary:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
  }
  .hero-form-row .btn-primary .btn-arrow {
    width: 20px;
    height: 20px;
    transform: none !important;
  }
  .trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: calc(100vw - 3rem);
    max-width: none;
    opacity: 1;
    margin-bottom: 0.375rem;
    background: rgba(255,255,255,0.70);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.6);
    padding: 0.875rem 0;
    gap: 0;
  }
  .trust-row li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--color-text-body);
    padding: 0 0.25rem;
    border-right: 1px solid var(--color-border-soft);
    white-space: nowrap;
  }
  .trust-row li:last-child { border-right: none; }
  .trust-row li svg {
    display: block;
    width: 16px;
    height: 16px;
    color: var(--color-primary);
    flex-shrink: 0;
  }
  .trust-row br { display: none; }
  .reviews-track > .review-card { flex-basis: 100%; }
  .customer-stories-grid > .customer-story { flex-basis: 100%; }
  .section-head-row { flex-direction: column; align-items: flex-start; }

  .examples-grid > .example-card { flex-basis: 100%; }
  .example-card {
    grid-template-columns: 1fr 64px;
    grid-template-areas:
      "head   photo"
      "desc   desc"
      "badges badges"
      "stats  stats";
  }
  .example-head { align-self: end; }
  .example-photo {
    display: block;
    grid-area: photo;
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    align-self: start;
    margin-left: 0.75rem;
  }
  .carousel-arrow { display: none; }

  .cta-inline { grid-template-columns: 1fr; text-align: center; }
  .cta-inline-illust { margin-inline: auto; }
  .cta-inline-top { flex-direction: column; align-items: center; }
  .cta-inline-text h3 { font-size: 1.125rem; white-space: nowrap; }
  .cta-inline-checks {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.375rem;
    justify-content: flex-start;
  }

  .steps-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 0.5rem;
    margin-right: -1.5rem;
    padding-right: 1.5rem;
    scrollbar-width: none;
  }
  .steps-grid::-webkit-scrollbar { display: none; }
  .step-card {
    flex: 0 0 56vw;
    scroll-snap-align: start;
  }
  .step-card:not(:last-child)::after { right: -1rem; width: 1rem; }
  .steps-grid .step-card.fade-in { opacity: 1; transform: none; transition: none; }
  .step-card h3, .step-card p { padding-inline: 0.75rem; }
  .steps-section .trust-row-center { display: none; }
  .steps-section .section-eyebrow, .steps-section .section-sub { display: none; }
  .steps-dots { display: flex; margin-top: 1rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; gap: 2rem; }
  .tools-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-right: -1.5rem;
    padding-right: 1.5rem;
  }
  .tools-grid .tool-card {
    flex: 0 0 58vw;
    max-width: 240px;
    scroll-snap-align: start;
  }
  .tools-grid::-webkit-scrollbar { display: none; }
  .tools-grid { scrollbar-width: none; }

  .tools-dots { display: flex; margin-top: 0.75rem; }

  .tools-features { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .faq-accordion { max-width: 100%; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-green { grid-template-columns: 1fr; padding: 1.75rem 1.5rem; gap: 1.75rem; }
  .cta-green-form { flex-direction: column; }
  .cta-green-trust { flex-wrap: wrap; gap: 1rem; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
  .footer-grid .footer-col:last-child { grid-column: auto; }
  .footer-mid, .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero { padding: 2.5rem 0 1rem; }
  .social-proof { gap: 1rem; }
}

/* =====================================================
   SCROLL FADE-IN
===================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =====================================================
   STADSDELAR — City page neighborhood grid
===================================================== */
.stadsdelar-section { background: var(--color-bg-white); }

.stadsdelar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stadsdel-card {
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-standard);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.stadsdel-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-card);
}

.stadsdel-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-primary);
}

.stadsdel-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--color-text-header);
  margin: 0 0 0.25rem;
}
.stadsdel-body p {
  font-size: 0.8125rem;
  color: var(--color-text-body);
  line-height: 1.55;
  margin: 0;
}

.stadsdelar-note {
  margin-top: 1.75rem;
  font-size: 0.9375rem;
  color: var(--color-text-body);
}
.link-arrow-inline {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}
.link-arrow-inline:hover { text-decoration: underline; }

/* =====================================================
   PARTNERS GRID — Några av Flyttjakts flyttföretag
====================================================== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.partner-card {
  position: relative;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-standard);
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.partner-card h3 {
  padding-right: 3rem;
}
.partner-card:hover {
  border-color: var(--color-primary-soft);
  box-shadow: 0 4px 16px -8px rgba(0, 0, 0, 0.08);
}
.partner-card h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--color-text-header);
  line-height: 1.3;
  margin: 0;
}
.partner-address {
  font-style: normal;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}
.partner-description {
  font-size: 0.9375rem;
  color: var(--color-text-body);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.partner-description > p { margin: 0; }
.partner-description > p + p { margin-top: 0.75rem; }

/* When "Läs mer" is open, expand the description to its full height */
.partner-card:has(.partner-details[open]) .partner-description {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  display: block;
  overflow: visible;
}
.partner-card a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}
.partner-card a:hover { text-decoration: underline; }

/* Läs mer toggle — icon-only button in the top-right corner of each partner card.
   display: contents removes <details> from the flex layout, keeping summary in place
   via its own absolute positioning anchored to .partner-card */
.partner-details {
  display: contents;
}
.partner-details summary {
  position: absolute;
  top: 1rem;
  right: 1rem;
  list-style: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-subtle, #f5f5f7);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.partner-details summary::-webkit-details-marker { display: none; }
.partner-details summary:hover {
  background: var(--color-primary-soft);
  color: var(--color-primary-hover);
}
.partner-details summary:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.partner-details summary::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.2s ease;
}
.partner-details[open] summary::after {
  transform: rotate(-135deg) translate(-2px, -2px);
}

/* Visually-hidden utility, keeps text available for screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.partners-note {
  margin-top: 1.75rem;
  font-size: 0.9375rem;
  color: var(--color-text-body);
}
.partners-note a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}
.partners-note a:hover { text-decoration: underline; }

/* Mobile — tight cards */
@media (max-width: 720px) {
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 0.625rem;
    margin-top: 1.25rem;
  }
  .partner-card {
    padding: 1rem 1.125rem 0.875rem;
    gap: 0.375rem;
    border-radius: 0.625rem;
  }
  .partner-card h3 { font-size: 0.9375rem; }
  .partner-address { font-size: 0.75rem; }
  .partner-details summary {
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
  }
  .partner-details > p {
    font-size: 0.875rem;
    line-height: 1.55;
  }
  .partner-card h3 {
    padding-right: 2.5rem;
  }
}

@media (max-width: 900px) {
  .stadsdelar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .stadsdelar-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   SEO TEXT EXPANDER — City page long-form block
===================================================== */
.seo-section { background: var(--color-bg-white); }

.seo-text-block {
  max-width: 760px;
  margin-top: 1.5rem;
}
.seo-text-block > p {
  font-size: 1rem;
  color: var(--color-text-body);
  line-height: 1.7;
  margin: 0 0 1rem;
}

.seo-expander {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-standard);
  margin-top: 0.5rem;
}
.seo-expander summary {
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.seo-expander summary::-webkit-details-marker { display: none; }
.seo-expander summary::before {
  content: '+';
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease;
}
.seo-expander[open] summary::before { transform: rotate(45deg); }

.seo-expander-body {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid var(--color-border-soft);
}
.seo-expander-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--color-text-header);
  margin: 1.25rem 0 0.5rem;
}
.seo-expander-body p {
  font-size: 0.9375rem;
  color: var(--color-text-body);
  line-height: 1.65;
  margin: 0 0 0.875rem;
}
.seo-expander-body ul {
  padding-left: 1.25rem;
  margin: 0 0 0.875rem;
}
.seo-expander-body ul li {
  font-size: 0.9375rem;
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}
.seo-expander-body a {
  color: var(--color-primary);
  font-weight: 600;
}

/* =====================================================
   SEO PRICE TABLE
===================================================== */
.seo-table-wrap {
  overflow-x: auto;
  margin: 0.75rem 0 1.25rem;
  border-radius: var(--radius-standard);
  border: 1px solid var(--color-border);
}
.seo-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  color: var(--color-text-body);
}
.seo-price-table th {
  background: var(--color-bg-subtle);
  padding: 0.625rem 0.875rem;
  text-align: left;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--color-text-header);
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
}
.seo-price-table td {
  padding: 0.5rem 0.875rem;
  border-bottom: 1px solid var(--color-border-soft);
  line-height: 1.45;
}
.seo-price-table tbody tr:last-child td { border-bottom: none; }
.seo-price-table tbody tr:hover { background: var(--color-bg-subtle); }

@media (prefers-reduced-motion: reduce) {
  .stadsdel-card { transition: none; }
  .seo-expander summary::before { transition: none; }
}

/* =====================================================
   BREADCRUMB BAR (below hero on city pages)
===================================================== */
.breadcrumb-bar {
  background: var(--color-bg-subtle);
  padding: 1rem 0;
}
.breadcrumb-bar ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}
.breadcrumb-bar li + li::before {
  content: '›';
  margin-right: 0.5rem;
  color: var(--color-text-muted);
}
.breadcrumb-bar a {
  color: var(--color-text-muted);
  text-decoration: none;
}
.breadcrumb-bar a:hover { text-decoration: underline; color: var(--color-primary); }
.breadcrumb-bar li[aria-current="page"] { color: var(--color-text-body); font-weight: 500; }

/* =====================================================
   CUSTOMER STORIES
===================================================== */
.stories-carousel { position: relative; }

.customer-stories-grid {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.5rem;
  margin-bottom: -0.5rem;
  margin-top: 2.5rem;
}
.customer-stories-grid::-webkit-scrollbar { display: none; }
.customer-stories-grid > .customer-story {
  flex: 0 0 calc((100% - 1.25rem) / 2);
  scroll-snap-align: start;
}
.customer-story {
  position: relative;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-primary);
  border-radius: var(--radius-standard);
  padding: 1.5rem 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-soft);
}
.customer-story .tp-stars {
  font-size: 1.125rem;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  padding-right: 2.75rem;
  margin-bottom: 0.25rem;
}
.customer-story h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text-header);
  margin: 0 0 0.875rem;
  line-height: 1.3;
  padding-right: 2.75rem;
}
.story-quote {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--color-text-body);
  line-height: 1.6;
  margin: 0;
  padding-right: 2.5rem;
}
.story-expander {
  display: contents;
}
.story-expander > summary {
  position: absolute;
  top: 1rem;
  right: 1rem;
  list-style: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-subtle, #f5f5f7);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.story-expander > summary::-webkit-details-marker { display: none; }
.story-expander > summary:hover {
  background: var(--color-primary-soft);
  color: var(--color-primary-hover);
}
.story-expander > summary:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.story-expander > summary::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.2s ease;
}
.story-expander[open] > summary::after {
  transform: rotate(-135deg) translate(-2px, -2px);
}
.story-expander-body { padding-top: 0.75rem; }
.story-expander-body p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-body);
  margin: 0 0 0.5rem;
}
.story-expander-body h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border-soft);
  padding-top: 0.75rem;
  margin: 0.875rem 0 0.375rem;
}
.story-brief {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--color-border-soft);
  padding-top: 0.875rem;
  margin-top: 1rem;
}
.story-badge-gone {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-primary);
  background: var(--color-primary-soft);
  padding: 0.2rem 0.625rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
}

/* =====================================================
   PRICE EXAMPLE CARD
===================================================== */
.price-example-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-standard);
  padding: 1rem 1.25rem;
  margin: 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.price-example-content {
  position: relative;
  z-index: 1;
  padding-right: 100px;
}
.price-example-img {
  position: absolute;
  top: 1.75rem;
  right: 0;
  width: 160px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}
.price-example-img--low {
  top: 3.5rem;
}
.price-example-card > h3,
.price-example-content > h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text-header);
  margin: 0 0 0.5rem;
}
.price-example-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.625rem;
}
.price-example-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--color-bg-card, #fff);
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  padding: 0.2rem 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-header);
}
.price-example-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-body);
  margin: 0 0 0.5rem;
}
.price-example-services {
  color: var(--color-text-muted) !important;
  font-size: 0.8125rem !important;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
}
.service-tag--active {
  background: var(--color-primary-soft);
  color: var(--color-primary);
}
.service-tag--active::before {
  content: '✓';
  font-weight: 700;
  font-size: 0.7rem;
}
.price-example-result {
  margin: 0.75rem 0 0 !important;
}
.price-tag {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
}

/* =====================================================
   TRUST QUOTES (city pages)
===================================================== */
.trust-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
/* =====================================================
   VISA PRIS — reveal interaction (city pages)
===================================================== */
.btn-visa-pris {
  margin-top: 0.875rem;
}
.btn-visa-pris::before {
  content: '';
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  flex-shrink: 0;
}

.price-reveal {
  display: none;
  margin-top: 0.75rem;
}
.price-reveal.is-visible {
  display: block;
  animation: priceReveal 0.25s ease;
}
@keyframes priceReveal {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}
.price-reveal-disclaimer {
  font-size: 0.8125rem !important;
  color: var(--color-text-muted) !important;
  margin: 0.25rem 0 0.875rem !important;
}

.trust-quote-item {
  background: var(--color-bg-card, #fff);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-standard);
  padding: 1.25rem;
  font-size: 1rem;
  font-style: italic;
  color: var(--color-text-body);
  margin: 0;
}
.trust-quote-item::before {
  content: '\201C';
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  font-style: normal;
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: 0.375rem;
}

/* =====================================================
   PROSE STACK — stacked paragraphs in right column
===================================================== */
.prose-stack > p {
  font-size: 1rem;
  color: var(--color-text-body);
  line-height: 1.7;
  margin: 0 0 1rem;
}
.prose-stack > p:last-child { margin-bottom: 0; }

/* =====================================================
   PRICE TABLES GRID — two tables side by side
===================================================== */
.price-tables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--color-border-soft);
}
.price-table-group > h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text-header);
  margin-bottom: 0.75rem;
}

/* =====================================================
   PRICE CARDS GRID — two cards side by side
===================================================== */
.price-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.prose-cards-split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.5rem 4rem;
  align-items: start;
  margin-top: 2rem;
}
#pris-pa-flyttfirma > .container > h2 {
  font-size: clamp(1.375rem, 2vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 0;
}
.prose-cards-split > .price-cards-grid {
  margin-top: 0;
  grid-template-columns: 1fr;
}

.cta-row { margin-top: 2.5rem; }
.rut-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.rut-note a {
  color: var(--color-primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .price-tables-grid,
  .price-cards-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   CONTENT SPLIT — title left, prose right (city pages)
===================================================== */
.content-split {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 1.5rem 4rem;
  align-items: start;
}
.content-split + .content-split {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--color-border-soft);
}
.content-split-title h2 {
  font-size: clamp(1.375rem, 2vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.text-lead {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-body);
}
@media (max-width: 640px) {
  .content-split {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .content-split + .content-split {
    margin-top: 2rem;
    padding-top: 2rem;
  }
}
