/* TalaAI — design tokens & global styles */

:root {
  --bg: #0A0A0F;
  --bg-elev: #11121A;
  --bg-elev-2: #161826;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.14);

  --text: #F5F6FA;
  --text-2: #B4B7C9;
  --text-3: #7A7E95;
  --text-4: #4A4E66;

  --primary: #2D4FFF;
  --primary-glow: #1E3AFF;
  --accent: #00D4FF;
  --accent-soft: rgba(0, 212, 255, 0.14);
  --primary-soft: rgba(45, 79, 255, 0.16);

  --success: #2EE6A8;
  --warn: #FFB547;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-glow: 0 0 0 1px rgba(45, 79, 255, 0.25), 0 30px 80px -20px rgba(45, 79, 255, 0.45);
  --font-display: 'Inter', 'Geist', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

  --container: 1180px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  letter-spacing: -0.005em;
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(900px 600px at 80% -10%, rgba(45, 79, 255, 0.18), transparent 60%),
    radial-gradient(700px 500px at 0% 30%, rgba(0, 212, 255, 0.08), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Type ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.04);
}

.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

h1, h2, h3 { margin: 0; letter-spacing: -0.03em; line-height: 1.04; font-weight: 600; }
h1 { font-size: clamp(44px, 6.4vw, 88px); font-weight: 600; }
h2 { font-size: clamp(34px, 4.2vw, 56px); }
h3 { font-size: clamp(20px, 2vw, 24px); letter-spacing: -0.02em; line-height: 1.2; }

p { margin: 0; color: var(--text-2); }

.text-mono { font-family: var(--font-mono); }
.gradient-text {
  background: linear-gradient(135deg, #fff 0%, #8DA3FF 50%, #00D4FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.muted { color: var(--text-3); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(180deg, #3D5FFF 0%, #1E3AFF 100%);
  color: white;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 0 0 1px rgba(45, 79, 255, 0.5),
    0 18px 40px -12px rgba(45, 79, 255, 0.65);
}
.btn-primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 0 0 1px rgba(45, 79, 255, 0.7),
    0 22px 50px -10px rgba(45, 79, 255, 0.85);
}

.btn-secondary {
  background: rgba(255,255,255,0.04);
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  padding: 10px 14px;
}
.btn-ghost:hover { color: var(--text); }

/* ---------- Cards ---------- */

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.card-hover {
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.card-hover:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 18px;
  border-radius: 999px;
  background: rgba(15, 16, 24, 0.7);
  border: 1px solid var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 8px;
}
.nav-logo-mark {
  width: 22px; height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
  background: linear-gradient(135deg, #2D4FFF, #00D4FF);
  position: relative;
}
.nav-logo-mark::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 3px;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.7), transparent 60%);
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  font-size: 13.5px;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }

.nav-cta {
  margin-left: 6px;
  padding: 8px 16px !important;
  font-size: 13.5px !important;
  border-radius: 999px !important;
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav { padding: 6px 6px 6px 14px; }
}

/* ---------- Sections ---------- */

section {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 760px) { section { padding: 72px 0; } }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 17px; color: var(--text-2); }

/* ---------- Hero ---------- */

.hero {
  padding-top: 160px;
  padding-bottom: 80px;
  text-align: center;
  position: relative;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
  mask: linear-gradient(180deg, transparent 0%, black 30%, black 65%, transparent 100%);
  -webkit-mask: linear-gradient(180deg, transparent 0%, black 30%, black 65%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 22px auto 24px;
  max-width: 14ch;
}

.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 580px;
  margin: 0 auto 36px;
  color: var(--text-2);
  text-wrap: balance;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.hero-trust-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-4);
}
.hero-trust-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0.55;
}
.trust-logo {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-3);
  letter-spacing: 0.05em;
}

/* ---------- Problem ---------- */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 860px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-card {
  padding: 32px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.problem-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-4);
  letter-spacing: 0.1em;
}
.problem-card h3 { font-size: 22px; }
.problem-card p { font-size: 15px; color: var(--text-3); }

.problem-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(45, 79, 255, 0.12);
  border: 1px solid rgba(45, 79, 255, 0.25);
  color: var(--accent);
  margin-bottom: 4px;
}

/* ---------- Products ---------- */

.product-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(800px 300px at 100% 0%, rgba(45,79,255,0.10), transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
  overflow: hidden;
  position: relative;
}
.product-row.reverse { grid-template-columns: 1fr 1.05fr; }
.product-row.reverse .product-visual { order: -1; }

