/* ============================================
   CANVENA Combined CSS v20260408
   style.css + aurora.css + theme.css
   Google Fonts loaded via HTML preload
   ============================================ */

/* ===== STYLE.CSS ===== */
/* ============================================
   CANVENA Design System — Inspired by fin.ai
   Dark premium aesthetic for Capital Intelligence
   ============================================ */

/* --- Google Fonts Import --- */
/* Google Fonts now loaded via preload in HTML for performance */

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --bg-primary: #1A2744;
  --bg-secondary: #1F3050;
  --bg-card: #263A5C;
  --bg-card-hover: #2E4568;
  --bg-accent: #243858;
  --bg-light-section: #1F3050;
  --bg-light-card: #263A5C;

  --text-primary: #F5F0E8;
  --text-secondary: #C8BDA8;
  --text-muted: #B8C4D8;
  --text-dark: #F5F0E8;
  --text-dark-secondary: #C8BDA8;

  --accent-gold: #D4AF37;
  --accent-gold-light: #E8C547;
  --accent-gold-dark: #B8941F;
  --accent-dot: #D4AF37;
  --accent-blue: #3B82F6;
  --accent-green: #5BA8B5;
  --accent-red: #B8C4D8;

  --border-dark: rgba(196, 168, 130, 0.10);
  --border-light: rgba(196, 168, 130, 0.15);
  --border-gold: rgba(212, 175, 55, 0.25);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

  /* Spacing */
  --section-padding: 120px;
  --container-max: 1200px;
  --container-narrow: 900px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.15);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: rgba(245,240,232,0.85);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 16px;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  max-width: 680px;
}

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

/* --- Section Label (fin.ai style) --- */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
  flex-shrink: 0;
}

.section-label--numbered::before {
  display: none;
}

.section-number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-gold);
  opacity: 0.7;
}

/* --- Sections --- */
section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section--dark { background: var(--bg-primary); }
.section--darker { background: var(--bg-secondary); }
.section--card { background: var(--bg-card); }
.section--light {
  background: var(--bg-light-section);
  color: var(--text-dark);
}
.section--light p { color: var(--text-dark-secondary); }
.section--light .section-label { color: var(--accent-gold-dark); }
.section--light .section-label::before { background: var(--accent-gold-dark); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 4px;
  transition: background var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

.btn--primary:hover {
  background: var(--accent-gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: rgba(245,240,232,0.85);
  border: 1px solid var(--border-light);
}

.btn--secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn--ghost {
  background: transparent;
  color: var(--accent-gold);
  padding: 8px 0;
}

.btn--ghost:hover {
  opacity: 0.8;
}

.btn--ghost .arrow {
  transition: transform var(--transition-fast);
}

.btn--ghost:hover .arrow {
  transform: translateX(4px);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 40px;
  transition: background var(--transition-base);
}

.card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.card--bracket {
  position: relative;
}

.card--bracket::before,
.card--bracket::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--accent-gold);
  opacity: 0.3;
  transition: opacity var(--transition-base);
}

.card--bracket::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
  border-color: inherit;
}

.card--bracket::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  border-color: inherit;
}

.card--bracket:hover::before,
.card--bracket:hover::after {
  opacity: 0.7;
}

/* --- Grid Layouts --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

/* --- Stats Bar --- */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 48px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* --- Data Table --- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}

.data-table th {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-dark);
}

.data-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border-dark);
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.data-table tr:hover td {
  color: rgba(245,240,232,0.85);
  background: rgba(201, 168, 76, 0.03);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(232, 237, 244, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
  transition: background var(--transition-base);
}

.nav--scrolled {
  background: rgba(232, 237, 244, 0.96);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  min-height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.nav__logo {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(245,240,232,0.85);
}

.nav__logo span {
  color: var(--accent-gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 400;
  color: #4A5568;
  transition: color var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link--active {
  color: rgba(245,240,232,0.85);
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent-gold);
}

.nav__cta {
  padding: 10px 24px;
  font-size: 0.8125rem;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-switcher__current {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 6px 12px;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.lang-switcher__current:hover {
  border-color: var(--border-light);
  color: var(--text-secondary);
}

.lang-switcher__dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-card);
}

.lang-switcher.active .lang-switcher__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher__option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 16px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.lang-switcher__option:hover {
  background: var(--bg-card-hover);
  color: rgba(245,240,232,0.85);
}

.lang-switcher__option.active {
  color: var(--accent-gold);
}

/* Mobile Nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero__subtitle {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__subtitle::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent-gold);
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 28px;
}

.hero p {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero__bg-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__trust {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
}

.hero__trust-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Trust Logo Styles */
.hero__trust-logos { display:flex; gap:28px; align-items:center; flex-wrap:wrap; }
.hero__trust-logos .trust-logo-text { font-size:0.8125rem; color:var(--text-muted); opacity:0.5; transition:opacity 0.3s ease; white-space:nowrap; }
.hero__trust-logos .trust-logo-text:hover { opacity:0.8; }
@media(max-width:768px){ .hero__trust-logos { gap:20px; } .hero__trust-logos .trust-logo-text { font-size:0.6875rem; } }

.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-dark);
  counter-increment: step;
}

.process-step__number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--accent-gold);
  opacity: 0.4;
}

