/*
Theme Name: AI Blackbelt
Theme URI: https://aiblackbelt.dk
Description: Officielt tema til aiblackbelt.dk – Danmarks strukturerede AI-uddannelsesplatform.
Author: AI Blackbelt
Author URI: https://aiblackbelt.dk
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: aiblackbelt
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  background-color: #080f24;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== COLOR TOKENS – aiblackbelt.dk tema ===== */
:root {
  --bg-deep:       #080f24;
  --bg-dark:       #0d1f45;
  --bg-card:       #0d2060;
  --bg-card-hover: #122570;
  --border:        #1b3f8b;
  --accent:        #4070f4;
  --accent-glow:   #2a5af0;
  --accent-light:  #7095f8;
  --accent-pale:   #c7d6fd;
  --blue-mid:      #1b3f8b;
  --blue-bright:   #4070f4;
  --gold:          #f9b742;
  --gold-dark:     #e6a020;
  --green:         #22c55e;
  --text-primary:  #ffffff;
  --text-muted:    #94b0d8;
  --text-dim:      #64748b;
  --bg-light:      #f5f7ff;
  --gradient-hero:   linear-gradient(135deg, #080f24 0%, #0d1f45 50%, #1b3f8b 100%);
  --gradient-card:   linear-gradient(135deg, #0d2060, #0a1f58);
  --gradient-accent: linear-gradient(90deg, #4070f4, #1b3f8b);
  --gradient-gold:   linear-gradient(90deg, #f9b742, #f0a30a);
  --radius:    12px;
  --radius-lg: 20px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(5, 13, 26, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-accent);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.nav-logo span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.nav-logo span em {
  font-style: normal;
  color: var(--accent);
}

/* WordPress menu reset */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li { list-style: none; }
.nav-links a {
  color: var(--text-muted); font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent-light); }

/* WP nav menu generated class */
#primary-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
#primary-menu li { list-style: none; }
#primary-menu a {
  color: var(--text-muted); font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
#primary-menu a:hover { color: var(--accent-light); }

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.55rem 1.3rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  border: none;
  font-family: inherit;
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted); font-weight: 600;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}
.btn-primary {
  background: var(--gradient-gold);
  border: 1px solid transparent;
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(64,112,244,0.25);
  font-weight: 700;
}
.btn-primary:hover {
  box-shadow: 0 0 32px rgba(64,112,244,0.35);
  transform: translateY(-2px);
}
.btn-lg { padding: 0.8rem 1.8rem; font-size: 0.95rem; border-radius: 10px; }
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 6rem 5% 4rem;
  background: var(--gradient-hero);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(64,112,244,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(64,112,244,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(64,112,244,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64,112,244,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(64,112,244,0.15);
  border: 1px solid rgba(64,112,244,0.35);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-content { position: relative; z-index: 2; }
.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}
.hero-title .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-highlight, mark {
  background: rgba(249,183,66,0.2);
  color: #ffffff;
  padding: 2px 5px;
  border-radius: 3px;
  font-weight: inherit;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted); font-weight: 600;
  max-width: 520px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.95rem, 2vw, 2rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}
.stat-num a {
  color: inherit;
  text-decoration: none;
}
.stat-num a:hover {
  text-decoration: underline;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-dim); font-weight: 600;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero visual */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-karate-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 210px;
  height: 210px;
  object-fit: contain;
  z-index: 3;
}
.belt-visual {
  position: relative;
  width: 340px;
  height: 340px;
}
.belt-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(64,112,244,0.35);
  animation: spin-slow linear infinite;
}
.belt-ring:nth-child(1) { inset: 0; animation-duration: 20s; }
.belt-ring:nth-child(2) { inset: 30px; animation-duration: 15s; animation-direction: reverse; border-color: rgba(64,112,244,0.25); }
.belt-ring:nth-child(3) { inset: 60px; animation-duration: 10s; border-color: rgba(64,112,244,0.2); }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.belt-core {
  position: absolute;
  inset: 90px;
  background: var(--gradient-card);
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  box-shadow: 0 0 60px rgba(64,112,244,0.2), inset 0 0 40px rgba(64,112,244,0.08);
}
.belt-core-inner { text-align: center; }
.belt-core-icon { font-size: 2.8rem; line-height: 1; margin-bottom: 6px; }
.belt-core-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.belt-dot {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
}
.belt-dot:nth-child(5) { top: 5px; left: 50%; transform: translateX(-50%); }
.belt-dot:nth-child(6) { bottom: 5px; left: 50%; transform: translateX(-50%); background: var(--blue-bright); box-shadow: 0 0 10px var(--blue-bright); }
.belt-dot:nth-child(7) { left: 5px; top: 50%; transform: translateY(-50%); background: #f9b742; box-shadow: 0 0 10px #f9b742; }
.belt-dot:nth-child(8) { right: 5px; top: 50%; transform: translateY(-50%); background: #f9b742; box-shadow: 0 0 10px #f9b742; }

/* ===== SECTION SHARED ===== */
section { padding: 5rem 5%; }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted); font-weight: 600;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.section-header { margin-bottom: 3rem; }

/* ===== LOGOS STRIP ===== */
.logos-strip {
  padding: 2.5rem 5%;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logos-label {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim); font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.logo-pill {
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dim); font-weight: 600;
  transition: all 0.2s;
}
.logo-pill:hover { border-color: var(--accent); color: var(--accent-light); }

/* ===== FEATURES ===== */
.features { background: var(--bg-deep); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.25s;
  cursor: default;
}
.feature-card:hover {
  border-color: rgba(64,112,244,0.25);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(64,112,244,0.2);
}
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(64,112,244,0.15);
  border: 1px solid rgba(64,112,244,0.2);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.feature-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.feature-desc {
  font-size: 0.875rem;
  color: var(--text-muted); font-weight: 600;
  line-height: 1.65;
}
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s;
}
.feature-link:hover { gap: 8px; }

/* ===== UDDANNELSER — GRATIS KONSULTATION + FORM ===== */
.uddannelser-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.uddannelser-cta-col,
.uddannelser-form-col {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.uddannelser-cta-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.uddannelser-cta-col .kontakt-title { margin-top: 0.5rem; }
.uddannelser-cta-col .btn {
  margin-top: 1.5rem;
  align-self: flex-start;
}
@media (max-width: 768px) {
  .uddannelser-split { grid-template-columns: 1fr; }
  .uddannelser-cta-col { order: 1; }
  .uddannelser-form-col { order: 2; }
}

/* ===== BELTS ===== */
.belts { background: var(--bg-dark); }
.belts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.belt-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.belt-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.belt-card.white::before  { background: linear-gradient(90deg, #94a3b8, #cbd5e1); }
.belt-card.yellow::before { background: linear-gradient(90deg, #bae6fd, #7dd3fc); }
.belt-card.green::before  { background: linear-gradient(90deg, #38bdf8, #0ea5e9); }
.belt-card.blue::before   { background: linear-gradient(90deg, #0ea5e9, #3b82f6); }
.belt-card.black::before  { background: linear-gradient(90deg, #1d4ed8, #1e3a8a); }
.belt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(64,112,244,0.2);
  border-color: rgba(64,112,244,0.25);
}
.belt-emoji { font-size: 2.2rem; margin-bottom: 0.75rem; }
.belt-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.belt-level {
  font-size: 0.72rem;
  color: var(--text-dim); font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.belt-desc {
  font-size: 0.82rem;
  color: var(--text-muted); font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.belt-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(64,112,244,0.15);
  border: 1px solid rgba(64,112,244,0.2);
  border-radius: 20px;
  font-size: 0.7rem;
  color: #ffffff;
  font-weight: 700;
}

/* ===== HOW IT WORKS ===== */
.how { background: var(--bg-deep); }
.steps-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 760px;
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.step:not(:last-child) .step-line {
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--border), transparent);
}
.step-num {
  width: 56px; height: 56px;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  z-index: 1;
}
.step-content { padding-top: 12px; }
.step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.step-desc {
  font-size: 0.875rem;
  color: var(--text-muted); font-weight: 600;
  line-height: 1.65;
}

/* ===== COURSES ===== */
.courses { background: var(--bg-dark); }
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.course-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s;
}
.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(64,112,244,0.2);
  border-color: rgba(64,112,244,0.25);
}
.course-img {
  height: 160px;
  background: linear-gradient(135deg, #122570, #1b3f8b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.course-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(233,236,239,0.6));
}
.course-cat {
  position: absolute;
  bottom: 12px; left: 16px;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255,255,255,0.92);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(64,112,244,0.35);
}
.course-body { padding: 1.5rem; }
.course-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.course-desc {
  font-size: 0.82rem;
  color: var(--text-muted); font-weight: 600;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-dim); font-weight: 600;
}
.course-level {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-weight: 600;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-deep); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.quote {
  font-size: 0.9rem;
  color: var(--text-muted); font-weight: 600;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  position: relative;
}
.quote::before {
  content: '\201C';
  font-size: 3rem;
  color: rgba(64,112,244,0.35);
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}
.author-title {
  font-size: 0.75rem;
  color: var(--text-dim); font-weight: 600;
  margin-top: 2px;
}
.stars {
  color: var(--accent);
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

/* ===== ROI MED AI ===== */
.roi-section {
  background: linear-gradient(180deg, #080f24 0%, #0d1f45 100%);
  padding: 5rem 5%;
  color: #ffffff;
}
.roi-section .section-header { margin-bottom: 3rem; }
.roi-section .section-label { color: #f9b742; }
.roi-section .section-title { color: #ffffff; }
.roi-section .section-sub   { color: var(--text-muted); font-weight: 600; font-weight: 600; }

/* KPI grid */
.roi-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 3rem;
}
.roi-kpi-card {
  background: #080f24;
  border: 1px solid #1b3f8b;
  border-radius: 14px;
  padding: 26px 20px;
  transition: background .2s, transform .2s;
}
.roi-kpi-card:hover { background: #122570; transform: translateY(-3px); }
.roi-kpi-icon  { font-size: 1.6rem; margin-bottom: 10px; display: block; }
.roi-kpi-num   { font-size: 2.4rem; font-weight: 900; color: #f9b742; line-height: 1; margin-bottom: 6px; }
.roi-kpi-num span { font-size: 1.4rem; }
.roi-kpi-label { font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; font-weight: 600; margin-bottom: 8px; }
.roi-kpi-desc  { font-size: .88rem; color: var(--text-muted); font-weight: 600; font-weight: 600; line-height: 1.55; }

/* Chart grid */
.roi-chart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 3rem;
}
.roi-chart-card {
  background: #080f24;
  border: 1px solid #1b3f8b;
  border-radius: 14px;
  padding: 26px;
}
.roi-chart-card h4 { font-size: .97rem; font-weight: 700; color: #ffffff; text-align: center; margin-bottom: 18px; }
.roi-chart-wrap    { position: relative; height: 280px; }
.roi-chart-note    { font-size: .8rem; color: var(--text-muted); font-weight: 600; font-weight: 600; text-align: center; margin-top: 12px; }

/* Use case explorer */
.roi-usecase { margin-bottom: 3rem; }
.roi-usecase h3      { font-size: 1.3rem; font-weight: 800; color: #ffffff; margin-bottom: 8px; }
.roi-usecase-sub     { color: var(--text-muted); font-weight: 600; font-weight: 600; margin-bottom: 22px; font-size: .97rem; }
.roi-usecase-panel   { display: flex; border: 1px solid #1b3f8b; border-radius: 14px; overflow: hidden; }
.roi-uc-tabs         { width: 210px; flex-shrink: 0; border-right: 1px solid #1b3f8b; }
.roi-uc-tab {
  width: 100%;
  text-align: left;
  padding: 15px 18px;
  background: none;
  border: none;
  border-bottom: 1px solid #1b3f8b;
  color: var(--text-muted); font-weight: 600; font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background .15s;
}
.roi-uc-tab:hover  { background: #080f24; }
.roi-uc-tab.active { background: rgba(64,112,244,0.15); border-left: 3px solid #f9b742; color: var(--text-muted); font-weight: 600; font-weight: 600; }
.roi-uc-content    { flex: 1; padding: 32px; min-height: 280px; color: var(--text-muted); font-weight: 600; font-weight: 600; }

/* Cyber grid */
.roi-cyber-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 22px;
}
.roi-info-col      { display: flex; flex-direction: column; gap: 14px; }
.roi-info-card {
  background: #080f24;
  border: 1px solid #1b3f8b;
  border-radius: 14px;
  padding: 20px;
  flex: 1;
}
.roi-info-icon  { font-size: 1.3rem; margin-bottom: 8px; display: block; }
.roi-info-card h4 { font-size: .92rem; font-weight: 700; color: #f9b742; margin-bottom: 6px; }
.roi-info-card p  { font-size: .86rem; color: var(--text-muted); font-weight: 600; font-weight: 600; line-height: 1.55; }
.roi-info-highlight { background: rgba(64,112,244,0.15); border-color: rgba(64,112,244,0.35); }

/* Responsive */
@media (max-width: 1100px) {
  .roi-kpi-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .roi-chart-grid   { grid-template-columns: 1fr; }
  .roi-cyber-grid   { grid-template-columns: 1fr; }
  .roi-usecase-panel { flex-direction: column; }
  .roi-uc-tabs      { width: 100%; border-right: none; border-bottom: 1px solid #1b3f8b; display: flex; flex-wrap: wrap; }
  .roi-uc-tab       { width: 50%; }
}
@media (max-width: 600px) {
  .roi-kpi-grid { grid-template-columns: 1fr 1fr; }
  .roi-uc-tab   { width: 100%; }
}

/* ===== AI SETUP SESSION BANNER ===== */
.session-banner {
  background: linear-gradient(150deg, #080f24 0%, #0d1f45 100%);
  padding: 5rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.session-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(64,112,244,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.session-banner-inner { position: relative; max-width: 600px; margin: 0 auto; }
.session-tag {
  display: inline-block;
  background: rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.2);
  color: #ffffff;
  padding: 5px 16px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.session-banner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.session-banner h2 em { font-style: normal; color: #f9b742; }
.session-banner > .session-banner-inner > p {
  color: var(--text-muted); font-weight: 600; font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 22px;
}
.session-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: #f9b742;
  margin-bottom: 28px;
  letter-spacing: -.01em;
}
.session-price span { font-size: .85rem; font-weight: 500; color: var(--text-muted); font-weight: 600; font-weight: 600; margin-left: 6px; }
.btn-gold {
  background: #f9b742;
  color: #FFFFFF;
  border-color: #f9b742;
}
.btn-gold:hover {
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}
.session-email {
  margin-top: 12px;
  font-size: .85rem;
}
.session-email a {
  color: var(--text-muted); font-weight: 600; font-weight: 600;
  text-decoration: underline;
}
.session-testimonial {
  margin-top: 36px;
  background: rgba(64, 112, 244, 0.20);
  border: 1px solid rgba(64, 112, 244, 0.35);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: left;
}
.session-testimonial h3 {
  color: #ffffff;
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.session-testimonial blockquote {
  color: #ffffff;
  font-style: italic;
  font-size: .95rem;
  line-height: 1.75;
  margin: 0 0 14px 0;
  padding: 0;
  border: none;
}
.session-testimonial-attr {
  color: rgba(255,255,255,0.65);
  font-size: .80rem;
  font-weight: 600;
  margin: 0;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 5rem 5%;
  background: linear-gradient(135deg, #080f24 0%, #0d1f45 50%, #080f24 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(64,112,244,0.15) 0%, transparent 70%);
}
.cta-banner .section-title { max-width: 600px; margin: 0 auto 1rem; }
.cta-banner .section-sub { margin: 0 auto 2.5rem; text-align: center; }
.cta-banner-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 4rem 5% 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-dim); font-weight: 600;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 1.5rem;
}
.social-row {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  color: var(--text-dim); font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-dim); font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim); font-weight: 600;
}
.footer-address {
  font-style: normal;
  font-size: 0.83rem;
  color: var(--text-dim); font-weight: 600;
  line-height: 1.8;
}
.footer-address a {
  color: var(--text-dim); font-weight: 600;
  text-decoration: none;
}
.footer-address a:hover {
  color: var(--accent);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.78rem;
  color: var(--text-dim); font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--accent-light); }

/* ===== NEWSLETTER ===== */
.newsletter-row {
  display: flex;
  gap: 8px;
  margin-top: 1rem;
}
.newsletter-input {
  flex: 1;
  padding: 0.55rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.85rem;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: var(--text-dim); font-weight: 600; }
.newsletter-input:focus { border-color: var(--accent); }
.newsletter-btn {
  padding: 0.55rem 1rem;
  background: var(--gradient-accent);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

/* ===== WORDPRESS SPECIFICS ===== */
.wp-block-image img { max-width: 100%; height: auto; }
img { max-width: 100%; }
a { color: var(--accent); }
p { margin-bottom: 1rem; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-primary);
  line-height: 1.2;
}

/* ===== RESPONSIVE ===== */

/* Tablet landscape */
@media (max-width: 1100px) {
  .belts-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Tablet – 900px */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding: 3.5rem 5% 3rem;
  }
  .hero-visual { display: none; }
  .hero-sub { margin: 0 auto 2rem; font-size: 0.95rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 1rem 2rem; }
  .belts-grid { grid-template-columns: repeat(3, 1fr); }
  .logos-row { flex-direction: column; align-items: stretch; gap: 1rem; }
  .logo-pill { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* Mobile – 640px */
@media (max-width: 640px) {
  nav { padding: 0 4%; position: relative; }
  #primary-menu, .nav-cta { display: none; }
  #primary-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #1b3f8b;
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 5%;
    gap: 1rem;
    z-index: 99;
    list-style: none;
  }
  .hamburger { display: block; }
  .hero { padding: 3rem 5% 2.5rem; }
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.75rem;
    padding-top: 1.25rem;
    margin-top: 1.5rem;
  }
  .hero-stats .stat-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .stat-label { font-size: 0.7rem; margin-top: 0; }
  .belts-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-container { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  section { padding: 3rem 5%; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .cta-banner { padding: 3rem 5%; }
  .logo-pill { font-size: 0.8rem; }
}

/* Extra small – 400px */
@media (max-width: 400px) {
  .belts-grid { grid-template-columns: 1fr; }
  .hero-stats { align-items: center; text-align: center; }
  .hero-stats .stat-item { justify-content: center; }
}

/* ===== OM OS ===== */
.om-os {
  background: var(--bg-dark);
  padding: 5rem 5%;
}
.om-os-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.om-os .section-label { color: #f9b742; }
.om-os .section-title { color: var(--text-primary); }
.om-os .section-sub   { color: var(--text-muted); font-weight: 600; font-weight: 600; max-width: 640px; margin: 0 auto; }
.om-os .section-sub em { color: var(--gold); font-style: normal; }

/* --- Rejse-trin --- */
.om-journey {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}
.om-journey-step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}
.om-journey-step h3 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin: 0.75rem 0 0.5rem;
}
.om-journey-step p {
  color: var(--text-muted); font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.6;
}
.om-journey-step p em {
  color: var(--gold);
  font-style: normal;
}
.om-journey-arrow {
  font-size: 2rem;
  color: var(--gold);
  align-self: center;
  flex-shrink: 0;
}

/* --- Bælte-ikoner --- */
.om-belt-icon {
  width: 48px;
  height: 12px;
  border-radius: 6px;
  margin: 0 auto 0.5rem;
}
.om-belt-white { background: #e5e5e5; }
.om-belt-mid   { background: linear-gradient(90deg, #22c55e, #1b3f8b); }
.om-belt-black { background: #111; border: 1px solid var(--gold); }

/* --- Ikken Hisatsu quote --- */
.om-quote {
  background: linear-gradient(135deg, rgba(0,0,0,.04), rgba(0,86,179,.06));
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 2rem;
  margin: 0 0 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.om-quote-jp {
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.om-quote p {
  color: var(--text-muted); font-weight: 600;
  font-size: 1.05rem;
  font-style: italic;
  margin: 0;
}

/* --- AIs DNA / KISS-metoden --- */
.om-kiss {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 900px;
  padding: 2rem 1rem;
}
.om-kiss-text {
  color: var(--text-light, #e8eefb);
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.om-kiss-text strong {
  color: var(--accent-yellow, #f5b800);
  font-weight: 700;
}
.om-kiss-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

/* --- To kolonner --- */
.om-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.om-col-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.om-col-card h3 {
  color: var(--accent-light);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.om-col-card p {
  color: var(--text-muted); font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.om-highlight {
  color: var(--gold) !important;
  font-weight: 600;
  font-style: italic;
}

/* --- Checkliste --- */
.om-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.om-checklist li {
  color: var(--text-muted); font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}
.om-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.om-sub-note {
  color: var(--text-dim) !important;
  font-size: 0.85rem !important;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem !important;
}

/* --- Fremtidens arbejdskraft --- */
.om-future {
  background: rgba(0,86,179,.05);
  border: 1px solid rgba(0,86,179,.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.om-future h3 {
  color: var(--text-primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.om-future p {
  color: var(--text-muted); font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 0.75rem;
}
.om-roles {
  color: var(--accent-light) !important;
  font-weight: 500;
}
.om-cta-text {
  color: var(--text-primary) !important;
  font-size: 1.1rem !important;
  margin-top: 1.5rem !important;
}
.om-cta-text strong { color: var(--gold); }

/* --- Responsiv --- */
@media (max-width: 768px) {
  .om-two-col { grid-template-columns: 1fr; }
  .om-journey-arrow { transform: rotate(90deg); width: 100%; text-align: center; }
  .om-journey { flex-direction: column; align-items: center; }
  .om-journey-step { max-width: 100%; }
  .om-quote { flex-direction: column; gap: 0.75rem; }
}


/* ===== VIDENDELING PAGE ===== */
.videndeling-page { background: var(--bg-deep); min-height: 80vh; }

/* Hero */
.vd-hero {
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--border);
  padding: 16px 5% 14px;
  text-align: center;
}
.vd-hero-inner { max-width: 640px; margin: 0 auto; }
.vd-badge {
  display: inline-block;
  background: rgba(255, 0, 0, 0.15);
  border: 1px solid rgba(255, 60, 60, 0.4);
  color: #ff6b6b;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.vd-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.vd-hero p {
  color: var(--text-muted); font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* Videos section */
.vd-videos { padding: 28px 5% 60px; }
.vd-container { max-width: 1200px; margin: 0 auto; }

/* Grid */
.yt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* Card */
.yt-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.yt-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(64, 112, 244, 0.2);
}

/* Thumbnail */
.yt-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-dark);
}
.yt-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.yt-card:hover .yt-thumb-wrap img { transform: scale(1.04); }

.yt-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.2s;
}
.yt-card:hover .yt-play-btn { opacity: 1; }

/* Card body */
.yt-card-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.yt-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.yt-card-date {
  font-size: 0.78rem;
  color: var(--text-dim); font-weight: 600;
}
.yt-error {
  color: var(--text-muted); font-weight: 600;
  text-align: center;
  padding: 3rem 0;
}

/* Intro section */
.vd-intro {
  padding: 32px 5% 0;
}
.vd-intro p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 1.5rem;
}
.vd-intro-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.vd-intro-phone {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .vd-hero { padding: 56px 5% 48px; }
  .yt-grid { grid-template-columns: 1fr; gap: 16px; }
  .vd-intro { padding: 24px 5% 0; }
  .vd-intro-cta { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .vd-intro p { font-size: 0.95rem; }
  .vd-videos { padding: 20px 5% 48px; }
  .yt-card-title { font-size: 0.9rem; }
}

/* ===== HERO CTA LABEL (front-page) ===== */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero-cta-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  max-width: 340px;
}

/* ===== KONTAKT-SIDE ===== */
.kontakt-section {
  min-height: 80vh;
  padding: 80px 5% 100px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.kontakt-inner {
  width: 100%;
  max-width: 560px;
}
.kontakt-header {
  margin-bottom: 2.5rem;
}
.kontakt-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.kontakt-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}
.kontakt-errors {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.4);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 1.5rem;
}
.kontakt-errors p {
  color: #f87171;
  font-size: 0.9rem;
  margin: 4px 0;
}
.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.form-group .req {
  color: #f9b742;
}
.form-group input {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-size: 0.97rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus {
  outline: none;
  border-color: #f9b742;
  background: rgba(249,183,66,0.05);
}
.form-group input::placeholder {
  color: rgba(255,255,255,0.25);
}
.kontakt-submit {
  margin-top: 0.5rem;
  align-self: flex-start;
  min-width: 140px;
}
.kontakt-success {
  text-align: center;
  padding: 60px 0;
}
.kontakt-success-icon {
  width: 72px;
  height: 72px;
  background: rgba(34,197,94,0.15);
  border: 2px solid #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #22c55e;
  margin: 0 auto 1.5rem;
}
.kontakt-success h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.kontakt-success p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.kontakt-success .btn {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .kontakt-section { padding: 48px 5% 72px; }
  .kontakt-title { font-size: 1.5rem; }
  .kontakt-submit { align-self: stretch; text-align: center; }
}

/* ===== HERO DIVIDER + GHOST BTN ===== */
.hero-divider {
  border: none;
  border-top: 1px solid #4070f4;
  margin: 10px 0;
  width: 100%;
}
.hero-ghost-btn {
  font-weight: 700;
  color: #ffffff !important;
  margin-top: 10px;
}
