/* ═══════════════════════════════════════════
   CollinQ – Global Stylesheet
   ═══════════════════════════════════════════ */

/* ─── CSS Custom Properties (Brand Guide Aligned) ─── */
:root {
  /* Primary */
  --coral: #F4795B;
  --coral-light: #F58970;
  --coral-dark: #D85F3F;
  --aubergine: #493765;
  --aubergine-light: #5D4B7A;
  --aubergine-dark: #362852;
  /* Neutrals (Canvas / Stone / Ink) */
  --canvas: #F4F6F8;
  --stone: #D2D5DB;
  --mid-gray: #888888;
  --ink: #333333;
  --ink-mid: #555555;
  --ink-light: #888888;
  --white: #FFFFFF;
  /* Radius scale */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  /* Shadow scale */
  --shadow-sm: 0 1px 3px rgba(73,55,101,0.08), 0 1px 2px rgba(73,55,101,0.04);
  --shadow-md: 0 4px 16px rgba(73,55,101,0.10), 0 2px 6px rgba(73,55,101,0.06);
  --shadow-lg: 0 12px 40px rgba(73,55,101,0.14), 0 4px 12px rgba(73,55,101,0.08);
  /* Functional Palette */
  --teal: #4BA6A2;
  --amber: #EBB056;
  --lavender: #8D7C9E;
  --sage: #738C69;
  /* CTA gradient */
  --gradient-btn: linear-gradient(135deg, #F58970 0%, #F4795B 100%);
}

/* ─── Reset ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; text-wrap: balance; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 100px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--coral); color: white; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes drawLine {
  from { width: 0; }
  to { width: 60px; }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.fade-up { animation: fadeUp 0.7s ease-out forwards; }
.fade-in { animation: fadeIn 0.6s ease-out forwards; }
.slide-right { animation: slideRight 0.7s ease-out forwards; }
.scale-in { animation: scaleIn 0.5s ease-out forwards; }

.stagger-1 { animation-delay: 0.1s; opacity: 0; }
.stagger-2 { animation-delay: 0.2s; opacity: 0; }
.stagger-3 { animation-delay: 0.3s; opacity: 0; }
.stagger-4 { animation-delay: 0.4s; opacity: 0; }
.stagger-5 { animation-delay: 0.5s; opacity: 0; }
.stagger-6 { animation-delay: 0.6s; opacity: 0; }

/* ─── Anim Section (Intersection Observer) ─── */
.anim-section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-section.visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-section.delay-1 { transition-delay: 0.08s; }
.anim-section.delay-2 { transition-delay: 0.15s; }
.anim-section.delay-3 { transition-delay: 0.2s; }
.anim-section.delay-4 { transition-delay: 0.3s; }

/* ─── Grid Systems ─── */
.grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-demo { display: grid; grid-template-columns: 1fr 380px; gap: 48px; }
.grid-footer { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.grid-shift { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.grid-proof { display: grid; grid-template-columns: 140px 1fr; gap: 40px; }
.grid-about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-values { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: start; }
.grid-pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-pricing-env { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-cs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-module { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.grid-stats-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-auto-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.grid-auto-280 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-auto-250 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.grid-auto-240 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.grid-auto-320 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }

/* ─── Nav / Mobile ─── */
.desktop-nav { display: flex; align-items: center; gap: 6px; }
.mobile-burger { display: none; }
.mobile-menu {
  display: none;
  flex-direction: column;
  margin-top: 16px;
  padding: 16px 20px 20px;
  background: var(--white);
  border-top: 1px solid var(--stone);
  width: 100%;
  gap: 2px;
  box-shadow: 0 8px 24px rgba(73,55,101,0.10);
}
.mobile-menu.open { display: flex !important; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .desktop-nav { display: none !important; }
  .mobile-burger { display: flex !important; }
  .grid-2col, .grid-module, .grid-demo, .grid-about-facts, .grid-pricing, .grid-values, .grid-form-row {
    grid-template-columns: 1fr !important; gap: 32px !important;
  }
  .grid-3col, .grid-pricing-env, .grid-cs {
    grid-template-columns: 1fr !important; gap: 16px !important;
  }
  .grid-4col {
    grid-template-columns: 1fr 1fr !important; gap: 24px !important;
  }
  .grid-footer {
    grid-template-columns: 1fr 1fr !important; gap: 32px !important;
  }
  .grid-shift {
    grid-template-columns: 1fr 1fr 1fr !important; font-size: 12px !important;
  }
  .grid-proof {
    grid-template-columns: 1fr !important; gap: 16px !important;
  }
  .module-tabs {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
  }
  .module-tabs button { white-space: nowrap; padding: 12px 18px !important; font-size: 13px !important; }
  /* Reduce hero/section padding for tablet */
  .section { padding: 60px 24px !important; }
  .hero-page { padding: 120px 24px 60px !important; }
  .hero-content { padding: 120px 24px 80px !important; grid-template-columns: 1fr !important; gap: 48px !important; }
  .hero-cue-img { width: 90px !important; }
  .hero-proof { padding: 24px 28px !important; }
  .hero-proof-value { font-size: 26px !important; }
}

@media (max-width: 600px) {
  .grid-4col {
    grid-template-columns: 1fr 1fr !important; gap: 20px !important;
  }
  .grid-footer {
    grid-template-columns: 1fr !important; gap: 24px !important;
  }
  .grid-shift {
    grid-template-columns: 1fr !important; font-size: 13px !important;
  }
  .grid-shift .label { font-weight: 600; }
  .shift-header.grid-shift { display: none !important; }
  .shift-row.grid-shift {
    gap: 4px !important; padding: 14px 16px !important;
  }
  .shift-row.grid-shift .old::before { content: "Today: "; font-weight: 600; color: var(--ink-light); }
  .shift-row.grid-shift .new::before { content: "CollinQ: "; font-weight: 600; color: var(--coral); }
  .mockup-sidebar {
    display: none !important;
  }
  /* Reduce grid-auto min-widths for small screens */
  .grid-auto-3, .grid-auto-320, .grid-auto-280 {
    grid-template-columns: 1fr !important;
  }
  /* Reduce hero/section padding for mobile */
  .section { padding: 48px 20px !important; }
  .hero-page { padding: 100px 20px 40px !important; }
  .hero-content { padding: 100px 20px 60px !important; grid-template-columns: 1fr !important; gap: 36px !important; }
  .hero-visual { display: none !important; }
  .scroll-indicator { bottom: 20px !important; }
  /* Reduce box padding for mobile */
  .flywheel-box { padding: 32px 24px !important; }
  .pricing-old, .pricing-new { padding: 32px 24px !important; }
  .pricing-earn { padding: 32px 24px !important; }
  .pricing-final-cta { padding: 40px 24px !important; }
  .demo-form-box { padding: 28px 20px !important; }
  .partner-quote-box { padding: 32px 24px !important; }
  .mockup-content { padding: 16px 16px !important; }
  /* Footer bottom wrap */
  .footer-bottom { flex-wrap: wrap; gap: 8px; justify-content: center; text-align: center; }
  /* Demo page inline padding override */
  #demo-hero-section { padding: 100px 20px 24px !important; }
  #demo-form-section { padding: 12px 20px 60px !important; }
}

/* ─── Navigation ─── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, -webkit-backdrop-filter 0.3s ease, backdrop-filter 0.3s ease, border-bottom 0.3s ease, padding 0.3s ease;
  padding: 20px 0;
}
.site-nav.scrolled,
.site-nav.menu-open {
  background: rgba(255,255,255,0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone);
  padding: 20px 0;
}
.site-nav.menu-open {
  border-bottom: none;
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 1001;
  transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo img { height: 28px; width: auto; display: block; image-rendering: optimizeQuality; }
/* Home page: white logo over dark hero, switch to colour when scrolled */
.page-home .nav-logo .logo-colour { display: none; }
.page-home .nav-logo .logo-white { display: block; }
.page-home .site-nav.scrolled .nav-logo .logo-colour,
.page-home .site-nav.menu-open .nav-logo .logo-colour { display: block; }
.page-home .site-nav.scrolled .nav-logo .logo-white,
.page-home .site-nav.menu-open .nav-logo .logo-white { display: none; }
/* All other pages: always colour logo */
.nav-logo .logo-white { display: none; }

/* Nav items - default (non-home) */
.nav-btn {
  background: transparent;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-mid);
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.nav-btn.active {
  font-weight: 600;
  background: rgba(244,121,91,0.07);
  color: var(--coral);
}
.nav-btn:hover {
  color: var(--coral);
}

/* Home page nav special (white text on dark hero) */
.page-home .site-nav:not(.scrolled):not(.menu-open) .nav-logo { color: var(--white); }
.page-home .site-nav:not(.scrolled):not(.menu-open) .nav-btn { color: rgba(255,255,255,0.9); }
.page-home .site-nav:not(.scrolled):not(.menu-open) .nav-btn.active { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.15); }
.page-home .site-nav:not(.scrolled):not(.menu-open) .burger-line { background: white; }

/* Scrolled nav items */
.site-nav.scrolled .nav-logo,
.site-nav.menu-open .nav-logo { color: var(--aubergine); }

/* CTA button in nav */
.nav-cta {
  background: var(--gradient-btn);
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-left: 8px;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--gradient-btn); filter: brightness(0.92); }

/* Burger */
.mobile-burger {
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.burger-box { width: 22px; height: 16px; position: relative; }
.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: var(--aubergine);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.burger-line:nth-child(1) { top: 0; }
.burger-line:nth-child(2) { top: 7px; }
.burger-line:nth-child(3) { top: 14px; }
.mobile-burger.open .burger-line:nth-child(1) { top: 7px; transform: rotate(45deg); }
.mobile-burger.open .burger-line:nth-child(2) { opacity: 0; }
.mobile-burger.open .burger-line:nth-child(3) { top: 7px; transform: rotate(-45deg); }

.page-home .site-nav:not(.scrolled):not(.menu-open) .burger-line { background: white; }
.site-nav.scrolled .burger-line,
.site-nav.menu-open .burger-line { background: var(--aubergine); }

/* Mobile menu items */
.mobile-menu .nav-btn {
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  display: block;
  width: 100%;
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  color: var(--ink-mid);
  transition: all 0.15s ease;
}
.mobile-menu .nav-btn:hover {
  background: var(--canvas);
  color: var(--ink);
}
.mobile-menu .nav-btn.active {
  border-left-color: var(--coral);
  color: var(--coral);
  font-weight: 600;
  background: rgba(244,121,91,0.05);
}
.mobile-menu .nav-cta {
  padding: 13px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  margin-left: 0;
  margin-top: 12px;
  text-align: center;
  display: block;
  border-top: none;
}

/* ─── Skip to content ─── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 8px 16px;
  background: var(--coral);
  color: white;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
}
.skip-link:focus { left: 0; }

/* ─── Section Containers ─── */
.section {
  padding: 96px 32px;
}
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.section-narrow {
  max-width: 1000px;
  margin: 0 auto;
}
.section-medium {
  max-width: 900px;
  margin: 0 auto;
}
.section-small {
  max-width: 800px;
  margin: 0 auto;
}
.section-xs {
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Backgrounds ─── */
.bg-white { background: var(--white); }
.bg-cream { background: var(--canvas); }
.bg-navy { background: linear-gradient(160deg, var(--aubergine) 0%, var(--aubergine-dark) 100%); }
.bg-navy-full { background: linear-gradient(145deg, var(--aubergine-dark) 0%, var(--aubergine) 40%, var(--aubergine-light) 100%); }

/* ─── Section Heading Component ─── */
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--coral);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: rgba(255,255,255,0.6); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.1;
  color: var(--aubergine);
  letter-spacing: -0.02em;
}
.section-title.light { color: var(--white); }
.section-title .accent { color: var(--coral); }

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.65;
  color: var(--ink-mid);
  max-width: 600px;
  margin-top: 18px;
}
.section-subtitle.light { color: rgba(255,255,255,0.75); }

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.text-center .section-title + .section-subtitle { margin-left: auto; margin-right: auto; }
.heading-center { max-width: 700px; margin: 0 auto; text-align: center; }
.heading-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ─── Stat Component ─── */
.stat { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--coral);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number.light { color: var(--white); }
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink-light);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.stat-label.light { color: rgba(255,255,255,0.65); }

