/* ============================================================
   Stilmall för Landat
   Palett: varmt papper, djup granskogsgrön, mässing som accent
   Typografi: Fraunces (rubriker) + Inter (brödtext)
   ============================================================ */

:root {
  --paper: #F6F3EE;
  --paper-soft: #FBFAF7;
  --card: #FFFFFF;
  --ink: #13201A;
  --body: #46544C;
  --muted: #6C7A72;
  --accent: #1C5C44;
  --accent-deep: #0E2A20;
  --accent-soft: #E4EDE7;
  --accent-light: #8FC1A9;
  --brass: #A87B2F;
  --line: rgba(19, 32, 26, 0.13);
  --shadow: 0 24px 60px -28px rgba(14, 42, 32, 0.32);
  --shadow-sm: 0 10px 30px -14px rgba(14, 42, 32, 0.28);
  --radius: 18px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Grund ---------- */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0;
}

p { margin: 0; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

img, svg { display: block; }

.sprite { display: none; }

.icon {
  width: 1.1em;
  height: 1.1em;
  flex: none;
}

.container {
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--accent-deep);
  color: var(--paper);
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; color: var(--paper); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  border: 1px solid transparent;
  font: 600 0.95rem/1 var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn-primary {
  background: var(--accent-deep);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--accent);
  color: var(--paper);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-sm { padding: 0.7em 1.25em; font-size: 0.875rem; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 243, 238, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 76px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.logo-mark { width: 30px; height: 30px; color: var(--accent); }
.logo-word {
  font: 600 1.35rem/1 var(--font-display);
  letter-spacing: -0.01em;
  color: var(--ink);
}

.site-nav ul {
  display: flex;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav a {
  font: 500 0.95rem/1 var(--font-body);
  color: var(--body);
  text-decoration: none;
  padding: 0.4rem 0;
}
.site-nav a:hover { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 0.9rem; }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle .icon { width: 20px; height: 20px; }
.nav-toggle .icon-close { display: none; }

body.nav-open .nav-toggle .icon-menu { display: none; }
body.nav-open .nav-toggle .icon-close { display: block; }

/* ---------- Hjälte ---------- */

.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -22%;
  right: -14%;
  width: 58vw;
  aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(28, 92, 68, 0.11), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
  padding-block: clamp(3.5rem, 7vw, 6rem) clamp(4.5rem, 8vw, 7.5rem);
}

.eyebrow {
  font: 600 0.75rem/1.4 var(--font-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.3vw, 4.1rem);
  line-height: 1.04;
  text-wrap: balance;
}

.lead {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1.4vw, 1.175rem);
  max-width: 34em;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.hero-points {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
}
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.hero-points .icon { color: var(--accent); width: 0.95em; height: 0.95em; }

/* ---------- Mockar (hjälte) ---------- */

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
}

.mock {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mock-serp {
  position: relative;
  width: min(360px, 84%);
  padding: 1rem 1.15rem 1.3rem;
  transform: rotate(-1.5deg);
  z-index: 1;
}

.serp-badge {
  position: absolute;
  top: -14px;
  right: -10px;
  background: linear-gradient(160deg, #BC8F39, #96701F);
  color: #FDF9F0;
  font: 600 0.72rem/1 var(--font-body);
  letter-spacing: 0.02em;
  padding: 0.55em 0.95em;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.serp-search {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  color: var(--body);
}
.serp-search .icon { color: var(--muted); width: 1em; height: 1em; }

.serp-result { padding: 0.9rem 0.25rem 0; }
.serp-url { font-size: 0.72rem; color: var(--muted); }
.serp-title {
  font: 500 0.95rem/1.35 var(--font-body);
  color: #1A4FA0;
  margin-top: 0.15rem;
}
.serp-desc { font-size: 0.78rem; line-height: 1.5; color: var(--muted); margin-top: 0.25rem; }

.mock-landing {
  width: min(440px, 100%);
  margin: -16px 0 0 auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line);
}
.browser-bar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}
.url-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.6rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  font-size: 0.75rem;
  color: var(--body);
}
.url-pill .icon { width: 0.8em; height: 0.8em; color: var(--accent); }

.landing-body { padding: 1.5rem 1.6rem 1.6rem; }
.landing-title { font-size: 1.5rem; }
.landing-sub { font-size: 0.9rem; margin-top: 0.5rem; max-width: 30em; }
.landing-cta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.1rem; }
.landing-mail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--accent);
}
.landing-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.1rem;
  margin: 1rem 0 0;
  padding: 0.9rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.landing-checks li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.landing-checks .icon { color: var(--accent); width: 0.9em; height: 0.9em; }

.nb { white-space: nowrap; }

.mock-notify {
  display: flex;
  gap: 0.85rem;
  width: min(340px, 88%);
  margin: -24px auto 0 6%;
  padding: 0.95rem 1.1rem;
  position: relative;
  z-index: 3;
  transform: rotate(1deg);
}

