/* ============================================================
   GLPulse — luxosana.shop
   Egen stilmall. Inga externa bibliotek, inga externa typsnitt.
   Palett: ljus · mättad · silver · mint · grön · mörkgrön
   ============================================================ */

:root {
  /* Färger */
  --gp-ink: #0c2a20;
  --gp-forest: #14523c;
  --gp-green: #1f7a54;
  --gp-pulse: #21b874;
  --gp-pulse-dark: #17915b;
  --gp-mint: #c6ecd9;
  --gp-mint-soft: #e9f7f0;
  --gp-mint-mist: #f3fbf7;
  --gp-silver: #ced8d5;
  --gp-silver-soft: #eef2f1;
  --gp-paper: #fbfdfc;
  --gp-white: #ffffff;
  --gp-text: #17251f;
  --gp-muted: #5a6d65;

  /* Typografi */
  --gp-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --gp-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --gp-meta: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  /* Rytm */
  --gp-shell: 1200px;
  --gp-gap: 26px;
  --gp-block: clamp(72px, 9vw, 128px);
  --gp-radius-l: 26px;
  --gp-radius-m: 18px;
  --gp-radius-s: 12px;

  /* Ytor */
  --gp-line: 1px solid var(--gp-silver);
  --gp-shadow-s: 0 2px 10px rgba(12, 42, 32, .05);
  --gp-shadow-m: 0 18px 44px -28px rgba(12, 42, 32, .38);
  --gp-shadow-l: 0 34px 70px -40px rgba(12, 42, 32, .45);
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--gp-paper);
  color: var(--gp-text);
  font-family: var(--gp-body);
  font-size: 17px;
  line-height: 1.68;
  letter-spacing: .002em;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gp-green); text-decoration: none; }
a:hover { color: var(--gp-pulse-dark); }

h1, h2, h3, h4 {
  font-family: var(--gp-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--gp-ink);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.35rem, 5.2vw, 4.05rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.85rem); }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.42rem); }
p  { margin: 0 0 1.1em; }

:focus-visible {
  outline: 3px solid var(--gp-pulse);
  outline-offset: 3px;
  border-radius: 6px;
}

.gp-shell {
  width: min(100% - 40px, var(--gp-shell));
  margin-inline: auto;
}

.gp-skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--gp-ink); color: #fff; padding: 12px 18px; z-index: 999;
  border-radius: 0 0 10px 0;
}
.gp-skip:focus { left: 0; color: #fff; }

/* ------------------------------------------------ etiketter */
.gp-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--gp-meta);
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gp-green); margin-bottom: 18px;
}
.gp-eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--gp-pulse); flex: none;
}
.gp-eyebrow--light { color: var(--gp-mint); }
.gp-eyebrow--light::before { background: var(--gp-mint); }

.gp-lead {
  font-size: clamp(1.03rem, 1.55vw, 1.17rem);
  color: var(--gp-muted);
  max-width: 62ch;
}

