/* =========================================================================
   GLPulse — luxomana.shop
   Egen stilmall. Ljusa, mättade, silver-, grafit-, blå-, is- och marinblå toner.
   ========================================================================= */

:root {
    --tone-ink: #071324;
    --tone-navy: #0f2a52;
    --tone-navy-soft: #16386b;
    --tone-graphite: #2c3846;
    --tone-steel: #55677e;
    --tone-silver: #c7ced6;
    --tone-silver-soft: #e2e7ec;
    --tone-ice: #e6f1fb;
    --tone-ice-deep: #cfe3f6;
    --tone-paper: #f6f9fc;
    --tone-white: #ffffff;
    --tone-blue: #1463d6;
    --tone-blue-dark: #0f4ea8;
    --tone-azure: #38bdf8;

    --shade-1: 0 1px 2px rgba(7, 19, 36, .06);
    --shade-2: 0 10px 30px -12px rgba(7, 19, 36, .18);
    --shade-3: 0 28px 70px -30px rgba(7, 19, 36, .38);

    --edge: 1px solid rgba(15, 42, 82, .12);
    --edge-soft: 1px solid rgba(15, 42, 82, .08);

    --round-s: 10px;
    --round-m: 18px;
    --round-l: 26px;

    --gap-xs: 8px;
    --gap-s: 16px;
    --gap-m: 28px;
    --gap-l: 48px;
    --gap-xl: 76px;
    --gap-xxl: 112px;

    --shell: 1200px;
    --shell-narrow: 800px;

    --face-body: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
    --face-mono: ui-monospace, "SFMono-Regular", "Cascadia Mono", "Consolas", "Liberation Mono", monospace;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--face-body);
    font-size: 17px;
    line-height: 1.68;
    color: var(--tone-graphite);
    background: var(--tone-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4 {
    margin: 0 0 .6em;
    color: var(--tone-ink);
    font-weight: 700;
    letter-spacing: -.022em;
    line-height: 1.14;
}

h1 { font-size: clamp(2.3rem, 5.2vw, 3.75rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.4rem); letter-spacing: -.014em; }
h4 { font-size: 1.03rem; letter-spacing: -.008em; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

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

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

ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .45em; }

:focus-visible {
    outline: 3px solid var(--tone-azure);
    outline-offset: 3px;
    border-radius: 4px;
}

.shell {
    width: 100%;
    max-width: var(--shell);
    margin-inline: auto;
    padding-inline: 24px;
}

.shell--narrow { max-width: var(--shell-narrow); }

.skip-line {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--tone-navy);
    color: #fff;
    padding: 12px 18px;
    z-index: 999;
}
.skip-line:focus { left: 12px; top: 12px; }

/* ---------------------------------------------------------- typografi-kit */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--face-mono);
    font-size: .72rem;
    letter-spacing: .19em;
    text-transform: uppercase;
    color: var(--tone-blue-dark);
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: linear-gradient(90deg, var(--tone-azure), var(--tone-blue));
    border-radius: 2px;
}

.eyebrow--pale { color: var(--tone-azure); }
.eyebrow--pale::before { background: linear-gradient(90deg, var(--tone-azure), rgba(255, 255, 255, .35)); }

.lede {
    font-size: clamp(1.03rem, 1.5vw, 1.16rem);
    color: var(--tone-steel);
    max-width: 62ch;
}

.section-head { max-width: 720px; margin-bottom: var(--gap-l); }
.section-head--mid { margin-inline: auto; text-align: center; }
.section-head--mid .eyebrow { justify-content: center; }

