/* Teknikkompisen – färger från loggan: petrol, varm gul och mörkblå. */
:root {
  --teal: #0f766e;
  --teal-700: #115e59;
  --teal-800: #134e4a;
  --teal-400: #2dd4bf;
  --teal-100: #ccfbf1;
  --teal-50: #f0fdfa;
  --amber: #f59e0b;
  --amber-100: #fef3c7;
  --amber-700: #b45309;
  --ink: #1e293b;
  --ink-2: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f6f8f7;
  --danger: #b91c1c;

  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.05), 0 12px 32px -12px rgba(15, 23, 42, 0.14);
  --shadow-lg: 0 30px 60px -25px rgba(15, 118, 110, 0.45);
  --font: 'Segoe UI Variable Text', 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--teal); text-underline-offset: 3px; }
a:hover { color: var(--teal-700); }
h1, h2, h3 { line-height: 1.15; margin: 0; letter-spacing: -0.02em; color: var(--ink); }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 6px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; }
.skip:focus { top: 12px; color: #fff; }
.wrap { width: min(1160px, 100% - 40px); margin-inline: auto; }
.narrow { width: min(780px, 100% - 40px); }
.muted { color: var(--muted); }

/* ---------- Knappar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 10px 20px;
  border-radius: 999px; border: 2px solid transparent;
  font: inherit; font-size: 17px; font-weight: 650; line-height: 1.2;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease, color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 8px 20px -10px rgba(15, 118, 110, .8); }
.btn-primary:hover { background: var(--teal-700); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-lg { min-height: 56px; padding: 14px 26px; font-size: 18px; }
.btn[disabled] { opacity: .65; cursor: progress; }

/* ---------- Sidhuvud ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 20px -16px rgba(15, 23, 42, .35); }
.header-inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }
.brand-link { text-decoration: none; flex-shrink: 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-name { font-size: 23px; font-weight: 750; letter-spacing: -0.03em; color: var(--ink); }
.brand-name span { color: var(--teal); }
.brand-dark .brand-name { color: #fff; }
.brand-dark .brand-name span { color: var(--teal-400); }
.nav { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav ul { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav a:not(.btn) { display: block; padding: 8px 14px; border-radius: 999px; color: var(--ink-2); font-weight: 550; font-size: 16px; text-decoration: none; }
.nav a:not(.btn):hover { background: var(--teal-50); color: var(--teal); }
.nav-cta { display: none; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-phone { min-height: 44px; font-size: 16px; }
.menu-btn { display: none; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--ink); cursor: pointer; align-items: center; justify-content: center; }
.menu-btn .menu-close { display: none; }
.menu-btn[aria-expanded='true'] .menu-open { display: none; }
.menu-btn[aria-expanded='true'] .menu-close { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(40px, 7vw, 96px) 0 clamp(56px, 8vw, 110px);
  background:
    radial-gradient(900px 480px at 85% 10%, rgba(45, 212, 191, .18), transparent 60%),
    radial-gradient(700px 420px at 0% 100%, rgba(245, 158, 11, .10), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--teal-50) 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--teal-100); color: var(--teal-700); font-size: 15px; font-weight: 600; box-shadow: var(--shadow-sm); }
.hero h1 { margin: 18px 0 18px; font-size: clamp(2.3rem, 5vw, 3.9rem); font-weight: 780; letter-spacing: -0.035em; }
.mark { position: relative; color: var(--teal); white-space: nowrap; }
.mark::after { content: ''; position: absolute; left: 0; right: 0; bottom: .04em; height: .22em; background: var(--amber); opacity: .35; border-radius: 99px; z-index: -1; }
.hero-lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--ink-2); max-width: 36ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 26px; }
.trust { display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none; padding: 0; margin: 0; color: var(--ink-2); font-size: 16px; font-weight: 550; }
.trust li { display: inline-flex; align-items: center; gap: 7px; }
.trust .ic { color: #fff; background: var(--teal); border-radius: 50%; padding: 3px; width: 22px; height: 22px; }

.hero-visual { position: relative; }
.hero-card {
  position: relative; aspect-ratio: 1 / 0.95; border-radius: 36px;
  background: linear-gradient(150deg, #14b8a6 0%, var(--teal) 45%, var(--teal-800) 100%);
  box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
  isolation: isolate;
}
.hero-card::before {
  content: ''; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background-image: radial-gradient(rgba(255, 255, 255, .16) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at 50% 45%, #000 20%, transparent 75%);
}
.hero-glow { position: absolute; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255, 255, 255, .28), transparent 65%); z-index: -1; }
.hero-symbol { width: 44%; height: auto; filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .22)); }
.float {
  position: absolute; display: flex; align-items: center; gap: 10px;
  padding: 11px 14px 11px 12px; border-radius: 16px;
  background: #fff; color: var(--ink); font-size: 15px; font-weight: 600;
  box-shadow: 0 16px 34px -14px rgba(15, 23, 42, .45);
  animation: bob 6s ease-in-out infinite;
}
.float > .ic { color: var(--teal); }
.float i { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--teal-100); color: var(--teal); font-style: normal; }
.f1 { top: 12%; left: -6%; }
.f2 { top: 72%; right: -6%; animation-delay: -2s; }
.f3 { bottom: 5%; left: 6%; animation-delay: -4s; }
.badge-rut {
  position: absolute; top: 7%; right: 7%;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--amber); color: var(--ink);
  display: grid; place-content: center; text-align: center; line-height: 1.05;
  box-shadow: 0 12px 24px -10px rgba(180, 83, 9, .6);
  transform: rotate(8deg);
}
.badge-rut b { font-size: 25px; font-weight: 800; }
.badge-rut span { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
@keyframes bob { 50% { transform: translateY(-8px); } }

/* ---------- Sektioner ---------- */
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section.soft { background: var(--bg-soft); }
.section-head { max-width: 680px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.eyebrow { display: inline-block; margin-bottom: 10px; color: var(--teal); font-size: 14px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow.light { color: var(--teal-400); }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); font-weight: 760; }
.lead { margin-top: 14px; font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--muted); }