.process-step__number::before {
  content: counter(step, decimal-leading-zero);
}

.process-step h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* --- Testimonial --- */
.testimonial {
  padding: 48px;
  border-left: 2px solid var(--accent-gold);
  position: relative;
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(245,240,232,0.85);
  margin-bottom: 24px;
  max-width: 100%;
}

.testimonial__author {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
}

.testimonial__role {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* --- FAQ --- */
.faq-item {
  border-bottom: 1px solid var(--border-dark);
  padding: 24px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 500;
  color: #F5F0E8;
  text-align: left;
  padding: 8px 0;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent-gold);
}

.faq-question .icon {
  font-size: 1.25rem;
  transition: transform var(--transition-fast);
  color: var(--accent-gold);
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-answer p {
  padding: 8px 0 16px;
  font-size: 0.9375rem;
  color: #C0C8D8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}


/* --- Nav Dropdown --- */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
}
.nav-dropdown-menu {
  display: none !important;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: #1F3050;
  border: 1px solid rgba(196,168,130,0.15);
  border-radius: 10px;
  padding: 8px 0;
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
  z-index: 1000;
  flex-direction: column;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.dd-open .nav-dropdown-menu { display: flex !important; flex-direction: column; }
.nav-dropdown-menu a.nav-dropdown-item {
  display: block !important;
  padding: 10px 20px;
  color: #C0C8D8;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-dropdown-menu a.nav-dropdown-item:hover { color: #D4AF37; background: rgba(212,175,55,0.06); }
@media(max-width:900px) {
  .nav-dropdown::after { display:none; }
  .nav-dropdown-menu { position:static !important; transform:none !important; box-shadow:none !important;
    border:none !important; background:transparent !important; padding:0 0 0 16px !important; margin-top:0 !important; display:none !important; min-width:auto !important; }
  .nav-dropdown:hover .nav-dropdown-menu { display:none !important; }
  .nav-dropdown.open .nav-dropdown-menu,
  .nav-dropdown.dd-open .nav-dropdown-menu { display:flex !important; flex-direction:column !important; }
}

/* --- Footer --- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-dark);
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer__link {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--accent-gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201, 168, 76, 0.08) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 64px;
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  margin: 0 auto 32px;
  max-width: 560px;
}

.cta-subtext {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 16px;
}

/* --- Newsletter / Guide Download --- */
.soft-cta {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 40px;
}

.soft-cta h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
}

.email-form {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.email-form input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  color: rgba(245,240,232,0.85);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.email-form input:focus {
  border-color: var(--accent-gold);
}

.email-form input::placeholder {
  color: var(--text-muted);
}

.email-form button {
  padding: 12px 24px;
  background: var(--accent-gold);
  color: var(--bg-primary);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.email-form button:hover {
  background: var(--accent-gold-light);
}

/* --- Divider --- */
.divider {
  height: 1px;
  background: var(--border-dark);
  margin: 0;
}

/* --- Animated Counter --- */
.counter {
  font-family: var(--font-serif);
  font-variant-numeric: tabular-nums;
}

/* --- Interactive Demo Styles --- */
.demo-container {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  overflow: hidden;
}

.demo-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-dark);
}

.demo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.3;
}

.demo-dot:nth-child(1) { background: #EF4444; opacity: 0.6; }
.demo-dot:nth-child(2) { background: #F59E0B; opacity: 0.6; }
.demo-dot:nth-child(3) { background: #10B981; opacity: 0.6; }

.demo-body {
  padding: 32px;
}

.demo-filter-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.demo-filter {
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.demo-filter:hover,
.demo-filter.active {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(201, 168, 76, 0.08);
}

.demo-results {
  min-height: 200px;
}

.demo-result-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-dark);
  font-size: 0.875rem;
  align-items: center;
  opacity: 0;
  animation: fadeInRow 0.3s ease forwards;
}

.demo-result-row:last-child { border-bottom: none; }

.demo-result-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-dark);
}

.demo-match {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
}

.demo-match--high {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
}

.demo-match--medium {
  background: rgba(245, 158, 11, 0.15);
  color: #F59E0B;
}

.demo-scanning {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-gold);
}