.pulse-rule {
    width: 108px;
    height: 16px;
    margin: 0 0 26px;
    background: no-repeat center/contain url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 108 16'%3E%3Cpath d='M0 8h22l6-6.4L38 15l7-9.6 4 2.6h59' fill='none' stroke='%231463d6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.pulse-rule--mid { margin-inline: auto; }
.pulse-rule--pale { filter: brightness(0) saturate(100%) invert(74%) sepia(45%) saturate(1400%) hue-rotate(168deg) brightness(103%) contrast(96%); }

/* --------------------------------------------------------------- knappar */
.act {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .97rem;
    font-weight: 600;
    letter-spacing: .01em;
    cursor: pointer;
    text-decoration: none;
    transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease, color .18s ease, border-color .18s ease;
}

.act:hover { text-decoration: none; transform: translateY(-2px); }
.act:active { transform: translateY(0); }

.act--primary {
    background: linear-gradient(135deg, var(--tone-blue) 0%, var(--tone-blue-dark) 100%);
    color: #fff;
    box-shadow: 0 14px 26px -14px rgba(20, 99, 214, .85);
}
.act--primary:hover { color: #fff; box-shadow: 0 20px 34px -14px rgba(20, 99, 214, .9); }

.act--ghost {
    background: transparent;
    color: var(--tone-navy);
    border-color: rgba(15, 42, 82, .22);
}
.act--ghost:hover { background: var(--tone-ice); color: var(--tone-navy); }

.act--onDark {
    background: rgba(255, 255, 255, .09);
    color: #fff;
    border-color: rgba(255, 255, 255, .32);
}
.act--onDark:hover { background: rgba(255, 255, 255, .18); color: #fff; }

.act--wide { width: 100%; }
.act--small { padding: 11px 20px; font-size: .88rem; }

/* ---------------------------------------------------------------- topbar */
.masthead {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    border-bottom: var(--edge-soft);
}

.masthead__grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap-s);
    min-height: 76px;
}

.brandmark {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -.03em;
    color: var(--tone-ink);
}
.brandmark:hover { text-decoration: none; color: var(--tone-ink); }
.brandmark__sigil {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(140deg, var(--tone-navy), var(--tone-ink));
    display: grid;
    place-items: center;
}
.brandmark__sigil svg { width: 20px; height: 20px; }
.brandmark__tag {
    display: block;
    font-family: var(--face-mono);
    font-size: .58rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--tone-steel);
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    color: var(--tone-graphite);
    font-size: .95rem;
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--tone-navy); border-bottom-color: var(--tone-azure); text-decoration: none; }

.masthead__side { display: flex; align-items: center; gap: 14px; }

.phone-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--face-mono);
    font-size: .86rem;
    color: var(--tone-navy);
    font-weight: 600;
}
.phone-chip:hover { text-decoration: none; color: var(--tone-blue); }

.burger {
    display: none;
    width: 46px;
    height: 42px;
    border: var(--edge);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    padding: 11px 12px;
}
.burger span {
    display: block;
    height: 2px;
    background: var(--tone-navy);
    border-radius: 2px;
    transition: transform .22s ease, opacity .2s ease;
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------------------ hero */
.hero {
    position: relative;
    background: radial-gradient(120% 130% at 12% 0%, #143766 0%, var(--tone-ink) 62%);
    color: #eaf2fb;
    padding: clamp(64px, 8vw, 104px) 0 clamp(72px, 9vw, 116px);
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -60% 40%;
    height: 420px;
    background: radial-gradient(closest-side, rgba(56, 189, 248, .28), transparent);
    pointer-events: none;
}

.hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    gap: clamp(32px, 5vw, 68px);
    align-items: center;
}

.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--tone-azure); }
.hero__text p { color: rgba(226, 238, 250, .82); font-size: 1.1rem; max-width: 52ch; }

.hero__acts { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 30px; }

.hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 30px;
    list-style: none;
    padding: 22px 0 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
}
.hero__facts li {
    font-family: var(--face-mono);
    font-size: .78rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(210, 228, 245, .8);
    margin: 0;
}

.hero__stage {
    position: relative;
    border-radius: var(--round-l);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: var(--shade-3);
    aspect-ratio: 4 / 3.35;
    background: #0d2547;
}