@media (max-width: 860px) {
  .product-row, .product-row.reverse {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 28px;
  }
  .product-row.reverse .product-visual { order: 1; }
}

.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--accent-soft);
  margin-bottom: 18px;
}

.product-title {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.product-desc {
  color: var(--text-2);
  font-size: 16.5px;
  margin-bottom: 22px;
  max-width: 38ch;
}

.product-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-bullets li {
  font-size: 14.5px;
  color: var(--text-2);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.product-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 3px;
  border-radius: 4px;
  background: var(--accent-soft);
  border: 1px solid rgba(0,212,255,0.3);
  background-image: linear-gradient(135deg, transparent 50%, var(--accent) 50%);
  background-size: 8px 8px;
  background-position: center;
  background-repeat: no-repeat;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 14.5px;
  font-weight: 500;
}
.product-cta:hover { gap: 10px; transition: gap 0.15s; }

/* visual placeholder boxes inside product rows */
.product-visual {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 12px, transparent 12px 24px),
    linear-gradient(180deg, rgba(45,79,255,0.06), rgba(0,212,255,0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

/* ---------- How it works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
}
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

.step {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 14px;
  background: linear-gradient(135deg, #2D4FFF, #00D4FF);
  color: white;
  font-weight: 600;
}
.step h3 { font-size: 20px; }
.step p { font-size: 14.5px; color: var(--text-3); }

/* ---------- Differentiator (self-learning) ---------- */

.diff-section {
  background:
    radial-gradient(700px 400px at 20% 50%, rgba(45,79,255,0.12), transparent 70%),
    radial-gradient(500px 300px at 90% 80%, rgba(0,212,255,0.08), transparent 70%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) { .diff-grid { grid-template-columns: 1fr; gap: 36px; } }

.diff-section h2 { margin-bottom: 18px; }

.diff-pipeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
}
.diff-pipeline-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  font-size: 14.5px;
}
.diff-pipeline-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--accent);
  flex-shrink: 0;
}
.diff-pipeline-arrow {
  width: 1px;
  background: linear-gradient(180deg, var(--line-strong), transparent);
  height: 10px;
  margin-left: 32px;
}

.dashboard {
  background: linear-gradient(180deg, #0E0F18, #0A0B12);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5), 0 0 0 1px var(--line);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.dashboard-title {
  font-size: 13px;
  color: var(--text-2);
  font-family: var(--font-mono);
}
.dashboard-dots {
  display: flex;
  gap: 5px;
}
.dashboard-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.kpi {
  padding: 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
}
.kpi-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-4);
  margin-bottom: 6px;
}
.kpi-value {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.kpi-delta {
  font-size: 11px;
  color: var(--success);
  font-family: var(--font-mono);
  margin-top: 2px;
}

.chart {
  height: 160px;
  position: relative;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  padding: 14px;
}

/* ---------- AI Characters ---------- */

.characters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 860px) { .characters-grid { grid-template-columns: 1fr; } }

.character {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.character-avatar {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 24px;
  color: white;
  letter-spacing: -0.02em;
  position: relative;
}
.character-avatar::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 19px;
  background: conic-gradient(from 0deg, var(--accent), var(--primary), var(--accent));
  z-index: -1;
  opacity: 0.4;
  filter: blur(8px);
}

.character h3 { font-size: 22px; margin-bottom: 2px; }
.character-role {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.character-quote {
  font-size: 14.5px;
  color: var(--text-2);
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--line);
  position: relative;
}

.character-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.character-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.character-stat-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-top: 2px;
}

/* ---------- Stat highlight (social proof) ---------- */