.demo-scanning .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
  animation: pulse 1.5s ease infinite;
}

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

@keyframes fadeInRow {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Comparison Module --- */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.comparison__side {
  padding: 40px;
  border-radius: 8px;
}

.comparison__side--old {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
}

.comparison__side--new {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201, 168, 76, 0.05) 100%);
  border: 1px solid var(--border-gold);
}

.comparison__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
}

.comparison__icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison__icon--red { color: var(--accent-red); }
.comparison__icon--green { color: var(--accent-green); }

/* --- Video Section --- */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --- Form Styles --- */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  color: rgba(245,240,232,0.85);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-gold);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-checkbox {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.form-checkbox input {
  margin-top: 3px;
  accent-color: var(--accent-gold);
}

/* --- Contact Page Layout --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light), transparent);
}

.contact-form-header {
  margin-bottom: 36px;
}

.contact-form-header h2 {
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 1.75rem;
}

.contact-form-subtitle {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin: 0;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 28px 20px;
  }
}

.contact-form .form-input,
.contact-form .form-select,
.contact-form .form-textarea {
  background: rgba(232, 237, 244, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
  color: rgba(245,240,232,0.85);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  width: 100%;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form .form-input::placeholder,
.contact-form .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.contact-form .form-input:focus,
.contact-form .form-select:focus,
.contact-form .form-textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.contact-form .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A84C' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact-form .form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-required {
  color: var(--accent-gold);
}

/* Module Chips */
.contact-modules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .contact-modules-grid {
    grid-template-columns: 1fr;
  }
}

.contact-module-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(232, 237, 244, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.contact-module-chip:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.05);
}

.contact-module-chip input {
  accent-color: var(--accent-gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.contact-module-chip input:checked + .contact-module-chip__label {
  color: rgba(245,240,232,0.85);
}

.contact-module-chip__label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.3;
}

/* Submit Button */
.contact-submit-btn {
  width: 100%;
  margin-top: 28px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Trust Bar */
.contact-trust-bar {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
}

.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 500;
}

@media (max-width: 600px) {
  .contact-trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 120px;
}

.contact-sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 24px;
  transition: border-color var(--transition-fast);
}

.contact-sidebar-card:hover {
  border-color: var(--border-light);
}

.contact-sidebar-card--highlight {
  border-color: var(--border-gold);
  background: linear-gradient(135deg, var(--bg-card), rgba(201, 168, 76, 0.05));
}

.contact-sidebar-icon {
  margin-bottom: 12px;
  opacity: 0.9;
}

.contact-sidebar-title {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(245,240,232,0.85);
  margin-bottom: 6px;
}

.contact-sidebar-link {
  color: rgba(245,240,232,0.85);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-sidebar-link:hover {
  color: var(--accent-gold);
}

.contact-sidebar-text {
  font-size: 0.9375rem;
  color: rgba(245,240,232,0.85);
  margin: 0;
  font-weight: 500;
}

.contact-sidebar-subtext {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 2px 0 0;
}

.contact-sidebar-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.contact-sidebar-list li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.contact-sidebar-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
  opacity: 0.7;
}

/* --- Blog Styles --- */

/* Blog Grid (Overview Page) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: background var(--transition-base);
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.blog-card__category {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.blog-card__title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(245,240,232,0.85);
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--border-dark);
}

.blog-card__readmore {
  color: var(--accent-gold);
  font-weight: 500;
  font-size: 0.8125rem;
}

/* Blog Article Page */
.blog-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-article__meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 32px;
  font-size: 0.8125rem;
}

.blog-article__category {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  background: rgba(201, 168, 76, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
}

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

.blog-article__content {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-secondary);
}

.blog-article__content h2 {
  font-size: 1.5rem;
  color: rgba(245,240,232,0.85);
  margin: 48px 0 20px;
  font-weight: 600;
}

.blog-article__content h3 {
  font-size: 1.1875rem;
  color: rgba(245,240,232,0.85);
  margin: 36px 0 16px;
  font-weight: 600;
}

