/* ============================================================
   Lipio desktop-redesign testsida
   Port av Higgsfield-prototypen till egen statisk infra.
   Tokens ur design-briefen: paper/ink/pine/sage/terra.
   Breakpoint: 1024px (desktop >= 1024, mobil under).
   ============================================================ */

:root {
  --paper: #faf8f4;
  --paper-tint: #f1ede4;
  --ink: #16291d;
  --pine: #2d5a3f;
  --sage: #b8c5b4;
  --sage-soft: #dce5d9;
  --sage-mist: #e9efe6;
  --terra: #cf6244;
  --font-display: "Cabinet Grotesk", "Inter Tight", system-ui, sans-serif;
  --font-body: "Inter Tight", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
::selection { background: var(--sage-soft); color: var(--ink); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

/* Mount reveals: spelar direkt, aldrig viewport-gatade */
@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav__inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; padding: 0 20px;
}
.wordmark { font-family: var(--font-display); font-weight: 700; font-size: 24px; letter-spacing: -0.02em; }
.wordmark b { color: var(--terra); }
.nav__links { display: none; list-style: none; align-items: center; gap: 34px; }
.nav__links a { font-size: 14.5px; font-weight: 500; color: rgba(22, 41, 29, 0.75); transition: color 0.2s; }
.nav__links a:hover { color: var(--ink); }
.nav__right { display: none; align-items: center; gap: 22px; }
.nav__login { font-size: 14.5px; font-weight: 500; color: rgba(22, 41, 29, 0.75); }
.nav__login:hover { color: var(--ink); }

/* NavCta-garment: konturpill som flood-fillas pine vid hover (sidans enda flood-fill) */
.nav-cta {
  position: relative; display: inline-flex; align-items: center; overflow: hidden;
  border: 1px solid rgba(22, 41, 29, 0.25); border-radius: 999px;
  padding: 8px 16px; font-size: 13.5px; font-weight: 600; color: var(--ink);
  transition: color 0.3s;
}
.nav-cta::before {
  content: ""; position: absolute; inset: 0; background: var(--pine);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease-out;
}
.nav-cta span { position: relative; z-index: 1; }
.nav-cta:hover { color: var(--paper); }
.nav-cta:hover::before { transform: scaleX(1); }
.nav-cta:active { transform: scale(0.98); }

.nav__mobile { display: flex; align-items: center; gap: 12px; }
.hamburger { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 40px; height: 40px; }
.hamburger span { display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform 0.2s, opacity 0.2s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__panel { display: none; border-top: 1px solid rgba(22, 41, 29, 0.1); background: var(--paper); padding: 8px 20px 24px; }
.nav__panel.open { display: block; }
.nav__panel ul { list-style: none; }
.nav__panel li { border-bottom: 1px solid rgba(22, 41, 29, 0.08); }
.nav__panel li:last-child { border-bottom: 0; }
.nav__panel a { display: block; padding: 14px 0; font-size: 16px; font-weight: 500; }
.nav__panel a.muted { color: rgba(22, 41, 29, 0.7); }

@media (min-width: 1024px) {
  .nav__inner { height: 72px; padding: 0 32px; }
  .wordmark { font-size: 26px; }
  .nav__links, .nav__right { display: flex; }
  .nav__mobile { display: none; }
  .nav-cta { padding: 8px 20px; font-size: 14px; }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero { padding: 8px 16px 0; }
.hero__rig {
  position: relative; max-width: 1400px; margin: 0 auto;
  border-radius: 24px; overflow: hidden; background: var(--sage-soft);
}
.hero__visual { position: relative; height: 340px; }
.hero__plate { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__orbit { display: none; position: absolute; right: 2%; top: 4%; height: 92%; width: 56%; }
.hero__subject {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  height: 94%; width: auto; object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(22, 41, 29, 0.18));
}
.hero-card { display: none; position: absolute; background: var(--paper); border-radius: 16px; box-shadow: 0 24px 60px -24px rgba(22, 41, 29, 0.35); }
.hero-card--chat { width: 250px; padding: 16px; right: 34%; top: 12%; }
.hero-card--weight { width: 210px; padding: 16px; right: 4.5%; top: 30%; }
.hero-card--lab { width: 196px; padding: 14px; right: 26%; bottom: 13%; align-items: center; gap: 12px; }
.hero-card__head { display: flex; align-items: center; gap: 10px; }
.hero-card__avatar { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 999px; background: var(--pine); color: var(--paper); font-size: 12px; font-weight: 700; }
.hero-card__name { font-size: 12.5px; font-weight: 600; line-height: 1.25; }
.hero-card__role { font-size: 11px; color: rgba(22, 41, 29, 0.55); line-height: 1.25; }
.hero-card__msg { margin-top: 12px; background: var(--sage-mist); border-radius: 12px; border-top-left-radius: 4px; padding: 10px 12px; font-size: 12.5px; line-height: 1.4; color: rgba(22, 41, 29, 0.85); }
.hero-card__label { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(22, 41, 29, 0.5); }
.hero-card__kg { margin-top: 4px; font-family: var(--font-display); font-size: 26px; font-weight: 700; line-height: 1; }
.hero-card__kg small { font-size: 15px; font-weight: 600; color: rgba(22, 41, 29, 0.6); }
.hero-card__spark { margin-top: 8px; width: 100%; }
.hero-card__labicon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 999px; background: var(--sage-mist); color: var(--pine); flex-shrink: 0; }
.hero-card--lab .hero-card__name { font-size: 12.5px; }
.hero-card__ok { font-size: 11.5px; font-weight: 500; color: var(--pine); }

.hero__copy { position: relative; padding: 28px 28px 36px; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: var(--pine); }
.hero__title {
  margin-top: 16px; max-width: 22ch;
  font-family: var(--font-display); font-weight: 700; font-size: 34px;
  line-height: 1.06; letter-spacing: -0.02em;
}
.hero__sub { margin-top: 16px; max-width: 46ch; font-size: 16px; line-height: 1.6; color: rgba(22, 41, 29, 0.75); }
.hero__ctas { margin-top: 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }

/* HeroPrimary-garment: pine-pill, pilen fardas langs en ritad waypoint-rutt */
.cta-hero {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--pine); color: var(--paper); border-radius: 999px;
  padding: 16px 28px; font-size: 16px; font-weight: 600;
  box-shadow: 0 18px 40px -18px rgba(22, 41, 29, 0.55);
  transition: transform 0.2s; will-change: transform;
}
.cta-hero:active { transform: translateY(1px); }
.cta-hero__arrow-g { transition: transform 0.3s ease-out; }
.cta-hero:hover .cta-hero__arrow-g { transform: translateX(8px); }

/* HeroSecondary-garment: waypoint-prick glider langs hairline-rutten */
.cta-sec { display: inline-flex; flex-direction: column; gap: 6px; padding: 0 4px; font-size: 16px; font-weight: 600; }
.cta-sec__line { position: relative; display: block; height: 2px; width: 100%; border-radius: 2px; background: rgba(22, 41, 29, 0.15); }
.cta-sec__dot { position: absolute; top: -2px; left: 0; width: 6px; height: 6px; border-radius: 999px; background: var(--pine); transition: left 0.4s ease-out; }
.cta-sec:hover .cta-sec__dot { left: calc(100% - 6px); }

@media (min-width: 1024px) {
  .hero { padding: 12px 24px 0; }
  .hero__rig { border-radius: 36px; min-height: 660px; }
  .hero__visual { position: absolute; inset: 0; height: auto; }
  .hero__plate { height: 112%; transform: scale(1.05); }
  .hero__orbit { display: block; }
  .hero__subject { left: auto; right: 10%; transform: none; }
  .hero-card { display: block; }
  .hero-card--lab { display: flex; }
  .hero__copy { position: absolute; bottom: 0; left: 0; max-width: 720px; padding: 56px 24px 56px 56px; }
  .hero__title { font-size: 50px; line-height: 1.04; }
  .hero__sub { margin-top: 20px; font-size: 17px; }
  .hero__ctas { margin-top: 32px; flex-direction: row; align-items: center; gap: 32px; }
}
@media (min-width: 1280px) { .hero__title { font-size: 56px; } }
@media (min-width: 640px) and (max-width: 1023px) { .hero__visual { height: 420px; } }

/* ── Trust band ──────────────────────────────────────────── */
.trust { max-width: 1400px; margin: 40px auto; padding: 0 20px; }
.trust__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px 0;
  border-top: 1px solid rgba(22, 41, 29, 0.1); border-bottom: 1px solid rgba(22, 41, 29, 0.1);
  padding: 28px 0;
}
.trust__item { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 0 12px; text-align: center; }
.trust__item svg { color: var(--pine); }
.trust__item p { font-size: 13px; font-weight: 500; color: rgba(22, 41, 29, 0.8); }
@media (min-width: 1024px) {
  .trust { margin: 64px auto; padding: 0 32px; }
  .trust__grid { grid-template-columns: repeat(4, 1fr); gap: 0; padding: 36px 0; }
  .trust__item { border-left: 1px solid rgba(22, 41, 29, 0.1); padding: 0 16px; }
  .trust__item:first-child { border-left: 0; }
  .trust__item p { font-size: 14px; }
}