.stat-banner {
  margin-top: 18px;
  padding: 56px 48px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(0,212,255,0.10), transparent 60%),
    linear-gradient(180deg, rgba(45,79,255,0.04), rgba(0,0,0,0));
  text-align: center;
}
.stat-banner-num {
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, #00D4FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-banner-label {
  font-size: 18px;
  color: var(--text-2);
  margin-top: 18px;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Pricing ---------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.price-card.featured {
  border-color: rgba(45, 79, 255, 0.5);
  background:
    radial-gradient(600px 300px at 50% -10%, rgba(45,79,255,0.18), transparent 60%),
    linear-gradient(180deg, rgba(45,79,255,0.06), rgba(255,255,255,0.005));
  box-shadow: 0 0 0 1px rgba(45,79,255,0.4), 0 30px 80px -20px rgba(45,79,255,0.35);
}
.price-card.featured::before {
  content: 'Vinsælast';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 999px;
}

.price-name {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.price-tier-title { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; }
.price-amount { font-size: 14px; color: var(--text-3); font-family: var(--font-mono); }
.price-features {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.price-features li {
  font-size: 14.5px;
  color: var(--text-2);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.price-features li::before {
  content: '';
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 4px;
  border-radius: 4px;
  background: var(--primary-soft);
  background-image: linear-gradient(135deg, transparent 50%, var(--accent) 50%);
  background-size: 7px 7px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ---------- Form ---------- */

.form-section {
  background:
    radial-gradient(700px 400px at 80% 20%, rgba(45,79,255,0.15), transparent 70%),
    radial-gradient(500px 300px at 10% 80%, rgba(0,212,255,0.08), transparent 70%);
}
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 56px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
}
@media (max-width: 860px) {
  .form-wrap { grid-template-columns: 1fr; padding: 32px; gap: 28px; }
}

.form-side h2 { margin-bottom: 14px; }
.form-side p { color: var(--text-2); font-size: 16px; max-width: 38ch; }

.form-perks {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-perk {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-2);
}
.form-perk-dot {
  width: 18px; height: 18px;
  border-radius: 5px;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
}
.field input, .field select {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0,0,0,0.5);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.15);
}
.field input::placeholder { color: var(--text-4); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.form .btn-primary {
  margin-top: 8px;
  justify-content: center;
  padding: 16px 22px;
  font-size: 15px;
}

.form-success {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  border-radius: 14px;
  border: 1px solid rgba(46, 230, 168, 0.3);
  background: rgba(46, 230, 168, 0.06);
  text-align: center;
}
.form-success-icon {
  width: 48px; height: 48px;
  margin: 0 auto;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(46, 230, 168, 0.15);
  color: var(--success);
}

/* ---------- Footer ---------- */

footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 40px;
  margin-top: 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-3);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--text); }

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-brand p { font-size: 14px; max-width: 30ch; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-3);
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom .powered {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
}
.footer-bottom .powered .spark {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

/* ---------- Chat widget mockup ---------- */
.chat-mock {
  position: absolute;
  inset: 14px;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  background: #0E0F18;
  border: 1px solid var(--line);
  overflow: hidden;
}
.chat-mock-header {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(45,79,255,0.06);
}
.chat-mock-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF7A59, #FF3D88);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 600; color: white;
}
.chat-mock-name { font-size: 13px; font-weight: 500; }
.chat-mock-status { font-size: 11px; color: var(--success); display:flex; align-items:center; gap:6px; }
.chat-mock-status::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--success); box-shadow: 0 0 8px var(--success); }
.chat-mock-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  overflow: hidden;
}
.chat-bubble {
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 14px;
  max-width: 80%;
  line-height: 1.45;
}
.chat-bubble.bot {
  background: rgba(255,255,255,0.06);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat-bubble.user {
  background: linear-gradient(135deg, #2D4FFF, #1E3AFF);
  color: white;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chat-typing {
  display: inline-flex;
  gap: 4px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-3);
  animation: typing 1.4s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* ---------- Phone call mockup ---------- */
.call-mock {
  position: absolute;
  inset: 14px;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 30%, rgba(45,79,255,0.18), #0A0B12 70%);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 14px;
}
.call-mock-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5B6FFF, #00D4FF);
  display: grid; place-items: center;
  font-size: 28px; font-weight: 600; color: white;
  position: relative;
}
.call-mock-avatar::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  opacity: 0.4;
  animation: ring 2s ease-out infinite;
}
.call-mock-avatar::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  opacity: 0;
  animation: ring 2s ease-out infinite 1s;
}
@keyframes ring {
  0% { transform: scale(0.8); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}
.call-mock-name { font-size: 16px; font-weight: 500; }
.call-mock-sub { font-size: 12px; color: var(--text-3); font-family: var(--font-mono); }
.call-mock-bars {
  display: flex;
  gap: 4px;
  align-items: end;
  height: 32px;
  margin-top: 6px;
}
.call-mock-bars span {
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--primary));
  border-radius: 2px;
  animation: bar 1s ease-in-out infinite;
}
.call-mock-bars span:nth-child(1) { animation-delay: 0s; height: 30%; }
.call-mock-bars span:nth-child(2) { animation-delay: 0.1s; height: 70%; }
.call-mock-bars span:nth-child(3) { animation-delay: 0.2s; height: 50%; }
.call-mock-bars span:nth-child(4) { animation-delay: 0.3s; height: 90%; }
.call-mock-bars span:nth-child(5) { animation-delay: 0.4s; height: 40%; }
.call-mock-bars span:nth-child(6) { animation-delay: 0.5s; height: 75%; }
.call-mock-bars span:nth-child(7) { animation-delay: 0.6s; height: 55%; }
.call-mock-bars span:nth-child(8) { animation-delay: 0.7s; height: 85%; }
.call-mock-bars span:nth-child(9) { animation-delay: 0.8s; height: 35%; }
.call-mock-bars span:nth-child(10) { animation-delay: 0.9s; height: 65%; }
@keyframes bar {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1.2); }
}