.blog-article__content p {
  margin-bottom: 20px;
}

.blog-article__content strong {
  color: rgba(245,240,232,0.85);
  font-weight: 600;
}

.blog-article__content ul,
.blog-article__content ol {
  margin: 16px 0 24px 24px;
  list-style: disc;
}

.blog-article__content ol {
  list-style: decimal;
}

.blog-article__content li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.blog-article__content a {
  color: var(--accent-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-article__content a:hover {
  color: var(--accent-gold-light);
}

.blog-article__content blockquote {
  border-left: 3px solid var(--accent-gold);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(201, 168, 76, 0.05);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: rgba(245,240,232,0.85);
}

.blog-article__content hr {
  border: none;
  border-top: 1px solid var(--border-dark);
  margin: 40px 0;
}

/* Blog CTA Box */
.blog-cta {
  background: linear-gradient(135deg, var(--bg-card), rgba(201, 168, 76, 0.08));
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 32px;
  margin: 48px 0;
  text-align: center;
}

.blog-cta p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-style: italic;
}

.blog-cta .btn {
  display: inline-flex;
}

/* Related Articles */
.blog-related {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-dark);
}

.blog-related h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: rgba(245,240,232,0.85);
}

.blog-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 760px) {
  .blog-related__grid { grid-template-columns: 1fr; }
}

.blog-related__card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

.blog-related__card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.blog-related__card-cat {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.blog-related__card-title {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(245,240,232,0.85);
  line-height: 1.35;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
}

.page-hero h1 {
  max-width: 700px;
}

.page-hero p {
  font-size: 1.125rem;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-bar { flex-wrap: wrap; gap: 40px; }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }

  .container { padding: 0 24px; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .nav__links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    padding: 40px;
    gap: 24px;
    z-index: 999;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .comparison { grid-template-columns: 1fr; }

  .hero { min-height: auto; padding-top: 120px; padding-bottom: 80px; }
  .hero h1 { font-size: 2.5rem; }

  .stats-bar { flex-direction: column; gap: 32px; align-items: center; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }

  .btn-group { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

  .cta-banner { padding: 40px 24px; }

  .process-step { grid-template-columns: 40px 1fr; gap: 20px; }

  .demo-result-row { grid-template-columns: 1fr 1fr; gap: 8px; }

  .email-form { flex-direction: column; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
}


/* ===== AURORA.CSS ===== */
/* ============================================
   CANVENA Aurora & Enhanced UI Components
   Northern lights background, animated CTAs,
   interactive elements, case studies redesign,
   blog redesign with side navigation
   ============================================ */

/* ===== 1. AURORA / NORTHERN LIGHTS BACKGROUND ===== */
.hero {
  position: relative;
  overflow: hidden;
}

.aurora {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.aurora__layer {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  opacity: 0;
  animation: auroraFadeIn 2s ease forwards;
}

.aurora__layer--1 {
  will-change: transform, opacity;
  background: radial-gradient(ellipse at 30% 20%, rgba(201, 168, 76, 0.12) 0%, transparent 50%);
  animation: auroraDrift1 18s ease-in-out infinite alternate, auroraFadeIn 2s ease forwards;
}

.aurora__layer--2 {
  will-change: transform, opacity;
  background: radial-gradient(ellipse at 70% 40%, rgba(59, 130, 246, 0.08) 0%, transparent 45%);
  animation: auroraDrift2 22s ease-in-out infinite alternate, auroraFadeIn 2.5s ease forwards;
}

.aurora__layer--3 {
  will-change: transform, opacity;
  background: radial-gradient(ellipse at 50% 60%, rgba(16, 185, 129, 0.06) 0%, transparent 40%);
  animation: auroraDrift3 25s ease-in-out infinite alternate, auroraFadeIn 3s ease forwards;
}

.aurora__layer--4 {
  will-change: transform, opacity;
  background: radial-gradient(ellipse at 20% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 35%);
  animation: auroraDrift4 20s ease-in-out infinite alternate, auroraFadeIn 3.5s ease forwards;
}

.aurora__shimmer {
  will-change: transform, opacity;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(135deg, transparent 40%, rgba(201, 168, 76, 0.03) 50%, transparent 60%);
  animation: auroraShimmer 8s ease-in-out infinite;
}

@keyframes auroraFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes auroraDrift1 {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33% { transform: translate(5%, -3%) rotate(2deg) scale(1.05); }
  66% { transform: translate(-3%, 5%) rotate(-1deg) scale(0.98); }
  100% { transform: translate(8%, -8%) rotate(3deg) scale(1.02); }
}

@keyframes auroraDrift2 {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(-8%, 5%) rotate(-2deg) scale(1.08); }
  100% { transform: translate(5%, -5%) rotate(2deg) scale(0.95); }
}

@keyframes auroraDrift3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6%, 6%) scale(1.1); }
  100% { transform: translate(-4%, -4%) scale(0.92); }
}