/* ── Sektionsrubriker ────────────────────────────────────── */
.eyebrow { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; }
.h2 { font-family: var(--font-display); font-weight: 700; font-size: 32px; line-height: 1.05; letter-spacing: -0.02em; }
@media (min-width: 1024px) { .h2 { font-size: 42px; } }

/* ── Journey ─────────────────────────────────────────────── */
.journey { max-width: 1400px; margin: 0 auto; padding: 56px 20px; }
.journey__grid { display: grid; grid-template-columns: 1fr; }
.journey__rail { padding-bottom: 32px; }
.journey__rail .eyebrow { color: var(--terra); }
.journey__rail .h2 { margin-top: 12px; }
.journey__numeral {
  display: none; pointer-events: none; margin: 8px 0 0 -8px;
  font-family: var(--font-display); font-weight: 700; font-size: 168px; line-height: 1;
  color: var(--sage-soft); transition: opacity 0.3s;
}
.journey__steps { display: none; list-style: none; margin-top: 16px; }
.journey__steps li { display: flex; align-items: center; gap: 16px; margin-top: 16px; }
.journey__steps .num {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--sage-mist); color: rgba(22, 41, 29, 0.6);
  font-size: 13px; font-weight: 700; transition: background 0.3s, color 0.3s;
}
.journey__steps .label { font-size: 16px; font-weight: 500; color: rgba(22, 41, 29, 0.5); transition: color 0.3s; }
.journey__steps li.active .num { background: var(--ink); color: var(--paper); }
.journey__steps li.active .label { color: var(--ink); font-weight: 600; }