.app-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--accent-deep);
  color: var(--accent-light);
}
.app-badge .icon { width: 22px; height: 22px; }

.notify-text { min-width: 0; }
.notify-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.notify-head strong { color: var(--ink); font-weight: 600; }
.notify-head span { white-space: nowrap; }
.notify-title { font: 600 0.9rem/1.3 var(--font-body); color: var(--ink); margin-top: 0.2rem; }
.notify-body { font-size: 0.8rem; line-height: 1.45; color: var(--muted); margin-top: 0.1rem; }

/* ---------- Sektioner ---------- */

.section {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  scroll-margin-top: 76px;
}

.section-alt {
  background: var(--paper-soft);
  border-block: 1px solid var(--line);
}

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  text-wrap: balance;
}
.section-lead { margin-top: 1.1rem; }

/* ---------- Processen ---------- */

.steps {
  max-width: 780px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--line);
}

.step {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem 2rem;
  padding: 2.1rem 0;
  border-top: 1px solid var(--line);
}

.step-num {
  font: 500 1.9rem/1 var(--font-display);
  color: var(--accent);
  letter-spacing: 0.02em;
}

.step h3 { font-size: 1.35rem; }
.step p { margin-top: 0.55rem; max-width: 56ch; }

/* ---------- Statement ---------- */

.statement {
  background: var(--accent-deep);
  color: var(--paper);
  text-align: center;
  padding-block: clamp(4.5rem, 8vw, 6.5rem);
}

.statement-mark {
  width: 34px;
  height: 34px;
  margin: 0 auto 1.6rem;
  color: var(--accent-light);
}

.statement-text {
  font: 500 clamp(1.9rem, 4.2vw, 3.1rem)/1.25 var(--font-display);
  letter-spacing: -0.01em;
  color: var(--paper);
  text-wrap: balance;
}
.statement-text .dim { color: var(--accent-light); }

.statement-sub {
  margin-top: 1.2rem;
  font-size: 0.95rem;
  color: rgba(246, 243, 238, 0.65);
}

/* ---------- Uppföljning ---------- */

.follow-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.features { border-bottom: 1px solid var(--line); }

.feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--accent);
}
.feature-icon .icon { width: 20px; height: 20px; }

.feature h3 { font-size: 1.2rem; }
.feature p { margin-top: 0.45rem; font-size: 0.975rem; }

/* ---------- Panel-mock ---------- */

.follow-visual { position: relative; }

.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.3rem;
  border-bottom: 1px solid var(--line);
}
.panel-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font: 600 0.9rem/1 var(--font-body);
  color: var(--ink);
}
.panel-brand .icon { width: 20px; height: 20px; color: var(--accent); }
.panel-client {
  font-size: 0.75rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35em 0.9em;
  background: var(--paper-soft);
}

.panel-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.kpi {
  padding: 1.05rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.kpi + .kpi { border-left: 1px solid var(--line); }
.kpi-value { font: 600 1.7rem/1.1 var(--font-display); color: var(--ink); }
.kpi-label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.panel-chart { padding: 1rem 1.3rem 1.15rem; border-bottom: 1px solid var(--line); }
.chart-label, .events-label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 64px;
  margin-top: 0.8rem;
}
.bars span {
  flex: 1;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  opacity: 0.92;
  min-height: 6px;
}

.panel-events { padding: 1rem 0 0.4rem; }
.panel-events .events-label { padding: 0 1.3rem; }

.event {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 1.3rem;
}
.event + .event { border-top: 1px solid var(--line); }
.panel-events .event:first-of-type { margin-top: 0.55rem; }

.event-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
}
.event-icon .icon { width: 16px; height: 16px; }

.event-title { font: 600 0.875rem/1.3 var(--font-body); color: var(--ink); }
.event-meta { font-size: 0.775rem; color: var(--muted); margin-top: 0.1rem; }
.event-time { font-size: 0.75rem; color: var(--muted); white-space: nowrap; }

/* ---------- Telefon-mock ---------- */