.hero__stage img.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 18px;
    border-radius: 16px;
    background: rgba(9, 22, 42, .62);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .16);
    font-size: .84rem;
    color: #dbe9f7;
}
.hero__badge strong { color: #fff; display: block; font-size: .95rem; }

/* ----------------------------------------------------------- sektionsram */
.band { padding: clamp(58px, 7.5vw, var(--gap-xxl)) 0; }
.band--paper { background: var(--tone-paper); }
.band--ice { background: linear-gradient(180deg, var(--tone-ice) 0%, var(--tone-paper) 100%); }
.band--deep { background: linear-gradient(160deg, var(--tone-navy) 0%, var(--tone-ink) 100%); color: #dfeaf6; }
.band--deep h2, .band--deep h3 { color: #fff; }
.band--deep .lede { color: rgba(216, 231, 246, .8); }
.band--tight { padding-block: clamp(40px, 5vw, 66px); }

/* --------------------------------------------------------- förtroendelist */
.marker-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(15, 42, 82, .1);
    border: var(--edge-soft);
    border-radius: var(--round-m);
    overflow: hidden;
}
.marker-row div {
    background: #fff;
    padding: 26px 24px;
}
.marker-row strong {
    display: block;
    font-family: var(--face-mono);
    font-size: .74rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--tone-blue-dark);
    margin-bottom: 8px;
}
.marker-row span { font-size: .95rem; color: var(--tone-steel); }

/* ------------------------------------------------------------- split-blad */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
}
.split--flip .split__media { order: 2; }

.split__media {
    position: relative;
    border-radius: var(--round-l);
    overflow: hidden;
    box-shadow: var(--shade-2);
    aspect-ratio: 4 / 3;
    background: var(--tone-ice);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

.split__media--product {
    display: grid;
    place-items: center;
    background: linear-gradient(150deg, var(--tone-ice) 0%, #fff 100%);
    border: var(--edge-soft);
}
.split__media--product img {
    width: 72%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 26px 34px rgba(15, 42, 82, .22));
}

.tick-list { list-style: none; padding: 0; margin: 26px 0 0; }
.tick-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 14px;
    color: var(--tone-steel);
}
.tick-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--tone-ice);
    border: 1px solid rgba(20, 99, 214, .3);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.4l3 3 6-6.6' fill='none' stroke='%231463d6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
.tick-list strong { color: var(--tone-ink); }

/* -------------------------------------------------------------- kortnät */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-m); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap-m); }

.stack-card {
    background: #fff;
    border: var(--edge-soft);
    border-radius: var(--round-m);
    padding: 30px 28px;
    box-shadow: var(--shade-1);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    display: flex;
    flex-direction: column;
}
.stack-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shade-2);
    border-color: rgba(20, 99, 214, .24);
}
.stack-card p { color: var(--tone-steel); font-size: .97rem; }

.stack-card__mark {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    background: linear-gradient(145deg, var(--tone-ice), #fff);
    border: 1px solid rgba(20, 99, 214, .18);
}
.stack-card__mark svg { width: 22px; height: 22px; }

.stack-card--glass {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: none;
}
.stack-card--glass p { color: rgba(214, 230, 246, .78); }
.stack-card--glass .stack-card__mark {
    background: rgba(56, 189, 248, .14);
    border-color: rgba(56, 189, 248, .35);
}

/* ------------------------------------------------------------ ingredienser */
.compo-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.compo-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 22px;
    background: #fff;
    border: var(--edge-soft);
    border-radius: var(--round-s);
}
.compo-item__key {
    font-family: var(--face-mono);
    font-size: .72rem;
    color: var(--tone-blue-dark);
    padding-top: 4px;
    letter-spacing: .1em;
}
.compo-item h4 { margin-bottom: 4px; }
.compo-item p { font-size: .9rem; color: var(--tone-steel); margin: 0; }

/* ------------------------------------------------------------- rutinsteg */
.route-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.route-step {
    position: relative;
    padding: 28px 24px;
    border-radius: var(--round-m);
    background: #fff;
    border: var(--edge-soft);
}
.route-step::before {
    counter-increment: step;
    content: "0" counter(step);
    display: block;
    font-family: var(--face-mono);
    font-size: .8rem;
    letter-spacing: .16em;
    color: var(--tone-blue);
    margin-bottom: 14px;
}
.route-step p { font-size: .95rem; color: var(--tone-steel); margin: 0; }

