/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #18181B;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── Utilities ──────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Nav ────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1100px;
  z-index: 100;
  border-radius: 14px;
  transition: background 350ms ease, border-color 350ms ease, box-shadow 350ms ease;
}

/* Light mode (default, over white sections) */
nav.nav-light {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(228, 228, 231, 0.6);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
nav.nav-light .nav-logo-text { color: #18181B; }
nav.nav-light .nav-link { color: #52525B; }
nav.nav-light .nav-link:hover { color: #18181B; }
nav.nav-light .nav-link.active { color: #18181B; }
nav.nav-light .nav-toggle svg { stroke: #18181B; }

/* Dark mode (over dark sections) */
nav.nav-dark {
  background: rgba(15, 15, 16, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
nav.nav-dark .nav-logo-text { color: #FAFAFA; }
nav.nav-dark .nav-link { color: #A1A1AA; }
nav.nav-dark .nav-link:hover { color: #FAFAFA; }
nav.nav-dark .nav-link.active { color: #FAFAFA; }
nav.nav-dark .nav-toggle svg { stroke: #FAFAFA; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 34px;
  height: 34px;
  background: #EA580C;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon span {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.nav-logo-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
  transition: color 350ms ease;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  transition: color 350ms ease;
}
.nav-link.active { font-weight: 600; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  background: #EA580C;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 150ms ease;
}
.nav-cta:hover { background: #C2410C; }

/* ─── Mobile nav toggle ──────────────────────────────────── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 350ms ease;
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  padding: 160px 0 120px;
  background: #0F0F10;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(234,88,12,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}
/* ─── Social proof counter ────────────────────────── */
/* Hidden for now - remove display:none to re-enable */
.social-proof {
  display: none !important;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
}
.social-proof-avatars {
  display: flex;
  margin-bottom: -14px;
  position: relative;
  z-index: 2;
}
.social-proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid #0F0F10;
  margin-left: -10px;
  display: block;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.social-proof-avatar:first-child {
  margin-left: 0;
}
.social-proof-pill {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 22px 24px 10px;
  position: relative;
  z-index: 1;
}
.social-proof-text {
  font-size: 13px;
  color: #A1A1AA;
}
.social-proof-count {
  font-weight: 700;
  color: #FAFAFA;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(234,88,12,0.15);
  border: 1px solid rgba(234,88,12,0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: #FB923C;
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: #EA580C;
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  color: #FAFAFA;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero h1 span {
  color: #EA580C;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: #A1A1AA;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.65;
  font-weight: 400;
}
.hero-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 20px;
}
.hero-form input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #FAFAFA;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 150ms ease, background 150ms ease;
}
.hero-form input::placeholder { color: #52525B; }
.hero-form input:focus {
  border-color: #EA580C;
  background: rgba(255,255,255,0.09);
}
.hero-form button {
  height: 48px;
  padding: 0 24px;
  background: #EA580C;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 150ms ease;
  white-space: nowrap;
  font-family: inherit;
}
.hero-form button:hover { background: #C2410C; }
.hero-note {
  font-size: 14px;
  color: #71717A;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}
.hero-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: #52525B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.hero-stat-value {
  font-size: 22px;
  font-weight: 700;
  color: #FAFAFA;
}

/* ─── Trusted by ─────────────────────────────────────────── */
.trust {
  padding: 40px 0;
  border-bottom: 1px solid #E4E4E7;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 13px;
  font-weight: 500;
  color: #A1A1AA;
  white-space: nowrap;
}
.trust-trades {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-tag {
  padding: 5px 12px;
  background: #F4F4F5;
  border: 1px solid #E4E4E7;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #52525B;
}

/* ─── Section shared ─────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #EA580C;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #18181B;
  line-height: 1.15;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: #71717A;
  max-width: 520px;
  line-height: 1.65;
}

/* ─── Features ───────────────────────────────────────────── */
.features {
  padding: 120px 0;
}
.features-header {
  margin-bottom: 72px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #E4E4E7;
  border: 1px solid #E4E4E7;
  border-radius: 12px;
  overflow: hidden;
}
.feature-card {
  background: #fff;
  padding: 36px 32px;
  transition: background 150ms ease;
}
.feature-card:hover { background: #FAFAFA; }
.feature-icon {
  width: 44px;
  height: 44px;
  background: #FFF7ED;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: #EA580C;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-title {
  font-size: 16px;
  font-weight: 700;
  color: #18181B;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.feature-desc {
  font-size: 14px;
  color: #71717A;
  line-height: 1.6;
}

/* ─── Pain ───────────────────────────────────────────────── */
.pain {
  padding: 120px 0;
  background: #FAFAFA;
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}
.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pain-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pain-item-icon {
  width: 32px;
  height: 32px;
  background: #F0FDF4;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pain-item-icon svg {
  width: 16px;
  height: 16px;
  stroke: #16A34A;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pain-item-title {
  font-size: 15px;
  font-weight: 600;
  color: #18181B;
  margin-bottom: 3px;
}
.pain-item-desc {
  font-size: 13px;
  color: #71717A;
  line-height: 1.5;
}
.pain-visual {
  background: #fff;
  border: 1px solid #E4E4E7;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.mock-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F4F4F5;
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-title {
  font-size: 13px;
  font-weight: 600;
  color: #18181B;
  margin-left: 4px;
}
.mock-pipeline {
  display: flex;
  gap: 8px;
  overflow: hidden;
}
.mock-col {
  flex: 1;
  min-width: 0;
}
.mock-col-label {
  font-size: 10px;
  font-weight: 600;
  color: #A1A1AA;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.mock-card {
  background: #F4F4F5;
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 6px;
}
.mock-card-name { font-size: 11px; font-weight: 600; color: #18181B; }
.mock-card-sub { font-size: 10px; color: #71717A; margin-top: 2px; }
.mock-badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 500;
  margin-top: 5px;
}

/* ─── Steps ──────────────────────────────────────────────── */
.steps {
  padding: 120px 0;
}
.steps-header { margin-bottom: 72px; }
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
}
.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #18181B;
  color: #FAFAFA;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step:first-child .step-num { background: #EA580C; }
.step-line {
  width: 2px;
  flex: 1;
  min-height: 48px;
  background: #E4E4E7;
  margin: 8px 0;
}
.step:last-child .step-line { display: none; }
.step-body { padding-top: 8px; padding-bottom: 40px; }
.step-title {
  font-size: 18px;
  font-weight: 700;
  color: #18181B;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.step-desc {
  font-size: 15px;
  color: #71717A;
  line-height: 1.65;
}

/* ─── Pricing ────────────────────────────────────────────── */
.pricing {
  padding: 120px 0;
  background: #FAFAFA;
}
.pricing-header { margin-bottom: 64px; }
.pricing-card {
  max-width: 520px;
  background: #fff;
  border: 1px solid #E4E4E7;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.pricing-amount {
  font-size: 48px;
  font-weight: 800;
  color: #18181B;
  letter-spacing: -2px;
  line-height: 1;
}
.pricing-amount span {
  font-size: 20px;
  font-weight: 500;
  color: #71717A;
  letter-spacing: 0;
}
.pricing-desc {
  font-size: 14px;
  color: #71717A;
  margin-top: 8px;
  margin-bottom: 32px;
}
.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.pricing-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #18181B;
}
.pricing-includes li svg {
  width: 16px;
  height: 16px;
  stroke: #16A34A;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  background: #EA580C;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 150ms ease;
  font-family: inherit;
}
.pricing-cta:hover { background: #C2410C; }
.pricing-note {
  font-size: 13px;
  color: #A1A1AA;
  text-align: center;
  margin-top: 14px;
}

/* ─── Waitlist CTA ───────────────────────────────────────── */
.waitlist-cta {
  padding: 120px 0;
  background: #0F0F10;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.waitlist-cta::before {
  content: '';
  position: absolute;
  bottom: -300px; left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(234,88,12,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.waitlist-cta h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: #FAFAFA;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.waitlist-cta p {
  font-size: 17px;
  color: #A1A1AA;
  margin-bottom: 40px;
}
.waitlist-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto 16px;
}
.waitlist-form input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #FAFAFA;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 150ms ease;
}
.waitlist-form input::placeholder { color: #52525B; }
.waitlist-form input:focus { border-color: #EA580C; }
.waitlist-form button {
  height: 48px;
  padding: 0 24px;
  background: #EA580C;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 150ms ease;
  font-family: inherit;
  white-space: nowrap;
}
.waitlist-form button:hover { background: #C2410C; }
.waitlist-cta-note { font-size: 14px; color: #A1A1AA; }

/* ─── Success state ──────────────────────────────────────── */
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.25);
  border-radius: 8px;
  color: #4ADE80;
  font-size: 14px;
  font-weight: 500;
  max-width: 440px;
  margin: 0 auto;
}
.form-success.visible { display: flex; }
.form-success svg {
  width: 18px;
  height: 18px;
  stroke: #4ADE80;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.form-success-light {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.25);
  border-radius: 8px;
  color: #16A34A;
  font-size: 14px;
  font-weight: 500;
  max-width: 460px;
  margin: 0 auto;
}
.form-success-light.visible { display: flex; }
.form-success-light svg {
  width: 18px;
  height: 18px;
  stroke: #16A34A;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ─── Footer ─────────────────────────────────────────────── */
footer {
  padding: 48px 0;
  border-top: 1px solid #E4E4E7;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-note {
  font-size: 13px;
  color: #A1A1AA;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: #A1A1AA;
  transition: color 150ms ease;
}
.footer-links a:hover { color: #18181B; }

/* ─── Page hero (subpages) ───────────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  background: #0F0F10;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(234,88,12,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #FAFAFA;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: clamp(16px, 2vw, 19px);
  color: #A1A1AA;
  line-height: 1.65;
}

/* ─── Content section (subpages) ─────────────────────────── */
.content-section {
  padding: 80px 0;
}
.content-section:nth-child(even) {
  background: #FAFAFA;
}
.content-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: #18181B;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.content-section p {
  font-size: 16px;
  color: #71717A;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 16px;
}
.content-section p:last-child {
  margin-bottom: 0;
}

/* ─── Feature detail (funktioner page) ───────────────────── */
.feature-detail {
  padding: 80px 0;
}
.feature-detail:nth-child(even) {
  background: #FAFAFA;
}
.feature-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-detail:nth-child(odd) .feature-detail-grid {
  direction: rtl;
}
.feature-detail:nth-child(odd) .feature-detail-grid > * {
  direction: ltr;
}
.feature-detail-text h2 {
  font-size: 28px;
  font-weight: 800;
  color: #18181B;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}
.feature-detail-text p {
  font-size: 16px;
  color: #71717A;
  line-height: 1.7;
  margin-bottom: 20px;
}
.feature-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-detail-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #18181B;
}
.feature-detail-list li svg {
  width: 16px;
  height: 16px;
  stroke: #16A34A;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.feature-detail-visual {
  background: #fff;
  border: 1px solid #E4E4E7;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-detail-visual .feature-icon {
  width: 64px;
  height: 64px;
}
.feature-detail-visual .feature-icon svg {
  width: 32px;
  height: 32px;
}

/* ─── About page ─────────────────────────────────────────── */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.about-value {
  padding: 32px;
  background: #fff;
  border: 1px solid #E4E4E7;
  border-radius: 12px;
}
.about-value h3 {
  font-size: 18px;
  font-weight: 700;
  color: #18181B;
  margin-bottom: 8px;
}
.about-value p {
  font-size: 14px;
  color: #71717A;
  line-height: 1.6;
}

/* ─── Legal page ─────────────────────────────────────────── */
.legal-content {
  padding: 140px 0 80px;
}
.legal-content h1 {
  font-size: 36px;
  font-weight: 800;
  color: #18181B;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.legal-content .legal-updated {
  font-size: 14px;
  color: #A1A1AA;
  margin-bottom: 48px;
}
.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: #18181B;
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal-content p,
.legal-content ul {
  font-size: 15px;
  color: #52525B;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 680px;
}
.legal-content ul {
  padding-left: 20px;
}
.legal-content li {
  margin-bottom: 6px;
}

/* ─── Dansk identity section ─────────────────────────────── */
.dansk-section {
  padding: 80px 0;
  background: #0F0F10;
  position: relative;
  overflow: hidden;
}
.dansk-section::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(234,88,12,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.dansk-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
}
.dansk-header .section-label {
  color: #FB923C;
}
.dansk-header .section-title {
  color: #FAFAFA;
}
.dansk-header .section-sub {
  color: #A1A1AA;
  margin: 0 auto;
}
.dansk-section-bg {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.dansk-section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 16, 0.82);
  pointer-events: none;
}
.dansk-section-bg > .container {
  position: relative;
  z-index: 2;
}
.dansk-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.dansk-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px 28px;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.dansk-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(234,88,12,0.35);
  transform: translateY(-2px);
}
.dansk-card-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.dansk-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #FAFAFA;
  margin-bottom: 8px;
}
.dansk-card p {
  font-size: 14px;
  color: #A1A1AA;
  line-height: 1.6;
}

/* ─── Nørden AI section ──────────────────────────────────── */
.noerden-section {
  padding: 120px 0;
  background: #0F0F10;
  position: relative;
  overflow: hidden;
}
.noerden-section::before {
  content: '';
  position: absolute;
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(234,88,12,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.noerden-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.noerden-text .section-label {
  color: #FB923C;
}
.noerden-text .section-title {
  color: #FAFAFA;
}
.noerden-text p {
  font-size: 16px;
  color: #A1A1AA;
  line-height: 1.7;
  margin-bottom: 24px;
}
.noerden-abilities {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.noerden-abilities li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #FAFAFA;
}
.noerden-abilities li svg {
  width: 16px;
  height: 16px;
  stroke: #EA580C;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.noerden-chat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  max-width: 420px;
}
.noerden-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.noerden-chat-avatar {
  width: 36px;
  height: 36px;
  background: #EA580C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.noerden-chat-name {
  font-size: 14px;
  font-weight: 600;
  color: #FAFAFA;
}
.noerden-chat-status {
  font-size: 12px;
  color: #16A34A;
}
.noerden-chat-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.noerden-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
}
.noerden-msg.user {
  background: #EA580C;
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.noerden-msg.bot {
  background: rgba(255,255,255,0.08);
  color: #E4E4E7;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.noerden-msg.bot strong {
  color: #FAFAFA;
}

/* ─── Simplicity section ─────────────────────────────────── */
.simplicity-section {
  padding: 100px 0;
  background: #fff;
}
.simplicity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.simplicity-toggles {
  background: #FAFAFA;
  border: 1px solid #E4E4E7;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.simplicity-toggle-header {
  font-size: 13px;
  font-weight: 600;
  color: #A1A1AA;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.simplicity-toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #F4F4F5;
}
.simplicity-toggle-item:last-child {
  border-bottom: none;
}
.simplicity-toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: #18181B;
}
.simplicity-toggle-switch {
  width: 40px;
  height: 22px;
  border-radius: 11px;
  position: relative;
}
.simplicity-toggle-switch.on {
  background: #EA580C;
}
.simplicity-toggle-switch.off {
  background: #D4D4D8;
}
.simplicity-toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 150ms ease;
}
.simplicity-toggle-switch.on::after {
  left: 21px;
}
.simplicity-toggle-switch.off::after {
  left: 3px;
}

/* ─── Roadmap / coming soon ──────────────────────────────── */
.roadmap-section {
  padding: 120px 0;
  background: #0F0F10;
  position: relative;
  overflow: hidden;
}
.roadmap-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(234,88,12,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.roadmap-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
}
.roadmap-header .section-label { color: #FB923C; }
.roadmap-header .section-title { color: #FAFAFA; }
.roadmap-header .section-sub { color: #A1A1AA; margin: 0 auto; }
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 780px;
  margin: 0 auto;
}
.roadmap-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px;
  transition: background 150ms ease, border-color 150ms ease;
}
.roadmap-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(234,88,12,0.3);
}
.roadmap-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
}
.roadmap-card-badge.soon {
  background: rgba(234,88,12,0.15);
  color: #FB923C;
  border: 1px solid rgba(234,88,12,0.3);
}
.roadmap-card-badge.planned {
  background: rgba(99,102,241,0.15);
  color: #A5B4FC;
  border: 1px solid rgba(99,102,241,0.3);
}
.roadmap-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #FAFAFA;
  margin-bottom: 6px;
}
.roadmap-card p {
  font-size: 13px;
  color: #A1A1AA;
  line-height: 1.55;
}

/* ─── Community / feedback section ───────────────────────── */
.community-section {
  padding: 100px 0;
  background: #fff;
}
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.community-text .section-sub {
  margin-bottom: 24px;
}
.community-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: community-step;
}
.community-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  counter-increment: community-step;
}
.community-step-num {
  width: 32px;
  height: 32px;
  background: #FFF7ED;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #EA580C;
  flex-shrink: 0;
}
.community-step-text {
  padding-top: 5px;
}
.community-step-text strong {
  font-size: 14px;
  font-weight: 600;
  color: #18181B;
  display: block;
  margin-bottom: 2px;
}
.community-step-text span {
  font-size: 13px;
  color: #71717A;
  line-height: 1.5;
}
.community-visual {
  background: #FAFAFA;
  border: 1px solid #E4E4E7;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.community-vote-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #F4F4F5;
}
.community-vote-item:last-child { border-bottom: none; }
.community-vote-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: #18181B;
  margin-bottom: 2px;
}
.community-vote-info p {
  font-size: 12px;
  color: #71717A;
}
.community-vote-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #FFF7ED;
  border: 1px solid #FED7AA;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #EA580C;
  cursor: default;
}

/* ─── Story timeline (om-os) ─────────────────────────────── */
.story-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
}
.story-point {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.story-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.story-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #EA580C;
  flex-shrink: 0;
  margin-top: 4px;
}
.story-line {
  width: 2px;
  flex: 1;
  min-height: 32px;
  background: #E4E4E7;
  margin: 6px 0;
}
.story-point:last-child .story-line { display: none; }
.story-body {
  padding-bottom: 28px;
}
.story-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #18181B;
  margin-bottom: 6px;
}
.story-body p {
  font-size: 14px;
  color: #71717A;
  line-height: 1.6;
}

/* ─── Vidensbase ─────────────────────────────────────────── */
.vidensbase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(228,228,231,0.15);
  border-radius: 14px;
  padding: 28px 24px;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
  text-decoration: none;
  color: inherit;
}
.article-card:hover {
  background: rgba(255,255,255,0.02);
  border-color: #EA580C;
  transform: translateY(-3px);
}
.article-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #18181B;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
  line-height: 1.35;
}
.article-card p {
  font-size: 14px;
  color: #71717A;
  line-height: 1.6;
  flex: 1;
}
.article-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 12px;
  color: #A1A1AA;
}
.article-category {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(234,88,12,0.1);
  border: 1px solid rgba(234,88,12,0.25);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: #EA580C;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .vidensbase-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Article page ───────────────────────────────────────── */
.article-hero {
  padding: 140px 0 60px;
  background: #0F0F10;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(234,88,12,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.article-hero .container {
  position: relative;
}
.article-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #FAFAFA;
  line-height: 1.2;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
  max-width: 720px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: #A1A1AA;
}
.breadcrumbs {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E4E4E7;
  font-size: 13px;
  color: #A1A1AA;
}
.breadcrumbs a {
  color: #71717A;
  transition: color 150ms ease;
}
.breadcrumbs a:hover {
  color: #EA580C;
}
.breadcrumbs span {
  margin: 0 8px;
  color: #D4D4D8;
}
.article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px;
}
.article-content h2 {
  font-size: 24px;
  font-weight: 800;
  color: #18181B;
  letter-spacing: -0.6px;
  margin-top: 48px;
  margin-bottom: 16px;
}
.article-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: #18181B;
  margin-top: 36px;
  margin-bottom: 12px;
}
.article-content p {
  font-size: 16px;
  color: #52525B;
  line-height: 1.8;
  margin-bottom: 20px;
}
.article-content ul,
.article-content ol {
  font-size: 16px;
  color: #52525B;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 24px;
}
.article-content li {
  margin-bottom: 8px;
}
.article-content blockquote {
  border-left: 3px solid #EA580C;
  padding: 16px 24px;
  margin: 28px 0;
  background: #FAFAFA;
  border-radius: 0 8px 8px 0;
  font-size: 16px;
  color: #52525B;
  font-style: italic;
}
.article-content code {
  background: #F4F4F5;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 14px;
  color: #18181B;
}
.article-content strong {
  color: #18181B;
  font-weight: 600;
}
.article-content img {
  width: 100%;
  border-radius: 10px;
  margin: 28px 0;
}

/* ─── Cookie banner ──────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: calc(100% - 32px);
  max-width: 520px;
  background: rgba(24,24,27,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  animation: cookieSlideUp 400ms ease;
}
@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-banner-text {
  font-size: 13px;
  color: #A1A1AA;
  line-height: 1.6;
  margin-bottom: 14px;
}
.cookie-banner-text a {
  color: #FB923C;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-actions {
  display: flex;
  gap: 8px;
}
.cookie-btn {
  flex: 1;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 150ms;
}
.cookie-btn.accept {
  background: #EA580C;
  color: #fff;
}
.cookie-btn.accept:hover { background: #C2410C; }
.cookie-btn.decline {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #A1A1AA;
}
.cookie-btn.decline:hover { background: rgba(255,255,255,0.1); color: #FAFAFA; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Layout */
  .container { padding: 0 16px; }

  /* Hero */
  .hero { padding: 100px 0 60px; }
  .hero h1 { font-size: 32px; letter-spacing: -1px; }
  .hero-sub { font-size: 15px; margin-bottom: 32px; }
  .hero-form { flex-direction: column; gap: 10px; }
  .hero-form input {
    width: 100%;
    height: 48px;
    min-height: 48px;
    flex: none;
    font-size: 16px;
  }
  .hero-form button {
    width: 100%;
    height: 48px;
    min-height: 48px;
    justify-content: center;
    font-size: 16px;
  }
  .hero-note { font-size: 13px; }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
    text-align: center;
  }
  .hero-stat-value { font-size: 18px; }

  /* Social proof */
  .social-proof-text { font-size: 12px; }
  .social-proof-pill { padding: 20px 20px 10px; }

  /* Trust bar */
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .trust-trades { gap: 6px; }
  .trust-tag { font-size: 12px; padding: 4px 10px; }

  /* Grids to single column */
  .features-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; gap: 32px; }
  .pain-visual { display: block; }
  .feature-detail-grid { grid-template-columns: 1fr; gap: 24px; }
  .feature-detail:nth-child(odd) .feature-detail-grid { direction: ltr; }
  .about-values { grid-template-columns: 1fr; }
  .vidensbase-grid { grid-template-columns: 1fr; }
  .dansk-cards { grid-template-columns: 1fr; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; gap: 32px; }
  .noerden-grid { grid-template-columns: 1fr; gap: 32px; }
  .noerden-chat { max-width: 100%; }
  .simplicity-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Sections padding */
  .features { padding: 80px 0; }
  .pain { padding: 80px 0; }
  .steps { padding: 80px 0; }
  .pricing { padding: 80px 0; }
  .dansk-section { padding: 60px 0; }
  .noerden-section { padding: 80px 0; }
  .simplicity-section { padding: 80px 0; }
  .community-section { padding: 80px 0; }
  .waitlist-cta { padding: 80px 0; }
  .content-section { padding: 60px 0; }
  .feature-detail { padding: 60px 0; }
  .roadmap-section { padding: 80px 0; }

  /* Section titles */
  .section-title { font-size: 24px; letter-spacing: -0.8px; }
  .section-sub { font-size: 15px; }

  /* Page hero */
  .page-hero { padding: 100px 0 50px; }
  .page-hero h1 { font-size: 28px; letter-spacing: -1px; }
  .page-hero p { font-size: 15px; }

  /* Pricing */
  .pricing-card { padding: 24px 20px; }
  .pricing-amount { font-size: 28px; }

  /* Waitlist CTA */
  .waitlist-cta h2 { font-size: 26px; }
  .waitlist-form { flex-direction: column; gap: 10px; }
  .waitlist-form input {
    width: 100%;
    height: 48px;
    min-height: 48px;
    flex: none;
    font-size: 16px;
  }
  .waitlist-form button {
    width: 100%;
    height: 48px;
    min-height: 48px;
    justify-content: center;
    font-size: 16px;
  }

  /* Feature cards */
  .feature-card { padding: 24px 20px; }

  /* Pain items */
  .pain-item-title { font-size: 14px; }
  .pain-item-desc { font-size: 12px; }

  /* Noerden chat */
  .noerden-msg { max-width: 92%; font-size: 12px; }

  /* Steps */
  .step-title { font-size: 16px; }
  .step-desc { font-size: 14px; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { flex-wrap: wrap; gap: 12px; }

  /* Win cards (inline grid) */
  div[style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  /* Comparison table scroll */
  div[style*="grid-template-columns: 1fr auto auto"] {
    font-size: 12px !important;
  }

  /* Community visual */
  .community-vote-item { flex-direction: column; align-items: flex-start; gap: 8px; }
  .community-vote-btn { align-self: flex-end; }

  /* Dansk image */
  .dansk-image { max-width: 100%; margin-bottom: 32px; }

  /* Mobile nav */
  nav { width: calc(100% - 24px); top: 8px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0; right: 0;
    flex-direction: column;
    padding: 12px 20px 20px;
    gap: 14px;
    border-radius: 0 0 14px 14px;
  }
  nav.nav-light .nav-links {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(228,228,231,0.4);
  }
  nav.nav-dark .nav-links {
    background: rgba(15,15,16,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
}
