/* ============================================
   TOKENS
   ============================================ */
:root {
  --bg:        #FAFAF7;
  --surface:   #ffffff;
  --ink:       #0A0A0A;
  --ink-2:     #3a3a3a;
  --ink-3:     #6B6B6B;
  --line:      #ECECE5;
  --line-2:    #DCDCD2;
  --border-interactive: #8A8A82;

  --accent:    #00C853;
  --accent-2:  #2E7D32;
  --accent-ink:#062712;

  --radius:    14px;
  --radius-lg: 22px;

  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --shadow-sm: 0 1px 2px rgba(10,10,10,.04), 0 2px 6px rgba(10,10,10,.04);
  --shadow-md: 0 6px 24px rgba(10,10,10,.06), 0 2px 8px rgba(10,10,10,.04);
  --shadow-lg: 0 24px 60px rgba(10,10,10,.10), 0 8px 24px rgba(10,10,10,.06);

  --ease: cubic-bezier(.22,1,.36,1);
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-wrap: break-word;
}
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
fieldset { border: 0; min-width: 0; }
legend { padding: 0; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; height: auto; display: block; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: rgba(250,250,247,.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.nav.is-stuck { border-bottom-color: var(--line); }
.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__brand {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav__separator {
  font-weight: 400;
  color: var(--line-2);
  font-size: 18px;
}
.nav__tag {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-3);
  letter-spacing: 0;
}

@media (max-width: 480px) {
  .nav__tag, .nav__separator { display: none; }
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 6px 8px;
  border-radius: 6px;
  transition: color .15s var(--ease);
  white-space: nowrap;
}
.nav__links a:hover { color: var(--ink); }
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s var(--ease), opacity .15s;
}
.nav--open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--open .nav__burger span:nth-child(2) { opacity: 0; }
.nav--open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 900px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(250,250,247,.97);
    backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--line);
    padding: 4px 24px 16px;
    gap: 0;
  }
  .nav--open .nav__links { display: flex; }
  .nav__links a {
    font-size: 16px;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav__links a:last-child { border-bottom: none; }
  .nav__burger { display: flex; }
}

.nav__cta {
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  transition: transform .15s var(--ease), background .15s var(--ease);
}
.nav__cta:hover { transform: translateY(-1px); background: #1a1a1a; }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: clamp(48px, 10vw, 120px) 24px clamp(64px, 12vw, 140px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -20% auto -20%;
  height: 70%;
  background: radial-gradient(60% 60% at 50% 0%, rgba(0,200,83,.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.hero__title {
  font-size: clamp(34px, 6.5vw, 76px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: clamp(16px, 2.2vw, 22px);
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.45;
}
.hero__note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-3);
}
.hero__accent {
  color: var(--accent-2);
  font-weight: 500;
}
.hero__stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}
.hero__stack li {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-2);
}

/* ============================================
   TEAM
   ============================================ */
.team {
  padding: clamp(64px, 10vw, 120px) 24px;
}
.team__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
/* Desktop: polaroid-stil */
.team__collage {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 32px 8px 0;
}

.collage-card {
  position: relative;
  flex-shrink: 0;
  width: clamp(130px, 16vw, 175px);
  background: #fff;
  padding: 8px 8px 48px;
  border-radius: 3px;
  box-shadow:
    0 4px 12px rgba(10,10,10,.08),
    0 12px 40px rgba(10,10,10,.10);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  cursor: default;
}
.collage-card:hover {
  box-shadow:
    0 8px 20px rgba(10,10,10,.10),
    0 24px 60px rgba(10,10,10,.14);
}
.collage-card:nth-child(1) { transform: rotate(-5deg) translateY(18px); z-index: 1; margin-right: -28px; }
.collage-card:nth-child(1):hover { transform: rotate(-5deg) translateY(8px) scale(1.04); z-index: 10; }
.collage-card:nth-child(2) { transform: rotate(-3deg) translateY(10px); z-index: 2; margin-right: -24px; }
.collage-card:nth-child(2):hover { transform: rotate(-3deg) translateY(0px) scale(1.04); z-index: 10; }
.collage-card:nth-child(3) { transform: rotate(4deg) translateY(0px); z-index: 1; }
.collage-card:nth-child(3):hover { transform: rotate(4deg) translateY(-10px) scale(1.04); z-index: 10; }