/* ---------- Email mockup ---------- */
.email-mock {
  position: absolute;
  inset: 14px;
  border-radius: 14px;
  background: #0E0F18;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.email-mock-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--text-3);
  font-family: var(--font-mono);
}
.email-mock-list { padding: 8px; display: flex; flex-direction: column; gap: 6px; flex: 1; overflow:hidden; }
.email-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.015);
  align-items: center;
  font-size: 12px;
}
.email-item-sender { font-weight: 500; color: var(--text); }
.email-item-subject { color: var(--text-3); white-space: nowrap; overflow:hidden; text-overflow: ellipsis; }
.email-item-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  border-radius: 4px;
}
.tag-auto { background: rgba(46, 230, 168, 0.15); color: var(--success); }
.tag-fwd  { background: rgba(255, 181, 71, 0.15); color: var(--warn); }
.tag-done { background: rgba(45, 79, 255, 0.18); color: #8DA3FF; }

/* ---------- Tweaks-specific layout ---------- */

.tweaks-section h3 { font-size: 13px; }

/* ---------- Live demo ---------- */

.demo-section {
  background:
    radial-gradient(700px 400px at 20% 30%, rgba(45,79,255,0.10), transparent 70%),
    radial-gradient(600px 350px at 90% 70%, rgba(0,212,255,0.08), transparent 70%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.demo-frame {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 860px) {
  .demo-frame {
    grid-template-columns: 1fr;
  }
}

.demo-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 860px) {
  .demo-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .demo-tabs::-webkit-scrollbar { display: none; }
}

.demo-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  color: var(--text-2);
  text-align: left;
  transition: border-color 0.15s, background 0.15s, color 0.15s, transform 0.15s;
  width: 100%;
  flex-shrink: 0;
}
.demo-tab:hover {
  border-color: var(--line-strong);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}
.demo-tab.active {
  border-color: rgba(45, 79, 255, 0.5);
  background: linear-gradient(180deg, rgba(45,79,255,0.10), rgba(45,79,255,0.02));
  color: var(--text);
  box-shadow: 0 0 0 1px rgba(45, 79, 255, 0.3), 0 8px 24px -10px rgba(45, 79, 255, 0.4);
}

.demo-tab-init {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-weight: 600;
  color: white;
  font-size: 15px;
  flex-shrink: 0;
}

.demo-tab-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}
.demo-tab-name { font-size: 14px; font-weight: 500; line-height: 1.2; }
.demo-tab-co { font-size: 12px; color: var(--text-3); margin-top: 2px; }

.demo-tab-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.12);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.demo-stage {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, #0E0F18, #0A0B12);
  overflow: hidden;
  min-height: 540px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px var(--line);
}

.demo-stage-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(45, 79, 255, 0.04);
}
.demo-stage-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  font-weight: 600;
  font-size: 15px;
}
.demo-stage-titles { flex: 1; min-width: 0; }
.demo-stage-name { font-size: 15px; font-weight: 500; }
.demo-stage-role {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.demo-stage-status {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
}
.demo-stage-mode {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
}

.demo-stage-mode-wrap {
  flex: 1;
  overflow-y: auto;
  max-height: 360px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.demo-stage-mode-wrap::-webkit-scrollbar { width: 6px; }
.demo-stage-mode-wrap::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 3px; }

.demo-stage-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ----- Voice mode (call transcript) ----- */

.voice-frame {
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(800px 300px at 50% -20%, rgba(45,79,255,0.10), transparent 60%),
    #08090F;
}

.voice-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--text-3);
  background: rgba(0, 0, 0, 0.3);
}
.voice-status-rec {
  display: inline-flex;
  align-items: center;
}
.voice-status-rec span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #FF3D88;
  box-shadow: 0 0 12px #FF3D88;
  animation: pulse 1.4s ease-in-out infinite;
}
.voice-status-dur {
  margin-left: auto;
  color: var(--text-2);
  font-variant-numeric: tabular-nums;
}