@keyframes auroraDrift4 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-6%, 3%) rotate(-3deg); }
  100% { transform: translate(4%, -6%) rotate(2deg); }
}

@keyframes auroraShimmer {
  0%, 100% { opacity: 0; transform: translateX(-100%); }
  50% { opacity: 1; transform: translateX(100%); }
}

/* ===== 2. ANIMATED ROTATING CTA BUTTONS ===== */
.btn--animated {
  position: relative;
  overflow: hidden;
  min-width: 320px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn--animated .btn-text-rotator {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
}

.btn--animated .btn-text-item {
  position: absolute;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn--animated .btn-text-item.active {
  opacity: 1;
  transform: translateY(0);
}

.btn--animated .btn-text-item.exit-up {
  opacity: 0;
  transform: translateY(-100%);
}

.btn--animated::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: btnSheen 4s ease-in-out infinite;
}

@keyframes btnSheen {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

/* Pulsing dot indicator on animated buttons */
.btn--animated .btn-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  margin-right: 10px;
  animation: btnPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

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

/* ===== 3. INTERACTIVE ELEMENT: FUNDING JOURNEY TIMELINE ===== */
.funding-journey {
  position: relative;
  padding: 40px 0;
}

.journey-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}

.journey-track::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-dark);
  z-index: 0;
}

.journey-track__progress {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-green));
  z-index: 1;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  width: 0;
}

.journey-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  cursor: pointer;
  padding: 0 8px;
}

.journey-node__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-dark);
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
}

.journey-node.active .journey-node__dot,
.journey-node.completed .journey-node__dot {
  border-color: var(--accent-gold);
  background: var(--accent-gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.journey-node.completed .journey-node__dot {
  background: var(--accent-green);
  border-color: var(--accent-green);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.3);
}

.journey-node__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
  transition: color 0.3s ease;
}

.journey-node.active .journey-node__label {
  color: var(--accent-gold);
}

.journey-detail {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 32px;
  margin-top: 32px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
  display: none;
}

.journey-detail.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.journey-detail__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.journey-detail__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.journey-detail__stats {
  display: flex;
  gap: 32px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
}

.journey-detail__stat-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.journey-detail__stat-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== 4. INTERACTIVE ELEMENT: LIVE CAPITAL FLOW GLOBE ===== */
.capital-globe {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  aspect-ratio: 1;
}

.capital-globe__ring {
  position: absolute;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  animation: ringRotate 30s linear infinite;
}

.capital-globe__ring--1 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.capital-globe__ring--2 {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  animation-direction: reverse;
  animation-duration: 25s;
}

.capital-globe__ring--3 {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  animation-duration: 20s;
}

.capital-globe__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
}

.capital-globe__amount {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.capital-globe__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-top: 4px;
}

.capital-globe__node {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 4;
}

.capital-globe__node:hover {
  transform: scale(1.2);
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.3);
  border-color: var(--accent-gold);
}

.capital-globe__node-label {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  white-space: nowrap;
}

.capital-globe__flow {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  transform-origin: left center;
  opacity: 0;
  animation: flowPulse 3s ease-in-out infinite;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes flowPulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.6; }
}

/* ===== 5. INTERACTIVE ELEMENT: ROI CALCULATOR ===== */
.roi-calculator {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  overflow: hidden;
}

.roi-calculator__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border-dark);
}

.roi-calculator__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.roi-calculator__dot:nth-child(1) { background: #EF4444; opacity: 0.6; }
.roi-calculator__dot:nth-child(2) { background: #F59E0B; opacity: 0.6; }
.roi-calculator__dot:nth-child(3) { background: #10B981; opacity: 0.6; }

.roi-calculator__title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 8px;
}

.roi-calculator__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

@media (max-width: 768px) {
  .roi-calculator__body {
    grid-template-columns: 1fr;
  }
}

.roi-calculator__inputs {
  padding: 32px 28px;
  border-right: 1px solid var(--border-dark);
}

@media (max-width: 768px) {
  .roi-calculator__inputs {
    border-right: none;
    border-bottom: 1px solid var(--border-dark);
  }
}

.roi-calculator__results {
  padding: 32px 28px;
  background: rgba(201, 168, 76, 0.03);
}

.roi-input-group {
  margin-bottom: 24px;
}

.roi-input-group__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.roi-input-group__label span:first-child {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.roi-input-group__value {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.roi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--border-dark);
  outline: none;
  cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-gold);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.3);
  transition: transform 0.2s ease;
}

