/* ============================================================
   DreamItAI — Premium Design System
   Dark theme · AI-first · Conversion-optimized
   ============================================================ */

:root {
  /* Brand */
  --bg: #05070d;
  --bg-soft: #0a0e18;
  --bg-card: #0d1220;
  --bg-card-hover: #111827;
  --border: #1c2436;
  --border-light: #27324a;

  /* Accent — electric violet → cyan gradient (AI-følelse) */
  --accent: #7c5cff;
  --accent-2: #00d4ff;
  --accent-gradient: linear-gradient(135deg, #7c5cff 0%, #00d4ff 100%);
  --accent-glow: rgba(124, 92, 255, 0.35);
  --accent-2-glow: rgba(0, 212, 255, 0.25);

  /* Text */
  --text: #e8ecf4;
  --text-muted: #93a0b8;
  --text-dim: #5c6a85;

  /* Status */
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* Typography */
  --font-sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Consolas, monospace;

  /* Layout */
  --container: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  /* Effects */
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.55);
  --glass: rgba(255, 255, 255, 0.03);

  /* Transitions */
  --t: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--accent-2); text-decoration: none; transition: color var(--t); }
a:hover { color: #4de3ff; }
ul, ol { list-style-position: inside; }
button { font-family: inherit; cursor: pointer; }

::selection { background: rgba(124, 92, 255, 0.4); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1e2940; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #2b3a5c; }

/* ============ AMBIENT BACKGROUND ============ */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 45% at 15% -10%, rgba(124, 92, 255, 0.14), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(0, 212, 255, 0.09), transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 110%, rgba(124, 92, 255, 0.08), transparent 60%),
    var(--bg);
}
.ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black, transparent 75%);
}

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

/* ============ NAVBAR ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(5, 7, 13, 0.78);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--accent-gradient);
  display: grid;
  place-items: center;
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 0 24px var(--accent-glow);
}
.logo span em { font-style: normal; background: var(--accent-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: var(--text-muted);
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: 8px;
  transition: all var(--t);
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: #fff; background: rgba(124,92,255,0.14); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-burger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  color: var(--text);
  font-size: 18px;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(5, 7, 13, 0.98);
  padding: 90px 28px 40px;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all var(--t);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px var(--accent-glow);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  border-color: var(--border-light);
  color: var(--text);
}
.btn-secondary:hover { border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 16px 34px; font-size: 16px; border-radius: 14px; }
.btn-sm { padding: 9px 18px; font-size: 13.5px; border-radius: 9px; }

/* ============ HERO ============ */
.hero { position: relative; padding: 96px 0 72px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 92, 255, 0.1);
  border: 1px solid rgba(124, 92, 255, 0.3);
  color: #b9a8ff;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.8); }
}
.hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero h1 .grad {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 560px;
}
.stat {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  backdrop-filter: blur(8px);
}
.stat .num {
  font-size: 28px;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.stat .lbl { font-size: 12.5px; color: var(--text-dim); margin-top: 4px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0.8;
}
.card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.card-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: grid; place-items: center;
  font-weight: 800; font-size: 18px; color: #fff;
}
.card-name { font-weight: 700; font-size: 15px; }
.card-role { font-size: 12.5px; color: var(--text-dim); }
.card-badge {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--success);
  background: rgba(34, 197, 94, 0.12);
  padding: 5px 11px; border-radius: 100px;
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.chat-bubble {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px 17px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.55;
}
.chat-bubble.user { border-color: rgba(124, 92, 255, 0.35); background: rgba(124, 92, 255, 0.07); color: var(--text); }
.chat-bubble.ai { border-left: 3px solid var(--accent); }
.typing { display: inline-flex; gap: 4px; padding: 4px 0; }
.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--text-dim); animation: typing 1.4s infinite; }
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-5px); opacity: 1; } }

.hero-chip-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.chip {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 6px 13px;
  border-radius: 100px;
}

/* Floating badge */
.float-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 13px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}
.float-badge .f-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.12);
  display: grid; place-items: center;
  font-size: 18px;
}
.float-badge .f-num { font-size: 17px; font-weight: 800; line-height: 1.1; }
.float-badge .f-lbl { font-size: 11.5px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ============ LOGO STRIP ============ */
.logo-strip { padding: 34px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.015); }
.logo-strip p { text-align: center; font-size: 12.5px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 22px; font-weight: 600; }
.logo-row { display: flex; justify-content: center; align-items: center; gap: 42px; flex-wrap: wrap; }
.logo-row span {
  font-size: 15px;
  font-weight: 700;
  color: #4b5870;
  letter-spacing: -0.01em;
  transition: color var(--t);
  white-space: nowrap;
}
.logo-row span:hover { color: var(--text-muted); }