/* ─── CTA Button ─── */
.cta-btn {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: center;
  text-decoration: none;
}
.cta-btn svg { flex-shrink: 0; }
.cta-btn.primary {
  background: var(--gradient-btn);
  color: white;
  box-shadow: 0 4px 16px rgba(244,121,91,0.35);
}
.cta-btn.primary:hover {
  background: var(--gradient-btn); filter: brightness(0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,121,91,0.45);
  text-decoration: none;
  color: white;
}
.cta-btn.secondary {
  background: transparent;
  color: var(--aubergine);
  border: 2px solid var(--aubergine);
  padding: 11px 26px;
}
.cta-btn.secondary:hover {
  background: var(--aubergine);
  color: white;
}
.cta-btn.light {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 13px 28px;
}
.cta-btn.light:hover {
  background: rgba(255,255,255,0.15);
  color: white;
  text-decoration: none;
}

/* ─── Cards ─── */
.card {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card-sm {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card:hover, .card-sm:hover,
.spectrum-card:hover, .client-feature-card:hover,
.system-card:hover, .contact-card:hover,
.why-card:hover, .usecase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--coral);
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--aubergine);
  margin-bottom: 14px;
  line-height: 1.25;
}
.card-title-sm {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--aubergine);
  margin-bottom: 10px;
  line-height: 1.3;
}
.card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
}
.card-desc-sm {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-mid);
}
.card-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