.gp-section { padding: var(--gp-block) 0; }
.gp-section--tint { background: var(--gp-mint-mist); }
.gp-section--mint { background: linear-gradient(160deg, var(--gp-mint-soft), var(--gp-silver-soft)); }
.gp-section--deep {
  background: radial-gradient(120% 130% at 82% 10%, var(--gp-forest) 0%, var(--gp-ink) 62%);
  color: #e8f4ee;
}
.gp-section--deep h2, .gp-section--deep h3 { color: #fff; }
.gp-section--deep .gp-lead { color: #bcd6c9; }

.gp-head { max-width: 720px; margin-bottom: 54px; }
.gp-head--center { margin-inline: auto; text-align: center; }
.gp-head--center .gp-lead { margin-inline: auto; }
.gp-head--center .gp-eyebrow::before { display: none; }

/* ------------------------------------------------ knappar */
.gp-btn {
  --btn-bg: var(--gp-pulse-dark);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px;
  background: var(--btn-bg); color: #fff;
  border: 1px solid transparent; border-radius: 999px;
  font: 600 .95rem/1 var(--gp-body); letter-spacing: .01em;
  cursor: pointer; text-align: center;
  transition: transform .18s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
  box-shadow: 0 12px 26px -16px rgba(23, 145, 91, .95);
}
.gp-btn:hover { background: var(--gp-forest); color: #fff; transform: translateY(-2px); box-shadow: var(--gp-shadow-m); }
.gp-btn:active { transform: translateY(0); }
.gp-btn--ghost {
  background: transparent; color: var(--gp-forest);
  border-color: var(--gp-silver); box-shadow: none;
}
.gp-btn--ghost:hover { background: var(--gp-white); color: var(--gp-ink); border-color: var(--gp-mint); }
.gp-btn--light { background: var(--gp-mint); color: var(--gp-ink); box-shadow: none; }
.gp-btn--light:hover { background: #fff; color: var(--gp-ink); }
.gp-btn--wide { width: 100%; }
.gp-btn--sm { padding: 12px 22px; font-size: .88rem; }

/* ------------------------------------------------ signatur: pulslinje */
.gp-pulse-line { display: block; width: 100%; height: auto; overflow: visible; }
.gp-pulse-line path {
  fill: none; stroke: var(--gp-pulse); stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 900; stroke-dashoffset: 900;
  animation: gp-draw 3.4s cubic-bezier(.3,.7,.2,1) forwards;
}
.gp-pulse-line--soft path { stroke: var(--gp-mint); }
@keyframes gp-draw { to { stroke-dashoffset: 0; } }

.gp-divider {
  height: 1px; border: 0; margin: 0;
  background: linear-gradient(90deg, transparent, var(--gp-silver) 18%, var(--gp-silver) 82%, transparent);
}

/* ------------------------------------------------ sidhuvud */
.gp-topbar {
  background: var(--gp-ink); color: #cfe6da;
  font-family: var(--gp-meta); font-size: .72rem; letter-spacing: .1em;
}
.gp-topbar__row {
  display: flex; flex-wrap: wrap; gap: 6px 26px;
  align-items: center; justify-content: center; padding: 9px 0;
  text-align: center;
}
.gp-topbar a { color: #cfe6da; }
.gp-topbar a:hover { color: var(--gp-mint); }

.gp-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 253, 252, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(206, 216, 213, .7);
}
.gp-header__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 76px;
}
.gp-brand { display: inline-flex; align-items: baseline; gap: 2px; font-family: var(--gp-display); font-size: 1.42rem; letter-spacing: -.02em; color: var(--gp-ink); }
.gp-brand b { font-weight: 600; }
.gp-brand span { color: var(--gp-pulse-dark); font-weight: 600; }
.gp-brand:hover { color: var(--gp-ink); }
.gp-brand__mark { width: 34px; height: 34px; margin-right: 10px; flex: none; align-self: center; }

.gp-nav { display: flex; align-items: center; gap: 30px; }
.gp-nav__link {
  font-size: .93rem; font-weight: 500; color: var(--gp-text); position: relative; padding: 6px 0;
}
.gp-nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--gp-pulse); transition: width .25s ease;
}
.gp-nav__link:hover { color: var(--gp-ink); }
.gp-nav__link:hover::after { width: 100%; }

.gp-burger {
  display: none; width: 46px; height: 42px; border: var(--gp-line); border-radius: 12px;
  background: var(--gp-white); cursor: pointer; padding: 0; position: relative;
}
.gp-burger span {
  position: absolute; left: 12px; width: 22px; height: 1.8px; background: var(--gp-ink);
  transition: transform .25s ease, opacity .2s ease;
}
.gp-burger span:nth-child(1) { top: 15px; }
.gp-burger span:nth-child(2) { top: 20px; }
.gp-burger span:nth-child(3) { top: 25px; }
.gp-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.gp-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.gp-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ------------------------------------------------ hero */
.gp-hero { position: relative; padding: clamp(56px, 7vw, 96px) 0 var(--gp-block); overflow: hidden; }
.gp-hero::before {
  content: ""; position: absolute; inset: -20% -30% auto auto; width: 62vw; height: 62vw;
  background: radial-gradient(circle at 50% 50%, rgba(198, 236, 217, .85), rgba(198, 236, 217, 0) 65%);
  z-index: -1;
}
.gp-hero__grid {
  display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.gp-hero h1 { margin-bottom: 22px; }
.gp-hero h1 em { font-style: normal; color: var(--gp-green); }
.gp-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 26px; }
.gp-hero__note {
  font-family: var(--gp-meta); font-size: .74rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gp-muted);
}
.gp-hero__figure {
  position: relative; border-radius: var(--gp-radius-l); overflow: hidden;
  box-shadow: var(--gp-shadow-l); background: var(--gp-mint-soft);
}
.gp-hero__figure img {
  width: 100%; aspect-ratio: 3 / 2; max-height: 470px;
  object-fit: cover; object-position: center;
}
.gp-hero__badge {
  position: absolute; left: 22px; bottom: 22px; right: 22px;
  background: rgba(255, 255, 255, .93); border-radius: var(--gp-radius-m);
  padding: 16px 20px; display: flex; gap: 16px; align-items: center;
  box-shadow: var(--gp-shadow-s);
}
.gp-hero__badge strong { font-family: var(--gp-display); font-size: 1.1rem; color: var(--gp-ink); }
.gp-hero__badge p { margin: 0; font-size: .84rem; color: var(--gp-muted); line-height: 1.45; }
.gp-hero__pulse { width: 54px; flex: none; }