.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.roi-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-gold);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.3);
}

.roi-result-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-dark);
}

.roi-result-item:last-child { border-bottom: none; }

.roi-result-item__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.roi-result-item__value {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--accent-gold);
  font-weight: 600;
  line-height: 1;
}

.roi-result-item__value--green {
  color: var(--accent-green);
}

.roi-result-item__sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.roi-result-highlight {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(16, 185, 129, 0.1));
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
  text-align: center;
}

.roi-result-highlight__label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.roi-result-highlight__value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-green);
}

/* ===== 6. CASE STUDIES REDESIGN ===== */
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.case-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(201, 168, 76, 0.12);
}

.case-card:hover::before {
  opacity: 1;
}

.case-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.case-card__header h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0;
}

.case-badge {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  background: rgba(201, 168, 76, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.case-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.case-stat {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--accent-gold);
  padding-top: 16px;
  border-top: 1px solid var(--border-dark);
}

.badge--flagship {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bg-primary);
  background: var(--accent-gold);
  padding: 6px 16px;
  border-radius: 4px;
  margin-top: 16px;
}

/* ===== 7. BLOG REDESIGN: WHITE BG + SIDE NAV ===== */
.blog-article-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 900px) {
  .blog-article-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Side Navigation */
.blog-sidenav {
  position: sticky;
  top: 100px;
  height: fit-content;
  padding: 24px 0;
}

@media (max-width: 900px) {
  .blog-sidenav {
    position: relative;
    top: 0;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
  }
}

.blog-sidenav__title {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.blog-sidenav__link {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 8px 0;
  padding-left: 16px;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.4;
}

.blog-sidenav__link:hover,
.blog-sidenav__link.active {
  color: var(--accent-gold);
  border-left-color: var(--accent-gold);
}

/* White content area for blog articles */
.blog-article--white {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid #C9A84C;
}

.blog-article--white .blog-article__content {
  color: #374151;
}

.blog-article--white .blog-article__content h2 {
  color: #111827;
  scroll-margin-top: 100px;
}

.blog-article--white .blog-article__content h3 {
  color: #1F2937;
  scroll-margin-top: 100px;
}

.blog-article--white .blog-article__content p {
  color: #4B5563;
}

.blog-article--white .blog-article__content strong {
  color: #111827;
}

.blog-article--white .blog-article__content a {
  color: #A88B3A;
}

.blog-article--white .blog-article__content a:hover {
  color: #C9A84C;
}

.blog-article--white .blog-article__content blockquote {
  background: #F9F8F5;
  border-left-color: #C9A84C;
  color: #374151;
}

.blog-article--white .blog-article__content ul,
.blog-article--white .blog-article__content ol {
  color: #4B5563;
}

.blog-article--white .blog-article__content li {
  color: #4B5563;
}

.blog-article--white .blog-article__content hr {
  border-top-color: #E5E7EB;
}

/* ===== 8. METRICS DASHBOARD SECTION ===== */
.metrics-dashboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .metrics-dashboard { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .metrics-dashboard { grid-template-columns: 1fr; }
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.metric-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.metric-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.metric-card:hover::after {
  transform: scaleX(1);
}

.metric-card__icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  opacity: 0.8;
}

.metric-card__value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-card__label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.metric-card__change {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--accent-green);
  margin-top: 6px;
}

/* ===== 9. INTELLIGENCE HUB GRID (fin.ai "works with" style) ===== */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hub-grid { grid-template-columns: 1fr; }
}

.hub-item {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  cursor: default;
}

.hub-item:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.hub-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hub-item__text {
  display: flex;
  flex-direction: column;
}

.hub-item__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hub-item__desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== 10. REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .aurora__layer,
  .aurora__shimmer,
  .capital-globe__ring,
  .btn--animated::after {
    animation: none !important;
  }
  .journey-track__progress {
    transition: none !important;
  }
}

/* === IMAGE STYLES (added for Bildkonzept Phase 1) === */