/* ─── Callout / Accent Box ─── */
.callout {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--coral);
  background: rgba(244,121,91,0.04);
}
.callout p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 500;
}
.callout-sm {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--coral);
  background: rgba(244,121,91,0.04);
}
.callout-sm p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.55;
  font-style: italic;
}

/* ─── Bullet / Check Items ─── */
.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.bullet-dot {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-sm);
  background: rgba(244,121,91,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.bullet-dot-inner {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}
.bullet-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-mid);
}
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
}
.check-mark {
  color: var(--coral);
  font-size: 14px;
  font-weight: 700;
}
.check-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
}

/* ─── Tags / Badges ─── */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tag-ember {
  background: rgba(244,121,91,0.06);
  color: var(--coral);
}
.feature-tag {
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}

/* ─── Body Text ─── */
.body-md, .serif-body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
}
.body-lg, .serif-body-lg {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-mid);
}
.body-sm, .serif-body-sm {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-mid);
}
.sans-sm {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--ink-light);
}

/* ═══════════════════════════════════════════
   HOME PAGE
   ═══════════════════════════════════════════ */

/* Hero */
.hero-home {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--aubergine-dark) 0%, var(--aubergine) 40%, var(--aubergine-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-home .deco-circle-1 {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.06;
}
.hero-home .deco-circle-2 {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: white;
  opacity: 0.04;
}
.hero-home .grid-overlay {
  display: none;
}
.hero-content {
  max-width: 1160px;
  margin: 0 auto;
  padding: calc(68px + 80px) 32px 100px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-content-inner { max-width: 520px; }
.hero-badge {
  margin-bottom: 12px;
}
.hero-badge span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(244,121,91,0.9);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-title .accent { color: var(--coral); }
.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero visual — glassmorphism card (right column) */
.hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Cue mascot in hero */
.hero-cue {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
  z-index: 2;
}
.hero-cue-img {
  width: 150px;
  height: auto;
  animation: cueFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 12px 28px rgba(244,121,91,0.3));
  transform-origin: center bottom;
}
@keyframes cueFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

/* Proof stats card */
.hero-proof {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 1;
}
.hero-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 28px;
}
.hero-proof-item:first-child { padding-left: 0; }
.hero-proof-item:last-child { padding-right: 0; }
.hero-proof-value {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.hero-proof-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-proof-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-mouse {
  width: 22px;
  height: 35px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  position: relative;
}
.scroll-mouse::after {
  content: '';
  width: 3px;
  height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 3px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* Other hero (non-home pages) */
.hero-page {
  padding: 160px 32px 80px;
  background: var(--canvas);
}
.hero-page .section-inner { max-width: 1160px; margin: 0 auto; }

/* Browser mockup */
.browser-mockup {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--stone);
}
.browser-bar {
  background: var(--canvas);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--stone);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.browser-dot.red { background: #FF5F57; }
.browser-dot.yellow { background: #FFBD2E; }
.browser-dot.green { background: #28CA42; }
.browser-url {
  flex: 1;
  background: white;
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--ink-light);
  margin-left: 8px;
}

/* Mockup sidebar */
.mockup-sidebar {
  width: 200px;
  background: var(--canvas);
  padding: 20px 16px;
  border-right: 1px solid var(--stone);
  flex-shrink: 0;
}
.mockup-sidebar-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.mockup-sidebar-item {
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--ink-mid);
  margin-bottom: 2px;
  cursor: pointer;
}
.mockup-sidebar-item.active {
  color: var(--coral);
  background: rgba(244,121,91,0.03);
  font-weight: 600;
}
.mockup-task {
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--ink-mid);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}
.mockup-task-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

/* Mockup content area */
.mockup-content { flex: 1; padding: 24px 28px; }
.mockup-section-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.mockup-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--aubergine);
}
.mockup-status-badge {
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: rgba(75,166,162,0.12);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--teal);
}
.mockup-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}
.mockup-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--aubergine);
}
.mockup-card-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--ink-light);
  margin-top: 3px;
}
.mockup-card-tag {
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
}
.mockup-notification {
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(244,121,91,0.04);
  border-left: 3px solid var(--coral);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mockup-notification-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--aubergine);
}
.mockup-notification-desc {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--ink-light);
}