/* ------------------------------------------------ faktarad */
.gp-facts {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--gp-silver); border-block: var(--gp-line);
}
.gp-facts__item { background: var(--gp-paper); padding: 30px 26px; }
.gp-facts__value {
  font-family: var(--gp-display); font-size: 1.5rem; color: var(--gp-forest); display: block; margin-bottom: 4px;
}
.gp-facts__label { font-size: .87rem; color: var(--gp-muted); margin: 0; }

/* ------------------------------------------------ delade layouter */
.gp-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 76px); align-items: center;
}
.gp-split--narrow { grid-template-columns: .92fr 1.08fr; }
.gp-split__media { border-radius: var(--gp-radius-l); overflow: hidden; box-shadow: var(--gp-shadow-m); background: var(--gp-mint-soft); }
.gp-split__media img {
  width: 100%; aspect-ratio: 5 / 4; max-height: 460px;
  object-fit: cover; object-position: center;
}
.gp-split__media--wide img { aspect-ratio: 3 / 2; max-height: 420px; }
.gp-split__media--product { background: linear-gradient(150deg, var(--gp-mint-soft), var(--gp-silver-soft)); box-shadow: var(--gp-shadow-s); border: var(--gp-line); }
.gp-split__media--product img {
  aspect-ratio: 1 / 1; max-height: 440px; object-fit: contain;
  padding: clamp(18px, 4vw, 40px);
}