.collage-card__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  display: block;
  background: var(--line);
}

.collage-card__name {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}

.team__title {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 16px 0 20px;
}
.team__body {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 460px;
}
.team__sign {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.01em;
}

/* Mobil: cirkulära avatarer */
@media (max-width: 760px) {
  .team__inner { grid-template-columns: 1fr; }
  .team__collage {
    align-items: flex-start;
    gap: clamp(16px, 4vw, 32px);
    padding: 24px 16px 0;
  }
  .collage-card {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: clamp(80px, 26vw, 110px);
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .collage-card:hover { box-shadow: none; }
  .collage-card:nth-child(1),
  .collage-card:nth-child(2),
  .collage-card:nth-child(3) { transform: none; margin: 0; z-index: auto; }
  .collage-card:nth-child(1):hover,
  .collage-card:nth-child(2):hover,
  .collage-card:nth-child(3):hover { transform: none; z-index: auto; }
  .collage-card__img {
    aspect-ratio: 1;
    border-radius: 50%;
  }
  .collage-card__name {
    position: static;
    bottom: auto;
  }
}

/* ============================================
   AI STATS STRIP
   ============================================ */
.ai-stats {
  background: var(--ink);
  padding: 40px 24px;
}
.ai-stats__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  gap: 0;
}
.ai-stats__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 32px;
  border-left: 1px solid rgba(255,255,255,.1);
}
.ai-stats__item:first-child {
  border-left: none;
  padding-left: 0;
}
.ai-stats__item:last-child {
  padding-right: 0;
}
.ai-stats__num {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.ai-stats__label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  line-height: 1.4;
  margin: 0;
}
.ai-stats__source {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.02em;
}
@media (max-width: 720px) {
  .ai-stats__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .ai-stats__item {
    border-left: none;
    padding: 0;
  }
}
@media (max-width: 400px) {
  .ai-stats__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================
   WHY US
   ============================================ */
.why {
  padding: clamp(64px, 10vw, 120px) 24px;
  background: var(--ink);
  color: var(--bg);
}
.why__inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.why .eyebrow--ink {
  color: rgba(255,255,255,.6);
}
.why .eyebrow--ink::before {
  background: var(--accent);
}
.why__title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--bg);
  margin: 20px auto 56px;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}

.why-card {
  position: relative;
  padding: 32px 28px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.why-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}

.why-card--offer {
  border-color: var(--accent);
  background: rgba(0,200,83,.08);
  box-shadow: 0 0 0 1px var(--accent), 0 16px 48px rgba(0,200,83,.15);
}
.why-card--offer:hover {
  background: rgba(0,200,83,.12);
  border-color: var(--accent);
}

.why-card__badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent);
  padding: 5px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

.why-card__price {
  font-size: clamp(52px, 8vw, 80px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--accent);
}

.why-card__icon {
  font-size: 28px;
  line-height: 1;
}

.why-card__title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.2;
}

.why-card__body {
  font-size: 15px;
  color: #9a9a93;
  line-height: 1.6;
  flex: 1;
}

.why-card__spots {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
}