/* Feature bullets (home "what client sees") */
.feature-bullets {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.feature-bullet {
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}
.feature-bullet-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--ink-mid);
}

/* Opportunity cards */
.opportunity-card {
  border-radius: var(--radius-md);
  padding: 36px 32px;
  height: 100%;
}
.opportunity-card .card-label { margin-bottom: 16px; }
.opportunity-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--aubergine);
  margin-bottom: 14px;
  line-height: 1.25;
}
.opportunity-card p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
}

/* Spectrum steps */
.spectrum-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  height: 100%;
  position: relative;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.spectrum-step {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: rgba(244,121,91,0.08);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}
.spectrum-icon {
  width: 44px; height: 44px;
  background: var(--aubergine);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
}
.spectrum-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  color: var(--aubergine);
  margin-bottom: 14px;
  line-height: 1.3;
}
.spectrum-card p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
}

/* Market momentum */
.momentum-item {
  padding: 20px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.momentum-number {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: rgba(244,121,91,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--coral);
}
.momentum-item p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
}

/* Why CollinQ cards (dark bg) */
.why-card {
  padding: 28px 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.why-card .accent-bar {
  display: none;
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  color: var(--white);
  margin-bottom: 14px;
  padding-left: 16px;
  border-left: 4px solid var(--coral);
  line-height: 1.25;
}
.why-card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

/* Decorative circle (dark sections) */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,121,91,0.06) 0%, transparent 70%);
}

/* ═══════════════════════════════════════════
   PLATFORM PAGE
   ═══════════════════════════════════════════ */
.module-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 50px;
  border-bottom: 2px solid var(--stone);
  padding-bottom: 0;
}
.module-tab {
  background: transparent;
  color: var(--ink-mid);
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}
.module-tab.active {
  color: white;
  font-weight: 700;
}
.module-tab[data-module="core"].active { background: var(--coral); }
.module-tab[data-module="engage"].active { background: var(--amber); }
.module-tab[data-module="control"].active { background: var(--teal); }
.module-tab[data-module="market"].active { background: var(--lavender); }

.module-content { display: none; animation: fadeIn 0.4s ease; }
.module-content.active { display: grid; }

/* Module detail */
.module-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.module-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 32px);
  color: var(--aubergine);
  margin-bottom: 20px;
  line-height: 1.2;
}
.module-desc {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: 32px;
}

