/* ——— Sick of Smoking landing ——— */
:root {
  --sand: #F1EADB;
  --cream: #F7F2E8;
  --paper: #FBF7EF;
  --forest: #1E2E26;
  --forest-2: #2B3D34;
  --moss: #4A5D4F;
  --clay: #B8593A;
  --clay-soft: #D98668;
  --ink: #0E120F;
  --muted: #5F6A62;
  --line: rgba(30, 46, 38, 0.12);
  --line-strong: rgba(30, 46, 38, 0.22);

  --bg: var(--cream);
  --fg: var(--forest);
  --accent: var(--clay);

  --serif: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Geist', 'Söhne', ui-sans-serif, system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;

  --maxw: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ——— Typography ——— */
.display, h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.02;
  margin: 0;
  color: var(--forest);
}
h1 { font-size: clamp(54px, 7.2vw, 112px); }
h2 { font-size: clamp(38px, 4.6vw, 68px); }
h3 { font-size: clamp(24px, 2.2vw, 32px); }
p { margin: 0; }
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
}
.lead {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--forest-2);
  max-width: 58ch;
}
.italic { font-style: italic; }

/* ——— Layout ——— */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.section {
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
}
.section--tight { padding: clamp(56px, 7vw, 96px) 0; }
.divider {
  height: 1px; background: var(--line); width: 100%;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--forest);
  color: var(--paper);
}
.btn--primary:hover { background: #16231D; transform: translateY(-1px); }
.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--forest);
}
.btn--ghost:hover { background: rgba(30,46,38,0.05); }
.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover { filter: brightness(0.95); transform: translateY(-1px); }
.btn .arrow {
  display: inline-block;
  transition: transform .3s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ——— Nav ——— */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 90%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-color: var(--line); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  max-width: var(--maxw); margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.brand__mark {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--forest);
  position: relative;
  display: inline-block;
}
.brand__mark::after {
  content: ''; position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--paper);
}
.nav__links {
  display: flex; gap: 28px;
  font-size: 14px;
  color: var(--forest-2);
}
.nav__links a { position: relative; padding: 4px 0; }
.nav__links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: currentColor; transform: scaleX(0);
  transform-origin: left; transition: transform .3s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { display: flex; gap: 10px; align-items: center; }