@media (max-width: 760px) {
  .why__grid { grid-template-columns: 1fr; gap: 12px; }
  .why-card { padding: 26px 22px; }
  .why-card--offer { order: -1; }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: clamp(64px, 10vw, 120px) 24px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services__inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.services__title {
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 16px 0 16px;
}
.services__lead {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 580px;
  margin: 0 auto 56px;
  line-height: 1.5;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
}
.service {
  position: relative;
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.service:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
  box-shadow: var(--shadow-md);
}
.service__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0,200,83,.12);
  color: var(--accent-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service__icon svg { width: 22px; height: 22px; }
.service__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.service__desc {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
  margin-bottom: 20px;
}
.service--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.service__wide-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service__wide-right {
  border-top: none;
  padding-top: 0;
  padding-left: 32px;
  border-left: 1px solid var(--line);
  align-self: center;
}

.service__bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.service__bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.4;
}
.service__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 7px;
  border-left: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
  transform: rotate(-45deg);
}

@media (max-width: 760px) {
  .services__grid { grid-template-columns: 1fr; }
  .service--wide { grid-template-columns: 1fr; gap: 20px; }
  .service__wide-right { padding-left: 0; border-left: none; border-top: 1px solid var(--line); padding-top: 20px; }
}

/* ============================================
   MODEL
   ============================================ */
.model {
  padding: clamp(64px, 10vw, 120px) 24px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.model__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}
.model__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.model__title {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.model__body {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.65;
}

.model__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}
.model__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.model__item:first-child { border-top: 1px solid var(--line); }
.model__check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 15px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.model__item strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.model__item p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}

@media (max-width: 760px) {
  .model__inner { grid-template-columns: 1fr; gap: 40px; }
  .model__left { position: static; }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: clamp(64px, 10vw, 120px) 24px;
}
.faq__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.faq__title {
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 16px 0 48px;
}
.faq__list {
  text-align: left;
  margin-bottom: 56px;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  cursor: pointer;
  list-style: none;
  padding: 22px 48px 22px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  transition: color .15s var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--accent-2); }
.faq__q::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--ink-2);
  border-bottom: 2px solid var(--ink-2);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .25s var(--ease), border-color .15s var(--ease);
}
.faq__item[open] .faq__q::after {
  transform: translateY(-30%) rotate(-135deg);
  border-color: var(--accent-2);
}
.faq__a {
  padding: 0 0 22px 0;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 680px;
  animation: faqOpen .25s var(--ease);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.faq__cta-text {
  font-size: 16px;
  color: var(--ink-2);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how {
  padding: clamp(64px, 10vw, 120px) 24px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.how__inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.eyebrow--ink {
  color: var(--ink-2);
}
.eyebrow--ink::before { background: var(--ink-2); }

.how__title {
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 16px auto 56px;
  max-width: 720px;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
  text-align: left;
  counter-reset: step;
}
.step-card {
  position: relative;
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.step-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
  box-shadow: var(--shadow-md);
}
.step-card__num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  margin-bottom: 4px;
}
.step-card__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.step-card__desc {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}

.how__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.how__note {
  font-size: 13px;
  color: var(--ink-3);
}

@media (max-width: 760px) {
  .steps-list { grid-template-columns: 1fr; gap: 12px; }
  .step-card { padding: 24px 22px; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .15s var(--ease), opacity .15s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: #1a1a1a; }
.btn--primary:active { transform: translateY(0); }
.btn--primary:disabled { opacity: 0.35; cursor: not-allowed; transform: none; box-shadow: none; }

.btn--secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn--secondary:hover { transform: translateY(-1px); border-color: var(--ink); }

.btn--lg {
  font-size: 17px;
  padding: 18px 32px;
}
.btn--full { width: 100%; }
.btn span[aria-hidden] { transition: transform .2s var(--ease); }
.btn:hover span[aria-hidden] { transform: translateX(3px); }

/* ============================================
   FUNNEL
   ============================================ */
.funnel {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.funnel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.funnel__topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  padding-top: max(20px, env(safe-area-inset-top));
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.funnel__back,
.funnel__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ink-2);
  transition: background .15s var(--ease), color .15s var(--ease);
}
.funnel__back:hover,
.funnel__close:hover { background: var(--line); color: var(--ink); }
.funnel__back[hidden] { visibility: hidden; }

.funnel__progress {
  flex: 1;
  height: 4px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.funnel__progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 999px;
  transition: width .4s var(--ease);
}

.funnel__form {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  padding-bottom: env(safe-area-inset-bottom);
}

/* ============================================
   FUNNEL HEADER
   ============================================ */
.funnel__header {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px) 24px clamp(0px, 2vw, 8px);
  text-align: center;
}
.funnel__header-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 10px;
}
.funnel__header-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}