/* Module preview boxes */
.module-preview {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}
.module-preview-bar {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.module-preview-dot { width: 8px; height: 8px; border-radius: 50%; }
.module-preview-label {
  margin-left: 8px;
  padding: 3px 12px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
}
.module-preview-content { padding: 20px 20px 24px; }

.module-preview-card {
  padding: 12px 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--stone);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.module-preview-card:last-child { margin-bottom: 0; }
.module-preview-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--aubergine);
}
.module-preview-card-sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--ink-light);
  margin-top: 2px;
}
.module-preview-status {
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
}

/* Partner benefit callout */
.partner-callout {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border-left: 3px solid;
  margin-bottom: 20px;
}
.partner-callout-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.partner-callout p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mid);
}

/* Flywheel */
.flywheel-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--stone);
  max-width: 800px;
  margin: 50px auto 0;
}
.flywheel-item {
  padding: 18px 0;
}
.flywheel-item p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
}
.flywheel-item strong {
  font-family: 'Inter', sans-serif;
}
.flywheel-item .from { color: var(--aubergine); font-weight: 700; }
.flywheel-item .to { color: var(--coral); font-weight: 600; }

/* Use cases */
.usecase-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--canvas);
  border: 1px solid var(--stone);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.usecase-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--aubergine);
  margin-bottom: 10px;
}
.usecase-card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-mid);
}

/* ═══════════════════════════════════════════
   PARTNERS PAGE
   ═══════════════════════════════════════════ */
.partner-quote-box {
  background: linear-gradient(145deg, var(--aubergine), var(--aubergine-light));
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.partner-quote-box .quote-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 24px;
}
.partner-quote-box .quote-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.partner-quote-box .quote-attribution {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* Client experience items */
.experience-item {
  padding: 36px 0;
}
.experience-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--aubergine);
  margin-bottom: 14px;
  line-height: 1.3;
}
.experience-item p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: 16px;
  max-width: 800px;
}

/* Business impact cards (dark bg) */
.impact-card {
  padding: 32px 28px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  height: 100%;
}
.impact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}
.impact-card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}

/* Customer success */
.cs-card {
  padding: 28px 24px;
  border-radius: var(--radius-md);
  background: var(--canvas);
  border: 1px solid var(--stone);
  box-shadow: var(--shadow-sm);
}
.cs-card .phase {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
  margin-bottom: 10px;
}
.cs-card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-mid);
}

/* Bottom line box */
.bottom-line-box {
  margin-top: 48px;
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--stone);
}
.bottom-line-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--aubergine);
  margin-bottom: 12px;
}
.bottom-line-box p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
}

/* ═══════════════════════════════════════════
   PROOF PAGE
   ═══════════════════════════════════════════ */
.proof-case {
  padding: 48px 0;
}
.proof-stat {
  text-align: center;
}
.proof-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 48px);
  color: var(--coral);
  line-height: 1;
}
.proof-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--ink-light);
  margin-top: 4px;
}
.proof-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  background: rgba(244,121,91,0.06);
  margin-bottom: 12px;
}
.proof-tag span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.proof-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--aubergine);
  margin-bottom: 8px;
  line-height: 1.3;
}
.proof-org {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--ink-light);
  margin-bottom: 14px;
  font-weight: 500;
}
.proof-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
  margin-bottom: 16px;
}
.proof-highlight {
  padding: 14px 20px;
  background: var(--canvas);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--coral);
}
.proof-highlight p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}
.proof-highlight.quote p { font-style: italic; }

/* Shift table */
.shift-table {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--stone);
  margin-top: 40px;
}
.shift-header {
  background: var(--aubergine);
  padding: 16px 24px;
}
.shift-header div {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.shift-row {
  padding: 14px 24px;
  border-bottom: 1px solid var(--stone);
}
.shift-row:nth-child(even) { background: rgba(244,246,248,0.4); }
.shift-row .label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--aubergine);
}
.shift-row .old {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink-light);
}
.shift-row .new {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--coral);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   PRICING PAGE
   ═══════════════════════════════════════════ */
.pricing-old {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  border: 1px solid var(--stone);
}
.pricing-old .label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-light);
  margin-bottom: 16px;
  text-decoration: line-through;
}
.pricing-old .price {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--ink-light);
  margin-bottom: 16px;
}
.pricing-old p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-light);
}
.pricing-new {
  background: linear-gradient(145deg, var(--aubergine), var(--aubergine-light));
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  color: white;
}
.pricing-new .label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral-light);
  margin-bottom: 16px;
}
.pricing-new .price {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: white;
  margin-bottom: 16px;
}
.pricing-new p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

/* Pricing earn box */
.pricing-earn {
  background: rgba(244,121,91,0.04);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid rgba(244,121,91,0.07);
  margin-bottom: 60px;
}
.pricing-earn h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--aubergine);
  margin-bottom: 20px;
}
.pricing-earn > p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: 24px;
  max-width: 700px;
}
.pricing-env-card {
  padding: 20px 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--stone);
  box-shadow: var(--shadow-sm);
}
.pricing-env-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--aubergine);
  margin-bottom: 8px;
}
.pricing-env-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mid);
}