/* ============ SECTIONS ============ */
.section { padding: 92px 0; }
.section-alt { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-head p { color: var(--text-muted); font-size: 17px; }

/* ============ SERVICE CARDS ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity var(--t);
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow);
}
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 24px;
  margin-bottom: 20px;
  background: rgba(124, 92, 255, 0.12);
  border: 1px solid rgba(124, 92, 255, 0.25);
}
.service-card:nth-child(2n) .service-icon { background: rgba(0, 212, 255, 0.1); border-color: rgba(0, 212, 255, 0.25); }
.service-card:nth-child(3n) .service-icon { background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.25); }
.service-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.service-card p { color: var(--text-muted); font-size: 14.5px; margin-bottom: 18px; flex-grow: 1; }
.service-card .link {
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.service-card .link .arr { transition: transform var(--t); }
.service-card:hover .link .arr { transform: translateX(4px); }

/* ============ HOW IT WORKS ============ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.step-num {
  font-size: 44px;
  font-weight: 800;
  font-family: var(--font-mono);
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.85;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: 14.5px; }

/* ============ FEATURES / CHECKLIST ============ */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: all var(--t);
}
.feature-item:hover { border-color: var(--border-light); background: var(--bg-card-hover); }
.feature-item .f-check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  display: grid; place-items: center;
  font-size: 13px;
  color: var(--success);
  margin-top: 2px;
}
.feature-item h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 4px; }
.feature-item p { font-size: 14px; color: var(--text-muted); }

/* ============ PLANS ============ */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--t);
}
.plan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.plan-card.popular {
  border-color: rgba(124, 92, 255, 0.5);
  background: linear-gradient(170deg, rgba(124,92,255,0.09), rgba(0,212,255,0.03)), var(--bg-card);
  box-shadow: 0 0 60px rgba(124, 92, 255, 0.12);
}
.plan-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.plan-name { font-size: 14px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.plan-price { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 4px; }
.plan-price small { font-size: 15px; font-weight: 500; color: var(--text-dim); }
.plan-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 22px; }
.plan-feats { list-style: none; margin-bottom: 28px; flex-grow: 1; }
.plan-feats li {
  display: flex; gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  padding: 7px 0;
}
.plan-feats li .chk { color: var(--success); flex-shrink: 0; font-size: 12px; margin-top: 3px; }

