/* =========================================================
   Mediab — Vi hjälper ditt företag att växa
   Warm · Premium · Minimal · Scandinavian
   ========================================================= */

:root {
  /* Palette */
  --bg:        #F5F0E8;   /* warm beige           */
  --surface:   #FCFAF5;   /* lighter card surface */
  --ink:       #1A1410;   /* warm near-black      */
  --muted:     #8A7E72;   /* muted text           */
  --dark:      #1A1410;   /* dark sections / nav  */
  --accent:    #E2743A;   /* warm orange (calmer)  */
  --accent-2:  #EC8A55;   /* lighter orange hover  */

  --line:      rgba(26, 20, 16, 0.10);
  --line-dark: rgba(245, 240, 232, 0.12);

  /* Metrics */
  --nav-h: 76px;
  --maxw: 1180px;
  --radius: 20px;
  --radius-sm: 14px;

  --shadow-sm: 0 1px 2px rgba(26,20,16,.04), 0 6px 18px rgba(26,20,16,.05);
  --shadow-md: 0 18px 50px -18px rgba(26,20,16,.22);

  --ease: cubic-bezier(.2,.6,.2,1);
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 700;
}
p { margin: 0; }

::selection { background: var(--accent); color: #fff; }

/* ------------------------------ Layout ------------------------------- */
.container { max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(4.5rem, 9vw, 8.5rem); }
.section--tight { padding-block: clamp(3.5rem, 6vw, 6rem); }

/* Type helpers */
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}
.lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--muted); }
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.muted { color: var(--muted); }

/* ------------------------------ Buttons ------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.65rem;
  border-radius: 999px;
  font-weight: 600; font-size: .98rem; line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s, border-color .25s;
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--accent); color: #1A1410; }
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -10px rgba(226,116,58,.65);
}
.btn-dark { background: var(--ink); color: var(--bg); }
.btn-dark:hover { background: var(--accent); color: #1A1410; transform: translateY(-2px); }

.btn-ghost { background: transparent; color: inherit; border-color: currentColor; opacity: .9; }
.btn-ghost:hover { opacity: 1; transform: translateY(-2px); border-color: var(--accent); color: var(--accent); }

.btn-lg { padding: 1.1rem 2.05rem; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ----------------------------- Navbar -------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: var(--dark); color: var(--bg);
  transition: box-shadow .3s var(--ease);
}
.nav.scrolled { box-shadow: 0 1px 0 var(--line-dark), 0 16px 40px -26px rgba(0,0,0,.9); }
.nav__inner {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav__links { display: flex; align-items: center; gap: .15rem; }
.nav__links > a {
  position: relative;
  padding: .55rem .9rem; border-radius: 999px;
  font-size: .95rem; font-weight: 500;
  color: rgba(245,240,232,.78);
  transition: color .2s, background .2s;
}
.nav__links > a:hover { color: #fff; }
.nav__links > a[aria-current="page"] { color: #fff; }
.nav__links > a[aria-current="page"]::after {
  content: ""; position: absolute; left: 50%; bottom: 2px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); transform: translateX(-50%);
}
.nav__cta { margin-left: .5rem; }
.nav__toggle {
  display: none; width: 44px; height: 44px;
  background: transparent; border: 0; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 22px; height: 2px;
  background: var(--bg); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav__toggle span::before { transform: translateY(-7px); }
.nav__toggle span::after  { transform: translateY(7px); }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg); }

/* --------------------------- Logo / discs ---------------------------- */
.brand { display: inline-flex; align-items: center; gap: .55rem; color: var(--bg); font-size: 1.3rem; line-height: 1; }
/* Icon sized to the cap-height of the "M" — never taller than the wordmark */
.brand .disc-stack { width: auto; height: 0.95em; filter: drop-shadow(0 2px 5px rgba(0,0,0,.28)); }
.wordmark { font-weight: 800; font-size: 1em; letter-spacing: -0.03em; color: currentColor; }

.disc-stack { filter: drop-shadow(0 6px 14px rgba(0,0,0,.22)); overflow: visible; }
.disc { transform-box: fill-box; transform-origin: 50% 50%; animation: stackIn .85s var(--ease) both; }
.disc:nth-child(1) { animation-delay: .08s; }  /* bottom disc lands first */
.disc:nth-child(2) { animation-delay: .20s; }
.disc:nth-child(3) { animation-delay: .32s; }
.disc:nth-child(4) { animation-delay: .44s; }
.disc:nth-child(5) { animation-delay: .56s; }