.gp-checklist { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.gp-checklist li { position: relative; padding-left: 32px; color: var(--gp-text); }
.gp-checklist li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 18px; height: 18px; border-radius: 50%;
  background: var(--gp-mint-soft); border: 1.5px solid var(--gp-pulse);
}
.gp-checklist li::after {
  content: ""; position: absolute; left: 6px; top: .72em; width: 6px; height: 3px;
  border-left: 1.8px solid var(--gp-pulse-dark); border-bottom: 1.8px solid var(--gp-pulse-dark);
  transform: rotate(-45deg);
}
.gp-section--deep .gp-checklist li { color: #d8ebe1; }
.gp-section--deep .gp-checklist li::before { background: rgba(255,255,255,.06); }

/* ------------------------------------------------ kort */
.gp-grid { display: grid; gap: var(--gp-gap); }
.gp-grid--3 { grid-template-columns: repeat(3, 1fr); }
.gp-grid--4 { grid-template-columns: repeat(4, 1fr); }
.gp-grid--2 { grid-template-columns: repeat(2, 1fr); }

.gp-card {
  background: var(--gp-white); border: var(--gp-line); border-radius: var(--gp-radius-l);
  padding: 30px 28px; box-shadow: var(--gp-shadow-s);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}
.gp-card:hover { transform: translateY(-3px); box-shadow: var(--gp-shadow-m); border-color: var(--gp-mint); }
.gp-card h3 { margin-bottom: .35em; }
.gp-card p { color: var(--gp-muted); margin-bottom: 0; font-size: .96rem; }
.gp-card__icon {
  width: 46px; height: 46px; border-radius: 14px; margin-bottom: 20px;
  background: var(--gp-mint-soft); border: 1px solid var(--gp-mint);
  display: grid; place-items: center; color: var(--gp-forest);
  font-family: var(--gp-meta); font-size: .78rem; letter-spacing: .04em;
}
.gp-card--flat:hover { transform: none; }

/* ingredienser */
.gp-ing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gp-silver); border: var(--gp-line); border-radius: var(--gp-radius-l); overflow: hidden; }
.gp-ing__item { background: var(--gp-white); padding: 30px 26px; }
.gp-ing__latin { font-family: var(--gp-meta); font-size: .72rem; letter-spacing: .1em; color: var(--gp-green); text-transform: uppercase; }
.gp-ing__item h3 { font-size: 1.18rem; margin: 8px 0 .4em; }
.gp-ing__item p { color: var(--gp-muted); font-size: .94rem; margin: 0; }
.gp-ing__note {
  margin-top: 26px; padding: 20px 24px; border-radius: var(--gp-radius-m);
  background: var(--gp-mint-soft); border: 1px solid var(--gp-mint);
  font-size: .93rem; color: var(--gp-forest);
}
.gp-ing__note p { margin: 0; }

/* steg */
.gp-steps { counter-reset: gpstep; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gp-gap); }
.gp-step { position: relative; padding-top: 28px; border-top: 2px solid var(--gp-mint); }
.gp-step::before {
  counter-increment: gpstep; content: counter(gpstep, decimal-leading-zero);
  font-family: var(--gp-meta); font-size: .78rem; color: var(--gp-pulse-dark);
  position: absolute; top: -13px; left: 0; background: var(--gp-mint-mist); padding-right: 12px;
}
.gp-step h3 { font-size: 1.12rem; }
.gp-step p { color: var(--gp-muted); font-size: .95rem; margin: 0; }

/* paket */
.gp-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gp-gap); align-items: stretch; }
.gp-plan {
  background: var(--gp-white); border: var(--gp-line); border-radius: var(--gp-radius-l);
  padding: 28px; display: flex; flex-direction: column; position: relative;
  box-shadow: var(--gp-shadow-s); transition: box-shadow .25s ease, transform .2s ease, border-color .25s ease;
}
.gp-plan:hover { transform: translateY(-4px); box-shadow: var(--gp-shadow-m); border-color: var(--gp-mint); }
.gp-plan--featured { border-color: var(--gp-pulse); box-shadow: var(--gp-shadow-m); }
.gp-plan__tag {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--gp-meta); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
  background: var(--gp-mint); color: var(--gp-forest); padding: 6px 12px; border-radius: 999px;
}
.gp-plan__media {
  background: linear-gradient(155deg, var(--gp-mint-soft), var(--gp-silver-soft));
  border-radius: var(--gp-radius-m); margin-bottom: 22px;
}
.gp-plan__media img {
  width: 100%; height: 230px; object-fit: contain; padding: 16px;
}
.gp-plan__units { font-family: var(--gp-meta); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gp-green); }
.gp-plan h3 { margin: 8px 0 6px; }
.gp-plan__price { font-family: var(--gp-display); font-size: 2.1rem; color: var(--gp-ink); line-height: 1.1; }
.gp-plan__unit { font-size: .88rem; color: var(--gp-muted); margin: 4px 0 18px; }
.gp-plan__list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 10px; font-size: .94rem; color: var(--gp-muted); }
.gp-plan__list li { padding-left: 20px; position: relative; }
.gp-plan__list li::before { content: ""; position: absolute; left: 0; top: .65em; width: 8px; height: 1.5px; background: var(--gp-pulse); }
.gp-plan .gp-btn { margin-top: auto; }
.gp-plans__note { margin-top: 24px; font-size: .88rem; color: var(--gp-muted); text-align: center; }