/* ---------------------------------------------------------- kvalitetsnät */
.proof-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 22px; }
.proof-tile {
    position: relative;
    border-radius: var(--round-m);
    overflow: hidden;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
    color: #fff;
    isolation: isolate;
}
.proof-tile img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.proof-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(7, 19, 36, .12) 0%, rgba(7, 19, 36, .82) 100%);
}
.proof-tile h3 { color: #fff; margin-bottom: 6px; }
.proof-tile p { font-size: .93rem; color: rgba(230, 240, 250, .86); margin: 0; }
.proof-tile--tall { grid-row: span 2; }

/* --------------------------------------------------------------- paket */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }

.pkg-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(15, 42, 82, .12);
    border-radius: var(--round-l);
    overflow: hidden;
    box-shadow: var(--shade-1);
    transition: transform .2s ease, box-shadow .2s ease;
}
.pkg-card:hover { transform: translateY(-5px); box-shadow: var(--shade-2); }

.pkg-card--focus { border-color: var(--tone-blue); box-shadow: 0 24px 50px -26px rgba(20, 99, 214, .55); }

.pkg-card__frame {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(150deg, var(--tone-ice) 0%, #fbfdff 100%);
    display: grid;
    place-items: center;
    padding: 22px;
    border-bottom: var(--edge-soft);
}
.pkg-card__frame img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(15, 42, 82, .18));
}

.pkg-card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.pkg-card__tag {
    font-family: var(--face-mono);
    font-size: .7rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--tone-steel);
    margin-bottom: 10px;
}
.pkg-card--focus .pkg-card__tag { color: var(--tone-blue); }
.pkg-card__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 6px 0 4px;
}
.pkg-card__price b { font-size: 1.9rem; color: var(--tone-ink); letter-spacing: -.03em; }
.pkg-card__price span { font-size: .88rem; color: var(--tone-steel); }
.pkg-card__unit { font-size: .86rem; color: var(--tone-steel); margin-bottom: 18px; font-family: var(--face-mono); }
.pkg-card ul { list-style: none; padding: 0; margin: 0 0 24px; }
.pkg-card ul li {
    font-size: .93rem;
    color: var(--tone-steel);
    padding-left: 22px;
    position: relative;
}
.pkg-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tone-azure);
}
.pkg-card .act { margin-top: auto; }

.pkg-note {
    margin-top: 26px;
    font-size: .88rem;
    color: var(--tone-steel);
    text-align: center;
}

/* ------------------------------------------------------------- omdömen */
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.voice-card {
    background: #fff;
    border: var(--edge-soft);
    border-radius: var(--round-m);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
}
.voice-card p { font-size: .98rem; color: var(--tone-graphite); }
.voice-card__who {
    margin-top: auto;
    padding-top: 18px;
    border-top: var(--edge-soft);
    display: flex;
    align-items: center;
    gap: 12px;
}
.voice-card__ini {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, var(--tone-navy), var(--tone-blue));
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
}
.voice-card__who b { display: block; font-size: .92rem; color: var(--tone-ink); }
.voice-card__who span { font-size: .8rem; color: var(--tone-steel); }

/* ------------------------------------------------------------ artikelkort */
.read-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--round-l);
    overflow: hidden;
    border: var(--edge-soft);
    background: #fff;
    box-shadow: var(--shade-2);
}
.read-card__media { aspect-ratio: 16 / 11; }
.read-card__media img { width: 100%; height: 100%; object-fit: cover; }
.read-card__body { padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; }

/* ---------------------------------------------------------------- FAQ */
.qa-list { border-top: var(--edge-soft); }
.qa-item { border-bottom: var(--edge-soft); }
.qa-item__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: none;
    border: 0;
    padding: 24px 4px;
    text-align: left;
    font-family: inherit;
    font-size: 1.04rem;
    font-weight: 600;
    color: var(--tone-ink);
    cursor: pointer;
}
.qa-item__btn:hover { color: var(--tone-blue-dark); }
.qa-item__sign {
    flex: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(15, 42, 82, .18);
    display: grid;
    place-items: center;
    position: relative;
    transition: transform .22s ease, background-color .22s ease;
}
.qa-item__sign::before,
.qa-item__sign::after {
    content: "";
    position: absolute;
    background: var(--tone-navy);
    border-radius: 2px;
}
.qa-item__sign::before { width: 11px; height: 2px; }
.qa-item__sign::after { width: 2px; height: 11px; transition: opacity .2s ease; }
.qa-item.is-open .qa-item__sign { background: var(--tone-ice); transform: rotate(180deg); }
.qa-item.is-open .qa-item__sign::after { opacity: 0; }
.qa-item__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.qa-item__panel > div { padding: 0 60px 26px 4px; color: var(--tone-steel); }