/* ——— Hero ——— */
.hero {
  padding: clamp(80px, 10vw, 140px) 0 clamp(64px, 8vw, 120px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('photos/hero-portrait.jpg');
  background-size: cover;
  background-position: center 35%;
  z-index: -2;
  filter: saturate(0.85);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      color-mix(in oklab, var(--paper) 30%, transparent) 0%,
      color-mix(in oklab, var(--paper) 70%, transparent) 45%,
      var(--paper) 100%
    );
  z-index: -1;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hero__eyebrow-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.hero__eyebrow-row .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 20%, transparent);
  animation: pulse 2.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.75; }
}
.hero h1 {
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.96;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-family: var(--serif);
}
.hero__lead { margin-top: 28px; max-width: 46ch; }
.hero__cta {
  margin-top: 36px;
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.hero__meta {
  margin-top: 36px;
  display: flex; gap: 28px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
}
.hero__meta .bar { width: 1px; height: 16px; background: var(--line-strong); align-self: center; }
.hero__meta strong { color: var(--forest); font-weight: 500; }

/* ——— Phone mockup ——— */
.phone-wrap {
  position: relative;
  display: flex; justify-content: center;
  padding: 20px 0;
}
.phone-wrap::before {
  content: '';
  position: absolute;
  inset: -10% -20%;
  background: radial-gradient(ellipse at center, color-mix(in oklab, var(--accent) 14%, transparent), transparent 65%);
  z-index: 0;
  pointer-events: none;
}
.phone {
  position: relative;
  width: 320px;
  height: 640px;
  background: #0E120F;
  border-radius: 46px;
  padding: 10px;
  box-shadow:
    0 40px 80px -20px rgba(14, 18, 15, 0.35),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  z-index: 1;
}
.phone__screen {
  width: 100%; height: 100%;
  background: #F4F0E9;
  border-radius: 38px;
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
}
.phone__notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 26px;
  background: #0E120F;
  border-radius: 16px;
  z-index: 3;
}
.phone__status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px 8px; font-size: 12px; font-weight: 600; color: #1E2E26;
  position: relative; z-index: 2;
}
.phone__status .icons { display: inline-flex; gap: 4px; align-items: center; }
.phone__header {
  padding: 16px 20px 14px;
  border-bottom: 1px solid rgba(30,46,38,0.08);
  display: flex; align-items: center; gap: 12px;
  background: #F4F0E9;
}
.phone__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--forest);
  display: grid; place-items: center;
  font-family: var(--serif); color: var(--paper); font-size: 17px;
}
.phone__title { font-size: 14px; font-weight: 600; color: var(--forest); }
.phone__sub { font-size: 11px; color: var(--muted); margin-top: 2px; }
.phone__messages {
  flex: 1;
  padding: 16px 14px 20px;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 10px;
}
.msg {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 20px;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--forest);
  white-space: pre-line;
}
.msg--in {
  align-self: flex-start;
  background: #fff;
  border-bottom-left-radius: 6px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.msg--out {
  align-self: flex-end;
  background: var(--forest);
  color: var(--paper);
  border-bottom-right-radius: 6px;
}
.msg__time {
  font-size: 10px;
  color: var(--muted);
  margin: 8px 0 2px;
  text-align: center;
  letter-spacing: 0.06em;
}

/* ——— Trust strip ——— */
.trust {
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}
.trust__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.trust__label {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.trust__logos {
  display: flex; align-items: center; gap: 44px; flex-wrap: wrap;
  opacity: 0.72;
}
.trust__logo {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.trust__logo.sans {
  font-family: var(--sans); font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
}

/* ——— Pillars ——— */
.pillars {
  background: var(--sand);
}
.pillars__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 72px;
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 36px 32px 40px;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30,46,38,0.04);
}
.pillar__num {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
  font-style: italic;
}
.pillar h3 { font-family: var(--serif); font-size: 26px; }
.pillar p { color: var(--muted); font-size: 15px; line-height: 1.55; }
.pillar__glyph {
  position: absolute; right: 24px; top: 28px;
  width: 40px; height: 40px; color: var(--forest); opacity: 0.35;
}

/* ——— How it works / 90-day ——— */
.how {
  background: var(--forest);
  color: var(--paper);
}
.how h2, .how .eyebrow, .how .display { color: var(--paper); }
.how .eyebrow { color: color-mix(in oklab, var(--paper) 65%, transparent); }
.how__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 80px;
}
.how__lead { color: color-mix(in oklab, var(--paper) 75%, transparent); max-width: 46ch; }
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 22px; left: 8px; right: 8px;
  height: 1px;
  background: linear-gradient(to right,
    color-mix(in oklab, var(--paper) 25%, transparent),
    color-mix(in oklab, var(--paper) 25%, transparent) 92%,
    transparent);
}
.phase {
  position: relative;
  padding-top: 48px;
}
.phase__dot {
  position: absolute; top: 14px; left: 0;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px var(--forest);
}
.phase__day {
  font-family: var(--serif); font-size: 14px; font-style: italic;
  color: color-mix(in oklab, var(--paper) 60%, transparent);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.phase h3 {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 26px;
  margin-bottom: 10px;
  line-height: 1.1;
}
.phase p {
  font-size: 14.5px; line-height: 1.55;
  color: color-mix(in oklab, var(--paper) 70%, transparent);
}

/* ——— Feature row ——— */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.feature--reverse { direction: rtl; }
.feature--reverse > * { direction: ltr; }
.feature__media {
  aspect-ratio: 4/5;
  background: var(--sand);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.feature__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.feature__tag {
  display: inline-flex; gap: 8px; align-items: center;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(30,46,38,0.06);
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--forest-2);
  margin-bottom: 20px;
}
.feature h2 {
  font-size: clamp(40px, 4.6vw, 64px);
  margin-bottom: 20px;
}
.feature p { color: var(--forest-2); font-size: 17px; }
.feature__list { margin-top: 28px; display: grid; gap: 16px; }
.feature__list li {
  list-style: none; padding-left: 28px; position: relative;
  font-size: 15.5px; color: var(--forest-2);
}
.feature__list li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 14px; height: 2px; background: var(--accent);
}