.hero {
  position: relative;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.founder-story-layout img {
  transition: transform 0.3s ease;
}

.founder-story-layout img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .founder-story-layout {
    flex-direction: column !important;
  }
  .founder-story-layout picture {
    width: 100% !important;
  }
  .founder-story-layout img {
    width: 100% !important;
  }
}


/* ===== Founder Story Editorial Layout ===== */
.story-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.story-editorial__image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
}

.story-editorial__image img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.5s ease;
}

.story-editorial__image:hover img {
  filter: grayscale(0%);
}

.story-editorial__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px 24px;
  background: linear-gradient(to top, rgba(10,14,23,0.95) 0%, rgba(10,14,23,0.7) 60%, transparent 100%);
}

.story-editorial__quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--accent-gold);
  line-height: 1.6;
  display: block;
}

/* Timeline */
.story-editorial__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.story-timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  position: relative;
}

.story-timeline-item:first-child { padding-top: 0; }
.story-timeline-item:last-child { border-bottom: none; }

.story-timeline-year {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.08em;
  padding-top: 4px;
  text-align: right;
}

.story-timeline-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light, #F0EDE6);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.story-timeline-content p {
  font-size: 0.875rem;
  color: var(--text-muted, #94A3B8);
  line-height: 1.7;
}

/* Timeline vertical line */
.story-timeline-item::before {
  content: '';
  position: absolute;
  left: 82px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(201,168,76,0.15);
}

.story-timeline-item:first-child::before { top: 8px; }
.story-timeline-item:last-child::before { bottom: 50%; }

/* Dot on timeline */
.story-timeline-item::after {
  content: '';
  position: absolute;
  left: 79px;
  top: 32px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-gold, #C9A84C);
}

.story-timeline-item:first-child::after { top: 8px; }

/* Responsive */
@media (max-width: 900px) {
  .story-editorial {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .story-editorial__image {
    max-width: 100%;
  }
}


/* ===== THEME.CSS ===== */
/* ==============================================
   CANVENA Farbkonzept v2
   Basis: Stufe 2 Dunkelblau
   Primaer-Akzent: Gold (#D4AF37)
   Sekundaer-Warm: Sand/Beige (#C4A882)
   Tertiaer-Cool: Tuerkis (#5BA8B5)
   Neutral-Warm: Cremeweiss (#F5F0E8)
   ============================================== */

:root {
  --bg-primary: #1A2744;
  --bg-secondary: #1F3050;
  --bg-card: #263A5C;
  --bg-card-hover: #2E4568;
  --bg-accent: #243858;
  --bg-light-section: #1F3050;
  --bg-light-card: #263A5C;
  --text-primary: #F5F0E8;
  --text-secondary: #C8BDA8;
  --text-muted: #B8C4D8;
  --text-dark: #F5F0E8;
  --text-dark-secondary: #C8BDA8;
  --accent-gold: #D4AF37;
  --accent-gold-light: #E8C547;
  --accent-gold-dark: #B8941F;
  --accent-dot: #D4AF37;
  --accent-green: #5BA8B5;
  --accent-red: #B8C4D8;
  --border-dark: rgba(196, 168, 130, 0.10);
  --border-light: rgba(196, 168, 130, 0.15);
  --border-gold: rgba(212, 175, 55, 0.25);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 4px 24px rgba(212, 175, 55, 0.12);
}

html body {
  background-color: #1A2744;
  color: #F5F0E8;
  padding-top: 44px;
}

html body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 100;
}