/* ============================================
   STEPS
   ============================================ */
.step {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 72px) 24px clamp(40px, 8vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: stepIn .4s var(--ease);
}
.step[hidden] { display: none; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.step__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.step__title {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.step__sub {
  font-size: 16px;
  color: var(--ink-2);
  margin-top: -16px;
}

/* ============================================
   OPTIONS
   ============================================ */
.options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.options--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.options--grid .option--wide { grid-column: 1 / -1; }

.option {
  position: relative;
  display: block;
  cursor: pointer;
  background: var(--surface);
  border: 1.5px solid var(--border-interactive);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: border-color .15s var(--ease), background .15s var(--ease), transform .15s var(--ease);
}
.option:hover { border-color: var(--line-2); transform: translateY(-1px); }
.option input { position: absolute; opacity: 0; pointer-events: none; }
.option__label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
}
.option--row .option__label { flex-direction: row; align-items: center; justify-content: space-between; }
.option__title {
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.option__desc {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.4;
}
.option:has(input:checked) {
  border-color: var(--accent-2);
  background: rgba(46,125,50,.06);
}
.option:has(input:checked)::after {
  content: "✓";
  position: absolute;
  top: 14px;
  right: 16px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-2);
  color: white;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.option--row:has(input:checked)::after { top: 50%; transform: translateY(-50%); }

/* ============================================
   FIELDS
   ============================================ */
.fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}
.field__opt {
  font-weight: 400;
  color: var(--ink-3);
}
.field input {
  background: var(--surface);
  border: 1.5px solid var(--border-interactive);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 16px;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
  width: 100%;
}
.field input::placeholder { color: var(--ink-3); }
.field input:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(46,125,50,.15);
}
.field input:invalid:not(:placeholder-shown) {
  border-color: #e63946;
}

.legal {
  font-size: 12px;
  color: var(--ink-3);
  text-align: center;
}

/* ============================================
   WEBSITE STEP
   ============================================ */
.website-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.option--ingen {
  border-style: dashed;
  border-color: var(--line-2);
  background: var(--bg);
}
.option--ingen:hover {
  border-color: var(--ink-2);
  transform: none;
  box-shadow: none;
}
.option--ingen:has(input:checked) {
  border-color: var(--ink);
  background: rgba(10,10,10,.04);
}
.option--ingen:has(input:checked)::after {
  background: var(--ink);
}
.field input.is-dimmed {
  opacity: 0.4;
  color: var(--ink-3);
}

/* ============================================
   DONE
   ============================================ */