/* ——— Testimonials ——— */
.kind-words {
  background: var(--sand);
}
.kind-words__head {
  text-align: center; margin-bottom: 64px;
}
.kind-words__head p { margin-top: 16px; color: var(--muted); }
.mosaic {
  column-count: 3;
  column-gap: 24px;
}
.quote {
  break-inside: avoid;
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 16px 18px 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(30,46,38,0.06);
  display: flex; flex-direction: column; gap: 8px;
}
.quote--highlight {
  background: var(--forest);
  color: var(--paper);
}
.quote--highlight .quote__body,
.quote--highlight .quote__attr { color: var(--paper); }
.quote--highlight .quote__attr { color: color-mix(in oklab, var(--paper) 70%, transparent); }
.quote--clay {
  background: var(--accent);
  color: #fff;
}
.quote--clay .quote__body,
.quote--clay .quote__attr { color: #fff; }
.quote--clay .quote__attr { color: rgba(255,255,255,0.75); }
.quote__stars {
  color: var(--accent);
  letter-spacing: 0.04em;
  font-size: 13px;
}
.quote--highlight .quote__stars,
.quote--clay .quote__stars { color: #F4D6B7; }
.quote__body {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.35;
  color: var(--forest);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.quote--long .quote__body { font-size: 17px; line-height: 1.45; }
.quote__attr {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ——— Numbers ——— */
.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 56px 32px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(56px, 6vw, 88px);
  line-height: 1;
  color: var(--forest);
  letter-spacing: -0.02em;
}
.stat__num em { color: var(--accent); font-style: italic; }
.stat__label {
  margin-top: 16px;
  font-size: 14px; color: var(--muted); line-height: 1.45;
  max-width: 28ch;
}

/* ——— Pricing ——— */
.pricing {
  position: relative;
}
.price-card {
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  border: 1px solid rgba(30,46,38,0.06);
  box-shadow: 0 30px 60px -40px rgba(14,18,15,0.2);
}
.price-card__left h2 {
  font-size: clamp(36px, 4.2vw, 56px);
  margin-bottom: 20px;
}
.price-card__list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.price-card__list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 16px; color: var(--forest-2);
}
.price-card__list svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.price-card__right {
  background: var(--forest);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  text-align: center;
}
.price-card__right h3 {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 8px;
}
.price-card__right p { color: color-mix(in oklab, var(--paper) 65%, transparent); font-size: 14px; }
.price-card__big {
  font-family: var(--serif);
  font-size: 96px;
  line-height: 1;
  margin: 28px 0 4px;
  letter-spacing: -0.03em;
}
.price-card__big sup {
  font-size: 28px; vertical-align: top; margin-left: 4px; font-style: italic; color: var(--clay-soft);
}
.price-card__unit { font-size: 13px; color: color-mix(in oklab, var(--paper) 60%, transparent); letter-spacing: 0.08em; text-transform: uppercase; }
.price-card__right .btn { margin-top: 32px; width: 100%; justify-content: center; background: var(--paper); color: var(--forest); }
.price-card__right .btn:hover { background: #fff; }
.price-card__guarantee {
  margin-top: 20px;
  font-size: 12px;
  color: color-mix(in oklab, var(--paper) 55%, transparent);
}

/* ——— Friskvård ——— */
.friskvard {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.friskvard__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.friskvard h2 { margin-bottom: 18px; }
.friskvard p { color: var(--muted); }
.portals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.portal {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 22px;
  display: flex; justify-content: space-between; align-items: center;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.portal:hover { background: #fff; border-color: var(--line-strong); transform: translateY(-2px); }
.portal__name { font-weight: 600; font-size: 16px; letter-spacing: -0.01em; }
.portal__desc { font-size: 12px; color: var(--muted); margin-top: 3px; letter-spacing: 0; }
.portal__arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--forest); color: var(--paper);
  display: grid; place-items: center;
  transition: transform .2s ease;
}
.portal:hover .portal__arrow { transform: translate(2px, -2px) rotate(-10deg); }

/* ——— Buy flow (Friskvård / Swish) ——— */
.buyflow {
  margin-top: clamp(64px, 8vw, 110px);
  padding-top: clamp(64px, 8vw, 110px);
  border-top: 1px solid var(--line);
}
.buyflow__head { text-align: center; max-width: 720px; margin: 0 auto clamp(48px, 6vw, 80px); }
.buyflow__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
.buyflow__or {
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--muted);
  position: relative;
}
.buyflow__or::before,
.buyflow__or::after {
  content: '';
  display: block;
  width: 1px;
  flex: 1;
  background: var(--line);
}
.buyflow__or { display: flex; flex-direction: column; }
.buyflow__or span { padding: 16px 0; }

.buypath {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.5vw, 44px);
  display: flex; flex-direction: column;
  position: relative;
}
.buypath__num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.buypath__tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 18px;
}
.buypath h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--forest);
  margin-bottom: 16px;
  font-weight: 400;
}
.buypath > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 44ch;
  margin-bottom: 24px;
}
.buypath .portals { margin-top: auto; }
.buypath__note {
  margin-top: 20px !important;
  font-size: 13px !important;
  color: var(--muted) !important;
  line-height: 1.5;
  font-style: italic;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}