.journey__cards { display: flex; flex-direction: column; gap: 24px; }
.jcard {
  position: sticky; overflow: hidden; border-radius: 22px; background: var(--paper-tint);
  box-shadow: 0 30px 70px -40px rgba(22, 41, 29, 0.4);
}
.jcard__grid { display: grid; grid-template-columns: 1fr; }
.jcard__img { width: 100%; height: 200px; object-fit: cover; }
.jcard__body { display: flex; flex-direction: column; justify-content: center; padding: 24px; }
.jcard__step { font-size: 13px; font-weight: 600; color: rgba(22, 41, 29, 0.45); }
.jcard__title { margin-top: 8px; font-family: var(--font-display); font-weight: 700; font-size: 24px; letter-spacing: -0.01em; line-height: 1.2; }
.jcard__text { margin-top: 12px; max-width: 42ch; font-size: 15px; line-height: 1.6; color: rgba(22, 41, 29, 0.7); }
@media (min-width: 1024px) {
  .journey { padding: 80px 32px; }
  .journey__grid { grid-template-columns: minmax(300px, 380px) 1fr; column-gap: 80px; }
  .journey__rail { position: sticky; top: 96px; align-self: start; height: fit-content; padding-bottom: 40px; }
  .journey__numeral, .journey__steps { display: block; }
  .journey__cards { gap: 40px; }
  .jcard { border-radius: 28px; }
  .jcard__grid { grid-template-columns: 1fr 1.1fr; min-height: 420px; }
  .jcard__img { order: 2; height: 100%; }
  .jcard__body { order: 1; padding: 40px 32px 40px 40px; }
  .jcard__title { margin-top: 12px; font-size: 30px; }
  .jcard__text { margin-top: 16px; font-size: 16px; }
}