.disc-g { /* rotating sheen now comes from the SVG gradient (animateTransform) */ }
.disc-gloss { opacity: 0; mix-blend-mode: screen; animation: glossIn .8s ease .8s forwards; }

@keyframes stackIn {
  0%   { opacity: 0; transform: translateY(-360%); }
  50%  { opacity: 1; }
  78%  { transform: translateY(7%); }   /* drop past, then settle — a soft landing */
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { filter: hue-rotate(0deg)   saturate(.92) brightness(1);     }
  50%  { filter: hue-rotate(180deg) saturate(1.0)  brightness(1.015); }
  100% { filter: hue-rotate(360deg) saturate(.92) brightness(1);     }
}
@keyframes glossIn { to { opacity: .5; } }

/* ------------------------------- Hero -------------------------------- */
.hero {
  background: var(--dark); color: var(--bg);
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100svh - var(--nav-h));
  display: flex; align-items: center;
  position: relative; overflow: hidden; text-align: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 55% at 50% 28%, rgba(226,116,58,.18), transparent 70%),
    radial-gradient(40% 40% at 80% 90%, rgba(236,138,85,.08), transparent 70%);
}
.hero::after { /* soft transition into beige */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(245,240,232,.0));
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1.6rem;
  padding-block: 4rem; width: 100%;
}
.hero .disc-stack { width: clamp(92px, 12vw, 132px); height: auto; margin-bottom: .9rem; }
.hero h1 { color: #fff; max-width: 16ch; }
.hero h1 .accent { color: var(--accent); }
.hero .lead { color: rgba(245,240,232,.72); max-width: 44ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: .6rem; }

/* entrance for hero text */
.hero h1, .hero .lead, .hero__cta { opacity: 0; animation: riseIn .8s var(--ease) forwards; }
.hero h1 { animation-delay: .55s; }
.hero .lead { animation-delay: .72s; }
.hero__cta { animation-delay: .9s; }
@keyframes riseIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

.scroll-cue {
  position: absolute; bottom: 26px; left: 0; right: 0;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(245,240,232,.5); opacity: 0; animation: riseIn .8s var(--ease) 1.2s forwards;
}
.scroll-cue i {
  width: 1px; height: 34px; background: rgba(245,240,232,.4);
  animation: cue 1.8s var(--ease) infinite;
}
@keyframes cue { 0%,100% { transform: scaleY(.4); opacity:.3; } 50% { transform: scaleY(1); opacity:.8; } }

/* ----------------------------- Page header --------------------------- */
.page-head { padding-block: clamp(3.5rem, 7vw, 6rem) clamp(2rem, 4vw, 3rem); }
.page-head h1 { max-width: 18ch; }
.page-head .lead { margin-top: 1.1rem; max-width: 50ch; }

/* ------------------------------ Cards -------------------------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.1rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(226,116,58,.45); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 1.3rem;
  background: rgba(226,116,58,.10); color: var(--accent);
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .55rem; }
.card p { color: var(--muted); }
.card__more {
  margin-top: 1.4rem; display: inline-flex; align-items: center; gap: .4rem;
  color: var(--accent); font-weight: 600; font-size: .95rem;
}
.card__more svg { transition: transform .25s var(--ease); }
.card:hover .card__more svg { transform: translateX(4px); }

/* ------------------------------ Steps -------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.2rem; }
.step { position: relative; }
.step__num {
  font-size: 1rem; font-weight: 700; color: var(--accent);
  letter-spacing: .1em; margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: .7rem;
}
.step__num::after { content: ""; flex: 1; height: 1px; min-width: 40px; background: var(--line); }
.step h3 { margin-bottom: .5rem; }
.step p { color: var(--muted); }

/* ------------------------------ Why ---------------------------------- */
.why { text-align: center; max-width: 50rem; margin-inline: auto; }
.why p.statement {
  font-size: clamp(1.5rem, 3.4vw, 2.3rem); font-weight: 600;
  line-height: 1.3; letter-spacing: -0.02em;
}
.why .hl { color: var(--accent); }
.why .sub { margin-top: 1.6rem; color: var(--muted); font-size: 1.1rem; }

/* --------------------------- Split feature --------------------------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.feature + .feature { margin-top: clamp(3.5rem, 7vw, 6rem); }
.feature.reverse .feature__media { order: -1; }
.feature__body h2 { margin-bottom: 1rem; }
.feature__body > p { color: var(--muted); font-size: 1.1rem; }
.feature__list { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: .85rem; }
.feature__list li { display: flex; gap: .75rem; align-items: flex-start; }
.feature__list .tick {
  flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%;
  background: rgba(226,116,58,.12); color: var(--accent);
  display: grid; place-items: center;
}
.feature__list .tick svg { width: 13px; height: 13px; }
.feature__media {
  aspect-ratio: 5 / 4; border-radius: var(--radius);
  background:
    radial-gradient(120% 100% at 20% 10%, rgba(226,116,58,.16), transparent 55%),
    linear-gradient(160deg, #221a13, #1A1410);
  border: 1px solid var(--line);
  display: grid; place-items: center; overflow: hidden; position: relative;
}
.feature__media .disc-stack { width: 22%; }
.feature__media .badge-num {
  position: absolute; top: 1.4rem; left: 1.6rem;
  font-size: .8rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(245,240,232,.55); font-weight: 600;
}

/* ----------------------------- Pricing ------------------------------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: start; }
.price-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.2rem 2rem;
  display: flex; flex-direction: column; gap: 1.4rem;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.price-card.popular {
  background: var(--dark); color: var(--bg);
  border-color: var(--dark); position: relative;
  box-shadow: var(--shadow-md);
}
@media (min-width: 921px) { .price-card.popular { transform: scale(1.04); } }
.price-card.popular:hover { transform: translateY(-4px); }
@media (min-width: 921px) { .price-card.popular:hover { transform: scale(1.04) translateY(-4px); } }
.price-card:not(.popular):hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.badge {
  position: absolute; top: -.85rem; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #1A1410;
  font-weight: 700; font-size: .72rem; letter-spacing: .06em;
  padding: .4rem 1rem; border-radius: 999px; white-space: nowrap;
}
.price__name { font-weight: 700; font-size: 1.15rem; }
.price__amount { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.price__amount span { font-size: 1rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price-card.popular .price__amount span { color: rgba(245,240,232,.65); }

.features { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
.features li { display: flex; align-items: center; gap: .7rem; font-size: .98rem; }
.features li.off { color: var(--muted); }
.price-card.popular .features li { color: rgba(245,240,232,.92); }
.price-card.popular .features li.off { color: rgba(245,240,232,.45); }
.features .mark { flex: none; width: 20px; height: 20px; display: grid; place-items: center; color: var(--accent); }
.features li.off .mark { color: currentColor; opacity: .5; }
.price__cta { margin-top: auto; }
.price-note { text-align: center; color: var(--muted); margin-top: 2rem; font-size: .92rem; }

/* ------------------------------ Values ------------------------------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.value { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.value h3 { margin-bottom: .5rem; }
.value p { color: var(--muted); }
.value__k { font-size: .8rem; font-weight: 700; color: var(--accent); letter-spacing: .12em; }

/* ------------------------------ Prose -------------------------------- */
.prose { max-width: 42rem; }
.prose p + p { margin-top: 1.3rem; }
.prose p { font-size: 1.12rem; color: #3a322b; }
.signature { margin-top: 2rem; font-weight: 600; color: var(--ink); }
.signature span { display: block; color: var(--muted); font-weight: 400; font-size: .95rem; }

/* ------------------------------ Contact ------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form { display: grid; gap: 1.2rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .45rem; }
.field input, .field textarea {
  width: 100%; padding: .95rem 1.05rem;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--surface); color: var(--ink); font: inherit; font-size: 1rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(226,116,58,.14);
}
.form__success {
  display: none; align-items: center; gap: .8rem;
  padding: 1.1rem 1.2rem; border-radius: 14px;
  background: rgba(226,116,58,.1); border: 1px solid rgba(226,116,58,.3);
  color: var(--ink); font-weight: 500;
}
.form__success.show { display: flex; }
.form__success svg { flex: none; color: var(--accent); }

.contact-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem;
}
.contact-card h3 { margin-bottom: .4rem; }
.contact-card > p { color: var(--muted); margin-bottom: 1.4rem; }
.contact-list { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: .85rem; align-items: center; }
.contact-list .ci {
  flex: none; width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; background: rgba(226,116,58,.1); color: var(--accent);
}
.contact-list b { display: block; font-weight: 600; font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.contact-list a, .contact-list span { color: var(--ink); font-weight: 500; }
.contact-list a:hover { color: var(--accent); }

/* ----------------------------- CTA band ------------------------------ */
.cta-band {
  background: var(--dark); color: var(--bg);
  border-radius: 28px; padding: clamp(2.6rem, 6vw, 4.5rem);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 80% at 50% 0%, rgba(226,116,58,.2), transparent 70%);
}
.cta-band > * { position: relative; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { color: rgba(245,240,232,.72); max-width: 40ch; margin: 0 auto 1.8rem; font-size: 1.1rem; }

/* ------------------------------ Footer ------------------------------- */
.footer { background: var(--dark); color: rgba(245,240,232,.7); padding-block: clamp(3rem,6vw,4.5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; }
.footer .brand { margin-bottom: 1.1rem; }
.footer__tag { color: rgba(245,240,232,.6); max-width: 30ch; }
.footer h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: rgba(245,240,232,.5); margin-bottom: 1.1rem; font-weight: 600; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.footer a:hover { color: #fff; }
.footer__bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .85rem; color: rgba(245,240,232,.5);
}

/* --------------------------- Scroll reveal --------------------------- */
[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s var(--ease) var(--d, 0s), transform .7s var(--ease) var(--d, 0s);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ----------------------------- Responsive ---------------------------- */
@media (max-width: 920px) {
  .cards, .steps, .pricing, .values { grid-template-columns: 1fr; gap: 1.1rem; }
  .feature, .contact-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .feature.reverse .feature__media { order: 0; }
  .feature__media { aspect-ratio: 16 / 9; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--dark); padding: .6rem 24px 1.6rem;
    border-top: 1px solid var(--line-dark);
    transform: translateY(-130%); transition: transform .38s var(--ease);
    max-height: calc(100svh - var(--nav-h)); overflow: auto;
  }
  .nav__links.open { transform: none; }
  .nav__links > a { padding: .95rem .3rem; font-size: 1.05rem; border-bottom: 1px solid var(--line-dark); }
  .nav__links > a[aria-current="page"]::after { display: none; }
  .nav__cta { margin: 1.1rem 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding-inline: 20px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .hero__cta { width: 100%; }
}

/* ------------------------- Reduced motion ---------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .disc, .disc-gloss, .hero h1, .hero .lead, .hero__cta, .scroll-cue { opacity: 1 !important; transform: none !important; }
  .photo img { filter: grayscale(.35) sepia(.16) contrast(1.02) brightness(.96) !important; }
}

/* =======================================================
   Credibility / imagery additions
   ======================================================= */

/* Duotone photo frame — real photo when it loads, designed panel if not */
.photo {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line); background: linear-gradient(155deg, #2c2118, var(--ink));
  aspect-ratio: 4 / 3;
}
.photo--tall { aspect-ratio: 4 / 5; }
.photo--wide { aspect-ratio: 16 / 9; }
.photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
  filter: grayscale(.35) sepia(.16) contrast(1.02) brightness(.96);
}
.photo::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(150deg, rgba(226,116,58,.30), rgba(26,20,16,.5));
  mix-blend-mode: multiply;
}
.photo__fallback {
  position: absolute; inset: 0; z-index: 0; display: grid; place-items: center;
  background: radial-gradient(120% 100% at 20% 12%, rgba(226,116,58,.18), transparent 55%);
}
.photo__fallback .disc-stack { width: 38%; height: auto; }
.photo__cap {
  position: absolute; left: 1.3rem; bottom: 1.1rem; z-index: 3;
  color: rgba(245,240,232,.92); font-size: .78rem; text-transform: uppercase;
  letter-spacing: .16em; font-weight: 600;
}

/* Media + text band */
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.media-split.reverse .photo { order: -1; }
.media-split h2 { margin-bottom: 1rem; }
.media-split p { color: var(--muted); font-size: 1.08rem; }
.media-split .checks { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .7rem; }
.media-split .checks li { display: flex; gap: .65rem; align-items: center; }
.media-split .checks svg { flex: none; color: var(--accent); }

/* Stats / credibility band */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 3vw, 2rem); }
.stat { padding-top: 1.4rem; border-top: 2px solid var(--ink); }
.stat__n { font-size: clamp(2.1rem, 4vw, 3.1rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.stat__l { margin-top: .55rem; color: var(--muted); font-size: .95rem; }

/* Testimonial */
.quote { max-width: 54rem; }
.quote__mark { font-size: 2.6rem; line-height: .5; color: var(--accent); font-weight: 800; font-family: Georgia, serif; }
.quote p.q { font-size: clamp(1.35rem, 2.6vw, 2rem); font-weight: 500; line-height: 1.35; letter-spacing: -0.01em; margin: 1.1rem 0 1.8rem; }
.quote__who { display: flex; align-items: center; gap: .9rem; }
.avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--ink); color: var(--bg); display: grid; place-items: center; font-weight: 700; flex: none; letter-spacing: .01em; }
.quote__who b { font-weight: 600; display: block; }
.quote__who span { color: var(--muted); font-size: .92rem; }