.step--done { text-align: center; align-items: center; }
.done {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
}
.done__check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-2);
  color: white;
  font-size: 36px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: pop .5s var(--ease);
  margin-bottom: 8px;
}
@keyframes pop {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.done__countdown {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: -8px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   RESPONSIVE — TABLET / SMALL DESKTOP
   ============================================ */
@media (max-width: 900px) {
  .hero { padding-left: 20px; padding-right: 20px; }
  .team, .services, .how, .faq, .how-connects, .who { padding-left: 20px; padding-right: 20px; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤ 540px)
   ============================================ */
@media (max-width: 540px) {
  .nav { padding: 14px 18px; }
  .nav__logo { font-size: 20px; }
  .nav__cta { padding: 9px 16px; font-size: 13px; }

  .hero { padding: 56px 18px 72px; }
  .hero::before { height: 50%; }
  .hero__inner { max-width: 100%; }
  .hero__sub { margin-bottom: 28px; }
  .hero__note { font-size: 12px; line-height: 1.5; }
  .hero__stack { margin-top: 36px; gap: 6px; }
  .hero__stack li { font-size: 12px; padding: 7px 12px; }

  .eyebrow { font-size: 11px; padding: 7px 12px; }

  .btn { padding: 13px 22px; font-size: 14px; }
  .btn--lg { padding: 16px 26px; font-size: 16px; }

  .team { padding: 56px 18px; }
  .team__inner { gap: 28px; }
  .team__title { font-size: 28px; }
  .team__body { font-size: 16px; }

  .services { padding: 56px 18px; }
  .services__title { font-size: 32px; }
  .services__lead { font-size: 16px; margin-bottom: 36px; }
  .services__grid { grid-template-columns: 1fr; gap: 12px; }
  .service { padding: 26px 22px; }
  .service__icon { width: 40px; height: 40px; margin-bottom: 16px; }
  .service__title { font-size: 20px; }

  .how { padding: 56px 18px; }
  .how__title { font-size: 32px; margin-bottom: 36px; }
  .steps-list { grid-template-columns: 1fr; gap: 12px; margin-bottom: 36px; }
  .step-card { padding: 24px 22px; }

  .faq { padding: 56px 18px; }
  .faq__title { font-size: 32px; margin-bottom: 32px; }
  .faq__q { font-size: 16px; padding: 18px 36px 18px 0; }
  .faq__a { font-size: 15px; padding-bottom: 18px; }

  .step {
    padding: 28px 18px 36px;
    gap: 20px;
  }
  .step__title { font-size: 28px; }
  .step__sub { font-size: 15px; margin-top: -12px; }

  .options { gap: 8px; }
  .options--grid { grid-template-columns: 1fr; }
  .options--grid .option--wide { grid-column: auto; }
  .option { padding: 16px 18px; }
  .option__title { font-size: 15px; }
  .option__desc { font-size: 12px; }

  .field input { padding: 13px 14px; font-size: 16px; /* keep 16px to avoid iOS zoom */ }

  .funnel__topbar { padding: 14px 18px; gap: 12px; }
  .funnel__back, .funnel__close { width: 36px; height: 36px; font-size: 16px; }

  .footer { padding: 56px 20px 32px; }
  .footer__top {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    padding-bottom: 36px;
    margin-bottom: 36px;
  }
  .footer__brand { max-width: 100%; }
  .footer__logo { font-size: 44px; }
  .footer__tag { font-size: 16px; }
  .footer__top .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 36px; }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
  }
}

/* ============================================
   RESPONSIVE — VERY SMALL (≤ 380px)
   ============================================ */
@media (max-width: 380px) {
  .hero { padding: 48px 16px 60px; }
  .team, .services, .how, .faq, .how-connects, .who { padding-left: 16px; padding-right: 16px; }
  .footer { padding-left: 16px; padding-right: 16px; }
  .step { padding-left: 16px; padding-right: 16px; }
  .funnel__topbar { padding: 12px 16px; }

  .hero__title { font-size: 30px; }
  .step__title { font-size: 26px; }
  .services__title, .how__title, .faq__title { font-size: 28px; }

  .footer__grid { grid-template-columns: 1fr; gap: 22px; }
  .footer__logo { font-size: 40px; }
}

/* ============================================
   LANDSCAPE PHONE (short height)
   ============================================ */
@media (max-height: 560px) and (orientation: landscape) {
  .hero { padding-top: 32px; padding-bottom: 40px; }
  .step { padding-top: 24px; padding-bottom: 28px; }
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--ink-3);
  transition: color .15s var(--ease);
}
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span[aria-current] { color: var(--ink-2); font-weight: 500; }

/* ============================================
   PAGE HERO (tjänstesidor)
   ============================================ */
