/* ============================================================
   VeraCheck â Master Stylesheet
   Template: classic-sections / modern-tech
   ============================================================ */

/* --- CSS Custom Properties (Dark = default root) --- */
:root, [data-theme="dark"] {
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a2e;
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.06);
  --text-heading: #f4f4f5;
  --text-body: #a1a1aa;
  --text-muted: #71717a;
  --accent: #00ff88;
  --accent-secondary: #34d399;
  --accent-tertiary: #10b981;
  --border: rgba(255,255,255,0.08);
  --border-emphasis: rgba(255,255,255,0.15);
  --shadow: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-accent: 0 0 30px rgba(0,255,136,0.1);
  --radius: 16px;
  --radius-sm: 8px;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-bg: rgba(10,10,10,0.8);
  --nav-border: rgba(255,255,255,0.06);
  --btn-bg: #00ff88;
  --btn-text: #0a0a0a;
  --btn-hover: #34d399;
  --section-alt: #0f0f1a;
  --footer-bg: #050505;
  --glass-blur: blur(20px);
  --mockup-bg: #141425;
  --mockup-border: rgba(255,255,255,0.08);
  --mockup-sidebar: #0f0f1a;
  --mockup-bar: rgba(255,255,255,0.1);
}
[data-theme="light"] {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-card: rgba(0,0,0,0.02);
  --bg-card-hover: rgba(0,0,0,0.04);
  --text-heading: #0f172a;
  --text-body: #475569;
  --text-muted: #94a3b8;
  --accent: #047857;
  --accent-secondary: #10b981;
  --accent-tertiary: #34d399;
  --border: rgba(0,0,0,0.08);
  --border-emphasis: rgba(0,0,0,0.15);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-accent: 0 0 20px rgba(4,120,87,0.08);
  --radius: 16px;
  --radius-sm: 8px;
  --nav-bg: rgba(255,255,255,0.9);
  --nav-border: rgba(0,0,0,0.06);
  --btn-bg: #047857;
  --btn-text: #ffffff;
  --btn-hover: #065f46;
  --section-alt: #f1f5f9;
  --footer-bg: #0f172a;
  --glass-blur: blur(20px);
  --mockup-bg: #f1f5f9;
  --mockup-border: #e2e8f0;
  --mockup-sidebar: #f8fafc;
  --mockup-bar: #e2e8f0;
}

/* --- Reset & Base --- */
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap);

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--btn-hover); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.2;
  font-weight: 700;
}
::selection { background: var(--accent); color: var(--btn-text); }

/* --- Skip to content --- */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 12px 24px;
  background: var(--btn-bg);
  color: var(--btn-text);
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top 0.2s ease;
}
.skip-to-content:focus {
  top: 16px;
}

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* --- Section --- */
section { padding: 100px 0; position: relative; }
section.section-alt { background: var(--section-alt); }
.section-header { text-align: center; margin-bottom: 60px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: var(--text-muted); }
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  padding: 4px 14px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  border-radius: 999px;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: var(--nav-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom-color: var(--nav-border);
  padding: 10px 0;
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-brand { display: flex; align-items: center; text-decoration: none; }
.nav-brand img { height: 40px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-heading); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  background: var(--btn-bg);
  color: var(--btn-text);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  font-family: var(--font-body);
}
.nav-cta:hover {
  background: var(--btn-hover);
  color: var(--btn-text);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent) 30%, transparent);
}

/* Theme toggle */
.theme-toggle {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  color: var(--text-body);
}
.theme-toggle:hover { background: var(--bg-card-hover); border-color: var(--border-emphasis); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1010;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: 300px; height: 100vh;
  background: var(--bg-primary);
  border-left: 1px solid var(--border);
  padding: 80px 32px 32px;
  transition: right 0.3s ease;
  z-index: 1005;
  overflow-y: auto;
}
.nav-mobile.open { right: 0; }
.nav-mobile a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
}
.nav-mobile a:hover { color: var(--accent); }
.nav-mobile .nav-cta-mobile {
  display: block;
  text-align: center;
  margin-top: 24px;
  padding: 14px 24px;
  background: var(--btn-bg);
  color: var(--btn-text);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}