/* Tjänster */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--teal-100); }
.card-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; background: var(--teal-50); color: var(--teal); margin-bottom: 18px; }
.card:hover .card-icon { background: var(--teal); color: #fff; }
.card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: 16px; color: var(--muted); }

/* Steg */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; position: relative; }
.step { position: relative; background: #fff; border-radius: var(--radius); padding: 34px 28px 30px; box-shadow: var(--shadow); text-align: center; }
.step-no { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--amber); color: var(--ink); font-weight: 800; box-shadow: 0 0 0 6px var(--bg-soft); }
.step-icon { display: grid; place-items: center; width: 64px; height: 64px; margin: 6px auto 16px; border-radius: 20px; background: var(--teal-50); color: var(--teal); }
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 16px; }

/* Priser */
.prices { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 18px; align-items: stretch; }
.price { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.price.featured { background: linear-gradient(160deg, var(--teal) 0%, var(--teal-800) 100%); color: #fff; border-color: transparent; box-shadow: var(--shadow-lg); }
.price-label { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--teal); font-size: 16px; }
.featured .price-label { color: var(--teal-100); }
.price-big { margin-top: 14px; font-size: clamp(2.3rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
.price-big small { font-size: 18px; font-weight: 600; letter-spacing: 0; opacity: .8; margin-left: 4px; }
.price-sub { color: var(--muted); font-size: 15px; margin-top: 4px; }
.featured .price-sub { color: var(--teal-100); }
.ticks { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; font-size: 16px; }
.ticks li { display: flex; align-items: center; gap: 10px; }
.ticks .ic { color: var(--teal); flex-shrink: 0; }
.featured .ticks .ic { color: var(--amber); }
.ticks li.muted, .ticks li.muted .ic { color: var(--muted); }
.example { margin-top: 22px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; align-items: center; background: var(--amber-100); border-radius: var(--radius); padding: 28px 32px; }
.example h3 { font-size: 24px; margin-bottom: 6px; }
.example .eyebrow { color: var(--amber-700); margin-bottom: 6px; }
.example-text p:last-child { color: var(--ink-2); }
.example-calc { margin: 0; background: #fff; border-radius: var(--radius-sm); padding: 8px 20px; box-shadow: var(--shadow-sm); }
.example-calc div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 17px; }
.example-calc dt { color: var(--ink-2); }
.example-calc dd { margin: 0; font-weight: 650; font-variant-numeric: tabular-nums; }
.example-calc .minus dd { color: var(--teal); }
.example-calc .total { border-bottom: 0; font-size: 20px; }
.example-calc .total dt, .example-calc .total dd { font-weight: 800; color: var(--ink); }

/* Om mig */
.about { display: grid; grid-template-columns: 340px 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; max-width: 1000px; margin-inline: auto; }
.about-photo { position: relative; width: 100%; max-width: 340px; aspect-ratio: 1; margin-inline: auto; }
.about-photo img, .avatar { width: 100%; height: 100%; border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%; object-fit: cover; box-shadow: var(--shadow-lg); }
.avatar { display: grid; place-items: center; background: linear-gradient(150deg, #14b8a6, var(--teal) 50%, var(--teal-800)); color: #fff; font-size: 96px; font-weight: 800; letter-spacing: -0.04em; }
.about-badge { position: absolute; right: 6%; bottom: 6%; width: 72px; height: 72px; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: var(--shadow); }
.about-text .lead { margin: 0 0 16px; color: var(--ink-2); font-size: 1.25rem; }
.about-text > p:not(.lead) { color: var(--muted); }
.facts { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.facts li { display: flex; gap: 14px; align-items: center; }
.facts .ic { flex-shrink: 0; width: 44px; height: 44px; padding: 10px; border-radius: 14px; background: #fff; color: var(--teal); box-shadow: var(--shadow-sm); }

/* Frågor */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); transition: border-color .2s ease, box-shadow .2s ease; }
.faq details[open] { border-color: var(--teal-100); box-shadow: var(--shadow); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; font-size: 18px; font-weight: 650; }
.faq summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--teal-50); }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--teal); border-radius: 2px; transform: translate(-50%, -50%); transition: transform .2s ease; }
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq details[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq details p { padding: 0 24px 22px; color: var(--ink-2); }

/* Kontakt */
.contact { background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 0; border-radius: 32px; overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.contact-info { position: relative; padding: clamp(32px, 4vw, 52px); background: linear-gradient(160deg, var(--teal) 0%, var(--teal-800) 100%); color: #fff; overflow: hidden; }
.contact-info::after { content: ''; position: absolute; right: -80px; bottom: -80px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(245, 158, 11, .35), transparent 70%); }
.contact-info h2 { color: #fff; font-size: clamp(1.9rem, 3.2vw, 2.5rem); margin-bottom: 12px; }
.contact-info > p { color: var(--teal-100); }
.contact-list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 18px; position: relative; z-index: 1; }
.contact-list li { display: flex; gap: 14px; align-items: center; }
.contact-list li > span { display: grid; place-items: center; width: 48px; height: 48px; flex-shrink: 0; border-radius: 14px; background: rgba(255, 255, 255, .12); color: var(--teal-400); }
.contact-list small { display: block; color: var(--teal-100); font-size: 14px; }
.contact-list a { color: #fff; font-weight: 650; font-size: 19px; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.form-card { padding: clamp(28px, 4vw, 48px); }

.form { display: grid; gap: 18px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 6px; margin: 0; padding: 0; border: 0; min-width: 0; }
.field label, .field legend { font-size: 16px; font-weight: 650; color: var(--ink); padding: 0; }
.field legend { margin-bottom: 8px; }
.req { color: var(--amber-700); }
.opt { color: var(--muted); font-weight: 500; }
input[type='text'], input[type='tel'], input[type='email'], select, textarea {
  width: 100%; font: inherit; font-size: 17px; color: var(--ink);
  padding: 12px 14px; min-height: 50px;
  background: #fff; border: 1.5px solid #cbd5e1; border-radius: 12px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
textarea { resize: vertical; min-height: 130px; line-height: 1.5; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(20, 184, 166, .18); }
.field.has-error input, .field.has-error textarea { border-color: var(--danger); }
.error { color: var(--danger); font-size: 15px; min-height: 0; }
.error:empty { display: none; }
.chips, .radios { display: flex; flex-wrap: wrap; gap: 8px; }
.chip, .radio { position: relative; cursor: pointer; }
.chip input, .radio input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.chip span, .radio span { display: inline-flex; align-items: center; min-height: 44px; padding: 8px 16px; border-radius: 999px; border: 1.5px solid #cbd5e1; background: #fff; font-size: 16px; font-weight: 550; transition: all .15s ease; }
.chip input:checked + span, .radio input:checked + span { background: var(--teal); border-color: var(--teal); color: #fff; }
.chip input:checked + span::before { content: '✓'; margin-right: 6px; font-weight: 800; }
.chip input:focus-visible + span, .radio input:focus-visible + span { outline: 3px solid var(--amber); outline-offset: 2px; }
.chip:hover span, .radio:hover span { border-color: var(--teal); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; margin-top: 4px; }
.form-note { flex: 1 1 260px; font-size: 14px; color: var(--muted); }
.form-status:empty { display: none; }
.form-status { padding: 12px 16px; border-radius: 12px; background: #fef2f2; color: var(--danger); font-size: 16px; }
.form-done { text-align: center; padding: 40px 10px; }
.form-done h3 { font-size: 26px; margin: 18px 0 10px; }
.form-done p { color: var(--ink-2); }
.done-icon { display: inline-grid; place-items: center; width: 76px; height: 76px; border-radius: 50%; background: var(--teal-100); color: var(--teal); }
.done-icon.muted { background: var(--amber-100); color: var(--amber-700); }

/* ---------- Sidfot ---------- */
.site-footer { background: var(--ink); color: #cbd5e1; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; }
.footer-tag { margin-top: 14px; max-width: 32ch; font-size: 16px; }
.footer-h { color: #fff; font-size: 16px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 16px; }
.footer-list li, .footer-list a { display: flex; align-items: center; gap: 10px; color: #cbd5e1; text-decoration: none; }
.footer-list .ic { color: var(--teal-400); flex-shrink: 0; }
.footer-list a:hover { color: #fff; }
.footer-list.plain li { display: block; }
.footer-list.plain a { display: inline; text-decoration: underline; }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(255, 255, 255, .08); color: #fff; }
.social a:hover { background: var(--teal); }
.footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 14px; color: #94a3b8; }
.mobile-bar { display: none; }

/* ---------- Enkla sidor ---------- */
.simple { padding: clamp(48px, 8vw, 96px) 0; min-height: 60vh; background: linear-gradient(180deg, var(--teal-50), #fff 40%); }
.done-page { text-align: center; display: grid; justify-items: center; gap: 16px; padding: 40px 0; }
.done-page h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.prose h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 4px; }
.prose h2 { font-size: 22px; margin: 36px 0 10px; }
.prose p, .prose li { color: var(--ink-2); }
.prose ul { padding-left: 22px; }

/* ---------- Anpassning till skärmstorlek ---------- */
@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .header-phone span { display: none; }
  .header-phone { width: 48px; padding: 0; }
}
@media (max-width: 920px) {
  :root { --header-h: 68px; }
  .menu-btn { display: inline-flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; margin: 0;
    flex-direction: column; align-items: stretch; gap: 12px;
    padding: 16px 20px 24px; background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -24px rgba(15, 23, 42, .35);
    transform: translateY(-8px); opacity: 0; visibility: hidden; transition: all .2s ease;
  }
  .nav.open { transform: none; opacity: 1; visibility: visible; }
  .nav ul { flex-direction: column; }
  .nav a:not(.btn) { padding: 14px 12px; font-size: 18px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-cta { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; width: 100%; margin-inline: auto; }
  .steps { grid-template-columns: 1fr; gap: 34px; max-width: 520px; margin-inline: auto; }
  .prices { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .example { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .about { grid-template-columns: 1fr; text-align: left; }
  .about-photo { max-width: 260px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  body { font-size: 17px; padding-bottom: 76px; }
  .brand-name { font-size: 21px; }
  .brand .symbol { width: 34px; height: 34px; }
  .header-phone { display: none; }
  .cards { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .float { font-size: 13px; padding: 8px 10px; }
  .f1 { left: 4%; } .f2 { display: none; } .f3 { left: auto; right: 5%; }
  .badge-rut { width: 74px; height: 74px; } .badge-rut b { font-size: 20px; }
  .contact-grid { border-radius: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-foot .btn { width: 100%; }
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1.6fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
  }
  .mobile-bar .btn { min-height: 52px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- Tjänstesidor ---------- */
.card.has-link { position: relative; }
.card.has-link h3 a { color: inherit; text-decoration: none; }
.card.has-link h3 a::after { content: ''; position: absolute; inset: 0; border-radius: inherit; }
.card-more { display: inline-flex; align-items: center; gap: 4px; margin-top: 12px; color: var(--teal); font-size: 15px; font-weight: 650; }
.card.has-link:hover .card-more .ic { transform: translateX(3px); transition: transform .2s ease; }
.service-hero { padding: clamp(32px, 6vw, 72px) 0 clamp(40px, 6vw, 72px); background: radial-gradient(800px 420px at 90% 0%, rgba(45, 212, 191, .16), transparent 60%), linear-gradient(180deg, #fff, var(--teal-50)); }
.service-hero-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: clamp(24px, 5vw, 64px); align-items: center; }
.service-hero h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 780; letter-spacing: -0.03em; margin: 14px 0 14px; }
.crumbs { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: var(--muted); }
.card-icon.big { width: 68px; height: 68px; border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.price-mini { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); border: 1px solid var(--teal-100); }
.service-body { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 36px; }
.service-col { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.service-col h2, .service-h2 { font-size: clamp(1.4rem, 2.6vw, 1.8rem); margin-bottom: 8px; }
.service-h2 { margin: 40px 0 16px; text-align: center; }
.ticks.big { font-size: 17px; gap: 12px; }
.ticks.big li { align-items: flex-start; }
.ticks.big .ic { margin-top: 4px; }
.tip { display: flex; gap: 14px; align-items: flex-start; padding: 18px 22px; border-radius: var(--radius-sm); background: var(--amber-100); }
.tip .ic { color: var(--amber-700); flex-shrink: 0; margin-top: 2px; }
.cta-box { margin: 40px 0; padding: clamp(24px, 4vw, 40px); border-radius: var(--radius); background: linear-gradient(160deg, var(--teal), var(--teal-800)); color: #fff; text-align: center; }
.cta-box h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-box p { color: var(--teal-100); margin: 8px 0 20px; }
.cta-box .hero-cta { justify-content: center; margin: 0; }
.cta-box .btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .4); }
.cta-box .btn-ghost:hover { border-color: #fff; color: #fff; }
.cta-box .btn-primary { background: #fff; color: var(--teal-800); }
.other-services h2 { font-size: 18px; margin-bottom: 12px; text-align: center; }
.other-services .chips { justify-content: center; }
.chip-link { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; color: var(--ink); font-weight: 600; font-size: 16px; text-decoration: none; }
.chip-link .ic { color: var(--teal); }
.chip-link:hover { border-color: var(--teal); color: var(--teal); }

/* ---------- Omdömen ---------- */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.review { margin: 0; background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); display: grid; gap: 12px; }
.review blockquote { margin: 0; font-size: 17px; color: var(--ink-2); }
.review figcaption { color: var(--muted); font-size: 15px; }
.stars { color: var(--amber); font-size: 20px; letter-spacing: 2px; }
.stars-off { color: var(--line); }
.reviews-more { text-align: center; margin-top: 22px; }

@media (max-width: 920px) {
  .service-hero-grid, .service-body { grid-template-columns: 1fr; }
}

/* ---------- Hemsidans läge: banner, stängt formulär och informationssida ---------- */
.site-banner { position: relative; z-index: 40; padding: 12px 0; font-size: 16px; }
.site-banner-inner { display: flex; align-items: center; gap: 12px; }
.site-banner p { flex: 1; }
.site-banner-icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; }
.site-banner-vacation { background: var(--amber-100); color: #78350f; border-bottom: 1px solid #fde68a; }
.site-banner-vacation .site-banner-icon { background: var(--amber); color: var(--ink); }
.site-banner-info { background: var(--teal-50); color: var(--teal-800); border-bottom: 1px solid var(--teal-100); }
.site-banner-info .site-banner-icon { background: var(--teal); color: #fff; }
.site-banner-preview { background: #1e293b; color: #fff; }
.site-banner-preview .site-banner-icon { background: #3b82f6; color: #fff; }
.site-banner-link { color: #fff; font-weight: 700; }
.form-notice { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; padding: 14px 16px; border-radius: 14px; background: var(--amber-100); color: #78350f; }
.form-notice .ic { flex-shrink: 0; margin-top: 2px; }
.form-closed { text-align: center; padding: 30px 10px; display: grid; justify-items: center; gap: 10px; }
.form-closed .ic { color: var(--muted); }
.form-closed h3 { font-size: 24px; }
.form-closed-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 8px; }

.gate-body { background: linear-gradient(160deg, #14b8a6 0%, var(--teal) 40%, var(--teal-800) 100%); min-height: 100vh; padding-bottom: 0; }
.gate { width: min(1100px, 100% - 32px); margin: 0 auto; padding: clamp(28px, 6vw, 72px) 0 32px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: start; }
.gate:not(:has(.gate-form)) { grid-template-columns: minmax(0, 720px); justify-content: center; }
.gate-card { color: #fff; text-align: left; padding: clamp(8px, 2vw, 20px) 0; }
.gate-symbol { width: 86px; height: 86px; filter: drop-shadow(0 14px 24px rgba(0, 0, 0, .25)); }
.gate-brand { margin-top: 14px; font-size: 26px; font-weight: 800; letter-spacing: -0.03em; }
.gate-brand span { color: #99f6e4; }
.gate-pill { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; padding: 6px 14px; border-radius: 999px; background: rgba(255, 255, 255, .15); font-size: 15px; font-weight: 650; }
.gate h1 { color: #fff; margin: 14px 0 12px; font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.035em; }
.gate-text { font-size: clamp(1.1rem, 1.8vw, 1.3rem); color: var(--teal-100); max-width: 38ch; }
.gate-date { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 10px 16px; border-radius: 14px; background: var(--amber); color: var(--ink); font-weight: 750; }
.gate-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.gate-btn { background: #fff; color: var(--teal-800); }
.gate-btn:hover { color: var(--teal-800); transform: translateY(-1px); }
.gate-btn.ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .45); }
.gate-btn.ghost:hover { color: #fff; border-color: #fff; }
.gate-services { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; color: #fff; font-size: 16px; }
.gate-services li { display: flex; align-items: center; gap: 8px; }
.gate-services .ic { color: #99f6e4; }
.gate-form { background: #fff; border-radius: 26px; padding: clamp(22px, 3vw, 34px); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .5); }
.gate-form h2 { font-size: 24px; }
.gate-form > p { margin: 4px 0 16px; }
.gate-foot { text-align: center; color: var(--teal-100); font-size: 14px; padding: 18px 16px 28px; }
.gate-foot a { color: #fff; }
@media (max-width: 900px) {
  .gate { grid-template-columns: 1fr; }
  .gate-services { grid-template-columns: 1fr; }
}

/* ---------- Läsbarhet ---------- */
.a11y { position: relative; }
.a11y-btn { display: inline-grid; place-items: center; width: 48px; height: 44px; border-radius: 14px; border: 1px solid var(--line); background: #fff; color: var(--ink); font: inherit; font-size: 18px; font-weight: 800; letter-spacing: -0.02em; cursor: pointer; }
.a11y-btn:hover, .a11y-btn[aria-expanded='true'] { border-color: var(--teal); color: var(--teal); }
.a11y-menu { position: absolute; right: 0; top: calc(100% + 8px); z-index: 60; width: 240px; padding: 14px; border-radius: 16px; background: #fff; border: 1px solid var(--line); box-shadow: 0 24px 40px -20px rgba(15, 23, 42, .4); display: grid; gap: 6px; }
.a11y-title { font-size: 14px; font-weight: 750; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.a11y-option { display: flex; align-items: center; gap: 10px; padding: 8px 6px; border-radius: 10px; font-size: 17px; font-weight: 600; cursor: pointer; }
.a11y-option:hover { background: var(--teal-50); }
.a11y-option input { width: 22px; height: 22px; accent-color: var(--teal); }
html.text-large body { zoom: 1.18; }
html.contrast { --muted: #334155; --ink-2: #0f172a; --line: #64748b; --teal: #0b5953; --teal-100: #99f6e4; }
html.contrast body { color: #0f172a; }
html.contrast input[type='text'], html.contrast input[type='tel'], html.contrast input[type='email'], html.contrast input[type='number'], html.contrast select, html.contrast textarea { border-color: #334155; }
html.contrast main a:not(.btn):not(.chip-link) { text-decoration: underline; }
html.contrast .contact-info > p, html.contrast .contact-list small, html.contrast .price-sub, html.contrast .featured .price-sub { color: inherit; opacity: 1; }
html.contrast .card p, html.contrast .step p, html.contrast .lead { color: var(--ink-2); }

/* ---------- Priskalkyl ---------- */
.calc-box { margin-top: 22px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; align-items: start; background: #fff; border: 1px solid var(--teal-100); border-radius: var(--radius); padding: 28px 32px; box-shadow: var(--shadow); }
.calc-inputs { display: grid; gap: 18px; }
.calc-inputs h3 { font-size: 24px; margin-top: -6px; }
.calc-inputs .eyebrow { margin-bottom: 0; }
.calc-inputs label { display: flex; justify-content: space-between; gap: 10px; }
.calc-inputs output { color: var(--teal); font-weight: 800; }
input[type='range'] { width: 100%; accent-color: var(--teal); height: 32px; }
.range-scale { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); margin-top: -6px; }
input[type='number'] { width: 100%; font: inherit; font-size: 17px; color: var(--ink); padding: 12px 14px; min-height: 50px; background: #fff; border: 1.5px solid #cbd5e1; border-radius: 12px; }
.calc-result { display: grid; gap: 14px; justify-items: start; }
.calc-result .example-calc { width: 100%; background: var(--teal-50); box-shadow: none; }
.calc-result .example-calc small { display: block; font-size: 13px; color: var(--muted); }
.calc-note { font-size: 14px; color: var(--muted); }

/* ---------- Tidsväljare ---------- */
.slot-picker { gap: 10px; }
.slot-help { font-size: 15px; color: var(--muted); margin-top: -6px; }
.slot-days { display: flex; gap: 8px; overflow-x: auto; padding: 2px 2px 8px; scrollbar-width: thin; }
.slot-day-btn { flex: 0 0 auto; display: grid; justify-items: center; gap: 0; width: 64px; padding: 8px 4px; border-radius: 14px; border: 1.5px solid #cbd5e1; background: #fff; color: var(--ink); font: inherit; line-height: 1.2; cursor: pointer; }
.slot-day-btn small { font-size: 12px; font-weight: 650; color: var(--muted); text-transform: uppercase; }
.slot-day-btn b { font-size: 22px; font-weight: 800; }
.slot-day-btn:hover { border-color: var(--teal); }
.slot-day-btn[aria-pressed='true'] { background: var(--teal); border-color: var(--teal); color: #fff; }
.slot-day-btn[aria-pressed='true'] small { color: var(--teal-100); }
.slot-day { display: grid; gap: 8px; }
.slot-day + .slot-day { margin-top: 6px; }
.slot-day-title { font-size: 15px; font-weight: 700; color: var(--ink-2); }
.slot-picker.is-enhanced .slot-day-title { display: none; }
.slot-none { margin-top: 4px; }
.slot-none span { font-size: 15px; }
.done-slot { margin-top: 10px; }

/* ---------- Tips ---------- */
.tip-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tip-card h3 { font-size: 20px; }
.tips-hero { text-align: left; }
.tips-hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 780; letter-spacing: -0.03em; margin: 14px 0; }
.tip-meta { display: flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--muted); font-size: 15px; }
.tip-section { padding-top: clamp(32px, 5vw, 56px); }
.tip-article h2 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); margin: 34px 0 10px; }
.tip-article h2:first-child { margin-top: 0; }
.tip-article p { font-size: 18px; margin-bottom: 12px; }
.tip-article .ticks { margin-top: 8px; }
.tip-article .cta-box h2 { margin: 0; }
.tip-article .cta-box p { font-size: inherit; }
.narrow-box { max-width: 780px; margin-inline: auto; }

/* ---------- Kundens bokningssida ---------- */
.booking { display: grid; gap: 16px; }
.booking h1 { font-size: clamp(2rem, 4vw, 2.6rem); }
.booking .eyebrow { margin-bottom: -8px; }
.booking-card { position: relative; display: grid; gap: 8px; padding: 26px 26px 24px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.booking-card.is-question { border-color: #93c5fd; }
.booking-card.is-done { border-color: #86efac; background: linear-gradient(180deg, #f0fdf4, #fff); }
.booking-icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; background: var(--teal-50); color: var(--teal); margin-bottom: 6px; }
.is-question .booking-icon { background: #dbeafe; color: #1d4ed8; }
.is-done .booking-icon { background: #dcfce7; color: #15803d; }
.booking-kicker { font-weight: 700; color: var(--muted); }
.booking-time { font-size: clamp(1.5rem, 3.4vw, 2rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; }
.booking-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.booking-message { margin: 6px 0 0; padding: 12px 16px; border-radius: 14px; background: var(--amber-100); color: #78350f; }
.booking-message cite { display: block; margin-top: 4px; font-style: normal; font-weight: 700; font-size: 15px; }
.booking-choose { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; padding: 4px 18px; }
.booking-choose[open] { padding-bottom: 18px; }
.booking-choose summary { cursor: pointer; padding: 12px 0; font-weight: 700; color: var(--teal); }
.booking-secondary { margin: 0; }
.booking-flash { padding: 12px 16px; border-radius: 12px; font-weight: 600; }
.booking-flash-ok { background: #dcfce7; color: #166534; }
.booking-flash-error { background: #fef2f2; color: var(--danger); }
.booking-foot { font-size: 15px; }
.booking-body .header-inner { justify-content: space-between; }

@media (max-width: 920px) {
  .calc-box { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; padding: 24px; }
  .tip-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .tip-cards { grid-template-columns: 1fr; }
  .a11y-btn { width: 44px; }
  .booking-actions .btn { width: 100%; }
}
/* Rut-val */
.field-help { font-size: 14px; color: var(--muted); margin-top: 2px; }
.calc-switch { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 650; cursor: pointer; }
.calc-switch input { width: 22px; height: 22px; accent-color: var(--teal); }
/* Min bokning */
.booking-facts { margin: 0; display: grid; gap: 0; padding: 6px 20px; border-radius: var(--radius-sm); background: #fff; border: 1px solid var(--line); }
.booking-facts div { display: grid; grid-template-columns: 110px 1fr; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.booking-facts div:last-child { border-bottom: 0; }
.booking-facts dt { color: var(--muted); font-size: 15px; }
.booking-facts dd { margin: 0; font-size: 16px; }
.booking-sections { display: grid; gap: 10px; }
.booking-choose summary { display: flex; align-items: center; gap: 8px; }
.booking-cancel summary { color: var(--danger); }
@media (max-width: 640px) { .booking-facts div { grid-template-columns: 1fr; gap: 2px; } }
/* Priskalkyl: vanliga uppdrag med ungefärlig tid */
.calc-head, .calc-tasks { grid-column: 1 / -1; }
.calc-head h3 { font-size: 24px; margin-top: 2px; }
.calc-head .eyebrow { margin-bottom: 0; }
.calc-tasks { border: 0; margin: -8px 0 0; padding: 0; min-width: 0; }
.calc-tasks legend { padding: 0; margin-bottom: 10px; font-size: 16px; font-weight: 650; }
.calc-tasks legend .opt { display: block; font-size: 14px; }
.task-groups { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 12px 16px; }
.task-group-title { font-size: 13px; font-weight: 750; color: var(--teal); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.task-list { display: grid; gap: 6px; }
.task-chip { position: relative; cursor: pointer; }
.task-chip input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.task-chip span { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 12px; border: 1.5px solid #cbd5e1; background: #fff; font-size: 15px; font-weight: 550; line-height: 1.3; transition: all .15s ease; }
.task-chip small { flex-shrink: 0; font-size: 13px; font-weight: 700; color: var(--muted); }
.task-chip:hover span { border-color: var(--teal); }
.task-chip input:checked + span { background: var(--teal); border-color: var(--teal); color: #fff; }
.task-chip input:checked + span small { color: var(--teal-100); }
.task-chip input:focus-visible + span { outline: 3px solid var(--amber); outline-offset: 2px; }.calc-inputs .calc-switch { justify-content: flex-start; }

/* Krav för BankID och Swish */
.requirements { list-style: none; margin: 8px 0; padding: 0; display: grid; gap: 8px; }
.requirements li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.45; }
.requirements .ic { flex-shrink: 0; margin-top: 3px; color: var(--teal); }
.calc-requirements { margin-top: 14px; padding: 14px 16px; border-radius: var(--radius-sm); background: var(--amber-100); }
.calc-requirements-title { display: flex; align-items: center; gap: 8px; font-weight: 700; color: #78350f; }
.calc-requirements-title .ic { color: var(--amber-700); }
.requirements-box { margin-top: 28px; padding: clamp(18px, 3vw, 26px); border-radius: var(--radius); background: #fff; border: 1px solid var(--teal-100); box-shadow: var(--shadow-sm); }
.requirements-box .service-h2 { margin: 0 0 8px; text-align: left; }
.requirements-box .requirements li { font-size: 17px; }
/* Varor att köpa till vid besöket */
.addon-picker { gap: 10px; }
.addon-list { display: grid; gap: 8px; }
.addon-card { display: grid; grid-template-columns: 72px 1fr auto; gap: 12px; align-items: center; padding: 10px; border-radius: 14px; border: 1.5px solid var(--line); background: #fff; }
.addon-card img, .addon-noimg { width: 72px; height: 72px; border-radius: 10px; object-fit: cover; background: var(--bg-soft); }
.addon-noimg { display: grid; place-items: center; color: var(--muted); }
.addon-info { display: grid; gap: 2px; min-width: 0; }
.addon-info b { font-size: 16px; }
.addon-info small { color: var(--muted); font-size: 14px; line-height: 1.35; }
.addon-price { font-weight: 750; color: var(--teal); }
.addon-qty select { min-height: 44px; width: auto; min-width: 110px; }
.addon-total { font-weight: 700; color: var(--ink); }
@media (max-width: 640px) { .addon-card { grid-template-columns: 56px 1fr; } .addon-card img, .addon-noimg { width: 56px; height: 56px; } .addon-qty { grid-column: 1 / -1; } .addon-qty select { width: 100%; } }