.page-hero {
  padding: clamp(40px, 8vw, 100px) 24px clamp(56px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: -20% -20% auto -20%;
  height: 70%;
  background: radial-gradient(60% 60% at 50% 0%, rgba(0,200,83,.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.page-hero__title {
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.page-hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.page-hero__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  margin-bottom: 32px;
}
.page-hero__tags li {
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-2);
}

/* ============================================
   SERVICE FEATURES (vad ingår)
   ============================================ */
.svc-features {
  padding: clamp(64px, 10vw, 120px) 24px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.svc-features__inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.svc-features__title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 16px 0 48px;
}
.svc-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
}
.svc-card {
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.svc-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
  box-shadow: var(--shadow-md);
}
.svc-card__link {
  margin-top: auto;
  padding-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  align-self: flex-start;
}
.svc-card__link:hover { text-decoration: underline; }
.svc-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0,200,83,.12);
  color: var(--accent-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.svc-card__icon svg { width: 22px; height: 22px; }
.svc-card__title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.svc-card__desc {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}

@media (max-width: 640px) {
  .svc-features__grid { grid-template-columns: 1fr; }
  .svc-card { padding: 26px 22px; }
}

/* ============================================
   SERVICE EXPLAIN (SEO vs AIO)
   ============================================ */
.svc-explain {
  padding: clamp(64px, 10vw, 120px) 24px;
}
.svc-explain__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}
.svc-explain__title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 16px 0 20px;
}
.svc-explain__body {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 16px;
}
.svc-explain__facts {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}
.svc-explain__facts li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.svc-explain__facts li:first-child { border-top: 1px solid var(--line); }
.svc-explain__facts strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.svc-explain__facts span {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}

@media (max-width: 760px) {
  .svc-explain__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   SERVICE PROCESS (hur vi jobbar)
   ============================================ */
.svc-process {
  padding: clamp(64px, 10vw, 120px) 24px;
  background: var(--ink);
  color: var(--bg);
}
.svc-process__inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.svc-process .eyebrow--ink {
  color: rgba(255,255,255,.45);
}
.svc-process .eyebrow--ink::before { background: var(--accent); }
.svc-process__title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--bg);
  margin: 20px auto 56px;
  max-width: 640px;
}
.svc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}
.svc-step {
  padding: 32px 28px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.svc-step:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}
.svc-step__num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.svc-step__title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.svc-step__desc {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}

@media (max-width: 760px) {
  .svc-steps { grid-template-columns: 1fr; gap: 12px; }
  .svc-step { padding: 24px 22px; }
}

/* ============================================
   SERVICE WHOM (för vem)
   ============================================ */
.svc-whom {
  padding: clamp(64px, 10vw, 120px) 24px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.svc-whom__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.svc-whom__title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 16px 0 40px;
}
.svc-whom__list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.svc-whom__list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.svc-whom__check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.svc-whom__list strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.svc-whom__list p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: clamp(64px, 10vw, 120px) 24px;
  background: var(--bg);
}
.cta-banner__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-banner__title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.cta-banner__sub {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 520px;
}

/* ============================================
   HOW IT CONNECTS
   ============================================ */
.how-connects {
  padding: clamp(64px, 10vw, 120px) 24px;
  background: var(--ink);
  color: var(--bg);
}
.how-connects__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.how-connects .eyebrow--ink {
  color: rgba(255,255,255,.45);
}
.how-connects .eyebrow--ink::before {
  background: var(--accent);
}
.how-connects__title {
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--bg);
  margin: 20px auto 32px;
}
.how-connects__body {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 16px;
}
.how-connects__body:last-child { margin-bottom: 0; }

/* ============================================
   WHO WE WORK WITH
   ============================================ */