/* omdömen */
.gp-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gp-gap); }
.gp-quote {
  background: var(--gp-white); border: var(--gp-line); border-radius: var(--gp-radius-l);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 18px; box-shadow: var(--gp-shadow-s);
}
.gp-quote__text { font-size: 1rem; color: var(--gp-text); margin: 0; }
.gp-quote__by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.gp-quote__initial {
  width: 40px; height: 40px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: var(--gp-mint-soft); border: 1px solid var(--gp-mint);
  font-family: var(--gp-display); color: var(--gp-forest); font-size: 1.05rem;
}
.gp-quote__meta { font-size: .85rem; color: var(--gp-muted); line-height: 1.4; }
.gp-quote__meta b { display: block; color: var(--gp-text); font-weight: 600; }

/* faq */
.gp-faq { max-width: 860px; margin-inline: auto; border-top: var(--gp-line); }
.gp-faq__item { border-bottom: var(--gp-line); }
.gp-faq__q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  padding: 24px 46px 24px 0; position: relative;
  font: 600 1.04rem/1.5 var(--gp-body); color: var(--gp-ink);
}
.gp-faq__q::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 12px; height: 12px;
  border-right: 1.8px solid var(--gp-green); border-bottom: 1.8px solid var(--gp-green);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s ease;
}
.gp-faq__q[aria-expanded="true"]::after { transform: translateY(-25%) rotate(-135deg); }
.gp-faq__a { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.gp-faq__a p { color: var(--gp-muted); margin: 0 0 24px; padding-right: 40px; }

/* ------------------------------------------------ formulär */
.gp-form-wrap {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(28px, 4vw, 56px);
  background: var(--gp-white); border: var(--gp-line); border-radius: var(--gp-radius-l);
  padding: clamp(28px, 4vw, 52px); box-shadow: var(--gp-shadow-m);
}
.gp-form { display: grid; gap: 18px; }
.gp-field { display: grid; gap: 7px; }
.gp-field label { font-size: .88rem; font-weight: 600; color: var(--gp-ink); }
.gp-field label span { font-weight: 400; color: var(--gp-muted); }
.gp-field input, .gp-field select, .gp-field textarea {
  font: 400 1rem/1.5 var(--gp-body); color: var(--gp-text);
  background: var(--gp-mint-mist); border: 1px solid var(--gp-silver); border-radius: var(--gp-radius-s);
  padding: 13px 15px; width: 100%; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.gp-field textarea { min-height: 104px; resize: vertical; }
.gp-field input:focus, .gp-field select:focus, .gp-field textarea:focus {
  outline: none; background: #fff; border-color: var(--gp-pulse);
  box-shadow: 0 0 0 3px rgba(33, 184, 116, .16);
}
.gp-field--pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.gp-field__error { font-size: .82rem; color: #a2402f; min-height: 0; }
.gp-field.is-invalid input, .gp-field.is-invalid select { border-color: #c0563f; background: #fdf4f2; }

.gp-consent { display: flex; gap: 12px; align-items: flex-start; font-size: .87rem; color: var(--gp-muted); }
.gp-consent input { width: 19px; height: 19px; margin-top: 3px; flex: none; accent-color: var(--gp-pulse-dark); }
.gp-form__micro { font-size: .82rem; color: var(--gp-muted); margin: 0; }

.gp-form-aside { display: flex; flex-direction: column; gap: 22px; }
.gp-form-aside__media { border-radius: var(--gp-radius-m); overflow: hidden; }
.gp-form-aside__media img { width: 100%; aspect-ratio: 16 / 9; max-height: 260px; object-fit: cover; }
.gp-form-aside ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; font-size: .95rem; color: var(--gp-muted); }
.gp-form-aside li { padding-left: 26px; position: relative; }
.gp-form-aside li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 12px; height: 12px; border-radius: 50%;
  border: 1.5px solid var(--gp-pulse); background: var(--gp-mint-soft);
}

/* kontakt */
.gp-contact { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.gp-contact__list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 20px; }
.gp-contact__list li { display: grid; gap: 3px; }
.gp-contact__label { font-family: var(--gp-meta); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gp-green); }
.gp-contact__value { font-size: 1.02rem; color: var(--gp-text); }
.gp-contact__media { border-radius: var(--gp-radius-l); overflow: hidden; box-shadow: var(--gp-shadow-m); }
.gp-contact__media img {
  width: 100%; aspect-ratio: 3 / 2; max-height: 400px; object-fit: cover;
}

/* ------------------------------------------------ sidfot */
.gp-footer { background: var(--gp-ink); color: #b9d3c6; padding: clamp(56px, 7vw, 88px) 0 30px; margin-top: 0; }
.gp-footer h4 { color: #fff; font-family: var(--gp-body); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; }
.gp-footer a { color: #b9d3c6; }
.gp-footer a:hover { color: var(--gp-mint); }
.gp-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 40px; }
.gp-footer__brand { display: inline-flex; align-items: baseline; font-family: var(--gp-display); font-size: 1.5rem; color: #fff; margin-bottom: 14px; }
.gp-footer__brand span { color: var(--gp-pulse); }
.gp-footer p { font-size: .92rem; }
.gp-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; font-size: .93rem; }
.gp-footer__bottom {
  margin-top: 50px; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; gap: 14px 30px; justify-content: space-between; font-size: .84rem;
}
.gp-footer__disclosure { font-size: .82rem; color: #91b3a4; max-width: 78ch; margin-top: 18px; }
.gp-linkbtn {
  background: none; border: 0; padding: 0; cursor: pointer; color: #b9d3c6;
  font: inherit; text-align: left; text-decoration: underline; text-underline-offset: 3px;
}
.gp-linkbtn:hover { color: var(--gp-mint); }

/* ------------------------------------------------ cookies */
.gp-cookie {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 80;
  background: var(--gp-white); border: var(--gp-line); border-radius: var(--gp-radius-l);
  box-shadow: var(--gp-shadow-l); padding: 26px 28px;
  display: none; gap: 30px; align-items: center; justify-content: space-between; flex-wrap: wrap;
  max-width: 1120px; margin-inline: auto;
}
.gp-cookie.is-open { display: flex; }
.gp-cookie__text { flex: 1 1 420px; }
.gp-cookie__text h3 { font-size: 1.16rem; margin-bottom: .3em; }
.gp-cookie__text p { margin: 0; font-size: .91rem; color: var(--gp-muted); }
.gp-cookie__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.gp-cookie__actions .gp-btn { flex: 1 1 auto; min-width: 168px; }

.gp-modal {
  position: fixed; inset: 0; z-index: 90; display: none;
  background: rgba(12, 42, 32, .5); padding: 20px;
  align-items: center; justify-content: center;
}
.gp-modal.is-open { display: flex; }
.gp-modal__panel {
  background: var(--gp-white); border-radius: var(--gp-radius-l); width: min(100%, 640px);
  max-height: 88vh; overflow-y: auto; padding: clamp(24px, 4vw, 38px); box-shadow: var(--gp-shadow-l);
}
.gp-modal__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 8px; }
.gp-modal__close {
  border: var(--gp-line); background: var(--gp-white); width: 38px; height: 38px; border-radius: 50%;
  cursor: pointer; font-size: 1.1rem; color: var(--gp-muted); line-height: 1;
}
.gp-modal__close:hover { background: var(--gp-mint-soft); color: var(--gp-ink); }
.gp-toggle {
  display: flex; gap: 16px; align-items: flex-start; justify-content: space-between;
  padding: 18px 0; border-bottom: var(--gp-line);
}
.gp-toggle:last-of-type { border-bottom: 0; }
.gp-toggle h4 { margin: 0 0 4px; font-size: 1rem; font-family: var(--gp-body); font-weight: 600; color: var(--gp-ink); }
.gp-toggle p { margin: 0; font-size: .89rem; color: var(--gp-muted); }
.gp-switch { position: relative; flex: none; width: 50px; height: 28px; }
.gp-switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.gp-switch__track {
  position: absolute; inset: 0; background: var(--gp-silver); border-radius: 999px; transition: background .22s ease; pointer-events: none;
}
.gp-switch__track::after {
  content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; box-shadow: var(--gp-shadow-s); transition: transform .22s ease;
}
.gp-switch input:checked + .gp-switch__track { background: var(--gp-pulse); }
.gp-switch input:checked + .gp-switch__track::after { transform: translateX(22px); }
.gp-switch input:disabled + .gp-switch__track { background: var(--gp-forest); opacity: .45; }
.gp-switch input:focus-visible + .gp-switch__track { outline: 3px solid var(--gp-pulse); outline-offset: 3px; }
.gp-modal__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.gp-modal__actions .gp-btn { flex: 1 1 180px; }

/* ------------------------------------------------ juridiska sidor */
.gp-page-hero { background: var(--gp-mint-soft); padding: clamp(48px, 6vw, 84px) 0; border-bottom: var(--gp-line); }
.gp-page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.gp-page-hero p { max-width: 62ch; color: var(--gp-muted); margin: 0; }
.gp-legal { padding: var(--gp-block) 0; }
.gp-legal__body { max-width: 800px; }
.gp-legal__body h2 { font-size: clamp(1.35rem, 2.2vw, 1.72rem); margin-top: 2.2em; }
.gp-legal__body h2:first-child { margin-top: 0; }
.gp-legal__body h3 { font-size: 1.1rem; margin-top: 1.8em; }
.gp-legal__body ul { padding-left: 20px; margin-bottom: 1.4em; }
.gp-legal__body li { margin-bottom: 8px; }
.gp-legal__meta {
  font-family: var(--gp-meta); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gp-muted); margin-bottom: 34px;
}
.gp-callout {
  background: var(--gp-mint-mist); border: 1px solid var(--gp-mint); border-left: 4px solid var(--gp-pulse);
  border-radius: var(--gp-radius-m); padding: 22px 26px; margin: 30px 0;
}
.gp-callout p:last-child { margin-bottom: 0; }
.gp-toc {
  background: var(--gp-white); border: var(--gp-line); border-radius: var(--gp-radius-m);
  padding: 24px 26px; margin-bottom: 40px;
}
.gp-toc h2 { font-size: .82rem !important; font-family: var(--gp-body); letter-spacing: .16em; text-transform: uppercase; margin: 0 0 14px !important; color: var(--gp-muted); }
.gp-toc ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; font-size: .95rem; }

/* framgångssida */
.gp-success { padding: clamp(70px, 9vw, 130px) 0; text-align: center; }
.gp-success__card {
  max-width: 720px; margin-inline: auto; background: var(--gp-white); border: var(--gp-line);
  border-radius: var(--gp-radius-l); padding: clamp(32px, 5vw, 62px); box-shadow: var(--gp-shadow-m);
}
.gp-success__ring {
  width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 26px;
  background: var(--gp-mint-soft); border: 1.5px solid var(--gp-mint); display: grid; place-items: center;
}
.gp-success__next { text-align: left; margin-top: 34px; display: grid; gap: 16px; }
.gp-success__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }

/* utbildningssida */
.gp-article { padding: var(--gp-block) 0; }
.gp-article__layout { display: grid; grid-template-columns: 1fr 320px; gap: clamp(32px, 5vw, 68px); align-items: start; }
.gp-article__body h2 { margin-top: 1.9em; }
.gp-article__body h2:first-child { margin-top: 0; }
.gp-article__figure { margin: 34px 0; border-radius: var(--gp-radius-l); overflow: hidden; box-shadow: var(--gp-shadow-s); }
.gp-article__figure img { width: 100%; aspect-ratio: 16 / 9; max-height: 400px; object-fit: cover; }
.gp-article__figure figcaption { font-size: .85rem; color: var(--gp-muted); padding: 12px 4px 0; }
.gp-aside {
  position: sticky; top: 104px; background: var(--gp-white); border: var(--gp-line);
  border-radius: var(--gp-radius-l); padding: 28px; box-shadow: var(--gp-shadow-s);
}
.gp-aside h3 { font-size: 1.12rem; }
.gp-aside p { font-size: .93rem; color: var(--gp-muted); }
.gp-aside img {
  border-radius: var(--gp-radius-m); width: 100%; aspect-ratio: 3 / 2;
  max-height: 220px; object-fit: cover; margin-bottom: 20px;
}