/* Photo support inside service feature media */
.feature__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  filter: grayscale(.4) sepia(.14) contrast(1.02) brightness(.72);
}
.feature__media .duo {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(150deg, rgba(226,116,58,.28), rgba(26,20,16,.55)); mix-blend-mode: multiply;
}
.feature__media .disc-stack { position: absolute; right: 1.1rem; bottom: .9rem; width: 21%; height: auto; z-index: 2; }
.feature__media .badge-num { z-index: 3; }

@media (max-width: 860px) {
  .media-split { grid-template-columns: 1fr; }
  .media-split.reverse .photo { order: 0; }
  .stats { grid-template-columns: 1fr 1fr; gap: 1.4rem 1.2rem; }
}
@media (max-width: 460px) { .stats { grid-template-columns: 1fr 1fr; } }

/* Trust points — honest, non-numeric */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 3vw, 2rem); }
.trust__item { padding-top: 1.2rem; border-top: 2px solid var(--ink); }
.trust__item h3 { font-size: 1.08rem; margin-bottom: .45rem; }
.trust__item p { color: var(--muted); font-size: .95rem; }
@media (max-width: 760px) { .trust { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .trust { grid-template-columns: 1fr; } }

/* One-time website price band */
.onetime {
  display: grid; grid-template-columns: 1.45fr .9fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.8rem);
}
.onetime h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: .6rem; }
.onetime p { color: var(--muted); }
.onetime__price .price__amount { font-size: clamp(1.9rem, 3.5vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1.1rem; }
.onetime__price .price__amount span { display: block; font-size: .9rem; font-weight: 500; color: var(--muted); letter-spacing: 0; margin-top: .25rem; }
@media (max-width: 720px) { .onetime { grid-template-columns: 1fr; } }

/* ----------------------- Mediab-metoden (loop) ----------------------- */
.method { position: relative; max-width: 320px; margin-inline: auto; display: flex; flex-direction: column; align-items: stretch; }
.method__ring { display: none; }
.method__ring circle { fill: none; stroke: var(--line); stroke-width: 1; }
.method__ring .method__arrows path { fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.method__down { display: block; text-align: center; color: var(--accent); font-size: 1.5rem; line-height: 1; margin: .5rem 0; }
.method__node, .method__hub {
  border-radius: 16px; padding: 1.15rem 1.2rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.method__node { background: var(--bg); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.method__hub { background: var(--ink); color: var(--bg); }
.method__icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(226,116,58,.12); color: var(--accent); flex: none; }
.method__icon svg { width: 23px; height: 23px; }
.method__hub .method__icon { background: rgba(226,116,58,.28); }
.method__node b, .method__hub b { font-size: 1.05rem; letter-spacing: -0.01em; }
.method__node .sub { color: var(--muted); font-size: .86rem; }
.method__hub .sub { color: rgba(245,240,232,.72); font-size: .86rem; }

@media (min-width: 720px) {
  .method { display: block; max-width: 560px; aspect-ratio: 1 / 1; }
  .method__ring { display: block; position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
  .method__down { display: none; }
  .method__node, .method__hub { position: absolute; transform: translate(-50%, -50%); width: 168px; z-index: 1; box-shadow: var(--shadow-md); }
  .method__node--a { left: 50%; top: 13%; }
  .method__node--b { left: 85%; top: 72%; }
  .method__node--c { left: 15%; top: 72%; }
  .method__hub { width: 150px; left: 50%; top: 50%; }
}