.voice-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.voice-turn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 16px;
  border-left: 2px solid transparent;
  transition: border-color 0.15s;
}
.voice-turn.assistant {
  border-left-color: var(--accent);
}
.voice-turn.user {
  border-left-color: rgba(255,255,255,0.15);
}

.voice-turn-meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.voice-turn-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.voice-turn.assistant .voice-turn-name { color: var(--accent); }
.voice-turn.user .voice-turn-name { color: var(--text-2); }
.voice-turn-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-4);
  letter-spacing: 0.04em;
}

.voice-turn-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.voice-turn.user .voice-turn-text { color: var(--text-2); font-style: italic; }

.voice-bars {
  display: inline-flex;
  align-items: end;
  gap: 2px;
  height: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}
.voice-bars span {
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--primary));
  border-radius: 1px;
  animation: voicebar 1s ease-in-out infinite;
}
.voice-bars span:nth-child(1) { height: 50%; }
.voice-bars span:nth-child(2) { height: 90%; }
.voice-bars span:nth-child(3) { height: 65%; }
.voice-bars span:nth-child(4) { height: 100%; }
.voice-bars span:nth-child(5) { height: 45%; }
.voice-bars span:nth-child(6) { height: 80%; }
.voice-bars span:nth-child(7) { height: 60%; }
.voice-bars.active span {
  animation-duration: 0.5s;
}
@keyframes voicebar {
  0%, 100% { transform: scaleY(0.4); opacity: 0.6; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ----- Email mode (thread) ----- */

.email-frame {
  display: flex;
  flex-direction: column;
  background: #08090F;
}

.email-thread-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.email-thread-subject {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.email-thread-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-3);
  text-transform: uppercase;
}

.email-thread-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.email-msg {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}
.email-msg.assistant {
  border-color: rgba(0, 212, 255, 0.25);
  background: rgba(0, 212, 255, 0.04);
}

.email-msg-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
}
.email-msg-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  font-weight: 600;
  font-size: 13px;
  flex-shrink: 0;
}
.email-msg-from { flex: 1; min-width: 0; }
.email-msg-name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
}
.email-msg-addr {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-4);
  font-weight: 400;
}
.email-msg-to {
  font-size: 11.5px;
  color: var(--text-3);
  margin-top: 2px;
}
.email-msg-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-4);
}

.email-msg-body {
  padding: 16px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text);
  white-space: pre-wrap;
}

.email-msg-typing {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-3);
  font-style: italic;
}
.email-msg-typing span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--text-3);
  animation: typing 1.4s infinite;
}
.email-msg-typing span:nth-child(2) { animation-delay: 0.2s; }
.email-msg-typing span:nth-child(3) { animation-delay: 0.4s; }

/* ----- Email composer input ----- */

.demo-input-email {
  align-items: stretch;
  padding-top: 12px;
}
.demo-input-email textarea {
  flex: 1;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14.5px;
  color: var(--text);
  font-family: inherit;
  resize: none;
  min-height: 60px;
  transition: border-color 0.15s, background 0.15s;
}
.demo-input-email textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0,0,0,0.6);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.15);
}
.demo-input-email textarea::placeholder { color: var(--text-4); }
.demo-input-email .btn-primary {
  align-self: flex-end;
}

/* ----- Chat mode (bubbles) ----- */

.demo-bubble {
  display: flex;
  gap: 10px;
  max-width: 88%;
}
.demo-bubble.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.demo-bubble-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
  margin-top: 2px;
}
.demo-bubble-text {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14.5px;
  line-height: 1.5;
  white-space: pre-wrap;
}
.demo-bubble.assistant .demo-bubble-text {
  background: rgba(255,255,255,0.05);
  border-bottom-left-radius: 4px;
  color: var(--text);
}
.demo-bubble.user .demo-bubble-text {
  background: linear-gradient(135deg, #2D4FFF, #1E3AFF);
  color: white;
  border-bottom-right-radius: 4px;
}

.demo-typing {
  display: inline-flex;
  gap: 4px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
}
.demo-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-3);
  animation: typing 1.4s infinite;
}
.demo-typing span:nth-child(2) { animation-delay: 0.2s; }
.demo-typing span:nth-child(3) { animation-delay: 0.4s; }

