/* ==========================================================================
   GLPulse — vitamima.shop
   Egen stilmall. Inga externa bibliotek, inga externa typsnitt.
   Palett: ljust · mättat · silver · blått · mörkblått
   ========================================================================== */

:root{
  /* Färger */
  --gp-ink:        #071731;
  --gp-navy:       #0F2C56;
  --gp-navy-soft:  #17406F;
  --gp-blue:       #1257E0;
  --gp-blue-dark:  #0C3FAB;
  --gp-blue-bright:#2E8BF0;
  --gp-cyan:       #35C6F4;
  --gp-silver:     #C7D2E0;
  --gp-silver-dim: #E1E8F1;
  --gp-mist:       #E9F0F8;
  --gp-paper:      #F5F8FC;
  --gp-white:      #FFFFFF;
  --gp-text:       #16243B;
  --gp-muted:      #5A6B84;
  --gp-line:       rgba(15,44,86,.12);

  /* Typografi */
  --gp-sans: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --gp-serif: Georgia, "Times New Roman", "Noto Serif", serif;

  /* Rytm */
  --gp-gap:      clamp(18px, 2.2vw, 30px);
  --gp-block:    clamp(56px, 7vw, 112px);
  --gp-radius:   18px;
  --gp-radius-s: 12px;

  /* Skuggor */
  --gp-shadow-s: 0 2px 10px rgba(9,29,60,.06);
  --gp-shadow-m: 0 14px 38px rgba(9,29,60,.10);
  --gp-shadow-l: 0 28px 70px rgba(7,23,49,.18);
}

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

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

body{
  margin:0;
  font-family:var(--gp-sans);
  font-size:17px;
  line-height:1.65;
  color:var(--gp-text);
  background:var(--gp-white);
  overflow-x:hidden;
}

img{ display:block; max-width:100%; height:auto; }

a{ color:var(--gp-blue-dark); text-decoration:none; }
a:hover{ color:var(--gp-blue); }

h1,h2,h3,h4{
  margin:0 0 .5em;
  color:var(--gp-ink);
  line-height:1.14;
  letter-spacing:-.02em;
  font-weight:700;
}
h1{ font-size:clamp(2.15rem, 4.6vw, 3.7rem); letter-spacing:-.032em; }
h2{ font-size:clamp(1.7rem, 3.1vw, 2.6rem); letter-spacing:-.028em; }
h3{ font-size:clamp(1.14rem, 1.6vw, 1.35rem); }
h4{ font-size:1.02rem; }
p{ margin:0 0 1.1em; }
p:last-child{ margin-bottom:0; }

:focus-visible{
  outline:3px solid var(--gp-blue-bright);
  outline-offset:3px;
  border-radius:4px;
}

/* --------------------------------------------------------------------------
   Grundläggande layout
   -------------------------------------------------------------------------- */

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