/* ============ CASES ============ */
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t);
}
.case-card:hover { transform: translateY(-4px); border-color: var(--border-light); box-shadow: var(--shadow); }
.case-body { padding: 28px; }
.case-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.case-tag {
  font-size: 11.5px; font-weight: 600;
  padding: 4px 11px; border-radius: 100px;
  background: rgba(124,92,255,0.1);
  border: 1px solid rgba(124,92,255,0.25);
  color: #b9a8ff;
}
.case-tag.green { background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.25); color: #7ee2a8; }
.case-tag.cyan { background: rgba(0,212,255,0.1); border-color: rgba(0,212,255,0.25); color: #7deaff; }
.case-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.case-card p { color: var(--text-muted); font-size: 14.5px; margin-bottom: 16px; }
.case-results { display: flex; gap: 26px; padding-top: 16px; border-top: 1px solid var(--border); }
.case-results .r { }
.case-results .r-num { font-size: 22px; font-weight: 800; background: var(--accent-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.case-results .r-lbl { font-size: 12px; color: var(--text-dim); }

/* ============ TECH GRID ============ */
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tech-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  transition: all var(--t);
}
.tech-item:hover { border-color: var(--accent); transform: translateY(-3px); }
.tech-item .t-emoji { font-size: 26px; margin-bottom: 8px; display: block; }
.tech-item .t-name { font-size: 13.5px; font-weight: 600; }
.tech-item .t-cat { font-size: 11.5px; color: var(--text-dim); }

/* ============ TESTIMONIALS ============ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.testi-stars { color: #fbbf24; font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { color: var(--text-muted); font-size: 14.5px; font-style: italic; flex-grow: 1; margin-bottom: 18px; line-height: 1.6; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
  color: #fff;
  background: var(--accent-gradient);
}
.testi-name { font-size: 14px; font-weight: 600; }
.testi-role { font-size: 12.5px; color: var(--text-dim); }

/* ============ FAQ ============ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item:hover { border-color: var(--border-light); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}
.faq-q .chev { color: var(--text-dim); transition: transform var(--t); font-size: 13px; flex-shrink: 0; }
.faq-item.open .chev { transform: rotate(180deg); color: var(--accent-2); }
.faq-a {
  display: none;
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }
.faq-a a { text-decoration: underline; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(140deg, rgba(124,92,255,0.16), rgba(0,212,255,0.08)), var(--bg-card);
  border: 1px solid rgba(124, 92, 255, 0.35);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -20%;
  width: 60%;
  height: 220%;
  background: radial-gradient(circle, rgba(124,92,255,0.2), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 14px; }
.cta-banner p { color: var(--text-muted); font-size: 16.5px; max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ PAGE HERO (interne sider) ============ */
.page-hero { padding: 84px 0 56px; }
.page-hero h1 { font-size: clamp(34px, 4.5vw, 54px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 18px; max-width: 850px; }
.page-hero h1 .grad { background: var(--accent-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.page-hero .lead { font-size: 18px; color: var(--text-muted); max-width: 720px; margin-bottom: 28px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--text-dim); margin-bottom: 26px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--accent-2); }
.breadcrumb .sep { color: #2c3852; }

/* ============ PROSE (indholdssider) ============ */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-size: 27px; font-weight: 800; letter-spacing: -0.02em; margin: 44px 0 16px; }
.prose h3 { font-size: 20px; font-weight: 700; margin: 32px 0 12px; }
.prose p { color: var(--text-muted); font-size: 16px; margin-bottom: 18px; line-height: 1.75; }
.prose ul, .prose ol { color: var(--text-muted); font-size: 16px; margin-bottom: 18px; line-height: 1.75; padding-left: 8px; }
.prose li { margin-bottom: 8px; }
.prose li::marker { color: var(--accent); }
.prose strong { color: var(--text); }
.prose a { text-decoration: underline; }
.prose .callout {
  background: rgba(124,92,255,0.07);
  border: 1px solid rgba(124,92,255,0.25);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 24px 0;
  font-size: 15px;
  color: var(--text-muted);
}
.prose .callout strong { color: #d6ccff; }
.prose table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14.5px; }
.prose th {
  text-align: left;
  background: var(--bg-card);
  color: var(--text);
  font-weight: 700;
  padding: 12px 14px;
  border: 1px solid var(--border);
}
.prose td { padding: 11px 14px; border: 1px solid var(--border); color: var(--text-muted); }
.prose tr:nth-child(even) td { background: rgba(255,255,255,0.015); }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 28px; }
.contact-row {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 12px;
}
.contact-row .c-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(124,92,255,0.12);
  border: 1px solid rgba(124,92,255,0.25);
  display: grid; place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-row h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 3px; }
.contact-row p, .contact-row a { font-size: 14px; color: var(--text-muted); }
.contact-row a:hover { color: var(--accent-2); }

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color var(--t);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124,92,255,0.15);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 12.5px; color: var(--text-dim); margin-top: 12px; }
.form-success {
  display: none;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #7ee2a8;
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  font-size: 14px;
  margin-bottom: 18px;
}
.form-success.show { display: block; }

/* ============ TEAM / NETWORK ============ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.member-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  text-align: center;
  transition: all var(--t);
}
.member-card:hover { transform: translateY(-4px); border-color: var(--border-light); box-shadow: var(--shadow); }
.member-avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--accent-gradient);
  display: grid; place-items: center;
  font-size: 26px; font-weight: 800; color: #fff;
  box-shadow: 0 0 30px var(--accent-glow);
}
.member-card h3 { font-size: 17px; font-weight: 700; }
.member-card .m-role { font-size: 13px; color: var(--accent-2); font-weight: 600; margin: 4px 0 12px; }
.member-card p { font-size: 13.5px; color: var(--text-muted); }

/* ============ TIMELINE ============ */
.timeline { max-width: 760px; margin: 0 auto; position: relative; padding-left: 34px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 10px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2), transparent);
  opacity: 0.5;
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -32px; top: 7px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--accent);
}
.timeline-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.timeline-item .t-date { font-size: 12.5px; color: var(--text-dim); font-family: var(--font-mono); margin-bottom: 8px; }
.timeline-item p { color: var(--text-muted); font-size: 14.5px; }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--border); background: var(--bg-soft); padding: 64px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand p { color: var(--text-dim); font-size: 14px; margin-top: 14px; max-width: 300px; }
.footer h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-dim); font-size: 14px; }
.footer-links a:hover { color: var(--accent-2); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--accent-2); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid, .steps-grid, .plans-grid, .testi-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 560px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .btn-secondary { display: none; }
  .nav-burger { display: grid; place-items: center; }
  .hero { padding: 64px 0 48px; }
  .services-grid, .steps-grid, .plans-grid, .testi-grid, .team-grid, .feature-grid, .cases-grid, .contact-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 64px 0; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .stat { padding: 14px; }
  .stat .num { font-size: 22px; }
  .float-badge { left: 8px; }
  .cta-banner { padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============ ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