/* --------------------------------------------------------------- formulär */
.lead-panel {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 0;
    border-radius: var(--round-l);
    overflow: hidden;
    box-shadow: var(--shade-3);
    background: #fff;
}

.lead-panel__aside {
    position: relative;
    padding: clamp(32px, 4vw, 50px);
    color: #eaf3fb;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.lead-panel__aside img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lead-panel__aside::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(160deg, rgba(15, 42, 82, .93), rgba(7, 19, 36, .93));
}
.lead-panel__aside h2 { color: #fff; }
.lead-panel__aside p { color: rgba(214, 230, 246, .82); font-size: .98rem; }

.aside-facts { list-style: none; padding: 0; margin: 26px 0 0; }
.aside-facts li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: .93rem;
    color: rgba(220, 234, 248, .88);
}
.aside-facts svg { flex: none; width: 20px; height: 20px; margin-top: 2px; }
.aside-facts b { color: #fff; display: block; }

.lead-form { padding: clamp(30px, 4vw, 50px); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
    display: block;
    font-size: .86rem;
    font-weight: 600;
    color: var(--tone-graphite);
    margin-bottom: 7px;
}
.field label span { color: var(--tone-steel); font-weight: 400; }

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 13px 15px;
    font-family: inherit;
    font-size: .97rem;
    color: var(--tone-ink);
    background: var(--tone-paper);
    border: 1px solid rgba(15, 42, 82, .16);
    border-radius: var(--round-s);
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.field textarea { min-height: 104px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--tone-blue);
    box-shadow: 0 0 0 4px rgba(20, 99, 214, .12);
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #c2373c; background: #fdf5f5; }

.field__error {
    display: none;
    font-size: .82rem;
    color: #b6323a;
    margin-top: 6px;
}
.field.has-error .field__error { display: block; }

.check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: .87rem;
    color: var(--tone-steel);
    margin-bottom: 14px;
    line-height: 1.55;
}
.check input { width: 19px; height: 19px; flex: none; margin-top: 2px; accent-color: var(--tone-blue); }
.check.has-error { color: #b6323a; }

.form-foot { font-size: .8rem; color: var(--tone-steel); margin-top: 16px; }

/* ------------------------------------------------------------ kontaktdel */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.contact-card {
    background: #fff;
    border: var(--edge-soft);
    border-radius: var(--round-m);
    padding: 28px;
}
.contact-card h3 { font-size: 1.05rem; }
.contact-card p, .contact-card address {
    font-style: normal;
    font-size: .95rem;
    color: var(--tone-steel);
    margin: 0;
}
.contact-card a { font-weight: 600; }

/* ------------------------------------------------------------------ succé */
.result-wrap {
    min-height: 68vh;
    display: grid;
    place-items: center;
    padding: var(--gap-xl) 0;
    background: linear-gradient(180deg, var(--tone-ice), #fff);
}
.result-box {
    max-width: 640px;
    text-align: center;
    background: #fff;
    border: var(--edge-soft);
    border-radius: var(--round-l);
    padding: clamp(34px, 5vw, 60px);
    box-shadow: var(--shade-2);
}
.result-box__ring {
    width: 78px;
    height: 78px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, var(--tone-ice), #fff);
    border: 1px solid rgba(20, 99, 214, .28);
}
.result-box__ring svg { width: 34px; height: 34px; }
.result-acts { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ------------------------------------------------------------- legal-sidor */
.page-head {
    background: linear-gradient(160deg, var(--tone-navy) 0%, var(--tone-ink) 100%);
    color: #e6f0fa;
    padding: clamp(52px, 7vw, 88px) 0;
}
.page-head h1 { color: #fff; margin-bottom: 12px; }
.page-head p { color: rgba(214, 230, 246, .82); max-width: 60ch; }

.legal-body { padding: clamp(46px, 6vw, 84px) 0; }
.legal-body h2 { font-size: clamp(1.35rem, 2.2vw, 1.6rem); margin-top: 44px; }
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body h3 { font-size: 1.1rem; margin-top: 28px; }
.legal-body p, .legal-body li { color: var(--tone-graphite); }
.legal-body li { margin-bottom: .55em; }

.note-box {
    background: var(--tone-ice);
    border-left: 3px solid var(--tone-blue);
    border-radius: 0 var(--round-s) var(--round-s) 0;
    padding: 22px 26px;
    margin: 30px 0;
    font-size: .96rem;
}
.note-box strong { color: var(--tone-ink); }

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: .94rem;
}
.data-table th, .data-table td {
    text-align: left;
    padding: 13px 16px;
    border-bottom: var(--edge-soft);
    vertical-align: top;
}
.data-table th { background: var(--tone-paper); color: var(--tone-ink); font-weight: 600; }

/* ----------------------------------------------------------- artikelsida */
.article-lead {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}
.article-lead__media {
    border-radius: var(--round-l);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    box-shadow: var(--shade-2);
}
.article-lead__media img { width: 100%; height: 100%; object-fit: cover; }

.article-body { max-width: 760px; }
.article-body h2 { margin-top: 46px; }
.article-body h2:first-child { margin-top: 0; }
.article-body p { color: var(--tone-graphite); }

.aside-card {
    background: var(--tone-paper);
    border: var(--edge-soft);
    border-radius: var(--round-m);
    padding: 28px 30px;
    margin: 36px 0;
}
.aside-card h3 { margin-bottom: 10px; }
.aside-card p { color: var(--tone-steel); font-size: .96rem; }

.media-card {
    border-radius: var(--round-l);
    overflow: hidden;
    border: var(--edge-soft);
    background: #fff;
    box-shadow: var(--shade-1);
    margin: 40px 0;
}
.media-card__pic { aspect-ratio: 16 / 8; }
.media-card__pic img { width: 100%; height: 100%; object-fit: cover; }
.media-card__cap { padding: 22px 26px; font-size: .92rem; color: var(--tone-steel); }

/* ---------------------------------------------------------------- footer */
.footer {
    background: var(--tone-ink);
    color: rgba(206, 223, 240, .78);
    padding: var(--gap-xl) 0 34px;
    font-size: .93rem;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: var(--gap-m);
    padding-bottom: var(--gap-l);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer h4 {
    color: #fff;
    font-family: var(--face-mono);
    font-size: .74rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.footer a { color: rgba(206, 223, 240, .82); }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer address { font-style: normal; line-height: 1.75; }
.footer .brandmark { color: #fff; margin-bottom: 16px; }
.footer .brandmark__tag { color: rgba(206, 223, 240, .6); }
.footer__mini { font-size: .84rem; color: rgba(186, 206, 226, .62); margin-top: 18px; }

.footer__base {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 26px;
    justify-content: space-between;
    align-items: center;
    padding-top: 26px;
    font-size: .84rem;
    color: rgba(186, 206, 226, .62);
}
.link-btn {
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    color: rgba(206, 223, 240, .82);
    cursor: pointer;
    text-decoration: underline;
}
.link-btn:hover { color: #fff; }

/* --------------------------------------------------------- cookie-banner */
.consent-bar {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 80;
    max-width: 1120px;
    margin-inline: auto;
    background: #fff;
    border: 1px solid rgba(15, 42, 82, .14);
    border-radius: var(--round-l);
    box-shadow: var(--shade-3);
    padding: 26px 28px;
    display: none;
    gap: 26px;
    align-items: center;
}
.consent-bar.is-visible { display: flex; }
.consent-bar__text { flex: 1; font-size: .93rem; color: var(--tone-steel); }
.consent-bar__text b { display: block; color: var(--tone-ink); font-size: 1.02rem; margin-bottom: 6px; }
.consent-bar__acts { display: flex; gap: 12px; flex-wrap: wrap; }
.consent-bar__acts .act { flex: none; }

.consent-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(7, 19, 36, .58);
    backdrop-filter: blur(4px);
}
.consent-modal.is-visible { display: flex; }
.consent-modal__card {
    background: #fff;
    border-radius: var(--round-l);
    width: min(660px, 100%);
    max-height: 88vh;
    overflow-y: auto;
    padding: 34px;
    box-shadow: var(--shade-3);
}
.consent-modal__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.consent-modal__close {
    background: none;
    border: var(--edge);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    line-height: 1;
    color: var(--tone-steel);
    cursor: pointer;
}
.consent-modal__close:hover { background: var(--tone-ice); color: var(--tone-ink); }

.switch-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 0;
    border-top: var(--edge-soft);
}
.switch-row h4 { margin-bottom: 4px; }
.switch-row p { font-size: .88rem; color: var(--tone-steel); margin: 0; }

.toggle { position: relative; flex: none; width: 50px; height: 28px; }
.toggle input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.toggle span {
    position: absolute;
    inset: 0;
    background: var(--tone-silver);
    border-radius: 999px;
    transition: background-color .2s ease;
    pointer-events: none;
}
.toggle span::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    box-shadow: var(--shade-1);
    transition: transform .2s ease;
}
.toggle input:checked + span { background: var(--tone-blue); }
.toggle input:checked + span::after { transform: translateX(22px); }
.toggle input:disabled + span { background: var(--tone-navy); opacity: .45; }
.toggle input:focus-visible + span { outline: 3px solid var(--tone-azure); outline-offset: 2px; }

.consent-modal__acts { display: flex; gap: 12px; flex-wrap: wrap; padding-top: 24px; border-top: var(--edge-soft); }

/* --------------------------------------------------------------- reveal */
.rise {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}
.rise.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
    .rise { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------- responsiv */
@media (max-width: 1080px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .route-track { grid-template-columns: repeat(2, 1fr); }
    .proof-grid { grid-template-columns: repeat(2, 1fr); }
    .proof-tile--tall { grid-row: auto; }
    .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
    .nav-links { gap: 18px; }
    .phone-chip { display: none; }
}

@media (max-width: 900px) {
    body { font-size: 16px; }
    .masthead__grid { min-height: 68px; }
    .burger { display: block; }
    .nav-links {
        position: fixed;
        inset: 68px 0 auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        border-bottom: var(--edge);
        box-shadow: var(--shade-2);
        padding: 10px 24px 22px;
        display: none;
    }
    .nav-links.is-open { display: flex; }
    .nav-links a { padding: 14px 0; border-bottom: 1px solid rgba(15, 42, 82, .07); }
    .masthead__side .act { display: none; }

    .hero__grid,
    .split,
    .grid-3,
    .grid-2,
    .voice-grid,
    .contact-grid,
    .compo-list,
    .read-card,
    .lead-panel,
    .article-lead { grid-template-columns: 1fr; }
    .split--flip .split__media { order: 0; }
    .marker-row { grid-template-columns: repeat(2, 1fr); }
    .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
    .hero__stage { aspect-ratio: 4 / 3.1; }
    .read-card__media { aspect-ratio: 16 / 9; }
    .qa-item__panel > div { padding-right: 20px; }
    .consent-bar { flex-direction: column; align-items: flex-start; padding: 22px; }
    .consent-bar__acts .act { flex: 1 1 auto; }
}

@media (max-width: 560px) {
    .shell { padding-inline: 18px; }
    .field-row { grid-template-columns: 1fr; }
    .marker-row { grid-template-columns: 1fr; }
    .route-track { grid-template-columns: 1fr; }
    .proof-grid { grid-template-columns: 1fr; }
    .hero__acts .act { width: 100%; }
    .consent-bar { left: 12px; right: 12px; bottom: 12px; }
    .consent-modal__card { padding: 24px 20px; }
}