.demo-chips {
  display: flex;
  gap: 8px;
  padding: 12px 20px 0;
  flex-wrap: wrap;
}
.demo-chip {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.025);
  color: var(--text-2);
  font-size: 13px;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.demo-chip:hover:not(:disabled) {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--text);
}
.demo-chip:disabled { opacity: 0.4; cursor: not-allowed; }

.demo-input {
  display: flex;
  gap: 8px;
  padding: 16px 20px 20px;
  align-items: center;
}
.demo-input input {
  flex: 1;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14.5px;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.demo-input input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0,0,0,0.6);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.15);
}
.demo-input input::placeholder { color: var(--text-4); }
.demo-input .btn-primary {
  padding: 13px 18px;
  border-radius: 12px;
  font-size: 14px;
}
.demo-input .btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.demo-foot {
  text-align: center;
  margin-top: 24px;
}

/* ---------- Subpages (Um okkur, Verðlag, Leiðbeiningar, etc.) ---------- */

.subpage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.sub-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.sub-nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.sub-nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}
.sub-nav-links a {
  font-size: 13.5px;
  color: var(--text-2);
  transition: color 0.15s;
}
.sub-nav-links a:hover { color: var(--text); }

@media (max-width: 680px) {
  .sub-nav-links a:not(.btn) { display: none; }
}

.sub-hero {
  padding: 100px 0 60px;
  border-bottom: 1px solid var(--line);
}
.sub-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px;
}
.sub-hero h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  margin-top: 20px;
  margin-bottom: 18px;
}
.sub-hero p {
  font-size: 18px;
  color: var(--text-2);
  max-width: 60ch;
}

.sub-body {
  flex: 1;
  padding: 80px 0 100px;
}
.sub-body-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.sub-section h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 18px;
}
.sub-section p {
  font-size: 16.5px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
}
.sub-section p:last-child { margin-bottom: 0; }
.sub-section ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sub-section ul li {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.6;
  padding-left: 26px;
  position: relative;
}
.sub-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--accent-soft);
  border: 1px solid rgba(0,212,255,0.3);
  background-image: linear-gradient(135deg, transparent 50%, var(--accent) 50%);
  background-size: 6px 6px;
  background-position: center;
  background-repeat: no-repeat;
}

.sub-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 10px;
}

.sub-callout {
  padding: 24px 28px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(45,79,255,0.08), rgba(45,79,255,0.02));
  border: 1px solid rgba(45,79,255,0.25);
  font-size: 15.5px;
  color: var(--text-2);
}
.sub-callout strong { color: var(--text); }

.sub-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Pricing subpage cards (revived for /verdlag) */
.sub-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
@media (max-width: 860px) { .sub-pricing { grid-template-columns: 1fr; } }

.sub-price-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.sub-price-card.featured {
  border-color: rgba(45, 79, 255, 0.5);
  background:
    radial-gradient(600px 300px at 50% -10%, rgba(45,79,255,0.18), transparent 60%),
    linear-gradient(180deg, rgba(45,79,255,0.06), rgba(255,255,255,0.005));
  box-shadow: 0 0 0 1px rgba(45,79,255,0.4), 0 30px 80px -20px rgba(45,79,255,0.35);
}
.sub-price-card.featured::before {
  content: 'Vinsælast';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 999px;
}
.sub-price-card .price-name { color: var(--accent); font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; }
.sub-price-card .price-tier-title { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; }
.sub-price-card .price-sub { font-size: 14px; color: var(--text-3); }
.sub-price-card ul { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.sub-price-card ul li { font-size: 14.5px; color: var(--text-2); display: flex; gap: 10px; align-items: flex-start; padding: 0; }
.sub-price-card ul li::before {
  content: '';
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 4px;
  border-radius: 4px;
  background: var(--primary-soft);
  background-image: linear-gradient(135deg, transparent 50%, var(--accent) 50%);
  background-size: 7px 7px;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  position: static;
  left: auto;
  top: auto;
}

/* FAQ accordion */
.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  transition: border-color 0.15s;
}
.faq-item[open] {
  border-color: var(--line-strong);
  background: rgba(255,255,255,0.035);
}
.faq-item summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--text-3);
  font-weight: 300;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: '−';
  transform: rotate(0);
}
.faq-item > div {
  padding: 0 24px 20px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- Footnotes / utility ---------- */

.divider-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-4);
  margin: 0 8px;
  vertical-align: middle;
}