/* FAQ items */
.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--stone);
}
.faq-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--aubergine);
  margin-bottom: 10px;
}
.faq-item p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
  max-width: 700px;
}

/* Pricing final CTA */
.pricing-final-cta {
  margin-top: 60px;
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(145deg, var(--aubergine), var(--aubergine-dark));
  border-radius: var(--radius-lg);
}
.pricing-final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 34px);
  color: white;
  margin-bottom: 16px;
}
.pricing-final-cta p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 30px;
}

/* ═══════════════════════════════════════════
   DEMO PAGE
   ═══════════════════════════════════════════ */
.demo-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  background: rgba(244,121,91,0.06);
  border: 1px solid rgba(244,121,91,0.12);
  margin-bottom: 24px;
}
.demo-badge span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.08em;
}
.demo-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  color: var(--aubergine);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.demo-title .accent { color: var(--coral); }
.demo-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.65;
  color: var(--ink-mid);
}

/* Form */
.demo-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 36px;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow-lg);
}
.demo-form-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--aubergine);
  margin-bottom: 6px;
}
.demo-form-box > p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink-light);
  margin-bottom: 16px;
  line-height: 1.5;
}
/* HubSpot form embed overrides */
.demo-form-box .hs-form-frame {
  margin: 0;
  padding: 0;
}
.demo-form-box iframe {
  margin: 0 !important;
  padding: 0 !important;
}
.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid);
  margin-bottom: 7px;
  display: block;
  letter-spacing: 0.02em;
}
.form-input,
.form-select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 2px solid var(--stone);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: all 0.2s ease;
}
.form-input:focus,
.form-select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(244,121,91,0.08);
}
.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-submit {
  width: 100%;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  border: none;
  background: var(--gradient-btn);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}
.form-submit:hover {
  background: var(--gradient-btn); filter: brightness(0.92);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(244,121,91,0.25);
}
.form-submit:disabled {
  background: var(--stone);
  color: var(--ink-light);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.form-note {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink-mid);
  text-align: center;
  margin-top: 8px;
  line-height: 1.55;
}

/* Demo Cue inline */
.demo-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.demo-cue-inline {
  width: 40px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(244,121,91,0.2));
  animation: cueFloat 5s ease-in-out infinite;
}

/* Demo sidebar */
.demo-sidebar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--stone);
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}
.demo-sidebar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--aubergine);
  margin-bottom: 20px;
}
.demo-expect-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.demo-expect-item:last-child { margin-bottom: 0; }
.demo-expect-icon {
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--coral);
  margin-top: 2px;
}
.demo-expect-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-mid);
}

.demo-quote-box {
  background: linear-gradient(150deg, var(--aubergine), var(--aubergine-light));
  border-radius: var(--radius-md);
  padding: 28px 24px;
  margin-bottom: 20px;
}
.demo-quote-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin-bottom: 16px;
}
.demo-quote-attr {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.demo-stats-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--stone);
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}
.demo-stats-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-light);
  margin-bottom: 18px;
}
.demo-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--coral);
  line-height: 1;
}
.demo-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--ink-light);
  margin-top: 4px;
}

.demo-email-box {
  padding: 20px 24px;
  background: rgba(244,121,91,0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(244,121,91,0.07);
}
.demo-email-box p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mid);
}
.demo-email-box .email-link {
  color: var(--coral);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

/* Demo success */
.demo-success {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--canvas);
  padding: 160px 32px 80px;
}
.demo-success-inner {
  text-align: center;
  max-width: 520px;
  animation: scaleIn 0.5s ease forwards;
}
.demo-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(244,121,91,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.demo-success h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--aubergine);
  margin-bottom: 16px;
  line-height: 1.15;
}
.demo-success p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-mid);
  margin-bottom: 12px;
}
.demo-success .email-note {
  font-size: 16px;
  color: var(--ink-light);
}

/* ═══════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════ */
.about-card {
  padding: 36px 28px;
  border-radius: var(--radius-md);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.about-card.dark {
  background: linear-gradient(150deg, var(--aubergine), var(--aubergine-light));
  border: none;
}
.about-card:not(.dark) {
  background: var(--canvas);
  border: 1px solid var(--stone);
}
.about-card .label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.about-card:not(.dark) .label { color: var(--coral); }
.about-card.dark .label { color: var(--coral-light); }
.about-card p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  flex: 1;
}
.about-card:not(.dark) p { color: var(--ink-mid); }
.about-card.dark p { color: rgba(255,255,255,0.8); }

/* Value items */
.value-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--stone);
}
.value-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  color: var(--aubergine);
  line-height: 1.3;
}
.value-item p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
}

/* Facts card */
.facts-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow-sm);
}
.facts-card .label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-light);
  margin-bottom: 24px;
}
.facts-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--stone);
}
.facts-row:last-child { border-bottom: none; }
.facts-row .key {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink-light);
}
.facts-row .val {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--aubergine);
  font-weight: 600;
  text-align: right;
}