.gp-tipgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gp-gap); margin: 34px 0; }
.gp-tip { background: var(--gp-mint-mist); border: 1px solid var(--gp-mint); border-radius: var(--gp-radius-m); padding: 24px 26px; }
.gp-tip h3 { font-size: 1.05rem; margin-bottom: .4em; }
.gp-tip p { font-size: .93rem; color: var(--gp-muted); margin: 0; }

/* ------------------------------------------------ responsivt */
@media (max-width: 1040px) {
  .gp-hero__grid, .gp-split, .gp-contact, .gp-form-wrap, .gp-article__layout { grid-template-columns: 1fr; }
  .gp-split--narrow { grid-template-columns: 1fr; }
  .gp-split__media img,
  .gp-split__media--wide img { aspect-ratio: 16 / 9; max-height: 380px; }
  .gp-split__media--product img { aspect-ratio: 4 / 3; max-height: 360px; }
  .gp-hero__figure img { aspect-ratio: 16 / 9; max-height: 400px; }
  .gp-grid--4, .gp-steps, .gp-facts { grid-template-columns: repeat(2, 1fr); }
  .gp-grid--3, .gp-quotes, .gp-plans, .gp-ing { grid-template-columns: 1fr; }
  .gp-ing { border-radius: var(--gp-radius-m); }
  .gp-footer__grid { grid-template-columns: 1fr 1fr; }
  .gp-aside { position: static; }
  .gp-article__layout > .gp-aside { max-width: 520px; }
}