.nav-mobile .nav-cta-mobile:hover { background: var(--btn-hover); color: var(--btn-text); }
.nav-mobile .mobile-extras {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1002;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.open { display: block; opacity: 1; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  line-height: 1.4;
}
.btn-primary {
  background: var(--btn-bg);
  color: var(--btn-text);
}
.btn-primary:hover {
  background: var(--btn-hover);
  color: var(--btn-text);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent) 30%, transparent);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-white {
  background: #ffffff;
  color: var(--accent);
  font-weight: 600;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  color: var(--accent);
}
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 8%, transparent) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-tertiary) 6%, transparent) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 800;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-tertiary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-body);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 560px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  border-radius: 999px;
  color: var(--accent);
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hero-stat {
  text-align: center;
  padding: 16px 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s ease;
}
.hero-stat:hover { border-color: var(--border-emphasis); }
.hero-stat .stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 2px;
}
.hero-stat .stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Hero illustration */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-illustration {
  width: 100%;
  max-width: 520px;
}
.hero-illustration svg { width: 100%; height: auto; }

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--accent) 8%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 16px;
  position: relative;
}
.page-hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-emphasis);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* Spotlight effect on hover */
.card-spotlight::before {
  content: '';
  position: absolute;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 6%, transparent) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card-spotlight:hover::before { opacity: 1; }

/* Feature icon (glass-luxe style) */
.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 15%, transparent);
  box-shadow: 0 0 20px color-mix(in srgb, var(--accent) 10%, transparent);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-icon svg { width: 26px; height: 26px; color: var(--accent); stroke: var(--accent); fill: none; }
.card:hover .feature-icon {
  box-shadow: 0 0 30px color-mix(in srgb, var(--accent) 18%, transparent);
  border-color: color-mix(in srgb, var(--accent) 25%, transparent);
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; font-weight: 600; }
.card p { font-size: 0.93rem; color: var(--text-body); line-height: 1.65; }

/* --- Key Figures Band --- */
.figures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.figure-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.35s ease;
}
.figure-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-emphasis);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.figure-card .feature-icon { margin: 0 auto 16px; }
.figure-card h3 { font-size: 1rem; font-weight: 600; }

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* --- Timeline (How it works) --- */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.666% + 20px);
  right: calc(16.666% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-tertiary));
  opacity: 0.3;
}
.timeline-step { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-tertiary));
  border-radius: 50%;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent) 30%, transparent);
}
[data-theme="dark"] .step-number { color: #0a0a0a; }
.timeline-step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.timeline-step p { font-size: 0.93rem; color: var(--text-body); line-height: 1.6; }

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-emphasis);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}
.pricing-card.popular::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-tertiary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.popular-badge {
  display: inline-block;
  padding: 4px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--accent), var(--accent-tertiary));
  border-radius: 999px;
  margin-bottom: 16px;
}
[data-theme="light"] .popular-badge { color: #ffffff; }
.pricing-card .pack-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}
.pricing-card .credits {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.pricing-card .price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.1;
}
.pricing-card .price-suffix {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}
.pricing-card .price-per {
  font-size: 0.88rem;
  color: var(--accent);
  margin: 8px 0 24px;
  font-weight: 600;
}
.pricing-card .btn { width: 100%; justify-content: center; margin-top: auto; }
.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- Compliance Badges --- */
.compliance-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-heading);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: all 0.3s ease;
}
.compliance-badge:hover {
  background: var(--bg-card-hover);
  border-color: color-mix(in srgb, var(--accent) 25%, transparent);
  box-shadow: 0 0 20px color-mix(in srgb, var(--accent) 10%, transparent);
}
.compliance-badge svg { width: 18px; height: 18px; color: var(--accent); stroke: var(--accent); fill: none; }

/* --- CTA Section --- */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 70%, var(--accent-tertiary)));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: #0a0a0a; margin-bottom: 16px; }
.cta-section p { font-size: 1.1rem; color: rgba(10,10,10,0.75); margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
[data-theme="light"] .cta-section h2 { color: #ffffff; }
[data-theme="light"] .cta-section p { color: rgba(255,255,255,0.85); }

/* --- Footer --- */
.site-footer {
  background: var(--footer-bg);
  padding: 60px 0 0;
  color: #94a3b8;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 36px; margin-bottom: 16px; filter: brightness(0) invert(1); }
[data-theme="light"] .footer-brand img { filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; color: #94a3b8; max-width: 280px; }
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: #94a3b8;
  padding: 5px 0;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: #ffffff; }
.footer-col p { font-size: 0.88rem; line-height: 1.6; }
.footer-col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.88rem;
}
.footer-col .contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--accent); stroke: var(--accent); fill: none; }
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.82rem;
  color: #64748b;
}
.footer-bottom a { color: #94a3b8; }
.footer-bottom a:hover { color: #ffffff; }

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item .info-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 15%, transparent);
  border-radius: 10px;
  flex-shrink: 0;
}
.contact-info-item .info-icon svg { width: 20px; height: 20px; color: var(--accent); stroke: var(--accent); fill: none; }
.contact-info-item h4 { font-size: 0.92rem; font-weight: 600; color: var(--text-heading); margin-bottom: 4px; }
.contact-info-item p { font-size: 0.9rem; color: var(--text-body); }
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-heading);
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* --- Demo Request Modal --- */
.demo-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}
.demo-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.demo-modal {
  background: #1a1a2e;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.demo-modal-overlay.active .demo-modal {
  transform: translateY(0);
}
[data-theme="light"] .demo-modal {
  background: #ffffff;
}
.demo-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1;
}
.demo-modal-close:hover {
  background: color-mix(in srgb, var(--text-muted) 15%, transparent);
  color: var(--text-heading);
}
.demo-modal h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.demo-modal > p {
  font-size: 0.92rem;
  color: var(--text-body);
  margin-bottom: 24px;
}
.demo-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .demo-modal {
    padding: 28px 20px;
  }
  .demo-form-row {
    grid-template-columns: 1fr;
  }
}