/* Meet Cue (mascot) */
.mascot-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 56px;
}
.mascot-hero-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mascot-hero-img img {
  width: 300px;
  height: auto;
  filter: drop-shadow(0 12px 32px rgba(73,55,101,0.18));
}
.mascot-trait {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}
.mascot-trait-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}
.mascot-trait span {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.5;
}
.mascot-expressions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mascot-expression-card {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  padding: 28px 16px 20px;
  text-align: center;
  border: 1px solid var(--stone);
  transition: transform 0.2s, box-shadow 0.2s;
}
.mascot-expression-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.mascot-expression-card img {
  width: 80px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.mascot-expression-card .caption {
  margin-top: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--aubergine);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mascot-expression-card .desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--ink-light);
  margin-top: 4px;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .mascot-hero { grid-template-columns: 1fr !important; gap: 40px !important; }
  .mascot-expressions { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 600px) {
  .mascot-hero-img img { width: 200px !important; }
}

/* Contact cards */
.contact-card {
  padding: 36px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.2s;
  height: 100%;
}
.contact-card.accent {
  background: rgba(244,121,91,0.04);
  border: 1px solid rgba(244,121,91,0.08);
  cursor: pointer;
}
.contact-card:not(.accent) {
  background: var(--canvas);
  border: 1px solid var(--stone);
}
.contact-card .icon {
  width: 44px; height: 44px;
  background: var(--aubergine);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
}
.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--aubergine);
  margin-bottom: 8px;
}
.contact-card .detail {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-card.accent .detail { color: var(--coral); }
.contact-card:not(.accent) .detail { color: var(--ink); }
.contact-card .sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.5;
}

/* About closing */
.about-closing {
  font-family: 'Inter', sans-serif;
  font-size: clamp(17px, 2.5vw, 20px);
  line-height: 1.6;
  color: var(--ink-mid);
  max-width: 600px;
  margin: 0 auto 8px;
  font-style: italic;
}
.about-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3vw, 24px);
  color: var(--aubergine);
}


/* ═══════════════════════════════════════════
   CLIENTS PAGE
   ═══════════════════════════════════════════ */
.client-feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.client-feature-card .icon {
  width: 44px; height: 44px;
  background: var(--aubergine);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: white;
}
.client-feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--aubergine);
  margin-bottom: 8px;
  line-height: 1.3;
}
.client-feature-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-mid);
}

/* Compliance system cards */
.system-card {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--stone);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.system-card .icon {
  width: 44px; height: 44px;
  background: var(--aubergine);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: white;
}
.system-card .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.system-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--aubergine);
  line-height: 1.3;
}
.system-badge {
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}
.system-badge.collinq { background: rgba(244,121,91,0.06); color: var(--coral); }
.system-badge.partner { background: rgba(73,55,101,0.06); color: var(--aubergine); }
.system-card .subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.system-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-mid);
  flex: 1;
}

/* Comparison cards */
.compare-card {
  border-radius: var(--radius-md);
  padding: 32px 28px;
}
.compare-card.traditional {
  background: var(--canvas);
  border: 1px solid var(--stone);
}
.compare-card.collinq {
  background: rgba(244,121,91,0.03);
  border: 1px solid rgba(244,121,91,0.08);
}
.compare-card .label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.compare-card.traditional .label { color: var(--ink-light); }
.compare-card.collinq .label { color: var(--coral); }
.compare-item {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  align-items: flex-start;
}
.compare-item .mark {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 22px;
}
.compare-card.traditional .mark { color: var(--ink-light); }
.compare-card.collinq .mark { color: var(--coral); }
.compare-item span:last-child {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.5;
}
.compare-card.traditional .compare-item span:last-child { color: var(--ink-mid); }
.compare-card.collinq .compare-item span:last-child { color: var(--ink); }

/* Client pricing */
.client-pricing-card {
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}
.client-pricing-card.standard {
  background: var(--white);
  border: 1px solid var(--stone);
  box-shadow: var(--shadow-sm);
}
.client-pricing-card.enterprise {
  background: linear-gradient(160deg, var(--aubergine), var(--aubergine-dark));
  position: relative;
  overflow: hidden;
}
.client-pricing-card.enterprise .deco {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,121,91,0.08) 0%, transparent 70%);
}
.pricing-card-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.client-pricing-card.standard .pricing-card-label { color: var(--coral); }
.client-pricing-card.enterprise .pricing-card-label { color: var(--coral-light); }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 48px);
}
.client-pricing-card.standard .pricing-amount { color: var(--aubergine); }
.client-pricing-card.enterprise .pricing-amount { color: var(--white); }
.pricing-period {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink-light);
}
.pricing-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.client-pricing-card.standard .pricing-card-desc { color: var(--ink-mid); }
.client-pricing-card.enterprise .pricing-card-desc { color: rgba(255,255,255,0.65); }
.pricing-divider {
  border-top: 1px solid var(--stone);
  padding-top: 24px;
}
.client-pricing-card.enterprise .pricing-divider {
  border-top-color: rgba(255,255,255,0.1);
}
.enterprise-includes {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.check-item-light .check-mark { color: var(--coral-light); }
.check-item-light .check-text { color: rgba(255,255,255,0.85); }

/* Client info boxes */
.client-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow-sm);
}
.client-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--aubergine);
  margin-bottom: 6px;
}
.client-info-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mid);
}

