/* ============================================================
   resepsjonist.no - Main stylesheet
   ============================================================
   Bygget for: alle sider på resepsjonist.no
   Konsolidert: 20. mai 2026
   ============================================================ */


/* ============================================
   PALETT: Confident Minimalist
   ============================================ */
:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F4F4F0;
  --bg-elevated: #FFFFFF;

  --text-primary: #1F1F1F;
  --text-muted: #6B6B6B;
  --text-dim: #9A9A9A;
  --text-inverse: #FFFFFF;

  --accent: #1A6E3F;
  --accent-dark: #0F5028;
  --accent-light: #2E8B5C;
  --accent-soft: #E8F3EC;

  --border: #E5E5E0;
  --border-strong: #D5D5CE;

  --warning: #B97A1F;
  --success: var(--accent);

  --container: 1200px;
  --container-narrow: 920px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.04);
  --shadow: 0 4px 14px rgba(0,0,0,0.06), 0 14px 38px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 28px rgba(0,0,0,0.08), 0 28px 72px rgba(0,0,0,0.08);
  --shadow-glow: 0 0 60px -15px rgba(26, 110, 63, 0.25);
  --shadow-glow-soft: 0 0 100px -25px rgba(26, 110, 63, 0.18);
  --shadow-accent: 0 6px 18px -2px rgba(26, 110, 63, 0.28);
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Exo 2', system-ui, sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ============================================
   TYPOGRAFI
   ============================================ */
h1, h2, h3, h4 {
  font-family: 'Bai Jamjuree', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.5em 0;
  color: var(--text-primary);
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; font-weight: 600; }
p { margin: 0 0 1em 0; }
.eyebrow {
  display: inline-block;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.7em;
}
.accent { color: var(--accent); }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: var(--container-narrow); }

section {
  padding: clamp(60px, 9vw, 110px) 0;
  position: relative;
}
.bg-soft { background: var(--bg-secondary); }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(255,255,255,0.95);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: 'Bai Jamjuree', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.logo .period { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  background: var(--accent);
  color: var(--text-inverse) !important;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--accent-dark); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--text-primary);
}

@media (max-width: 800px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-cta { align-self: flex-start; }
}

/* ============================================
   KNAPPER
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.97rem;
  border: 1px solid transparent;
  transition: all 0.15s;
  cursor: pointer;
  text-decoration: none;
}
.btn svg { transition: transform 0.15s; }
.btn:hover svg { transform: translateX(2px); }

.btn-primary {
  background: var(--accent);
  color: var(--text-inverse);
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 8px 22px -2px rgba(26, 110, 63, 0.35);
  transform: translateY(-1px);
}
.btn-ghost { background: transparent; color: var(--text-primary); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--text-primary); background: var(--bg-secondary); }
.btn-waitlist {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent-light);
}
.btn-waitlist:hover { background: var(--accent-soft); border-color: var(--accent); }

/* ============================================
   HERO (alternativ C: min-height på hero OG chat-window)
   ============================================ */