.swish-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.swish-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 14px 16px;
  text-align: center;
}
.swish-card img {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}
.swish-card__label {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.swish-card__sub {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.swish-meta {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.swish-meta__wide { grid-column: 1 / -1; }
.swish-meta__wide strong { color: var(--accent) !important; }
.swish-meta > div {
  display: flex; flex-direction: column; gap: 4px;
}
.swish-meta span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.swish-meta strong {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--forest);
  font-weight: 400;
  letter-spacing: -0.01em;
}

@media (max-width: 1000px) {
  .buyflow__grid {
    grid-template-columns: 1fr;
  }
  .buyflow__or { flex-direction: row; padding: 8px 0; }
  .buyflow__or::before,
  .buyflow__or::after { width: auto; height: 1px; flex: 1; }
  .buyflow__or span { padding: 0 16px; }
  .swish-card img { max-width: 220px; }
}
@media (max-width: 640px) {
  .swish-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .swish-card img { max-width: 100%; }
  .swish-meta { grid-template-columns: 1fr; gap: 8px; }
  .swish-meta > div { flex-direction: row; justify-content: space-between; align-items: baseline; }
}

/* ——— FAQ ——— */
.faq__list {
  max-width: 820px; margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 4px;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--forest);
  letter-spacing: -0.01em;
}
.faq__toggle {
  width: 36px; height: 36px; border-radius: 50%;
  background: transparent; border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  transition: background .2s ease, transform .3s ease;
  flex-shrink: 0;
}
.faq__item.open .faq__toggle { background: var(--forest); color: var(--paper); transform: rotate(45deg); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  color: var(--forest-2); font-size: 16px; line-height: 1.6;
}
.faq__item.open .faq__a {
  max-height: 320px; padding: 0 4px 28px;
}

/* ——— Closing ——— */
.closing {
  background: var(--forest);
  color: var(--paper);
  text-align: center;
  padding: clamp(96px, 12vw, 160px) 0;
}
.closing h2 {
  font-size: clamp(48px, 7vw, 104px);
  color: var(--paper);
  max-width: 14ch;
  margin: 0 auto 24px;
  line-height: 1;
}
.closing h2 em { color: var(--clay-soft); font-style: italic; }
.closing p { color: color-mix(in oklab, var(--paper) 70%, transparent); max-width: 44ch; margin: 0 auto; }
.closing .btn { margin-top: 40px; background: var(--paper); color: var(--forest); }
.closing .btn:hover { background: #fff; }

/* ——— Footer ——— */
footer {
  background: var(--forest);
  color: color-mix(in oklab, var(--paper) 55%, transparent);
  padding: 48px 0 40px;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
footer .container {
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
}
footer a { color: color-mix(in oklab, var(--paper) 85%, transparent); }
footer .links { display: flex; gap: 24px; }

/* ——— Who it's for ——— */
.for-who { background: var(--paper); }
.for-who__head { margin-bottom: 56px; max-width: 60ch; }
.for-who__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.for-who__card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 26px 30px;
  display: flex; flex-direction: column; gap: 14px;
}
.for-who__tag {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}
.for-who__card h3 {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
}
.for-who__card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ——— A day in the program ——— */
.day { background: var(--sand); }
.day__head { text-align: center; margin-bottom: 64px; max-width: 700px; margin-left:auto;margin-right:auto; }
.day__head .lead { margin-left: auto; margin-right: auto; }
.day__sms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px; margin: 0 auto;
}
.sms-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 26px;
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
}
.sms-card__time {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.sms-card__body {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.4;
  color: var(--forest);
  letter-spacing: -0.005em;
}
.sms-card::before {
  content: '';
  position: absolute; top: 20px; right: 20px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); opacity: 0.6;
}

/* ——— Post-purchase steps ——— */
.start { background: var(--cream); }
.start__head { text-align: center; margin-bottom: 56px; }
.start__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.step__num {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  font-style: italic;
}
.step h3 { font-family: var(--serif); font-size: 22px; }
.step p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }

/* ——— Team ——— */
.team { background: var(--paper); }
.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.team__credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cred {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 22px;
}
.cred__label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: 10px;
}
.cred__val {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 8px;
}
.cred__desc { font-size: 12.5px; color: var(--muted); line-height: 1.4; }