/* ── Bento ───────────────────────────────────────────────── */
.bento { max-width: 1400px; margin: 0 auto; padding: 56px 20px; }
.bento__head { max-width: 620px; margin: 0 auto; text-align: center; }
.bento__head p { margin-top: 16px; font-size: 17px; line-height: 1.6; color: rgba(22, 41, 29, 0.7); }
.bento__grid { margin-top: 40px; display: grid; grid-template-columns: 1fr; gap: 16px; }
.bcell { border-radius: 24px; }
.bcell--photo { position: relative; overflow: hidden; min-height: 320px; }
.bcell--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bcell--photo figcaption {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(250, 248, 244, 0.95); border-radius: 16px; padding: 16px 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.bcell--photo figcaption b { display: block; font-size: 15px; font-weight: 600; }
.bcell--photo figcaption span { display: block; margin-top: 2px; font-size: 13.5px; color: rgba(22, 41, 29, 0.6); }
.bcell--sage { position: relative; overflow: hidden; background: var(--sage-soft); padding: 28px; }
.bcell--sage svg { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 96px; }
.bcell--sage b { position: relative; display: block; font-size: 19px; font-weight: 600; line-height: 1.35; }
.bcell--sage p { position: relative; margin-top: 8px; max-width: 30ch; font-size: 14.5px; line-height: 1.55; color: rgba(22, 41, 29, 0.65); }
.bcell--stat { display: flex; flex-direction: column; justify-content: space-between; gap: 24px; background: var(--paper-tint); padding: 28px; }
.bcell--stat .zero { font-family: var(--font-display); font-weight: 700; font-size: 84px; line-height: 1; letter-spacing: -0.02em; }
.bcell--stat .zero small { margin-left: 4px; font-size: 38px; font-weight: 600; color: rgba(22, 41, 29, 0.7); }
.bcell--stat b { display: block; font-size: 19px; font-weight: 600; line-height: 1.35; }
.bcell--stat p { margin-top: 8px; font-size: 14.5px; line-height: 1.55; color: rgba(22, 41, 29, 0.65); }
.bcell--quiet { border: 1px solid rgba(22, 41, 29, 0.1); padding: 24px; }
.bcell--quiet b { display: block; font-size: 16px; font-weight: 600; }
.bcell--quiet p { margin-top: 6px; font-size: 13.5px; line-height: 1.55; color: rgba(22, 41, 29, 0.6); }
@media (min-width: 1024px) {
  .bento { padding: 80px 32px; }
  .bento__grid { margin-top: 48px; grid-template-columns: repeat(12, 1fr); gap: 20px; }
  .bcell--photo { grid-column: span 5; grid-row: span 2; min-height: 480px; }
  .bcell--sage { grid-column: span 4; }
  .bcell--stat { grid-column: span 3; grid-row: span 2; }
  .bcell--stat .zero { font-size: 120px; }
  .bcell--quiet { grid-column: span 2; }
}

/* ── BMI ─────────────────────────────────────────────────── */
.bmi { max-width: 1400px; margin: 0 auto; padding: 56px 20px; }
.bmi__card {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  background: var(--sage-mist); border-radius: 24px; padding: 28px;
}
.bmi__intro .eyebrow { color: var(--pine); }
.bmi__intro .h2 { margin-top: 12px; }
.bmi__intro p { margin-top: 16px; max-width: 44ch; font-size: 16px; line-height: 1.6; color: rgba(22, 41, 29, 0.7); }
.bmi__form { background: var(--paper); border-radius: 20px; padding: 24px; box-shadow: 0 30px 70px -45px rgba(22, 41, 29, 0.45); }
.bmi__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bmi__field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
.bmi__input { position: relative; }
.bmi__input input {
  width: 100%; border: 1px solid rgba(22, 41, 29, 0.15); border-radius: 12px;
  background: var(--paper); padding: 13px 44px 13px 14px; font: inherit; font-size: 16px; color: var(--ink);
}
.bmi__input input:focus { outline: 2px solid var(--pine); outline-offset: 1px; }
.bmi__input span { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: 14px; color: rgba(22, 41, 29, 0.45); }
/* BmiCta-garment: helbreddsblock dar pilen ritas in som matlinjal-tick vid hover */
.bmi__btn {
  width: 100%; margin-top: 16px; border-radius: 12px; background: var(--ink); color: var(--paper);
  padding: 15px; font-size: 15.5px; font-weight: 600; letter-spacing: 0.01em;
  transition: background 0.25s, transform 0.15s;
}
.bmi__btn:hover { background: var(--pine); }
.bmi__btn:active { transform: translateY(1px); }
.bmi__result { display: none; margin-top: 18px; border-top: 1px dashed rgba(22, 41, 29, 0.2); padding-top: 18px; }
.bmi__result.show { display: block; }
.bmi__value { font-family: var(--font-display); font-weight: 700; font-size: 44px; line-height: 1; }
.bmi__value small { font-size: 16px; font-weight: 600; color: rgba(22, 41, 29, 0.55); margin-left: 6px; }
.bmi__cat { margin-top: 6px; font-size: 15px; font-weight: 600; color: var(--pine); }
.bmi__note { margin-top: 8px; font-size: 13.5px; line-height: 1.55; color: rgba(22, 41, 29, 0.6); }
.bmi__error { display: none; margin-top: 10px; font-size: 13.5px; font-weight: 500; color: var(--terra); }
.bmi__error.show { display: block; }
.bmi__cta {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 16px;
  padding: 13px 24px; background: var(--pine); color: var(--paper);
  border-radius: 999px; font-size: 15px; font-weight: 600; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bmi__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -12px rgba(22, 41, 29, 0.45); color: var(--paper); }
.bmimail { margin-top: 20px; border-top: 1px dashed rgba(22, 41, 29, 0.2); padding-top: 16px; }
.bmimail__label { font-size: 13.5px; font-weight: 500; color: rgba(22, 41, 29, 0.7); }
.bmimail__row { display: flex; gap: 8px; margin-top: 10px; }
.bmimail__row input[type="email"] {
  flex: 1; min-width: 0; padding: 11px 14px; font-size: 15px; font-family: inherit;
  color: var(--ink); background: var(--paper); border: 1px solid rgba(22, 41, 29, 0.18); border-radius: 12px;
}
.bmimail__row input[type="email"]:focus { outline: 2px solid var(--pine); outline-offset: 1px; }
.bmimail__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.bmimail__send {
  padding: 11px 20px; font-size: 14.5px; font-weight: 600; font-family: inherit;
  color: var(--ink); background: var(--sage-soft); border: none; border-radius: 12px; cursor: pointer;
  transition: background 0.2s;
}
.bmimail__send:hover { background: var(--sage); }
.bmimail__send:disabled { opacity: 0.6; cursor: default; }
.bmimail__status { display: none; margin-top: 8px; font-size: 13px; font-weight: 500; }
.bmimail__status.is-ok { display: block; color: var(--pine); }
.bmimail__status.is-err { display: block; color: var(--terra); }
.bmimail__consent { margin-top: 8px; font-size: 11.5px; line-height: 1.5; color: rgba(22, 41, 29, 0.45); }
.bmimail__consent a { color: inherit; text-decoration: underline; }
@media (min-width: 1024px) {
  .bmi { padding: 80px 32px; }
  .bmi__card { grid-template-columns: 1.1fr 1fr; align-items: center; gap: 64px; border-radius: 36px; padding: 56px; }
  .bmi__form { padding: 32px; }
}

/* ── App preview ─────────────────────────────────────────── */
.appsec { max-width: 1400px; margin: 0 auto; padding: 56px 20px; }
.appsec__card {
  display: grid; grid-template-columns: 1fr; align-items: center; gap: 32px;
  background: var(--sage-mist); border-radius: 24px; padding: 20px;
}
.appsec__figure { position: relative; }
.appsec__phone { margin: 0 auto; width: 100%; max-width: 340px; border-radius: 28px; box-shadow: 0 40px 90px -40px rgba(22, 41, 29, 0.45); }
.appsec__chip {
  display: none; position: absolute; right: -8px; top: 40px;
  background: var(--paper); border-radius: 16px; padding: 12px 16px;
  box-shadow: 0 20px 50px -20px rgba(22, 41, 29, 0.35);
}
.appsec__chip span { display: block; font-size: 12px; font-weight: 500; color: rgba(22, 41, 29, 0.55); }
.appsec__chip b { display: block; font-size: 14px; font-weight: 600; }
.appsec__copy { max-width: 480px; padding-bottom: 16px; }
.appsec__copy > p { margin-top: 20px; font-size: 17px; line-height: 1.6; color: rgba(22, 41, 29, 0.7); }
.appsec__list { list-style: none; margin-top: 28px; }
.appsec__list li { display: flex; align-items: flex-start; gap: 12px; margin-top: 14px; font-size: 15.5px; font-weight: 500; color: rgba(22, 41, 29, 0.8); }
.appsec__list svg { flex-shrink: 0; margin-top: 2px; }
.appstore {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 36px;
  background: var(--ink); color: var(--paper); border-radius: 16px; padding: 12px 20px;
  transition: transform 0.2s;
}
.appstore:hover { transform: translateY(-2px); }
.appstore:active { transform: translateY(0); }
.appstore span { display: block; font-size: 11px; opacity: 0.75; line-height: 1.3; }
.appstore b { display: block; font-size: 16px; font-weight: 600; line-height: 1.2; }
@media (min-width: 1024px) {
  .appsec { padding: 80px 32px; }
  .appsec__card { grid-template-columns: 1.05fr 1fr; gap: 64px; border-radius: 36px; padding: 40px; }
  .appsec__phone { max-width: 520px; }
  .appsec__copy { padding: 32px 16px 32px 0; }
}
@media (min-width: 1280px) { .appsec__chip { display: block; } }

/* ── Pricing ─────────────────────────────────────────────── */
.pricing { max-width: 1400px; margin: 0 auto; padding: 56px 20px; }
.pricing__head { max-width: 560px; margin: 0 auto; text-align: center; }
.pricing__head .eyebrow { color: var(--pine); }
.pricing__head .h2 { margin-top: 12px; }
.pricing__grid { max-width: 980px; margin: 40px auto 0; display: grid; grid-template-columns: 1fr; align-items: center; gap: 40px; }
.pcard { position: relative; background: var(--paper-tint); border-radius: 26px; padding: 24px; box-shadow: 0 40px 90px -45px rgba(22, 41, 29, 0.5); }
.pcard__pill { display: inline-flex; align-items: center; gap: 8px; background: var(--terra); color: var(--paper); border-radius: 999px; padding: 6px 16px; font-size: 12.5px; font-weight: 600; }
.pcard__pill b { background: rgba(250, 248, 244, 0.25); border-radius: 999px; padding: 1px 8px; font-weight: 800; }
.pcard__price { margin-top: 20px; font-family: var(--font-display); font-weight: 700; font-size: 56px; line-height: 1; letter-spacing: -0.02em; }
.pcard__price small { font-size: 26px; font-weight: 600; color: rgba(22, 41, 29, 0.6); }
.pcard__campaign { margin-top: 8px; font-size: 16px; font-weight: 600; color: var(--terra); }
.pcard__list { list-style: none; margin-top: 24px; border-top: 1px dashed rgba(22, 41, 29, 0.2); padding-top: 24px; }
.pcard__list li { display: flex; align-items: flex-start; gap: 12px; margin-top: 12px; font-size: 15px; font-weight: 500; color: rgba(22, 41, 29, 0.8); }
.pcard__list li:first-child { margin-top: 0; }
.pcard__list svg { flex-shrink: 0; margin-top: 2px; }
.pcard__fine { margin-top: 20px; font-size: 13.5px; line-height: 1.55; color: rgba(22, 41, 29, 0.55); }

/* PricingCta-garment: terracotta-kvittobiljett, perforeringen "rivs" vid hover */
.cta-pricing {
  position: relative; display: block; overflow: hidden; margin-top: 28px;
  background: var(--terra); color: var(--paper); border-radius: 12px;
  padding: 16px 24px; text-align: center; font-size: 16px; font-weight: 600;
  transition: transform 0.2s;
}
.cta-pricing::before {
  content: ""; position: absolute; left: 12px; right: 12px; top: 0;
  border-top: 2px dashed rgba(250, 248, 244, 0.5);
  transition: transform 0.3s;
}
.cta-pricing:hover { transform: skewX(-0.5deg); }
.cta-pricing:hover::before { transform: translateX(8px); }
.cta-pricing:active { transform: translateY(1px); }

.pricing__notes { list-style: none; }
.pricing__notes li { border-left: 2px solid var(--sage); padding-left: 20px; margin-top: 28px; }
.pricing__notes li:first-child { margin-top: 0; }
.pricing__notes b { display: block; font-size: 17px; font-weight: 600; }
.pricing__notes p { margin-top: 4px; font-size: 14.5px; line-height: 1.55; color: rgba(22, 41, 29, 0.65); }
@media (min-width: 1024px) {
  .pricing { padding: 80px 32px; }
  .pricing__grid { margin-top: 48px; grid-template-columns: 1.25fr 1fr; gap: 48px; }
  .pcard { padding: 36px; }
  .pcard__price { font-size: 76px; }
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { max-width: 860px; margin: 0 auto; padding: 56px 20px; }
.faq > p { margin-top: 16px; max-width: 52ch; font-size: 16px; line-height: 1.6; color: rgba(22, 41, 29, 0.65); }
.faq__list { margin-top: 40px; border-top: 1px solid rgba(22, 41, 29, 0.1); border-bottom: 1px solid rgba(22, 41, 29, 0.1); }
.faq__item { border-top: 1px solid rgba(22, 41, 29, 0.1); }
.faq__item:first-child { border-top: 0; }
.faq__q { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 0; text-align: left; }
.faq__q span { font-size: 16px; font-weight: 600; }
.faq__q svg { flex-shrink: 0; color: rgba(22, 41, 29, 0.5); transition: transform 0.3s, color 0.3s; }
.faq__item.open .faq__q svg { transform: rotate(45deg); color: var(--terra); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease-out; }
.faq__item.open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { margin-bottom: 20px; background: var(--sage-mist); border-radius: 16px; padding: 16px 24px; font-size: 15px; line-height: 1.6; color: rgba(22, 41, 29, 0.8); }
@media (min-width: 1024px) { .faq { padding: 80px 32px; } .faq__q span { font-size: 18px; } }

/* ── Final CTA + footer ──────────────────────────────────── */
.final { position: relative; overflow: hidden; background: var(--ink); }
.final__orbit { pointer-events: none; position: absolute; left: 50%; top: 50%; width: 900px; height: 900px; transform: translate(-50%, -50%); }
.final__inner { position: relative; max-width: 760px; margin: 0 auto; padding: 96px 20px; text-align: center; }
.final__title { font-family: var(--font-display); font-weight: 700; font-size: 36px; line-height: 1.03; letter-spacing: -0.02em; color: var(--paper); }
.final__sub { max-width: 46ch; margin: 20px auto 0; font-size: 17px; line-height: 1.6; color: rgba(250, 248, 244, 0.7); }

/* FinalCta-garment: paper-pill, sage-ring blommar fran mitten vid hover */
.cta-final {
  position: relative; display: inline-flex; align-items: center; gap: 12px; overflow: hidden;
  margin-top: 40px; background: var(--paper); color: var(--ink); border-radius: 999px;
  padding: 18px 36px; font-size: 17px; font-weight: 600;
}
.cta-final::before {
  content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 12px;
  transform: translate(-50%, -50%); border-radius: 999px; background: var(--sage-soft);
  opacity: 0; transition: width 0.5s ease-out, height 0.5s ease-out, opacity 0.5s;
}
.cta-final:hover::before { width: 105%; height: 130%; opacity: 1; }
.cta-final span, .cta-final svg { position: relative; z-index: 1; }

.footer { border-top: 1px solid rgba(250, 248, 244, 0.1); background: var(--ink); color: var(--paper); }
.footer__grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px; padding: 48px 20px; }
.footer__about p { margin-top: 12px; max-width: 36ch; font-size: 14px; line-height: 1.6; color: rgba(250, 248, 244, 0.6); }
.footer__about .org { margin-top: 20px; font-size: 13px; line-height: 1.7; color: rgba(250, 248, 244, 0.45); }
.footer__col h3 { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(250, 248, 244, 0.45); }
.footer__col ul { list-style: none; margin-top: 16px; }
.footer__col li { margin-top: 10px; }
.footer__col a { font-size: 14.5px; color: rgba(250, 248, 244, 0.7); transition: color 0.2s; }
.footer__col a:hover { color: var(--paper); }
.footer__bottom { border-top: 1px solid rgba(250, 248, 244, 0.1); }
.footer__bottom p { max-width: 1400px; margin: 0 auto; padding: 20px; font-size: 12.5px; color: rgba(250, 248, 244, 0.4); }
@media (min-width: 1024px) {
  .final__orbit { width: 1400px; height: 1400px; }
  .final__inner { padding: 144px 32px; }
  .final__title { font-size: 56px; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1.1fr 1fr 0.9fr; gap: 40px; padding: 64px 32px; }
  .footer__bottom p { padding: 20px 32px; }
}

/* ── Trustpilot (statisk, egen SVG, ingen widget) ────────── */
.tp-stars { display: inline-flex; line-height: 0; }
.trust__tp {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 20px; font-size: 14px; color: rgba(22, 41, 29, 0.7);
}
.trust__tp b { font-weight: 600; color: var(--ink); }
.pricing__quote {
  border-left: 0 !important; padding-left: 0 !important;
  background: var(--paper); border: 1px solid rgba(22, 41, 29, 0.08);
  border-radius: 18px; padding: 20px 22px;
  box-shadow: 0 24px 55px -35px rgba(22, 41, 29, 0.35);
}
.pricing__quote blockquote { margin-top: 12px; font-size: 16px; font-weight: 500; line-height: 1.5; }
.pricing__quote cite { display: block; margin-top: 8px; font-style: normal; font-size: 13px; color: rgba(22, 41, 29, 0.55); }

/* ── Sticky mobil-CTA (bevarad fran forra designen) ──────── */
.msticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(250, 248, 244, 0.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(22, 41, 29, 0.08);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  transform: translateY(110%); transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.msticky.on { transform: translateY(0); }
.msticky__btn {
  display: block; background: var(--terra); color: var(--paper); border-radius: 999px;
  padding: 15px; text-align: center; font-size: 16.5px; font-weight: 600;
  box-shadow: 0 14px 34px -14px rgba(207, 98, 68, 0.65);
}
.msticky__btn:active { transform: translateY(1px); }
.msticky__sub { margin-top: 7px; text-align: center; font-size: 12px; color: rgba(22, 41, 29, 0.6); }
@media (min-width: 1024px) { .msticky { display: none; } }