.phone {
  width: min(260px, 62%);
  margin: -96px -6px 0 auto;
  position: relative;
  z-index: 2;
  background: #0C1712;
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.phone-screen {
  background: linear-gradient(180deg, #1D2E26, #0E1B15);
  border-radius: 26px;
  padding: 1rem 0.8rem 1.4rem;
}

.phone-time {
  text-align: center;
  font: 600 1.3rem/1 var(--font-body);
  color: #E9E4D8;
  letter-spacing: 0.03em;
  margin: 0.4rem 0 1rem;
}

.phone-notify {
  display: flex;
  gap: 0.7rem;
  background: rgba(246, 243, 238, 0.1);
  border: 1px solid rgba(246, 243, 238, 0.14);
  border-radius: 16px;
  padding: 0.7rem 0.75rem;
}
.phone-notify + .phone-notify { margin-top: 0.6rem; }

.phone-notify > div { min-width: 0; }

.phone-notify .app-badge { width: 30px; height: 30px; border-radius: 9px; background: var(--accent); color: var(--paper); }
.phone-notify .app-badge .icon { width: 18px; height: 18px; }

.phone-notify .notify-head { font-size: 0.56rem; letter-spacing: 0.04em; color: rgba(233, 228, 216, 0.6); }
.phone-notify .notify-head strong { color: #E9E4D8; }
.phone-notify .notify-title { font-size: 0.78rem; color: #E9E4D8; margin-top: 0.15rem; }
.phone-notify .notify-body { font-size: 0.68rem; color: rgba(233, 228, 216, 0.65); overflow-wrap: anywhere; }

/* ---------- FAQ ---------- */

.faq { max-width: 780px; }

.faq details { border-top: 1px solid var(--line); }
.faq details:last-of-type { border-bottom: 1px solid var(--line); }

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  cursor: pointer;
  list-style: none;
  font: 600 1.1rem/1.4 var(--font-body);
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }

.plus { position: relative; width: 20px; height: 20px; flex: none; }
.plus::before, .plus::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.plus::before { width: 16px; height: 2px; }
.plus::after { width: 2px; height: 16px; }
.faq details[open] .plus::after { transform: rotate(90deg); }

.faq details > p {
  padding-bottom: 1.5rem;
  max-width: 62ch;
}

/* ---------- Kontakt ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-copy .section-lead { max-width: 30em; }

.contact-list {
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}
.contact-list li { display: flex; align-items: center; gap: 1rem; }
.contact-list a {
  font: 500 1.05rem/1.3 var(--font-body);
  color: var(--ink);
  text-decoration: none;
}
.contact-list a:hover { color: var(--accent); }

.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  padding: clamp(1.5rem, 3vw, 2.3rem);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.field { margin-bottom: 1.1rem; }

.field label {
  display: block;
  font: 600 0.82rem/1.4 var(--font-body);
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.field .optional { color: var(--muted); font-weight: 400; }

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--paper-soft);
  padding: 0.75em 1em;
  font: 400 0.95rem/1.5 var(--font-body);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { resize: vertical; min-height: 120px; }

.field input::placeholder,
.field textarea::placeholder { color: var(--muted); opacity: 0.7; }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.contact-form .btn { width: 100%; margin-top: 0.3rem; }

.form-status { margin-top: 0.9rem; font-size: 0.875rem; color: var(--accent); }
.form-status:empty { display: none; }

.form-note {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

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

.site-footer {
  background: var(--accent-deep);
  color: rgba(246, 243, 238, 0.72);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem;
}

.footer-brand .logo-mark { color: var(--accent-light); }
.footer-brand .logo-word { color: var(--paper); }
.footer-brand p {
  margin-top: 1.1rem;
  font-size: 0.9rem;
  max-width: 30em;
}

.footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}
.footer-nav a,
.footer-contact a {
  color: rgba(246, 243, 238, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--paper); }

.footer-contact { display: grid; gap: 0.65rem; align-content: start; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 2rem;
  padding-block: 1.4rem;
  border-top: 1px solid rgba(246, 243, 238, 0.14);
  font-size: 0.8rem;
  color: rgba(246, 243, 238, 0.5);
}
.footer-bottom p { margin: 0; }

/* ---------- Reveal-animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }

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

@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; margin-inline: auto; width: 100%; }

  .follow-grid { grid-template-columns: 1fr; }
  .follow-visual { max-width: 620px; }

  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    display: none;
    padding: 0.8rem 1.5rem 1.4rem;
  }
  body.nav-open .site-nav { display: block; }

  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav a {
    display: block;
    padding: 0.85rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }
  .site-nav li:last-child a { border-bottom: none; }

  .nav-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }

  .step { grid-template-columns: 1fr; gap: 0.4rem; padding: 1.7rem 0; }
  .step-num { font-size: 1.5rem; }

  .form-row { grid-template-columns: 1fr; gap: 0; }

  .mock-serp { width: 92%; }
  .serp-desc { display: none; }
  .mock-landing { margin-top: -18px; }
  .mock-notify { margin-left: 2%; width: 94%; }

  .phone { margin-top: -44px; width: min(240px, 64%); }

  .footer-inner { grid-template-columns: 1fr; gap: 2.2rem; }

  .panel-kpis { grid-template-columns: 1fr 1fr; }
  .panel-kpis .kpi:nth-child(3) {
    border-left: none;
    border-top: 1px solid var(--line);
    grid-column: 1 / -1;
  }

  .header-actions .btn { display: none; }
}

/* ---------- Rörelsekänslighet ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn { transition: none; }
}