/* --- FAQ --- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.35s ease;
}
.faq-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-emphasis);
  transform: translateY(-2px);
}
.faq-card .feature-icon { margin-bottom: 16px; }
.faq-card h3 { font-size: 1.05rem; margin-bottom: 12px; }
.faq-card p { font-size: 0.9rem; color: var(--text-body); line-height: 1.65; }

/* --- Service Blocks (alternating) --- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block:nth-child(even) .service-visual { order: -1; }
.service-block .service-content h3 { font-size: 1.6rem; margin-bottom: 16px; }
.service-block .service-content > p { font-size: 1rem; margin-bottom: 24px; color: var(--text-body); line-height: 1.7; }
.service-feature-list { list-style: none; }
.service-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-body);
}
.service-feature-list li svg { width: 20px; height: 20px; color: var(--accent); stroke: var(--accent); fill: none; flex-shrink: 0; margin-top: 2px; }
.service-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-illustration {
  width: 100%;
  max-width: 450px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.service-illustration svg { width: 100%; height: auto; }

/* --- About page --- */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-mission .mission-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-mission .mission-illustration {
  width: 100%;
  max-width: 450px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.about-mission .mission-illustration svg { width: 100%; height: auto; }
.about-mission .mission-text h2 { font-size: 1.8rem; margin-bottom: 16px; }
.about-mission .mission-text p { font-size: 1rem; line-height: 1.8; margin-bottom: 16px; color: var(--text-body); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.35s ease;
}
.value-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-emphasis);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.value-card .feature-icon { margin: 0 auto 20px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.value-card p { font-size: 0.92rem; color: var(--text-body); }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.35s ease;
  position: relative;
}
.testimonial-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-emphasis);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testimonial-card .quote-icon {
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
}
.testimonial-card .quote-icon svg { width: 40px; height: 40px; }
.testimonial-card blockquote {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-tertiary));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a0a0a;
  flex-shrink: 0;
}
[data-theme="light"] .testimonial-avatar { color: #ffffff; }
.testimonial-info strong { display: block; font-size: 0.92rem; color: var(--text-heading); }
.testimonial-info span { font-size: 0.82rem; color: var(--text-muted); }

/* --- Toast notifications --- */
.toast {
  position: fixed;
  bottom: 30px; right: 30px;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  font-family: var(--font-body);
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  max-width: 400px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: #047857; color: #ffffff; }
.toast.error { background: #dc2626; color: #ffffff; }

/* --- Maturity Scoring Colors (VeraCheck specific) --- */
.maturity-critical { --score-color: #dc2626; }
.maturity-insufficient { --score-color: #f97316; }
.maturity-progress { --score-color: #eab308; }
.maturity-good { --score-color: #84cc16; }
.maturity-exemplary { --score-color: #22c55e; }

/* --- Maturity Levels (VeraCheck feature page) --- */
.maturity-levels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 2rem 0;
}
.maturity-level {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.maturity-bar-container {
  flex: 1;
  height: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.maturity-bar {
  height: 100%;
  border-radius: 12px;
  background: var(--score-color, var(--accent));
  transition: width 1s ease;
}
.maturity-label {
  width: 120px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-heading);
}
.maturity-pct {
  width: 50px;
  text-align: right;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--score-color, var(--accent));
}

/* --- Score Ring (VeraCheck) --- */
.score-ring-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem;
}
.score-ring {
  position: relative;
  width: 120px;
  height: 120px;
}
.score-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.score-ring-bg {
  fill: none;
  stroke: var(--border);
  stroke-width: 8;
}
.score-ring-value {
  fill: none;
  stroke: var(--accent);
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease;
}
.score-ring-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score-ring-text .score-pct {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-heading);
}
.score-ring-text .score-label {
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* --- Mockups (CSS illustrations) --- */
.mockup {
  background: var(--mockup-bg);
  border: 1px solid var(--mockup-border);
  border-radius: 12px;
  padding: 1rem;
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}
.mockup-titlebar {
  display: flex;
  gap: 6px;
  margin-bottom: 0.75rem;
}
.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mockup-bar);
}
.mockup-dot:nth-child(1) { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #eab308; }
.mockup-dot:nth-child(3) { background: #22c55e; }
.mockup-body {
  display: flex;
  gap: 0.75rem;
  height: calc(100% - 30px);
}
.mockup-sidebar {
  width: 25%;
  min-width: 60px;
  background: var(--mockup-sidebar);
  border-radius: 8px;
  padding: 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.mockup-sidebar-item {
  height: 8px;
  border-radius: 4px;
  background: var(--mockup-bar);
}
.mockup-sidebar-item.active {
  background: var(--accent);
}
.mockup-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mockup-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.mockup-stat {
  background: var(--bg-card);
  border: 1px solid var(--mockup-border);
  border-radius: 8px;
  padding: 0.5rem;
  text-align: center;
}
.mockup-stat-num {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent);
}
.mockup-stat-label {
  font-size: 0.55rem;
  color: var(--text-muted);
}
.mockup-table {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--mockup-border);
  border-radius: 8px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.mockup-table-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--mockup-border);
}
.mockup-table-row:last-child { border-bottom: none; }
.mockup-table-cell {
  height: 6px;
  border-radius: 3px;
  background: var(--mockup-bar);
}
.mockup-table-cell:nth-child(1) { width: 25%; }
.mockup-table-cell:nth-child(2) { width: 40%; }
.mockup-table-cell:nth-child(3) { width: 20%; }
.mockup-table-badge {
  width: 12%;
  height: 8px;
  border-radius: 4px;
}

/* Questionnaire Mockup */
.mockup-questionnaire {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.mockup-question {
  background: var(--bg-card);
  border: 1px solid var(--mockup-border);
  border-radius: 8px;
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.mockup-q-text {
  height: 6px;
  width: 80%;
  border-radius: 3px;
  background: var(--mockup-bar);
}
.mockup-q-options {
  display: flex;
  gap: 0.5rem;
}
.mockup-q-option {
  height: 8px;
  width: 20%;
  border-radius: 4px;
  background: var(--mockup-bar);
}
.mockup-q-option.selected {
  background: var(--accent);
}

/* --- Legal page --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.15rem; margin-top: 28px; margin-bottom: 12px; }
.legal-content p, .legal-content ul, .legal-content ol {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul { padding-left: 24px; list-style: disc; }
.legal-content li { margin-bottom: 8px; }

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .hero-illustration { max-width: 400px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .figures-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: 1fr; gap: 32px; }
  .timeline::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-visual { order: 0; }
  .about-mission { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-mobile { display: block; }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .hero { min-height: auto; padding-top: 120px; padding-bottom: 60px; }
  .hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .figures-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .maturity-level { flex-direction: column; align-items: stretch; gap: 0.5rem; }
  .maturity-label { width: auto; }
  .maturity-pct { width: auto; text-align: left; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-stat .stat-number { font-size: 1.3rem; }
  .pricing-card { padding: 32px 20px; }
}

/* --- Reduced motion --- */
/* --- Promo Banner (compact strip) --- */
.promo-banner {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 14px 0;
}
.promo-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.promo-banner-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
[data-theme="light"] .promo-banner-logo {
  filter: none;
  opacity: 0.8;
}
.promo-banner-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.promo-banner-text strong {
  color: var(--text-body);
}
.promo-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 14px;
  background: color-mix(in srgb, #7AB51D 15%, transparent);
  border: 1px solid color-mix(in srgb, #7AB51D 25%, transparent);
  color: #7AB51D;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
  flex-shrink: 0;
  white-space: nowrap;
}
.promo-banner-cta:hover {
  background: color-mix(in srgb, #7AB51D 25%, transparent);
  color: #7AB51D;
}
.promo-banner-cta svg { width: 12px; height: 12px; }
@media (max-width: 768px) {
  .promo-banner-text { display: none; }
  .promo-banner-inner { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* dh-icon-collection-system */
.dh-icon{display:inline-flex;align-items:center;justify-content:center;vertical-align:middle;line-height:0;width:1em;height:1em}
.dh-icon svg{stroke-linecap:round;stroke-linejoin:round;overflow:visible;width:100%;height:100%}
.dh-icon--minimal svg{stroke:#94a3b8;stroke-width:1;fill:none}
.dh-icon-styled{transition:all 0.3s ease}