html .nav { background: rgba(26, 39, 68, 0.95); backdrop-filter: blur(20px); }
html .nav__logo { color: #F5F0E8; }
html .nav__logo span { color: #D4AF37; }
html .nav__link { color: #C8BDA8; }
html .nav__link:hover { color: #F5F0E8; }

html .hero { background: #1A2744; }
html .hero h1 { color: #F5F0E8; }
html .hero p { color: #C8BDA8; }
html .hero__subtitle { color: #D4AF37; }
html .hero__subtitle::before { background: linear-gradient(90deg, #D4AF37, #C4A882); }

html .text-gold, html em.text-gold {
  background: linear-gradient(135deg, #C9A84C 0%, #D4AF37 35%, #E8C547 65%, #C4A882 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html .section--dark { background: #1A2744; }
html .section--darker { background: #1F3050; }
html .section-label { color: #D4AF37; }
html h2 { color: #F5F0E8; }
html h3 { color: #F5F0E8; }
html h4 { color: #F5F0E8; }
html p { color: #C8BDA8; }

html .stats-bar { background: #263A5C; border: 1px solid rgba(196, 168, 130, 0.08); }
html .stat-number { color: #D4AF37; }
html .stat-label { color: #B8C4D8; }

html .card { background: #263A5C; border: 1px solid rgba(196, 168, 130, 0.06); }
html .card:hover { background: #2E4568; border-color: rgba(196, 168, 130, 0.12); }
html .card h4 { color: #F5F0E8; }
html .card p { color: #C8BDA8; }

html .mod-card { background: rgba(245, 240, 232, 0.03); border: 1px solid rgba(196, 168, 130, 0.06); }
html .mod-card:hover { border-color: rgba(212, 175, 55, 0.18); box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 20px rgba(196, 168, 130, 0.04); }
html .mod-card-num { color: #D4AF37; }
html .mod-card-body h4 { color: #F5F0E8; }
html .mod-card-body p { color: rgba(200, 189, 168, 0.7); }

html .btn--primary { background: linear-gradient(135deg, #C9A84C, #D4AF37, #C4A882); color: #0D1321; box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2), 0 0 30px rgba(196, 168, 130, 0.08); border: none; }
html .btn--primary:hover { background: linear-gradient(135deg, #D4AF37, #E8C547, #D4BC96); box-shadow: 0 6px 28px rgba(212, 175, 55, 0.3), 0 0 40px rgba(196, 168, 130, 0.12); }
html .btn--secondary { border-color: rgba(196, 168, 130, 0.3); color: #F5F0E8; }
html .btn--secondary:hover { border-color: #C4A882; color: #D4AF37; }
html .btn--ghost { color: #D4AF37; }

html .demo-container { background: #263A5C; border: 1px solid rgba(196, 168, 130, 0.08); }
html .demo-filter { background: transparent; border: 1px solid rgba(196, 168, 130, 0.15); color: #C8BDA8; }
html .demo-filter:hover { border-color: #D4AF37; color: #D4AF37; }
html .demo-filter.active { background: linear-gradient(135deg, #C9A84C, #D4AF37); color: #0D1321; border-color: #D4AF37; }

html .comparison__side { background: #263A5C; border: 1px solid rgba(196, 168, 130, 0.06); }
html .comparison__icon--green { color: #5BA8B5; }
html .comparison__icon--red { color: #8A9BB5; }
html .comparison__result--new { color: #5BA8B5; }
html .comparison__result--old { color: #8A9BB5; }

html .grid-3 .card .stat-number { color: #D4AF37; }

html .card svg rect { fill: #C4A882; stroke: none; }
html .card svg path { fill: none; stroke: #C4A882; }
html .card svg circle { fill: #C4A882; stroke: #C4A882; }

html .testimonial { background: #263A5C; border: 1px solid rgba(196, 168, 130, 0.10); border-left: 3px solid rgba(196, 168, 130, 0.25); }
html .testimonial__quote { color: #F5F0E8; }
html .testimonial__author { color: #C4A882; }
html .testimonial__role { color: #B8C4D8; }

html .journey-node__dot { background: #D4AF37; box-shadow: 0 0 12px rgba(212, 175, 55, 0.25); }
html .journey-node.active .journey-node__dot { background: #E8C547; box-shadow: 0 0 16px rgba(232, 197, 71, 0.35); }
html .journey-detail { background: #263A5C; border: 1px solid rgba(196, 168, 130, 0.06); }
html .journey-detail__stats span strong { color: #5BA8B5; }

html .cta-banner { background: linear-gradient(135deg, #263A5C 0%, rgba(196, 168, 130, 0.06) 100%); border: 1px solid rgba(196, 168, 130, 0.10); }
html .cta-subtext { color: #B8C4D8; }

html .footer { background: #152035; }
html .footer__heading { color: #C4A882; }
html .footer__link { color: #B8C4D8; }
html .footer__link:hover { color: #D4AF37; }
html .footer__bottom { border-color: rgba(196, 168, 130, 0.06); color: #8A9BB5; }

html .trust-logo-text { color: #8A9BB5; }
html .hero__trust-label { color: #8A9BB5; }
html .lang-switcher__current { color: #C8BDA8; }

html .aurora__layer--1 { background: radial-gradient(ellipse at 30% 20%, rgba(196, 168, 130, 0.10) 0%, transparent 50%); }
html .aurora__layer--2 { background: radial-gradient(ellipse at 70% 40%, rgba(91, 168, 181, 0.06) 0%, transparent 45%); }
html .aurora__layer--4 { background: radial-gradient(ellipse at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 35%); }