.hero {
  min-height: clamp(720px, 88vh, 920px);
  display: flex;
  align-items: center;
  padding: clamp(50px, 8vw, 90px) 0 clamp(40px, 6vw, 80px) 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 45%, rgba(26, 110, 63, 0.06), transparent 60%),
    radial-gradient(ellipse 40% 40% at 15% 75%, rgba(46, 139, 92, 0.04), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { width: 100%; position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 60px;
  align-items: center;
}
.hero-copy, .hero-visual { min-width: 0; }
@media (max-width: 900px) {
  .hero { min-height: clamp(640px, 75vh, 800px); }
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 28px;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero h1 { margin-bottom: 20px; }
.hero-sub {
  font-size: 1.18rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.stars { color: var(--accent); letter-spacing: 1px; }

/* ============================================
   CHAT DEMO
   ============================================ */
.chat-window {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), var(--shadow-glow-soft);
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: clamp(580px, 70vh, 720px);
}
.chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
  flex-shrink: 0;
}
.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
  font-family: 'Bai Jamjuree', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.chat-meta { display: flex; flex-direction: column; flex: 1; }
.chat-name { font-weight: 600; font-size: 0.95rem; }
.chat-status {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.chat-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.chat-controls { display: flex; gap: 4px; }
.chat-controls span {
  width: 8px; height: 8px;
  background: var(--border-strong);
  border-radius: 50%;
}

.chat-body {
  flex: 1;
  min-height: 0;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.chat-body::-webkit-scrollbar { display: none; }
.chat-system {
  text-align: center;
  font-size: 0.74rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 0;
}
.bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.45;
  animation: bubble-in 0.4s ease-out;
}
@keyframes bubble-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.bubble.bot {
  background: var(--bg-secondary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.bubble.user {
  background: var(--accent);
  color: var(--text-inverse);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.typing {
  display: flex;
  gap: 4px;
  padding: 12px 14px;
  background: var(--bg-secondary);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.typing span {
  width: 6px; height: 6px;
  background: var(--text-dim);
  border-radius: 50%;
  animation: typing-dot 1.4s infinite ease-in-out;
}
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-dot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

.chat-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-elevated);
  flex-shrink: 0;
}
.input-fake {
  flex: 1;
  min-width: 0;
  color: var(--text-dim);
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
}
.input-fake.typing-input { color: var(--text-primary); }
.input-fake.typing-input::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 1.05em;
  margin-left: 1px;
  background: var(--accent);
  vertical-align: text-bottom;
  animation: input-caret 1s step-end infinite;
}
@keyframes input-caret {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.send {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: white;
  border-radius: 50%;
}

/* ============================================
   INTRO / STAT-STRIPE
   ============================================ */
.intro-block {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.pull-line {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 14px 0;
}
.pull-line.money { color: var(--accent); font-weight: 600; }
.emph { font-style: italic; color: var(--accent); }

.stat-stripe {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
@media (max-width: 720px) {
  .stat-stripe { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 30px rgba(26, 110, 63, 0.15);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.stat-label[data-source] {
  position: relative;
  cursor: help;
  text-decoration: underline dotted var(--border-strong);
  text-underline-offset: 3px;
}
.stat-label[data-source]::after {
  content: attr(data-source);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  width: max-content;
  max-width: 240px;
  background: var(--text-primary);
  color: var(--text-inverse);
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  text-decoration: none;
  padding: 9px 11px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease;
  z-index: 20;
  pointer-events: none;
}
.stat-label[data-source]:hover::after,
.stat-label[data-source]:focus::after {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   PRISING / TIERS
   ============================================ */
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}
.section-head p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 12px;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1000px) {
  .tiers { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

.tier {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.tier:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.tier.featured {
  border-color: var(--accent);
  border-width: 1.5px;
  box-shadow: var(--shadow), var(--shadow-glow);
}
.tier.featured:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.tier.featured::before {
  content: 'Lanseringspris';
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 100px;
}
.tier.waitlist::before {
  content: 'Kommer snart';
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--bg-elevated);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1.5px solid var(--accent-light);
}

.tier h3 { margin-bottom: 14px; }

/* Billing toggle */
.billing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 0 0 50px;
  flex-wrap: wrap;
}
.billing-toggle-label {
  color: var(--text-muted);
  font-size: 0.92rem;
}
.toggle-switch {
  display: inline-flex;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.04);
}
.toggle-btn {
  padding: 9px 20px;
  border-radius: 100px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s;
  display: block;
  align-items: center;
  gap: 6px;
  font-family: inherit;
}
.toggle-btn:hover { color: var(--text-primary); }
.toggle-btn.active {
  background: var(--text-primary);
  color: var(--text-inverse);
  box-shadow: 0 2px 8px -2px rgba(0,0,0,0.18), 0 1px 3px rgba(0,0,0,0.12);
}
.save-badge {
  font-size: 0.72rem;
  background: var(--accent);
  color: white;
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.toggle-btn:not(.active) .save-badge {
  background: var(--accent-soft);
  color: var(--accent-dark);
}
.toggle-discount {
  margin-left: 5px;
  font-weight: 500;
  opacity: 0.7;
  font-size: 0.85em;
}
.toggle-btn.active .toggle-discount {
  opacity: 0.85;
}

/* Tier price blocks - monthly/yearly swap */
.tier-price-block { display: none; }
.tier-price-block.active { display: block; }

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.tier-price .num {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.tier-price .per {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.tier-price-yearly {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ============================================
   PRICE LOCK CALLOUT (replaces setup-block on featured)
   ============================================ */
.price-lock {
  background: linear-gradient(180deg, var(--accent-soft) 0%, rgba(26, 110, 63, 0.04) 100%);
  border: 1px solid rgba(26, 110, 63, 0.18);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 6px 0 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.price-lock-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-lock-content {
  flex: 1;
  min-width: 0;
}
.price-lock-headline {
  font-family: 'Bai Jamjuree', sans-serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 0.98rem;
  line-height: 1.3;
  margin-bottom: 4px;
}
.price-lock-text {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.price-lock-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Small delivery note below callout */
.tier-delivery {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border);
  text-align: center;
}

.tier-setup {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 10px 0 14px;
  border-bottom: 1px dashed var(--border);
  margin-bottom: 20px;
}
.tier-setup .setup-headline {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 2px;
}
.tier-setup strong { color: var(--text-primary); font-size: 0.95rem; }
.tier-setup .setup-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 4px;
  line-height: 1.4;
}

.tier-lead {
  font-size: 0.97rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  min-height: 60px;
}
.tier-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  flex: 1;
}
.tier.waitlist .tier-price,
.tier.waitlist .tier-price-yearly,
.tier.waitlist .tier-setup {
  display: none;
}
.tier-price-placeholder {
  padding: 12px 0 14px;
  margin-bottom: 6px;
}
.tier-price-placeholder .placeholder-headline {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 4px;
}
.tier-price-placeholder .placeholder-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border);
}
.tier.waitlist .tier-lead {
  margin-top: 8px;
}
.tier-feats li {
  padding: 7px 0;
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.tier-feats li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  background: var(--accent-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231A6E3F'%3E%3Cpath d='M6.2 11.2L3 8l1.1-1.1 2.1 2.1 5.6-5.6L13 4.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.tier-feats li.highlight {
  /* No special styling per user feedback - removed bold/color highlight */
}

.tier-fits {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 24px 0;
  padding: 14px 0 0 0;
  border-top: 1px dashed var(--border);
}
.tier-fits strong {
  color: var(--text-primary);
  font-weight: 600;
}

.tier-cta { margin-top: auto; }
.tier-cta .btn { width: 100%; justify-content: center; }
.tier-cta-sub {
  margin-top: 10px;
  font-size: 0.83rem;
  color: var(--text-muted);
  text-align: center;
}
.tier-cta-sub strong { color: var(--accent); }
.tier-install-note {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.5;
}
.tier-install-note strong {
  color: var(--text-secondary);
  font-weight: 600;
}

/* ============================================
   COMPARISON
   ============================================ */
.compare-table {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr repeat(3, 0.8fr);
  border-bottom: 1px solid var(--border);
}
.compare-row:last-child { border-bottom: none; }
.compare-row > div {
  padding: 16px 18px;
  font-size: 0.93rem;
}
.compare-row.header {
  background: var(--bg-secondary);
  font-weight: 600;
}
.compare-row .feat-name { color: var(--text-muted); }
.compare-row.header .feat-name {
  color: var(--text-primary);
  font-family: 'Bai Jamjuree', sans-serif;
}
.compare-row > div:not(.feat-name) { text-align: center; }
.compare-ico {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.compare-ico.y { background: var(--accent-soft); color: var(--accent); }
.compare-ico.n { background: var(--bg-secondary); color: var(--text-dim); }

@media (max-width: 800px) {
  .compare-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .compare-row.header { display: none; }
  .compare-row .feat-name {
    grid-column: 1 / -1;
    text-align: left;
    padding: 12px 16px;
    font-weight: 600;
    background: var(--bg-secondary);
    color: var(--text-primary);
  }
  .compare-row > div:not(.feat-name) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    padding: 12px 6px 14px;
    text-align: center;
  }
  .compare-row > div:not(.feat-name)::before {
    content: attr(data-label);
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-muted);
  }
}

/* ============================================
   COST COMPARE (pris i perspektiv)
   ============================================ */
.cost-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .cost-compare {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.cost-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
.cost-card.cost-bot {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg-elevated) 60%);
  box-shadow: 0 8px 24px rgba(26, 110, 63, 0.08);
}
.cost-label {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.cost-card.cost-bot .cost-label {
  color: var(--accent);
}
.cost-figure {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 30px rgba(26, 110, 63, 0.08);
}
.cost-card.cost-bot .cost-figure {
  color: var(--accent);
  text-shadow: 0 0 30px rgba(26, 110, 63, 0.18);
}
.cost-unit {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.cost-feats {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: left;
  display: inline-block;
}
.cost-feats li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding: 6px 0;
  position: relative;
  padding-left: 18px;
}
.cost-feats li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--text-muted);
  font-weight: 700;
}
.cost-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-width: 40px;
}
@media (max-width: 720px) {
  .cost-vs {
    padding: 4px 0;
  }
}
.cost-honesty {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
  max-width: 640px;
  margin: 40px auto 0 auto;
  line-height: 1.6;
}

/* ============================================
   STEPS
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; }
}
.step {
  position: relative;
  padding: 32px 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-num {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 0.96rem; margin: 0; }

/* ============================================
   DEMO BOT IFRAME
   ============================================ */
.demo-bot { text-align: center; }
.demo-bot-iframe {
  display: block;
  width: 100%;
  max-width: 420px;
  height: clamp(540px, 75vh, 680px);
  margin: 30px auto 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), var(--shadow-glow-soft);
  background: var(--bg-elevated);
}

/* ============================================
   POSITIONING
   ============================================ */
.positioning { max-width: 720px; margin: 0 auto; text-align: center; }
.positioning p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.2em;
}
.positioning p:last-child { margin-bottom: 0; }

/* ============================================
   FAQ
   ============================================ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq details[open] summary { color: var(--accent); }
.faq summary {
  font-family: 'Bai Jamjuree', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.15s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: 'Bai Jamjuree', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: transform 0.2s;
}
.faq details[open] summary::after { content: '−'; color: var(--accent); }
.faq details p {
  margin: 14px 0 0 0;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta { text-align: center; max-width: 640px; margin: 0 auto; }
.final-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.final-reassurance {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ============================================
   WAITLIST MODAL
   ============================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  max-width: 460px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modal-in 0.25s ease-out;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.modal-close:hover { background: var(--bg-secondary); color: var(--text-primary); }
.modal h3 { margin-bottom: 8px; }
.modal-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.modal-benefits {
  background: var(--accent-soft);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 24px;
  font-size: 0.92rem;
}
.modal-benefits ul { padding-left: 20px; margin: 0; }
.modal-benefits li { padding: 3px 0; color: var(--accent-dark); }

/* ============================================
   FORM
   ============================================ */
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.req { color: var(--accent); }
.opt { color: var(--text-dim); font-weight: 400; }
.form-row input, .form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.97rem;
  background: var(--bg-elevated);
  transition: border-color 0.15s;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-status {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.ok { background: var(--accent-soft); color: var(--accent-dark); }
.form-status.err { background: rgba(220, 70, 70, 0.1); color: #c14545; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 36px 0;
  background: var(--bg-primary);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 720px) {
  .foot-grid { grid-template-columns: 1fr; text-align: center; }
}
.foot-brand {
  font-family: 'Bai Jamjuree', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.foot-brand .period { color: var(--accent); }
.foot-brand small {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.foot-links { display: flex; gap: 22px; justify-content: center; }
.foot-links a { font-size: 0.88rem; color: var(--text-muted); }
.foot-links a:hover { color: var(--text-primary); }
.foot-right { text-align: right; font-size: 0.85rem; color: var(--text-muted); }
@media (max-width: 720px) { .foot-right { text-align: center; } }
.foot-right a { color: var(--text-muted); }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.25s ease, border-color 0.25s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SUPPORT PAGES (takk, personvern, vilkar)
   ============================================================ */

/* Compact container for support pages */
.support-container {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px) 24px clamp(60px, 9vw, 100px) 24px;
}
.support-container.narrow {
  max-width: 720px;
}

/* Simple nav for support pages */
.support-nav {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.support-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-back {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.nav-back:hover { color: var(--accent); }

/* Page header */
.page-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

/* Success icon (takk-side) */
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  color: var(--accent);
}

/* Lead paragraph */
.support-lead {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 48px;
}

/* Timeline (takk-side) */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  counter-reset: timeline;
}
.timeline li {
  counter-increment: timeline;
  padding: 20px 0 20px 56px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.timeline li:last-child { border-bottom: none; }
.timeline li::before {
  content: counter(timeline, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 22px;
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline li strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}

/* Install box (takk-side, info callout) */
.install-box {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 28px;
  margin: 40px 0;
}
.install-box h2 { margin-top: 0; font-size: 1.1rem; }
.install-box p:last-child { margin-bottom: 0; }

/* Callout (personvern-side) */
.callout {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  border-radius: 4px;
  margin: 20px 0;
  font-size: 0.95rem;
}
.callout p:last-child { margin-bottom: 0; }

/* Code inline (personvern) */
code {
  background: var(--bg-soft);
  padding: 2px 6px;
  border-radius: 3px;
  font-family: monospace;
  font-size: 0.92em;
}

/* Numbered headers (vilkar) */
.numbered-h2 .num {
  color: var(--accent);
  font-weight: 500;
  margin-right: 8px;
  display: inline-block;
  min-width: 28px;
}

/* Signature (takk-side) */
.signature {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* 404 styles */
.error-page {
  text-align: center;
  padding: 80px 0;
}
.error-code {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

/* Body class adjustments for support pages */
body.support-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 12px 0;
}
body.support-page h2 {
  font-size: 1.4rem;
  margin: 44px 0 14px 0;
}
body.support-page p {
  margin: 0 0 14px 0;
}
body.support-page ul,
body.support-page ol {
  padding-left: 22px;
  margin: 0 0 18px 0;
}
body.support-page li { margin: 6px 0; }

/* ============================================
   DARK HERO OVERRIDE (Datalog-inspired effect)
   ============================================ */

.hero {
  background: #050810;
  position: relative;
  overflow: hidden;
}

/* Layer 1: Perspective grid floor */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 300%;
  height: 110%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(900px) rotateX(74deg);
  transform-origin: center bottom;
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.95) 25%, transparent 80%);
          mask-image: linear-gradient(to top, rgba(0,0,0,0.95) 25%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* Layer 2: Vertical light beam (emerald) */
.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  width: 60vw;
  max-width: 900px;
  height: 110%;
  background: radial-gradient(ellipse at center 0%,
    rgba(45, 168, 106, 0.18) 0%,
    rgba(45, 168, 106, 0.08) 25%,
    rgba(45, 168, 106, 0.02) 50%,
    transparent 70%
  );
  transform: translateX(-50%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 1;
}

/* Container content lifts above effects */
.hero .container,
.hero .hero-grid {
  position: relative;
  z-index: 2;
}

/* Text colors flipped for dark BG */
.hero h1 {
  color: #f1f5f7;
}

.hero h1 .accent {
  color: #4dc187;
  text-shadow: 0 0 30px rgba(45, 168, 106, 0.4);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.72);
}

/* Hero tag (pill) - dark friendly */
.hero-tag {
  background: rgba(45, 168, 106, 0.12);
  color: #6fd09e;
  border: 1px solid rgba(45, 168, 106, 0.28);
  backdrop-filter: blur(8px);
}

.live-dot {
  background: #4dc187;
  box-shadow: 0 0 8px rgba(77, 193, 135, 0.6);
}

/* Secondary CTA on dark BG */
.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #f1f5f7;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Primary CTA - keep accent but add glow on dark */
.btn-primary {
  box-shadow: 0 8px 32px rgba(45, 168, 106, 0.35), 
              0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

/* Chat-window pops on dark BG with extra shadow + soft glow */
.chat-window {
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(45, 168, 106, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Hero stats / trust strip - light text */
.hero-trust,
.hero-trust * {
  color: rgba(255, 255, 255, 0.55) !important;
}

/* Hero divider / next section transition (smooth dark→light) */
.hero {
  /* Add bottom gradient fade so transition to next section is smooth */
}
.hero::before,
.hero::after {
  /* Already styled */
}

/* "Prøv selv" button (btn-ghost) - white text on dark hero */
.hero .btn-ghost,
.hero .btn-ghost:link,
.hero .btn-ghost:visited {
  color: #f1f5f7;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}
.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

/* Smooth dark-to-light section transition */
section:not(.hero) {
  position: relative;
  z-index: 3;
}

@media (max-width: 720px) {
  .hero::before {
    background-size: 40px 40px;
    transform: perspective(700px) rotateX(72deg);
  }
  .hero::after {
    width: 90vw;
  }
}


/* ============================================
   CIRCUIT BOARD BACKGROUND
   ============================================ */
.circuit-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.65;
}

.circuit-bg .chip-led {
  animation: ledPulse 2.6s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes ledPulse {
  0%, 100% { opacity: 0.35; transform: scale(0.9); }
  50%      { opacity: 1;    transform: scale(1.25); }
}
/* Stagger LED pulses by index for natural asynchrony */
.circuit-bg .chip-led:nth-of-type(1) { animation-delay: 0s;    }
.circuit-bg .chip-led:nth-of-type(2) { animation-delay: 0.4s;  }
.circuit-bg .chip-led:nth-of-type(3) { animation-delay: 0.8s;  }
.circuit-bg .chip-led:nth-of-type(4) { animation-delay: 1.2s;  }
.circuit-bg .chip-led:nth-of-type(5) { animation-delay: 1.6s;  }
.circuit-bg .chip-led:nth-of-type(6) { animation-delay: 2.0s;  }
.circuit-bg .chip-led:nth-of-type(7) { animation-delay: 0.2s;  }
.circuit-bg .chip-led:nth-of-type(8) { animation-delay: 0.6s;  }
.circuit-bg .chip-led:nth-of-type(9) { animation-delay: 1.0s;  }
.circuit-bg .chip-led:nth-of-type(10) { animation-delay: 1.4s; }
.circuit-bg .chip-led:nth-of-type(11) { animation-delay: 1.8s; }
.circuit-bg .chip-led:nth-of-type(12) { animation-delay: 2.2s; }
.circuit-bg .chip-led:nth-of-type(13) { animation-delay: 0.3s; }
.circuit-bg .chip-led:nth-of-type(14) { animation-delay: 0.7s; }
.circuit-bg .chip-led:nth-of-type(15) { animation-delay: 1.1s; }
.circuit-bg .chip-led:nth-of-type(16) { animation-delay: 1.5s; }

/* Solder pads have a softer pulse */
.circuit-bg .pads circle {
  animation: padPulse 4s ease-in-out infinite;
}
@keyframes padPulse {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 0.9; }
}

/* Re-layer to fit circuit in stack: grid<beam<circuit<content */
.hero::before  { z-index: 0; }
.hero::after   { z-index: 1; }
.circuit-bg    { z-index: 2; }
.hero .container,
.hero .hero-grid { z-index: 3; position: relative; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .circuit-bg .particles { display: none; }
  .circuit-bg .chip-led { animation: none; opacity: 0.5; }
  .circuit-bg .pads circle { animation: none; opacity: 0.6; }
}

@media (max-width: 720px) {
  .circuit-bg { opacity: 0.3; }
}

/* ============================================
   TAKK PAGE - card-based layout
   ============================================ */

.takk-hero {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px 40px;
  text-align: center;
  margin: 40px 0 32px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
.takk-hero .success-icon {
  margin: 0 auto 24px;
}
.takk-hero h1 {
  margin: 0 0 12px;
  font-size: 1.85rem;
}
.takk-hero .support-lead {
  margin: 0;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

.section-title {
  font-size: 1.15rem;
  margin: 40px 0 20px;
  color: var(--text-primary);
  font-weight: 700;
}

.steps-grid {
  display: grid;
  gap: 14px;
  margin: 0 0 16px;
}
.step-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: start;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.step-card:hover {
  border-color: var(--accent-light);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}
.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Bai Jamjuree', sans-serif;
}
.step-content h3 {
  margin: 6px 0 6px;
  font-size: 1.05rem;
}
.step-content p {
  margin: 0;
  color: var(--text-muted);
}
.step-content p strong {
  color: var(--text-primary);
}

/* Upsell box - distinct accent treatment */
.upsell-box {
  background: linear-gradient(135deg, rgba(26, 110, 63, 0.05), rgba(26, 110, 63, 0.02));
  border: 1.5px solid var(--accent);
  border-radius: 16px;
  padding: 36px 36px 32px;
  margin: 48px 0 32px;
  position: relative;
  box-shadow: 0 8px 24px rgba(26, 110, 63, 0.08);
}
.upsell-tag {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--accent);
  color: white;
  font-family: 'Bai Jamjuree', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(26, 110, 63, 0.25);
}
.upsell-box h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.35rem;
  color: var(--text-primary);
}
.upsell-box p {
  margin: 0 0 8px;
  color: var(--text-primary);
}
.upsell-price {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent);
  margin: 24px 0 20px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.upsell-price small {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.upsell-cta {
  display: inline-block;
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(26, 110, 63, 0.25);
}
.upsell-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 110, 63, 0.35);
}

/* Contact card - soft variant */
.contact-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 30px;
  margin: 32px 0 80px;
}
.contact-card h2 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.contact-card p {
  margin: 0;
  color: var(--text-muted);
}
.contact-card a {
  color: var(--accent);
  font-weight: 500;
}

/* Signature */
.signature {
  text-align: center;
  color: var(--text-muted);
  margin-top: 32px;
  margin-bottom: 48px;
  font-size: 0.9rem;
  font-family: 'Bai Jamjuree', sans-serif;
  letter-spacing: 0.04em;
}

@media (max-width: 600px) {
  .takk-hero { padding: 36px 24px 28px; }
  .takk-hero h1 { font-size: 1.5rem; }
  .step-card { padding: 20px 22px; gap: 16px; grid-template-columns: 36px 1fr; }
  .step-number { width: 32px; height: 32px; font-size: 0.95rem; }
  .upsell-box { padding: 30px 24px 26px; }
  .upsell-box h2 { font-size: 1.2rem; }
  .upsell-price { font-size: 1.5rem; }
}

/* Upsell box: bestilt-state */
.upsell-tag-success {
  background: var(--accent);
  display: inline-flex;
  align-items: center;
}
.upsell-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(26, 110, 63, 0.1);
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.98rem;
  margin-top: 16px;
}
.upsell-status svg {
  flex-shrink: 0;
}

/* Tier oppsett-rabatt callout */
.tier-oppsett {
  background: rgba(26, 110, 63, 0.08);
  border-left: 4px solid var(--accent);
  padding: 11px 14px;
  margin: 8px 0 12px 0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.tier-oppsett-price {
  font-size: 0.92rem;
  color: #333;
}
.tier-oppsett-price s {
  opacity: 0.55;
}
.tier-oppsett-tag {
  background: var(--accent);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1;
}
.pricing-vat-note {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
  display: inline-block;
  margin-left: 4px;
}