@media (max-width: 860px) {
  .gp-burger { display: block; }
  .gp-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--gp-white); border-bottom: var(--gp-line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 20px 20px; display: none; box-shadow: var(--gp-shadow-m);
  }
  .gp-nav.is-open { display: flex; }
  .gp-nav__link { padding: 14px 0; border-bottom: 1px solid var(--gp-silver-soft); }
  .gp-nav .gp-btn { margin-top: 16px; }
  .gp-hero__badge { position: static; margin: 0; border-radius: 0; box-shadow: none; }
  .gp-hero__figure { box-shadow: var(--gp-shadow-m); }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .gp-shell { width: min(100% - 32px, var(--gp-shell)); }
  .gp-grid--2, .gp-grid--4, .gp-steps, .gp-facts, .gp-tipgrid, .gp-field--pair { grid-template-columns: 1fr; }
  .gp-facts__item { padding: 22px 20px; }
  .gp-cookie { left: 12px; right: 12px; bottom: 12px; padding: 22px 20px; }
  .gp-cookie__actions .gp-btn { min-width: 100%; }
  .gp-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .gp-topbar__row { font-size: .68rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .gp-pulse-line path { stroke-dashoffset: 0; }
}

@media print {
  .gp-header, .gp-topbar, .gp-cookie, .gp-modal, .gp-footer { display: none !important; }
}

/* ------------------------------------------------ bred bildbanderoll */
.gp-banner {
  margin: 54px 0 0; border-radius: var(--gp-radius-l); overflow: hidden;
  box-shadow: var(--gp-shadow-m); background: var(--gp-mint-soft); position: relative;
}
.gp-banner img { width: 100%; aspect-ratio: 12 / 5; max-height: 380px; object-fit: cover; }
.gp-banner figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 26px; font-size: .92rem; color: var(--gp-ink);
  background: linear-gradient(to top, rgba(255,255,255,.94), rgba(255,255,255,0));
}
@media (max-width: 620px) {
  .gp-banner img { aspect-ratio: 16 / 10; max-height: 300px; }
  .gp-split__media img,
  .gp-split__media--wide img,
  .gp-hero__figure img { aspect-ratio: 4 / 3; max-height: 300px; }
  .gp-split__media--product img { max-height: 280px; }
  .gp-plan__media img { height: 200px; }
  .gp-contact__media img { aspect-ratio: 4 / 3; max-height: 300px; }
  .gp-article__figure img { aspect-ratio: 4 / 3; max-height: 280px; }
  .gp-banner figcaption { position: static; background: var(--gp-white); border-top: var(--gp-line); }
}