/* Client stat */
.client-stat {
  text-align: center;
}
.client-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--coral);
  margin-bottom: 4px;
}
.client-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Getting started boxes */
.getting-started-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.getting-started-card .label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.getting-started-card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-mid);
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
  padding: 60px 32px 40px;
  background: var(--aubergine-dark);
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.footer-logo {
  margin-bottom: 16px;
}
.footer-logo img { height: 28px; width: auto; display: block; image-rendering: optimizeQuality; }
.footer-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
  color: rgba(255,255,255,0.7);
}
.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  display: block;
}
.footer-link:hover { color: rgba(255,255,255,0.9); }
.footer-cta {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--coral-light);
  cursor: pointer;
  font-weight: 500;
  display: block;
}
.footer-cta:hover { color: var(--coral); }
.footer-address {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  margin-top: 28px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-cue {
  width: 24px;
  height: auto;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}
.footer-tagline:hover .footer-cue {
  opacity: 1;
  transform: scale(1.15);
}

/* ─── Utility ─── */
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-14 { margin-bottom: 14px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-28 { margin-bottom: 28px; }
.mb-32 { margin-bottom: 32px; }
.mb-36 { margin-bottom: 36px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mb-50 { margin-bottom: 50px; }
.mb-60 { margin-bottom: 60px; }
.mt-32 { margin-top: 32px; }
.mt-36 { margin-top: 36px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mt-60 { margin-top: 60px; }
.mt-80 { margin-top: 80px; }
.mt-90 { margin-top: 90px; }
.pt-hero { padding-top: 60px; }
.border-b { border-bottom: 1px solid var(--stone); }
.flex-wrap { display: flex; flex-wrap: wrap; }
.gap-6 { gap: 6px; }
.gap-14 { gap: 14px; }
.gap-32 { gap: 32px; }

/* PDCA steps */
.pdca-steps { display: flex; gap: 4px; margin-bottom: 14px; }
.pdca-step {
  flex: 1;
  padding: 8px 0;
  text-align: center;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
}

/* Progress bar */
.progress-bar {
  height: 6px;
  border-radius: var(--radius-sm);
}
.progress-fill {
  height: 100%;
  border-radius: var(--radius-sm);
  transition: width 1s ease;
}

/* Notification card (module preview) */
.notif-card {
  padding: 12px 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}
.notif-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.notif-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--aubergine);
}
.notif-time {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--ink-light);
}
.notif-desc {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--ink-mid);
  line-height: 1.4;
}

/* Search bar (module preview) */
.search-bar {
  padding: 10px 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--stone);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-bar span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--ink-light);
}

/* System cards (module preview) */
.system-preview-card {
  padding: 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--stone);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.system-preview-card:last-child { margin-bottom: 0; }
.system-preview-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--aubergine);
}
.system-preview-author {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--ink-light);
  margin-top: 2px;
}
.system-preview-version {
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
}

/* Flowchart progress labels */
.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.progress-label span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
}
.progress-label .name { font-weight: 600; color: var(--aubergine); }

/* Register items */
.register-item {
  padding: 12px 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--stone);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.register-item:last-child { margin-bottom: 0; }
.register-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--aubergine);
}
.register-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.register-count {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--ink-light);
}
.register-trend {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
}

/* ─── CTA sections ─── */
.cta-section {
  padding: 96px 32px;
  text-align: center;
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--aubergine);
  margin-bottom: 18px;
  line-height: 1.15;
}
.cta-section p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: var(--ink-mid);
  margin-bottom: 32px;
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-cue {
  width: 72px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(244,121,91,0.2));
  animation: cueFloat 4s ease-in-out infinite;
}

/* ─── Cookie Consent Banner ─── */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-top: 1px solid var(--stone);
  padding: 20px 24px;
  display: none;
  animation: slideUp 0.4s ease-out;
}
.cookie-consent.visible { display: block; }
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-consent-text {
  flex: 1;
  min-width: 280px;
}
.cookie-consent-text p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.55;
}
.cookie-consent-text a {
  color: var(--aubergine);
  text-decoration: underline;
  font-weight: 500;
}
.cookie-consent-text a:hover { color: var(--coral); }
.cookie-consent-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.cookie-btn.accept {
  background: var(--gradient-btn);
  color: white;
}
.cookie-btn.accept:hover {
  background: var(--gradient-btn); filter: brightness(0.92);
}
.cookie-btn.decline {
  background: transparent;
  color: var(--ink-mid);
  border: 1px solid var(--stone);
}
.cookie-btn.decline:hover {
  background: var(--canvas);
  color: var(--aubergine);
}
@media (max-width: 600px) {
  .cookie-consent { padding: 16px 20px; }
  .cookie-consent-inner { gap: 16px; }
  .cookie-consent-buttons { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .anim-section {
    opacity: 1;
    transform: none;
  }
}