@media (max-width: 1000px) {
  .for-who__grid, .day__sms, .start__steps, .team__grid, .team__credentials {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .for-who__grid, .day__sms, .start__steps, .team__grid, .team__credentials {
    grid-template-columns: 1fr;
  }
}

/* ——— Artiklar ——— */
.artiklar { background: var(--sand); }
.artiklar__head { text-align: center; margin-bottom: 64px; max-width: 720px; margin-left:auto;margin-right:auto; }
.artiklar__head .lead { margin-left: auto; margin-right: auto; }
.artiklar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.artikel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 24px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  text-decoration: none;
}
.artikel:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: #fff;
}
.artikel__cat {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}
.artikel h3 {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
  color: var(--forest);
}
.artikel p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}
.artikel__more {
  font-size: 13px;
  color: var(--forest);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-top: 4px;
}

@media (max-width: 1000px) {
  .artiklar__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .artiklar__grid { grid-template-columns: 1fr; }
}

/* ——— Photo strip ——— */
.photo-strip { padding: 80px 0; background: var(--paper); }
.photo-strip__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  grid-auto-rows: 280px;
  gap: 16px;
}
.photo-strip__item {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bone);
}
.photo-strip__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}
.photo-strip__item:hover img { transform: scale(1.04); }
.photo-strip__item figcaption {
  position: absolute;
  left: 16px; bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  font-weight: 500;
}
.photo-strip__item--tall { grid-row: span 1; }
.photo-strip__item--wide { grid-row: span 1; }
@media (max-width: 1000px) {
  .photo-strip__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
}
@media (max-width: 640px) {
  .photo-strip__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; gap: 10px; }
  .photo-strip__item figcaption { font-size: 10px; }
}

/* reply variant — your outgoing SMS */
.sms-card--reply {
  background: var(--forest);
  color: var(--paper);
  align-self: end;
}
.sms-card--reply .sms-card__time { color: color-mix(in oklab, var(--paper) 60%, transparent); }
.sms-card--reply .sms-card__body { color: var(--paper); }
.sms-card--reply::before { background: var(--clay-soft); opacity: 0.9; }

/* conversation thread — stacks two messages as a single column slot */
.sms-thread {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sms-thread .sms-card { margin: 0; }
.sms-thread .sms-card--reply { align-self: stretch; }

/* ——— Tweaks panel ——— */
.tweaks {
  position: fixed; right: 20px; bottom: 20px;
  width: 300px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  box-shadow: 0 20px 50px -20px rgba(14,18,15,0.35);
  padding: 18px 20px 20px;
  font-size: 13px;
  z-index: 999;
  display: none;
}
.tweaks.open { display: block; }
.tweaks__title {
  font-family: var(--serif); font-size: 18px; margin-bottom: 14px;
  display: flex; justify-content: space-between; align-items: center;
}
.tweaks__close {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px; color: var(--muted);
}
.tweaks__row { margin-bottom: 14px; }
.tweaks__label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.tweaks__swatches { display: flex; gap: 8px; }
.tweaks__swatch {
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, border-color .15s ease;
}
.tweaks__swatch:hover { transform: scale(1.1); }
.tweaks__swatch.active { border-color: var(--forest); }
.tweaks__seg {
  display: flex; border: 1px solid var(--line); border-radius: 999px;
  overflow: hidden;
}
.tweaks__seg button {
  flex: 1; padding: 8px 10px; font-size: 12px;
  background: transparent; color: var(--forest-2);
}
.tweaks__seg button.active { background: var(--forest); color: var(--paper); }
.tweaks__input {
  width: 100%;
  border: 1px solid var(--line); border-radius: 8px;
  padding: 8px 10px; font-size: 13px; background: var(--cream);
  color: var(--forest); font-family: var(--sans);
}

/* ——— Responsive ——— */
@media (max-width: 1000px) {
  .hero__grid, .pillars__head, .how__head, .feature, .price-card, .friskvard__grid {
    grid-template-columns: 1fr;
  }
  .pillars__grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
  .phase { padding-top: 20px; }
  .phase__dot { position: static; display: inline-block; margin-bottom: 12px; }
  .mosaic { column-count: 2; }
  .numbers { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat { border-bottom: 1px solid var(--line); }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
  .portals { grid-template-columns: 1fr; }
  .nav__links { display: none; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .mosaic { column-count: 1; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .price-card__right { padding: 28px 22px; }
  .price-card__big { font-size: 72px; }
  footer .container { justify-content: center; text-align: center; }
}