.gp-block{ padding-block:var(--gp-block); }
.gp-block--paper{ background:var(--gp-paper); }
.gp-block--mist{ background:linear-gradient(180deg, var(--gp-mist), #F7FAFD); }
.gp-block--deep{
  background:radial-gradient(120% 130% at 78% 12%, var(--gp-navy-soft) 0%, var(--gp-navy) 42%, var(--gp-ink) 100%);
  color:#DCE7F5;
}
.gp-block--deep h2,.gp-block--deep h3{ color:#fff; }

.gp-lede{ font-size:clamp(1.02rem, 1.35vw, 1.16rem); color:var(--gp-muted); max-width:62ch; }
.gp-block--deep .gp-lede{ color:#B7C9E0; }

/* Etikett + pulslinje: sidans återkommande signaturelement */
.gp-eyebrow{
  display:inline-flex; align-items:center; gap:12px;
  font-size:.74rem; font-weight:700; letter-spacing:.22em; text-transform:uppercase;
  color:var(--gp-blue); margin-bottom:16px;
}
.gp-eyebrow::before{
  content:""; width:34px; height:10px; flex:none;
  background:no-repeat center/contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34 10'%3E%3Cpath d='M0 7h9l3-5 3 8 3-6 4 3h12' fill='none' stroke='%2335C6F4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.gp-block--deep .gp-eyebrow{ color:var(--gp-cyan); }

.gp-head{ max-width:70ch; margin-bottom:clamp(30px,4vw,52px); }
.gp-head--center{ margin-inline:auto; text-align:center; }
.gp-head--center .gp-lede{ margin-inline:auto; }

/* --------------------------------------------------------------------------
   Knappar
   -------------------------------------------------------------------------- */

.gp-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 30px; border:0; border-radius:999px; cursor:pointer;
  font:inherit; font-size:.98rem; font-weight:650; letter-spacing:.005em;
  text-align:center; transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.gp-btn--primary{
  background:linear-gradient(135deg, var(--gp-blue) 0%, var(--gp-blue-dark) 100%);
  color:#fff; box-shadow:0 10px 26px rgba(18,87,224,.28);
}
.gp-btn--primary:hover{ color:#fff; transform:translateY(-2px); box-shadow:0 16px 34px rgba(18,87,224,.34); }
.gp-btn--primary:active{ transform:translateY(0); }
.gp-btn--ghost{
  background:transparent; color:var(--gp-navy);
  box-shadow:inset 0 0 0 1.5px var(--gp-silver);
}
.gp-btn--ghost:hover{ background:var(--gp-white); box-shadow:inset 0 0 0 1.5px var(--gp-blue); color:var(--gp-blue-dark); }
.gp-btn--light{ background:#fff; color:var(--gp-navy); }
.gp-btn--light:hover{ color:var(--gp-blue-dark); transform:translateY(-2px); }
.gp-btn--outline-light{ background:transparent; color:#EAF2FF; box-shadow:inset 0 0 0 1.5px rgba(199,210,224,.45); }
.gp-btn--outline-light:hover{ background:rgba(255,255,255,.08); color:#fff; }
.gp-btn--wide{ width:100%; }
.gp-btn--sm{ padding:11px 20px; font-size:.9rem; }

/* --------------------------------------------------------------------------
   Sidhuvud
   -------------------------------------------------------------------------- */

.gp-top{
  position:sticky; top:0; z-index:60;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(160%) blur(12px);
  border-bottom:1px solid var(--gp-line);
}
.gp-top__row{ display:flex; align-items:center; gap:22px; min-height:74px; }

.gp-logo{ display:inline-flex; align-items:center; gap:11px; flex:none; }
.gp-logo img{ width:38px; height:38px; border-radius:11px; }
.gp-logo__name{ font-size:1.16rem; font-weight:700; letter-spacing:-.03em; color:var(--gp-ink); line-height:1.1; }
.gp-logo__tag{ display:block; font-size:.63rem; letter-spacing:.2em; text-transform:uppercase; color:var(--gp-muted); font-weight:600; }

.gp-nav{ margin-left:auto; }
.gp-nav__list{ display:flex; align-items:center; gap:22px; list-style:none; margin:0; padding:0; }
.gp-nav__list > li:last-child{ display:none; }
.gp-nav__list a{ white-space:nowrap; }
.gp-nav__list a{ color:var(--gp-navy); font-size:.94rem; font-weight:550; }
.gp-nav__list a:hover{ color:var(--gp-blue); }
.gp-top__cta{ flex:none; }

.gp-burger{
  display:none; margin-left:auto; width:46px; height:42px; padding:0;
  background:var(--gp-paper); border:1px solid var(--gp-line); border-radius:12px; cursor:pointer;
}
.gp-burger span{ display:block; width:20px; height:2px; margin:4px auto; background:var(--gp-navy); border-radius:2px; transition:transform .2s ease, opacity .2s ease; }
.gp-burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.gp-burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.gp-burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.gp-hero{ position:relative; overflow:hidden; background:var(--gp-ink); color:#E4EDF9; }
.gp-hero__bg{ position:absolute; inset:0; }
.gp-hero__bg img{ width:100%; height:100%; object-fit:cover; object-position:center; }
.gp-hero__bg::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(105deg, rgba(7,23,49,.94) 0%, rgba(9,30,62,.82) 46%, rgba(9,30,62,.35) 100%);
}
.gp-hero__inner{
  position:relative; display:grid; grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
  align-items:center; gap:clamp(28px,4vw,64px);
  padding-block:clamp(66px,8vw,112px);
}
.gp-hero h1{ color:#fff; }
.gp-hero__text p{ color:#B9CCE4; font-size:clamp(1.02rem,1.35vw,1.16rem); max-width:52ch; }
.gp-hero .gp-eyebrow{ color:var(--gp-cyan); }
.gp-hero__actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:30px; }
.gp-hero__meta{
  display:flex; flex-wrap:wrap; gap:10px 26px; margin-top:34px;
  padding-top:24px; border-top:1px solid rgba(199,210,224,.18);
  font-size:.88rem; color:#9FB5D2;
}
.gp-hero__meta span{ display:inline-flex; align-items:center; gap:8px; }
.gp-hero__meta span::before{
  content:""; width:6px; height:6px; border-radius:50%; background:var(--gp-cyan); flex:none;
}

.gp-hero__inner--solo{ grid-template-columns:minmax(0,1fr); }
.gp-hero__inner--solo .gp-hero__text{ max-width:62ch; }
.gp-hero__inner--solo .gp-hero__meta{ max-width:none; }

.gp-hero__stage{
  position:relative; border-radius:26px; overflow:hidden;
  background:linear-gradient(160deg, rgba(233,240,248,.16), rgba(53,198,244,.08));
  box-shadow:var(--gp-shadow-l); border:1px solid rgba(199,210,224,.2);
}
.gp-hero__stage img{ width:100%; aspect-ratio:1/1; object-fit:contain; background:linear-gradient(160deg,#F4F8FC,#DCE7F3); }
.gp-hero__badge{
  position:absolute; left:18px; bottom:18px; right:18px;
  display:flex; justify-content:space-between; align-items:center; gap:14px;
  padding:13px 18px; border-radius:14px;
  background:rgba(7,23,49,.86); backdrop-filter:blur(6px);
  font-size:.84rem; color:#CBDCF0;
}
.gp-hero__badge b{ color:#fff; font-size:.96rem; }

/* Animerad pulslinje (signatur) */
.gp-pulse{ display:block; width:100%; height:46px; margin-top:26px; }
.gp-pulse path{
  fill:none; stroke:var(--gp-cyan); stroke-width:2.2; stroke-linecap:round;
  stroke-dasharray:1200; stroke-dashoffset:1200;
  animation:gp-draw 2.6s cubic-bezier(.6,.05,.25,1) .35s forwards;
}
@keyframes gp-draw{ to{ stroke-dashoffset:0; } }

/* --------------------------------------------------------------------------
   Förtroenderad
   -------------------------------------------------------------------------- */

.gp-strip{ border-bottom:1px solid var(--gp-line); background:var(--gp-white); }
.gp-strip__grid{
  display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:0;
}
.gp-strip__item{ padding:26px 26px; border-left:1px solid var(--gp-line); }
.gp-strip__item:first-child{ border-left:0; padding-left:0; }
.gp-strip__item b{ display:block; font-size:.98rem; color:var(--gp-ink); margin-bottom:4px; }
.gp-strip__item span{ font-size:.87rem; color:var(--gp-muted); line-height:1.5; display:block; }

/* --------------------------------------------------------------------------
   Delade två-kolumns-sektioner
   -------------------------------------------------------------------------- */

.gp-split{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:clamp(28px,4vw,68px); align-items:center; }
.gp-split--flip .gp-split__media{ order:2; }

.gp-split__media{ position:relative; border-radius:var(--gp-radius); overflow:hidden; box-shadow:var(--gp-shadow-m); }
.gp-split__media img{ width:100%; height:100%; aspect-ratio:4/3; object-fit:cover; }
.gp-split__media--product img{ aspect-ratio:1/1; object-fit:contain; background:var(--gp-paper); }

.gp-facts{ list-style:none; margin:26px 0 0; padding:0; display:grid; gap:14px; }
.gp-facts li{ position:relative; padding-left:32px; font-size:.98rem; color:var(--gp-text); }
.gp-facts li::before{
  content:""; position:absolute; left:0; top:5px; width:19px; height:19px; border-radius:50%;
  background:var(--gp-mist) no-repeat center/11px 9px
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 9'%3E%3Cpath d='M1 4.6 4 7.6 10 1.2' fill='none' stroke='%231257E0' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.gp-block--deep .gp-facts li{ color:#CFDDEE; }
.gp-block--deep .gp-facts li::before{ background-color:rgba(53,198,244,.16); }

.gp-note{
  margin-top:26px; padding:16px 20px; border-left:3px solid var(--gp-cyan);
  background:var(--gp-paper); border-radius:0 var(--gp-radius-s) var(--gp-radius-s) 0;
  font-size:.9rem; color:var(--gp-muted);
}
.gp-block--deep .gp-note{ background:rgba(255,255,255,.06); color:#B7C9E0; }

/* --------------------------------------------------------------------------
   Kortrutnät (lika höga kort)
   -------------------------------------------------------------------------- */

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

.gp-card{
  display:flex; flex-direction:column; height:100%;
  background:var(--gp-white); border:1px solid var(--gp-line); border-radius:var(--gp-radius);
  padding:30px 28px; box-shadow:var(--gp-shadow-s);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.gp-card:hover{ transform:translateY(-3px); box-shadow:var(--gp-shadow-m); border-color:rgba(18,87,224,.28); }
.gp-card h3{ margin-bottom:10px; }
.gp-card p{ color:var(--gp-muted); font-size:.95rem; }
.gp-card__icon{
  width:48px; height:48px; border-radius:14px; margin-bottom:18px; flex:none;
  display:grid; place-items:center;
  background:linear-gradient(140deg, var(--gp-mist), #D6E5F7);
  color:var(--gp-blue-dark);
}
.gp-card__icon svg{ width:23px; height:23px; }
.gp-card__meta{ margin-top:auto; padding-top:18px; font-size:.82rem; color:var(--gp-muted); border-top:1px solid var(--gp-line); }

/* Bildkort med fast bildförhållande — inga sträckta bilder */
.gp-tile{
  display:flex; flex-direction:column; height:100%; overflow:hidden;
  background:var(--gp-white); border:1px solid var(--gp-line);
  border-radius:var(--gp-radius); box-shadow:var(--gp-shadow-s);
  transition:transform .2s ease, box-shadow .2s ease;
}
.gp-tile:hover{ transform:translateY(-3px); box-shadow:var(--gp-shadow-m); }
.gp-tile__media{ aspect-ratio:16/10; overflow:hidden; background:var(--gp-mist); }
.gp-tile__media img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.gp-tile:hover .gp-tile__media img{ transform:scale(1.035); }
.gp-tile__body{ display:flex; flex-direction:column; flex:1; padding:26px 26px 28px; }
.gp-tile__body p{ color:var(--gp-muted); font-size:.95rem; }
.gp-tile__tag{
  display:inline-block; margin-bottom:12px; font-size:.7rem; font-weight:700;
  letter-spacing:.18em; text-transform:uppercase; color:var(--gp-blue);
}

/* Stegsekvens */
.gp-steps{ counter-reset:gpstep; display:grid; gap:var(--gp-gap); grid-template-columns:repeat(4,minmax(0,1fr)); }
.gp-step{
  position:relative; padding:30px 26px 28px;
  background:var(--gp-white); border:1px solid var(--gp-line); border-radius:var(--gp-radius);
  display:flex; flex-direction:column; height:100%;
}
.gp-step::before{
  counter-increment:gpstep; content:counter(gpstep,decimal-leading-zero);
  font-size:.82rem; font-weight:700; letter-spacing:.14em; color:var(--gp-blue);
  display:block; margin-bottom:14px;
}
.gp-step h3{ font-size:1.08rem; }
.gp-step p{ color:var(--gp-muted); font-size:.93rem; margin:0; }

/* --------------------------------------------------------------------------
   Paketkort
   -------------------------------------------------------------------------- */

.gp-plans{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:var(--gp-gap); align-items:stretch; }
.gp-plan{
  display:flex; flex-direction:column; height:100%; overflow:hidden;
  background:var(--gp-white); border:1px solid var(--gp-line); border-radius:22px;
  box-shadow:var(--gp-shadow-s); transition:box-shadow .2s ease, transform .2s ease;
}
.gp-plan:hover{ box-shadow:var(--gp-shadow-m); transform:translateY(-3px); }
.gp-plan--featured{ border-color:rgba(18,87,224,.4); box-shadow:0 20px 48px rgba(18,87,224,.16); }
.gp-plan__media{ aspect-ratio:4/3; padding:16px; background:linear-gradient(170deg,#F4F8FC,#E0EAF5); }
.gp-plan__media img{ width:100%; height:100%; object-fit:contain; }
.gp-plan__body{ display:flex; flex-direction:column; flex:1; padding:26px 26px 28px; }
.gp-plan__flag{
  align-self:flex-start; margin-bottom:12px; padding:5px 12px; border-radius:999px;
  font-size:.7rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  background:var(--gp-mist); color:var(--gp-blue-dark);
}
.gp-plan--featured .gp-plan__flag{ background:linear-gradient(135deg,var(--gp-blue),var(--gp-blue-dark)); color:#fff; }
.gp-plan h3{ margin-bottom:6px; }
.gp-plan__price{ display:flex; align-items:baseline; gap:9px; margin:10px 0 4px; }
.gp-plan__price b{ font-size:1.85rem; letter-spacing:-.03em; color:var(--gp-ink); }
.gp-plan__price span{ font-size:.86rem; color:var(--gp-muted); }
.gp-plan__unit{ font-size:.85rem; color:var(--gp-muted); margin-bottom:16px; }
.gp-plan__list{ list-style:none; margin:0 0 22px; padding:0; display:grid; gap:10px; font-size:.92rem; color:var(--gp-text); }
.gp-plan__list li{ position:relative; padding-left:26px; }
.gp-plan__list li::before{
  content:""; position:absolute; left:0; top:6px; width:14px; height:11px;
  background:no-repeat center/contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 9'%3E%3Cpath d='M1 4.6 4 7.6 10 1.2' fill='none' stroke='%231257E0' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.gp-plan__cta{ margin-top:auto; }
.gp-plans__note{ margin-top:26px; font-size:.86rem; color:var(--gp-muted); text-align:center; }

/* --------------------------------------------------------------------------
   Omdömen
   -------------------------------------------------------------------------- */

.gp-quotes{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:var(--gp-gap); }
.gp-quote{
  display:flex; flex-direction:column; height:100%;
  padding:32px 30px; border-radius:var(--gp-radius);
  background:rgba(255,255,255,.06); border:1px solid rgba(199,210,224,.16);
}
.gp-quote__mark{ font-family:var(--gp-serif); font-size:2.6rem; line-height:1; color:var(--gp-cyan); margin-bottom:8px; }
.gp-quote p{ font-family:var(--gp-serif); font-size:1.03rem; line-height:1.62; color:#DDE8F6; font-style:italic; }
.gp-quote__by{ margin-top:auto; padding-top:20px; font-size:.86rem; color:#9BB2D0; font-style:normal; }
.gp-quote__by b{ display:block; color:#fff; font-style:normal; font-size:.94rem; }

/* --------------------------------------------------------------------------
   Vanliga frågor
   -------------------------------------------------------------------------- */

.gp-faq{ display:grid; gap:12px; }
.gp-faq__item{ background:var(--gp-white); border:1px solid var(--gp-line); border-radius:var(--gp-radius-s); overflow:hidden; }
.gp-faq__q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:18px;
  padding:20px 24px; background:none; border:0; cursor:pointer;
  font:inherit; font-size:1rem; font-weight:600; color:var(--gp-ink); text-align:left;
}
.gp-faq__q:hover{ color:var(--gp-blue-dark); }
.gp-faq__q::after{
  content:""; width:13px; height:13px; flex:none; border-right:2px solid var(--gp-blue);
  border-bottom:2px solid var(--gp-blue); transform:rotate(45deg) translate(-3px,-3px);
  transition:transform .22s ease;
}
.gp-faq__q[aria-expanded="true"]::after{ transform:rotate(-135deg) translate(-3px,-3px); }
.gp-faq__a{ display:none; padding:0 24px 22px; color:var(--gp-muted); font-size:.96rem; }
.gp-faq__item.is-open .gp-faq__a{ display:block; }

/* --------------------------------------------------------------------------
   Formulär
   -------------------------------------------------------------------------- */

.gp-lead{ display:grid; grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); gap:clamp(28px,4vw,60px); align-items:start; }

.gp-form{
  background:var(--gp-white); border:1px solid var(--gp-line); border-radius:22px;
  padding:clamp(26px,3vw,38px); box-shadow:var(--gp-shadow-m);
}
.gp-form__grid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.gp-field{ display:flex; flex-direction:column; gap:7px; }
.gp-field--full{ grid-column:1 / -1; }
.gp-field label{ font-size:.87rem; font-weight:600; color:var(--gp-navy); }
.gp-field label span{ color:var(--gp-muted); font-weight:500; }
.gp-field input,.gp-field select,.gp-field textarea{
  font:inherit; font-size:.96rem; color:var(--gp-text);
  padding:13px 15px; border:1.5px solid var(--gp-silver-dim); border-radius:11px;
  background:var(--gp-paper); transition:border-color .18s ease, background .18s ease, box-shadow .18s ease;
  width:100%;
}
.gp-field textarea{ min-height:104px; resize:vertical; }
.gp-field input:focus,.gp-field select:focus,.gp-field textarea:focus{
  outline:none; border-color:var(--gp-blue); background:#fff; box-shadow:0 0 0 4px rgba(18,87,224,.10);
}
.gp-field.is-invalid input,.gp-field.is-invalid select,.gp-field.is-invalid textarea{
  border-color:#C0392B; background:#FEF6F5;
}
.gp-field__error{ display:none; font-size:.81rem; color:#C0392B; }
.gp-field.is-invalid .gp-field__error{ display:block; }

.gp-check{ display:flex; gap:12px; align-items:flex-start; font-size:.86rem; color:var(--gp-muted); line-height:1.55; }
.gp-check input{ width:19px; height:19px; margin-top:2px; flex:none; accent-color:var(--gp-blue); }
.gp-check.is-invalid{ color:#C0392B; }

.gp-form__foot{ margin-top:22px; display:grid; gap:14px; }
.gp-form__micro{ font-size:.81rem; color:var(--gp-muted); }

.gp-contact-card{
  background:var(--gp-white); border:1px solid var(--gp-line); border-radius:var(--gp-radius);
  padding:28px; display:grid; gap:18px;
}
.gp-contact-row{ display:flex; gap:14px; align-items:flex-start; }
.gp-contact-row svg{ width:20px; height:20px; flex:none; margin-top:3px; color:var(--gp-blue); }
.gp-contact-row b{ display:block; font-size:.87rem; color:var(--gp-ink); }
.gp-contact-row span,.gp-contact-row a{ font-size:.94rem; color:var(--gp-muted); }
.gp-contact-row a:hover{ color:var(--gp-blue); }

.gp-support-media{ border-radius:var(--gp-radius); overflow:hidden; box-shadow:var(--gp-shadow-s); margin-top:20px; }
.gp-support-media img{ width:100%; aspect-ratio:16/9; object-fit:cover; }

/* --------------------------------------------------------------------------
   Slutlig uppmaning
   -------------------------------------------------------------------------- */

.gp-cta-band{ display:grid; grid-template-columns:minmax(0,1.2fr) auto; gap:32px; align-items:center; }
.gp-cta-band .gp-btn{ white-space:nowrap; }

/* --------------------------------------------------------------------------
   Sidfot
   -------------------------------------------------------------------------- */

.gp-foot{ background:var(--gp-ink); color:#A9BDD8; padding-block:clamp(48px,6vw,76px) 30px; font-size:.92rem; }
.gp-foot a{ color:#C6D8EE; }
.gp-foot a:hover{ color:#fff; }
.gp-foot__grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:36px; }
.gp-foot h4{ color:#fff; font-size:.82rem; letter-spacing:.18em; text-transform:uppercase; margin-bottom:16px; }
.gp-foot__list{ list-style:none; margin:0; padding:0; display:grid; gap:10px; }
.gp-foot__brand{ display:flex; align-items:center; gap:11px; margin-bottom:16px; }
.gp-foot__brand img{ width:38px; height:38px; border-radius:11px; }
.gp-foot__brand b{ color:#fff; font-size:1.12rem; letter-spacing:-.02em; }
.gp-foot__bottom{
  margin-top:40px; padding-top:22px; border-top:1px solid rgba(199,210,224,.16);
  display:flex; flex-wrap:wrap; gap:14px 26px; align-items:center; justify-content:space-between;
  font-size:.84rem; color:#8AA2C1;
}
.gp-foot__disclosure{ margin-top:22px; font-size:.82rem; color:#8AA2C1; max-width:78ch; }
.gp-linkbtn{
  background:none; border:0; padding:0; font:inherit; font-size:.84rem;
  color:#C6D8EE; cursor:pointer; text-decoration:underline;
}
.gp-linkbtn:hover{ color:#fff; }

/* --------------------------------------------------------------------------
   Textsidor (juridik / guide)
   -------------------------------------------------------------------------- */

.gp-page-head{
  background:linear-gradient(160deg, var(--gp-navy) 0%, var(--gp-ink) 100%);
  color:#D8E5F5; padding-block:clamp(48px,6vw,84px);
}
.gp-page-head h1{ color:#fff; margin-bottom:12px; }
.gp-page-head p{ color:#AFC5E0; max-width:60ch; margin:0; }

.gp-doc{ padding-block:clamp(44px,5vw,76px); }
.gp-doc h2{ margin-top:44px; font-size:clamp(1.3rem,2vw,1.6rem); }
.gp-doc h2:first-of-type{ margin-top:0; }
.gp-doc h3{ margin-top:26px; font-size:1.06rem; }
.gp-doc p,.gp-doc li{ color:#33445E; font-size:1rem; line-height:1.75; }
.gp-doc ul,.gp-doc ol{ padding-left:22px; margin:0 0 1.1em; display:grid; gap:8px; }
.gp-doc__meta{ font-size:.86rem; color:var(--gp-muted); padding-bottom:22px; border-bottom:1px solid var(--gp-line); margin-bottom:34px; }
.gp-doc__box{
  background:var(--gp-paper); border:1px solid var(--gp-line); border-radius:var(--gp-radius);
  padding:24px 26px; margin:28px 0;
}
.gp-doc__box p:last-child{ margin-bottom:0; }
.gp-back{ display:inline-flex; align-items:center; gap:8px; margin-top:40px; font-size:.94rem; font-weight:600; }

/* Tack-sida */
.gp-thanks{ display:grid; place-items:center; text-align:center; padding-block:clamp(60px,9vw,130px); }
.gp-thanks__mark{
  width:78px; height:78px; border-radius:50%; margin-bottom:26px; display:grid; place-items:center;
  background:linear-gradient(140deg,var(--gp-blue),var(--gp-blue-dark)); box-shadow:0 16px 36px rgba(18,87,224,.28);
}
.gp-thanks__mark svg{ width:34px; height:34px; color:#fff; }
.gp-thanks__list{
  list-style:none; margin:34px 0 0; padding:0; display:grid; gap:14px;
  text-align:left; max-width:560px;
}
.gp-thanks__list li{ display:flex; gap:12px; font-size:.96rem; color:var(--gp-muted); }
.gp-thanks__list b{ color:var(--gp-blue); flex:none; }

/* Guide-sida */
.gp-article__media{ border-radius:var(--gp-radius); overflow:hidden; box-shadow:var(--gp-shadow-m); margin:34px 0; }
.gp-article__media img{ width:100%; aspect-ratio:16/9; object-fit:cover; }
.gp-article__media figcaption{ padding:14px 20px; font-size:.85rem; color:var(--gp-muted); background:var(--gp-paper); }

/* --------------------------------------------------------------------------
   Cookiebanner och inställningar
   -------------------------------------------------------------------------- */

.gp-cookiebar{
  position:fixed; inset:auto 0 0 0; z-index:90;
  display:none; padding:20px;
}
.gp-cookiebar.is-visible{ display:block; animation:gp-rise .35s ease both; }
@keyframes gp-rise{ from{ transform:translateY(24px); opacity:0; } to{ transform:none; opacity:1; } }
.gp-cookiebar__panel{
  width:min(1100px,100%); margin-inline:auto;
  background:var(--gp-white); border:1px solid var(--gp-line); border-radius:20px;
  box-shadow:var(--gp-shadow-l); padding:24px 26px;
  display:grid; grid-template-columns:minmax(0,1fr) auto; gap:22px; align-items:center;
}
.gp-cookiebar h3{ font-size:1.06rem; margin-bottom:6px; }
.gp-cookiebar p{ font-size:.89rem; color:var(--gp-muted); margin:0; max-width:70ch; }
.gp-cookiebar__actions{ display:flex; flex-wrap:wrap; gap:10px; }
.gp-cookiebar__actions .gp-btn{ padding:12px 20px; font-size:.9rem; }

.gp-modal{
  position:fixed; inset:0; z-index:100; display:none;
  align-items:center; justify-content:center; padding:20px;
  background:rgba(7,23,49,.55); backdrop-filter:blur(3px);
}
.gp-modal.is-open{ display:flex; }
.gp-modal__box{
  width:min(620px,100%); max-height:88vh; overflow:auto;
  background:var(--gp-white); border-radius:22px; box-shadow:var(--gp-shadow-l);
  padding:clamp(24px,3vw,34px);
}
.gp-modal__head{ display:flex; align-items:flex-start; justify-content:space-between; gap:18px; margin-bottom:8px; }
.gp-modal__close{
  width:36px; height:36px; flex:none; border:1px solid var(--gp-line); border-radius:10px;
  background:var(--gp-paper); cursor:pointer; font-size:1.1rem; line-height:1; color:var(--gp-muted);
}
.gp-modal__close:hover{ color:var(--gp-ink); }
.gp-consent-list{ display:grid; gap:12px; margin:22px 0; }
.gp-consent{
  border:1px solid var(--gp-line); border-radius:var(--gp-radius-s); padding:18px 20px;
  display:grid; grid-template-columns:1fr auto; gap:10px 18px; align-items:start;
}
.gp-consent p{ grid-column:1 / -1; margin:0; font-size:.87rem; color:var(--gp-muted); }
.gp-consent b{ font-size:.97rem; color:var(--gp-ink); }
.gp-consent__lock{ font-size:.78rem; color:var(--gp-muted); letter-spacing:.06em; text-transform:uppercase; }
.gp-switch{ position:relative; width:48px; height:27px; flex:none; }
.gp-switch input{ position:absolute; opacity:0; width:100%; height:100%; margin:0; cursor:pointer; }
.gp-switch span{
  position:absolute; inset:0; border-radius:999px; background:var(--gp-silver);
  transition:background .2s ease; pointer-events:none;
}
.gp-switch span::after{
  content:""; position:absolute; top:3px; left:3px; width:21px; height:21px; border-radius:50%;
  background:#fff; box-shadow:0 1px 4px rgba(9,29,60,.3); transition:transform .2s ease;
}
.gp-switch input:checked + span{ background:var(--gp-blue); }
.gp-switch input:checked + span::after{ transform:translateX(21px); }
.gp-switch input:disabled + span{ background:var(--gp-blue-bright); opacity:.5; }
.gp-switch input:focus-visible + span{ outline:3px solid var(--gp-blue-bright); outline-offset:3px; }
.gp-modal__actions{ display:flex; flex-wrap:wrap; gap:10px; }

/* --------------------------------------------------------------------------
   Responsivt
   -------------------------------------------------------------------------- */

@media (max-width:1080px){
  .gp-grid--4{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .gp-steps{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .gp-foot__grid{ grid-template-columns:repeat(2,minmax(0,1fr)); gap:32px; }
}

@media (max-width:960px){
  .gp-nav,.gp-top__cta{ display:none; }
  .gp-burger{ display:block; }
  .gp-nav.is-open{
    display:block; position:absolute; left:0; right:0; top:100%;
    background:var(--gp-white); border-bottom:1px solid var(--gp-line);
    box-shadow:var(--gp-shadow-m); padding:18px 20px 24px;
  }
  .gp-nav.is-open .gp-nav__list{ flex-direction:column; align-items:stretch; gap:2px; }
  .gp-nav.is-open .gp-nav__list > li:last-child{ display:block; }
  .gp-nav.is-open .gp-nav__list a{ display:block; padding:12px 4px; border-bottom:1px solid var(--gp-line); }
  .gp-nav.is-open .gp-nav__list li:last-child a{ border-bottom:0; }
  .gp-nav.is-open .gp-btn{ margin-top:14px; width:100%; }
  .gp-top__row{ position:relative; }

  .gp-hero__inner{ grid-template-columns:1fr; }
  .gp-hero__inner--solo{ grid-template-columns:minmax(0,1fr); }
.gp-hero__inner--solo .gp-hero__text{ max-width:62ch; }
.gp-hero__inner--solo .gp-hero__meta{ max-width:none; }

.gp-hero__stage{ order:-1; max-width:360px; margin-inline:auto; }
  .gp-split{ grid-template-columns:1fr; }
  .gp-split--flip .gp-split__media{ order:0; }
  .gp-grid--3,.gp-quotes,.gp-plans{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .gp-plan--featured{ grid-column:1 / -1; }
  .gp-lead{ grid-template-columns:1fr; }
  .gp-strip__grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .gp-strip__item{ padding:22px 20px; border-left:0; border-top:1px solid var(--gp-line); }
  .gp-strip__item:first-child,.gp-strip__item:nth-child(2){ border-top:0; }
  .gp-strip__item:nth-child(odd){ padding-left:0; }
  .gp-cta-band{ grid-template-columns:1fr; }
  .gp-cookiebar__panel{ grid-template-columns:1fr; }
}

@media (max-width:640px){
  body{ font-size:16px; }
  .gp-shell,.gp-shell--tight{ width:min(100% - 32px, 100%); }
  .gp-grid--2,.gp-grid--3,.gp-grid--4,.gp-quotes,.gp-plans,.gp-steps{ grid-template-columns:1fr; }
  .gp-strip__grid{ grid-template-columns:1fr; }
  .gp-strip__item{ padding:18px 0; }
  .gp-strip__item:nth-child(2){ border-top:1px solid var(--gp-line); }
  .gp-form__grid{ grid-template-columns:1fr; }
  .gp-foot__grid{ grid-template-columns:1fr; }
  .gp-hero__actions .gp-btn{ width:100%; }
  .gp-hero__inner--solo{ grid-template-columns:minmax(0,1fr); }
.gp-hero__inner--solo .gp-hero__text{ max-width:62ch; }
.gp-hero__inner--solo .gp-hero__meta{ max-width:none; }

.gp-hero__stage{ max-width:260px; }
  .gp-hero__badge{ position:static; border-radius:0; padding:11px 14px; font-size:.78rem; }
  .gp-cookiebar{ padding:12px; }
  .gp-cookiebar__panel{ padding:20px; }
  .gp-cookiebar__actions .gp-btn{ flex:1 1 100%; }
  .gp-plan--featured{ grid-column:auto; }
}

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