.who {
  padding: clamp(64px, 10vw, 120px) 24px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.who__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.who__title {
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}
.who__body {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 580px;
}
.who__list {
  width: 100%;
  max-width: 540px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.who__list li {
  padding: 16px 0 16px 32px;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.4;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.who__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 14px;
  height: 7px;
  border-left: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
  transform: rotate(-45deg);
}

@media (max-width: 540px) {
  .how-connects { padding: 56px 18px; }
  .how-connects__title { font-size: 30px; }
  .how-connects__body { font-size: 16px; }
  .who { padding: 56px 18px; }
  .who__title { font-size: 30px; }
  .who__body { font-size: 16px; }
  .who__list li { font-size: 15px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: #d6d6d2;
  padding: clamp(56px, 8vw, 96px) 24px clamp(28px, 4vw, 40px);
}
.footer__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.footer__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 48px;
}
.footer__brand { max-width: 520px; }
.footer__logo {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--bg);
  margin-bottom: 12px;
}
.footer__tag {
  font-size: clamp(17px, 2vw, 20px);
  color: #9a9a93;
  max-width: 420px;
}

.btn--accent {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 6px 20px rgba(0,200,83,.30);
}
.btn--accent:hover {
  background: var(--accent-2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,200,83,.35);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
}
.footer__col a,
.footer__col span { color: var(--bg); }
.footer__col a {
  transition: color .15s var(--ease);
}
.footer__col a:hover { color: var(--accent); }
.footer__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8A8A83;
  margin-bottom: 4px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #8A8A83;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__bottom span[aria-hidden] { color: var(--accent); }
.footer__bottom a { color: #8A8A83; text-decoration: none; }
.footer__bottom a:hover { color: #fff; }

/* ============================================
   INTEGRITETSPOLICY
   ============================================ */
.policy {
  padding: clamp(80px, 12vw, 140px) 24px clamp(64px, 10vw, 120px);
}
.policy__inner {
  max-width: 720px;
  margin: 0 auto;
}
.policy__header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.policy__header h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.policy__header p {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 560px;
}
.policy__updated {
  margin-top: 12px;
  font-size: 13px !important;
  color: var(--ink-3) !important;
}
.policy__toc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 48px;
}
.policy__toc p {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.policy__toc ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}
.policy__toc a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
}
.policy__toc a:hover { color: var(--ink); text-decoration: underline; }
.policy__inner section {
  margin-bottom: 40px;
}
.policy__inner h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  padding-top: 8px;
}
.policy__inner p,
.policy__inner li {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.7;
}
.policy__inner ul,
.policy__inner ol {
  padding-left: 20px;
  margin: 12px 0;
}
.policy__inner li { margin-bottom: 6px; }
.policy__inner a { color: var(--ink); }
.policy__inner a:hover { color: var(--accent-2); }
.policy__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 16px 0;
}
.policy__table th,
.policy__table td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid var(--line);
  color: var(--ink-2);
  line-height: 1.5;
}
.policy__table th {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--surface);
}
.policy__table code {
  font-family: monospace;
  font-size: 12px;
  background: var(--surface);
  padding: 2px 5px;
  border-radius: 3px;
  border: 1px solid var(--line);
}

@media (max-width: 560px) {
  .policy__toc ol { grid-template-columns: 1fr; }
  .policy__table { font-size: 13px; }
  .policy__table th, .policy__table td { padding: 8px; }
}

@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__top { padding-bottom: 36px; margin-bottom: 36px; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================
   FOCUS INDICATORS (WCAG 2.4.7 / 2.5.8)
   ============================================ */
.btn:focus-visible,
.nav__cta:focus-visible,
.nav__logo:focus-visible,
.nav__links a:focus-visible,
.nav__burger:focus-visible,
.funnel__back:focus-visible,
.funnel__close:focus-visible,
.footer__col a:focus-visible,
.faq__q:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 4px;
}

.option:has(input:focus-visible) {
  outline: 3px solid var(--accent-2);
  outline-offset: 2px;
  border-color: var(--accent-2);
}

/* ============================================
   SKIP LINK (WCAG 2.4.1)
   ============================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 0 var(--radius) 0;
  text-decoration: none;
  transition: top 0.1s;
}
.skip-link:focus {
  top: 0;
}

/* ============================================
   SCREEN READER ONLY (hjälp för aria-live)
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
