/* ======================================
   Start2.ai v4 — Golden Horizons Style
   ====================================== */

/* --- CSS Variables --- */
:root {
  --color-bg-dark: #1e1e2a;
  --color-bg-primary: #2a2a38;
  --color-bg-card: #33334a;
  --color-bg-card-hover: #3d3d55;
  --color-accent: #f5a623;
  --color-accent-hover: #e6951a;
  --color-accent-light: rgba(245, 166, 35, 0.1);
  --color-white: #ffffff;
  --color-light: #f8f9fa;
  --color-gray-100: #e8e8ee;
  --color-gray-200: #d0d0dc;
  --color-gray-300: #b0b0c0;
  --color-gray-400: #8888a0;
  --color-text-light: #c8c8d8;
  --color-text-muted: #9898b0;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-light: rgba(255, 255, 255, 0.12);

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3.25rem;

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.2);

  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  --header-height: 72px;
}

/* --- Light Theme --- */
[data-theme="light"] {
  --color-bg-dark: #f5f5f0;
  --color-bg-primary: #ffffff;
  --color-bg-card: #f9f9f6;
  --color-bg-card-hover: #f0f0eb;
  --color-accent: #e09515;
  --color-accent-hover: #c9850f;
  --color-accent-light: rgba(224, 149, 21, 0.08);
  --color-white: #1a1a2e;
  --color-light: #2a2a3e;
  --color-gray-100: #333348;
  --color-gray-200: #4a4a5e;
  --color-gray-300: #666680;
  --color-gray-400: #8888a0;
  --color-text-light: #3a3a50;
  --color-text-muted: #666680;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-light: rgba(0, 0, 0, 0.12);

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* Light theme component overrides for hardcoded colors */
[data-theme="light"] .header {
  background: rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .header.scrolled {
  background: rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .hero::before {
  background: radial-gradient(circle, rgba(224, 149, 21, 0.08) 0%, transparent 70%);
}

[data-theme="light"] .hero::after {
  background: radial-gradient(circle, rgba(224, 149, 21, 0.06) 0%, transparent 70%);
}

[data-theme="light"] .hero-badge {
  border-color: rgba(224, 149, 21, 0.25);
}

[data-theme="light"] .section-tag {
  border-color: rgba(224, 149, 21, 0.25);
}

[data-theme="light"] .btn-accent {
  color: #ffffff;
}

[data-theme="light"] .btn-accent:hover {
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(224, 149, 21, 0.25);
}

[data-theme="light"] .nav-links .btn {
  color: #ffffff;
}

[data-theme="light"] .nav-links .btn:hover {
  color: #ffffff;
}

[data-theme="light"] .btn-outline-light {
  color: var(--color-text-light);
  border-color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .btn-outline-light:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--color-white);
  border-color: rgba(0, 0, 0, 0.25);
}

[data-theme="light"] .service-card:hover {
  border-color: rgba(224, 149, 21, 0.25);
}

[data-theme="light"] .capability-card:hover {
  border-color: rgba(224, 149, 21, 0.2);
}

[data-theme="light"] .hero-form-card::before {
  background: conic-gradient(
    from var(--border-beam-angle),
    transparent 0%,
    transparent 75%,
    var(--color-accent) 85%,
    rgba(224, 149, 21, 0.5) 90%,
    transparent 100%
  );
}

[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group textarea:focus,
[data-theme="light"] .form-group select:focus {
  box-shadow: 0 0 0 3px rgba(224, 149, 21, 0.12);
}

[data-theme="light"] .form-group select option {
  background: #ffffff;
  color: #1a1a2e;
}

[data-theme="light"] .cta-section::before {
  background: radial-gradient(ellipse, rgba(224, 149, 21, 0.06) 0%, transparent 70%);
}

[data-theme="light"] .cookie-banner {
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .form-status.success {
  color: #16a34a;
}

/* Light theme SVG icon colors (stroke-based icons) */
[data-theme="light"] .hamburger-line {
  background: var(--color-white);
}

/* Theme toggle button */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  color: var(--color-gray-300);
  transition: all var(--transition-fast);
  padding: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 10000;
}

.theme-toggle:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: var(--color-accent-light);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  display: none;
  width: 18px;
  height: 18px;
}

/* Dark mode: show sun icon (to switch to light) */
:root .theme-toggle .icon-sun {
  display: block;
}

/* Light mode: show moon icon (to switch to dark) */
[data-theme="light"] .theme-toggle .icon-moon {
  display: block;
}

[data-theme="light"] .theme-toggle .icon-sun {
  display: none;
}

/* Mobile nav light theme override */
[data-theme="light"] .nav-links {
  background: var(--color-bg-primary);
}

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

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

body {
  font-family: var(--font-family);
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color var(--transition-base), color var(--transition-base);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent-hover);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-accent:hover {
  background: var(--color-accent-hover);
  color: var(--color-bg-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.3);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid var(--color-border-light);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-sm {
  padding: 8px 20px;
  font-size: var(--font-size-xs);
}

.btn-full {
  width: 100%;
}

.btn-nav {
  padding: 10px 24px;
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(30, 30, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-base);
  height: var(--header-height);
}

.header.scrolled {
  background: rgba(30, 30, 42, 0.95);
  box-shadow: var(--shadow-md);
}

/* When mobile menu is open, remove backdrop-filter to prevent stacking context issues */
.header.menu-open {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom-color: transparent;
  z-index: 10001;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-white);
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  font-weight: 900;
  font-size: var(--font-size-sm);
  border-radius: var(--radius-sm);
}

.logo-text {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-white);
}

.logo-dot {
  color: var(--color-accent);
}

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

.nav-links a {
  color: var(--color-gray-300);
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--color-white);
}

.nav-links .btn {
  color: var(--color-bg-dark);
}

.nav-scan-link {
  color: var(--color-accent) !important;
  font-weight: 600 !important;
  position: relative;
}

.nav-scan-link:hover {
  color: var(--color-accent-hover) !important;
}

.nav-scan-link.active {
  color: var(--color-accent) !important;
}

.nav-scan-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}

.service-link-scan {
  margin-bottom: 4px;
}

.nav-links .btn:hover {
  color: var(--color-bg-dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10000;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
  padding: calc(var(--header-height) + 60px) 0 80px;
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.hero-content {
  padding-top: 20px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: var(--font-size-xs);
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  border: 1px solid rgba(245, 166, 35, 0.2);
}

.hero h1 {
  font-size: var(--font-size-5xl);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

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

.hero-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  gap: 36px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-accent);
}

.stat-label {
  font-size: var(--font-size-xs);
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Form */
.hero-form-wrapper {
  position: relative;
}

/* Travelling border beam animation */
@keyframes border-beam-rotate {
  0% { --border-beam-angle: 0deg; }
  100% { --border-beam-angle: 360deg; }
}

@property --border-beam-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.hero-form-card {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* The travelling light beam */
.hero-form-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 1.5px;
  background: conic-gradient(
    from var(--border-beam-angle),
    transparent 0%,
    transparent 75%,
    var(--color-accent) 85%,
    rgba(245, 166, 35, 0.6) 90%,
    transparent 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: border-beam-rotate 4s linear infinite;
  pointer-events: none;
}

.hero-form-card h2 {
  font-size: var(--font-size-xl);
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-form-card > p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

/* --- Forms --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-gray-200);
}

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

.form-group input,
.form-group textarea,
.form-group select {
  padding: 10px 14px;
  background: var(--color-bg-dark);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-gray-400);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--color-accent);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%238888a0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select option {
  background: var(--color-bg-primary);
  color: var(--color-white);
}

.form-status {
  font-size: var(--font-size-sm);
  text-align: center;
  min-height: 20px;
}

.form-status.success {
  color: #4ade80;
}

.form-status.error {
  color: var(--color-accent);
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: var(--font-size-xs);
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(245, 166, 35, 0.2);
}

.section-header h2 {
  font-size: var(--font-size-4xl);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Services Section --- */
.services {
  padding: 100px 0;
  background: var(--color-bg-primary);
}

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

.service-card {
  background: var(--color-bg-dark);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  border-color: rgba(245, 166, 35, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.service-label {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.service-card h3 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.service-card > p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-size-sm);
  color: var(--color-gray-200);
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-accent);
  transition: gap var(--transition-fast);
}

.service-link:hover {
  gap: 10px;
  color: var(--color-accent-hover);
}

/* --- About / Capabilities Section --- */
.about {
  padding: 100px 0;
  background: var(--color-bg-dark);
}

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

.capability-card {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
}

.capability-card:hover {
  border-color: rgba(245, 166, 35, 0.15);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.capability-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.capability-card h3 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.capability-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --- Quote Section --- */
.quote-section {
  padding: 80px 0;
  background: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.quote-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.quote-content h2 {
  font-size: var(--font-size-4xl);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.quote-text {
  font-size: var(--font-size-xl);
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.8;
}

/* --- Process / Werkwijze Section --- */
.process {
  padding: 100px 0;
  background: var(--color-bg-dark);
}

.process-steps {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.process-step:last-child {
  border-bottom: none;
}

.step-number {
  font-size: var(--font-size-4xl);
  font-weight: 900;
  color: var(--color-accent);
  opacity: 0.3;
  line-height: 1;
  min-width: 64px;
  transition: opacity var(--transition-base);
}

.process-step:hover .step-number {
  opacity: 0.7;
}

.step-content h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.step-content p {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --- FAQ Section --- */
.faq {
  padding: 100px 0;
  background: var(--color-bg-primary);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
  gap: 16px;
}

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

.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--color-gray-400);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-accent);
}

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

.faq-item.active .faq-answer {
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* --- CTA Section --- */
.cta-section {
  overflow: hidden;
  padding: 100px 0;
  background: var(--color-bg-dark);
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245, 166, 35, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.cta-content h2 {
  font-size: var(--font-size-4xl);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-content > p {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--font-size-sm);
  color: var(--color-gray-200);
}

.cta-feature svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.cta-form-card {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.cta-form-card h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 24px;
}

/* --- Newsletter Section --- */
.newsletter {
  padding: 80px 0;
  background: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
}

.newsletter-content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.newsletter-content > p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-fields {
  display: flex;
  gap: 12px;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  background: var(--color-bg-dark);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-form input[type="text"]:focus,
.newsletter-form input[type="email"]:focus {
  border-color: var(--color-accent);
}

.newsletter-form input::placeholder {
  color: var(--color-gray-400);
}

.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  text-align: left;
  cursor: pointer;
}

.newsletter-consent input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-accent);
}

.newsletter-consent a {
  color: var(--color-accent);
  text-decoration: underline;
}

.newsletter-status {
  font-size: var(--font-size-xs);
  min-height: 1.2em;
}

.newsletter-status.success {
  color: #4ade80;
}

.newsletter-status.error {
  color: var(--color-accent);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: var(--font-size-xs);
  color: var(--color-gray-400);
  font-weight: 500;
}

.footer-links h4 {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-links span {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
}

.footer-bottom p {
  font-size: var(--font-size-xs);
  color: var(--color-gray-400);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: var(--font-size-xs);
  color: var(--color-gray-400);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--color-accent);
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-bg-primary);
  border-top: 1px solid var(--color-border-light);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
}

.cookie-inner p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* --- Scroll Reveal Animations --- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children .scroll-reveal:nth-child(1) { transition-delay: 0ms; }
.stagger-children .scroll-reveal:nth-child(2) { transition-delay: 100ms; }
.stagger-children .scroll-reveal:nth-child(3) { transition-delay: 200ms; }
.stagger-children .scroll-reveal:nth-child(4) { transition-delay: 300ms; }

/* --- Hidden Section Utility --- */
.section-hidden {
  display: none !important;
}

/* --- Products Section (WEB-4) --- */
.products {
  padding: 100px 0;
  background: var(--color-bg-dark);
}

.product-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.product-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-hover), transparent);
}

.product-featured:hover {
  border-color: rgba(245, 166, 35, 0.2);
  box-shadow: var(--shadow-card);
}

.product-icon {
  width: 60px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.product-label {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-featured-content h3 {
  font-size: var(--font-size-3xl);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.product-featured-content > p {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-size-sm);
  color: var(--color-gray-200);
}

.product-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.product-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.product-price {
  font-size: var(--font-size-3xl);
  font-weight: 900;
  color: var(--color-white);
}

.product-price-period {
  font-size: var(--font-size-base);
  font-weight: 400;
  color: var(--color-text-muted);
}

/* Chat preview mockup */
.product-featured-visual {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.product-chat-preview {
  width: 100%;
  max-width: 380px;
  background: var(--color-bg-dark);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-bubble {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  line-height: 1.6;
  max-width: 90%;
}

.chat-bubble-bot {
  background: var(--color-bg-card);
  color: var(--color-text-light);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.chat-bubble-label {
  display: block;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.chat-bubble-user {
  background: var(--color-accent);
  color: var(--color-bg-dark);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  font-weight: 500;
}

.chat-typing {
  display: flex;
  gap: 4px;
  padding: 8px 0 0 4px;
}

.chat-typing span {
  width: 6px;
  height: 6px;
  background: var(--color-gray-400);
  border-radius: 50%;
  animation: chat-typing-dot 1.4s infinite;
}

.chat-typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.chat-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes chat-typing-dot {
  0%, 60%, 100% { opacity: 0.3; transform: scale(0.8); }
  30% { opacity: 1; transform: scale(1); }
}

/* Light theme overrides for products */
[data-theme="light"] .product-featured:hover {
  border-color: rgba(224, 149, 21, 0.25);
}

[data-theme="light"] .chat-bubble-user {
  color: #ffffff;
}


/* ==============================
   Workshops Page
   ============================== */

.workshop-hero {
  padding: 140px 0 60px;
  position: relative;
}

.workshop-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.workshop-hero h1 {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 20px;
}

.workshop-hero-desc {
  max-width: 680px;
  margin: 0 auto;
}

.workshop-cards {
  padding: 40px 0 80px;
}

.workshop-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 0;
  margin-bottom: 32px;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  overflow: hidden;
}

.workshop-card:hover {
  border-color: rgba(245, 166, 35, 0.25);
  box-shadow: var(--shadow-md);
}

.workshop-card-featured {
  border-color: rgba(245, 166, 35, 0.2);
  background: linear-gradient(135deg, var(--color-bg-card) 0%, rgba(245, 166, 35, 0.03) 100%);
}

.workshop-card-featured:hover {
  border-color: rgba(245, 166, 35, 0.4);
}

.workshop-card-content {
  padding: 40px 48px;
}

.workshop-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}

.workshop-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border-radius: var(--radius-lg);
  color: var(--color-accent);
  flex-shrink: 0;
}

.workshop-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.workshop-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.workshop-badge-half {
  background: rgba(245, 166, 35, 0.12);
  color: var(--color-accent);
  border: 1px solid rgba(245, 166, 35, 0.2);
}

.workshop-badge-full {
  background: rgba(245, 166, 35, 0.12);
  color: var(--color-accent);
  border: 1px solid rgba(245, 166, 35, 0.2);
}

.workshop-badge-group {
  background: rgba(200, 200, 216, 0.08);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.workshop-badge-onsite {
  background: rgba(200, 200, 216, 0.08);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.workshop-card h2 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.workshop-tagline {
  font-size: var(--font-size-lg);
  color: var(--color-accent);
  font-style: italic;
  margin-bottom: 16px;
}

.workshop-desc {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.workshop-audience {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  margin-bottom: 28px;
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

.workshop-audience strong {
  color: var(--color-white);
}

.workshop-program-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
}

.workshop-program {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.workshop-program li {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: flex-start;
}

.workshop-program li:last-child {
  border-bottom: none;
}

.program-time {
  flex-shrink: 0;
  width: 70px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-accent);
  padding-top: 2px;
}

.program-content {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

.program-content strong {
  color: var(--color-white);
}

.workshop-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  gap: 24px;
}

.workshop-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.price-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.price-amount {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--color-white);
}

.price-unit {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.workshop-why {
  padding: 80px 0;
}

/* Light theme overrides for workshops */
[data-theme="light"] .workshop-hero::before {
  background: radial-gradient(circle, rgba(224, 149, 21, 0.06) 0%, transparent 70%);
}

[data-theme="light"] .workshop-card:hover {
  border-color: rgba(224, 149, 21, 0.25);
}

[data-theme="light"] .workshop-card-featured {
  border-color: rgba(224, 149, 21, 0.2);
}

[data-theme="light"] .workshop-card-featured:hover {
  border-color: rgba(224, 149, 21, 0.35);
}

/* ==============================
   Responsive Styles
   ============================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: var(--font-size-4xl);
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-featured {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .workshop-hero h1 {
    font-size: var(--font-size-4xl);
  }

  .workshop-card-content {
    padding: 32px 36px;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  :root {
    --font-size-5xl: 2.25rem;
    --font-size-4xl: 1.75rem;
    --font-size-3xl: 1.5rem;
    --font-size-2xl: 1.25rem;
  }

  .hamburger {
    display: flex;
  }

  .theme-toggle {
    order: 1;
  }

  .hamburger {
    order: 2;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #1e1e2a;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    z-index: 9999;
  }

  [data-theme="light"] .nav-links {
    background: #ffffff;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .nav-links li {
    list-style: none;
    text-align: center;
  }

  .nav-links a {
    font-size: var(--font-size-xl);
    color: var(--color-white);
  }

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

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

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero {
    padding: calc(var(--header-height) + 40px) 0 60px;
  }

  .hero-form-card {
    padding: 24px;
  }

  .services,
  .about,
  .products,
  .process,
  .faq,
  .cta-section {
  overflow: hidden;
    padding: 64px 0;
  }

  .product-featured {
    padding: 24px;
    gap: 24px;
  }

  .product-featured-content h3 {
    font-size: var(--font-size-2xl);
  }

  .product-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .product-chat-preview {
    max-width: 100%;
  }

  .quote-section {
    padding: 56px 0;
  }

  .process-step {
    flex-direction: column;
    gap: 12px;
    padding: 28px 0;
  }

  .step-number {
    font-size: var(--font-size-3xl);
    min-width: auto;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-fields {
    flex-direction: column;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .cta-form-card {
    padding: 24px;
  }

  .workshop-hero {
    padding: 120px 0 40px;
  }

  .workshop-card-content {
    padding: 24px 20px;
  }

  .workshop-card-header {
    flex-direction: column;
    gap: 12px;
  }

  .workshop-meta {
    justify-content: flex-start;
  }

  .workshop-card h2 {
    font-size: var(--font-size-2xl);
  }

  .workshop-program li {
    flex-direction: column;
    gap: 4px;
  }

  .program-time {
    width: auto;
  }

  .workshop-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .workshop-footer .btn {
    width: 100%;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .service-card {
    padding: 24px;
  }

  .capability-card {
    padding: 24px;
  }

  .product-featured {
    padding: 20px;
  }

  .product-price {
    font-size: var(--font-size-2xl);
  }
}

/* ─── Nova Chat Widget ─── */
#nova-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
}

#nova-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, #f5a623 0%, #ff4d00 100%);
  color: #000;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(255, 77, 0, 0.4);
  transition: transform 0.3s ease;
  overflow: hidden;
  animation: novaEmberGlow 3s ease-in-out infinite;
}
#nova-trigger::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  animation: novaShimmer 4s ease-in-out infinite;
  pointer-events: none;
}
#nova-trigger:hover {
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 6px 28px rgba(255, 77, 0, 0.6);
}
#nova-trigger:hover::after {
  animation: none;
  opacity: 0;
}
#nova-trigger.nova-trigger-active {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  animation: none;
}
.nova-trigger-label {
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

/* Breathing ember glow */
@keyframes novaEmberGlow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(255, 77, 0, 0.35);
  }
  50% {
    box-shadow: 0 4px 32px rgba(255, 77, 0, 0.65), 0 0 12px rgba(245, 166, 35, 0.3);
  }
}

/* Shimmer sweep */
@keyframes novaShimmer {
  0%, 100% {
    left: -100%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  30% {
    left: 100%;
    opacity: 0;
  }
  31%, 99% {
    left: -100%;
    opacity: 0;
  }
}

/* Floating embers */
.nova-ember {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: novaFloat var(--ember-duration, 2s) ease-out forwards;
}
@keyframes novaFloat {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(1);
  }
  15% {
    opacity: 0.9;
  }
  60% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translateY(var(--ember-rise, -50px)) translateX(var(--ember-drift, 0px)) scale(0.1);
  }
}

/* Panel */
#nova-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 380px;
  max-height: 560px;
  background: var(--color-bg-dark, #0d0d0f);
  border: 1px solid var(--color-border, rgba(255,255,255,0.08));
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#nova-panel.nova-panel-closed {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
}
#nova-panel.nova-panel-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* Header */
.nova-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border, rgba(255,255,255,0.08));
  background: var(--color-bg-card, #141416);
}
.nova-panel-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nova-panel-title strong {
  color: var(--color-white, #fff);
  font-size: 15px;
}
.nova-subtitle {
  color: var(--color-text-muted, rgba(255,255,255,0.5));
  font-size: 12px;
}
#nova-close {
  background: none;
  border: none;
  color: var(--color-text-muted, rgba(255,255,255,0.5));
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: all 0.2s;
}
#nova-close:hover {
  color: var(--color-white, #fff);
  background: rgba(255,255,255,0.05);
}

/* Status dot */
.nova-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #555;
  flex-shrink: 0;
}
.nova-status-dot.nova-online {
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}
.nova-status-dot.nova-offline {
  background: #ef4444;
}

/* Messages */
.nova-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 300px;
  max-height: 400px;
}
.nova-message {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}
.nova-message-bot {
  align-self: flex-start;
  background: linear-gradient(135deg, #f5a623 0%, #ff4d00 100%);
  color: #000;
  border-bottom-left-radius: 4px;
}
.nova-message-user {
  align-self: flex-end;
  background: var(--color-bg-card, #141416);
  color: var(--color-text, rgba(255,255,255,0.85));
  border-bottom-right-radius: 4px;
}

/* Typing indicator */
.nova-typing {
  display: flex;
  gap: 4px;
  padding: 12px 14px;
}
.nova-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-text-muted, rgba(255,255,255,0.4));
  animation: novaBounce 1.4s infinite ease-in-out both;
}
.nova-typing span:nth-child(1) { animation-delay: -0.32s; }
.nova-typing span:nth-child(2) { animation-delay: -0.16s; }
@keyframes novaBounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* Form */
.nova-form {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--color-border, rgba(255,255,255,0.08));
  background: var(--color-bg-card, #141416);
}
#nova-input {
  flex: 1;
  padding: 10px 14px;
  background: var(--color-bg-dark, #0d0d0f);
  border: 1px solid var(--color-border, rgba(255,255,255,0.08));
  border-radius: 10px;
  color: var(--color-white, #fff);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
#nova-input:focus {
  border-color: var(--color-accent, #f5a623);
}
#nova-input::placeholder {
  color: var(--color-text-muted, rgba(255,255,255,0.4));
}
#nova-send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f5a623 0%, #ff4d00 100%);
  color: #000;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
}
#nova-send:hover:not(:disabled) {
  background: var(--color-accent-hover, #e6951a);
}
#nova-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Light theme overrides */
[data-theme="light"] #nova-panel {
  background: #fff;
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
[data-theme="light"] .nova-panel-header {
  background: #fafafa;
  border-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .nova-panel-title strong { color: #1a1a1a; }
[data-theme="light"] .nova-subtitle { color: #888; }
[data-theme="light"] .nova-message-user {
  background: #f0f0f0;
  color: #1a1a1a;
}
[data-theme="light"] #nova-input {
  background: #fff;
  border-color: rgba(0,0,0,0.12);
  color: #1a1a1a;
}
[data-theme="light"] .nova-form {
  background: #fafafa;
  border-color: rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 480px) {
  #nova-panel {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 120px);
    bottom: 8px;
    right: 8px;
  }
  #nova-widget {
    bottom: 16px;
    right: 16px;
  }
}

/* Scrollbar */
.nova-messages::-webkit-scrollbar {
  width: 4px;
}
.nova-messages::-webkit-scrollbar-track {
  background: transparent;
}
.nova-messages::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}

/* ─── Nova Face Mode ─── */
#nova-trigger.nova-face-mode {
  position: relative;
  width: 60px;
  height: 82px;
  border-radius: 50%;
  padding: 0;
  background: rgba(245, 166, 35, 0.35);
  border: none;
  clip-path: path('M 30 82 C 47 82 60 69 60 52 C 56 36 44 18 38 10 C 34 4 31 0 30 0 C 29 0 26 4 22 10 C 16 18 4 36 0 52 C 0 69 13 82 30 82 Z');
  animation: novaFaceGlow 4s ease-in-out infinite;
}
#nova-trigger.nova-face-mode::after {
  display: none;
}
#nova-trigger.nova-face-mode::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-dark, #0d0d0f);
  clip-path: path('M 30 82 C 47 82 60 69 60 52 C 56 36 44 18 38 10 C 34 4 31 0 30 0 C 29 0 26 4 22 10 C 16 18 4 36 0 52 C 0 69 13 82 30 82 Z');
  transform: scale(0.92);
  z-index: 0;
}
[data-theme="light"] #nova-trigger.nova-face-mode::before {
  background: #faf6f0;
}
#nova-trigger.nova-face-mode:hover {
  transform: translateY(-2px);
  animation: none;
  filter: drop-shadow(0 0 2px rgba(245, 166, 35, 0.6)) drop-shadow(0 6px 18px rgba(245, 166, 35, 0.4)) drop-shadow(0 0 25px rgba(255, 77, 0, 0.15));
}
#nova-trigger.nova-face-mode.nova-trigger-active {
  animation: none;
}

.nova-face {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.nova-eye {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd700 0%, #f5a623 50%, #ff6b35 100%);
  box-shadow: 0 0 6px rgba(245, 166, 35, 0.8), 0 0 12px rgba(245, 166, 35, 0.3);
  position: absolute;
  top: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: height 0.08s ease, opacity 0.08s ease, transform 0.8s ease-in-out;
  overflow: hidden;
}

.nova-eye-left {
  left: 16px;
}

.nova-eye-right {
  right: 16px;
}

/* ─── Eyebrows ─── */
.nova-brow {
  position: absolute;
  top: 46px;
  width: 11px;
  height: 7px;
  border-top: 1.5px solid rgba(245, 166, 35, 0.4);
  border-radius: 50%;
  transition: top 0.08s ease, opacity 0.08s ease;
}

.nova-brow-left {
  left: 14px;
}

.nova-brow-right {
  right: 14px;
}

.nova-brow.nova-blink {
  top: 49px;
  opacity: 0.2;
}


/* ─── Smile ─── */
.nova-smile {  position: absolute;  bottom: 12px;  left: 50%;  transform: translateX(-50%);  width: 18px;  height: 7px;  border-bottom: 1.8px solid rgba(245, 166, 35, 0.4);  border-radius: 0 0 50% 50%;  transition: width 0.4s ease-in-out, border-width 0.4s ease-in-out, border-color 0.4s ease-in-out;}

/* Nova smile on hover — wider, more curved, brighter (no height transition = no drop) */
#nova-trigger:hover .nova-smile {
  width: 24px !important;
  height: 13px !important;
  border-bottom-width: 2.2px !important;
  border-bottom-color: rgba(245, 166, 35, 0.75) !important;
  transition: width 0.3s ease-in-out, border-bottom-width 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out !important;
}

.nova-eye.nova-blink {
  height: 1.5px;
  opacity: 0.6;
}

.nova-pupil {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 3px rgba(255, 255, 255, 0.6);
  position: absolute;
  will-change: transform;
}

@keyframes novaFaceGlow {
  0%, 100% {
    filter: drop-shadow(0 0 1px rgba(245, 166, 35, 0.3)) drop-shadow(0 4px 12px rgba(245, 166, 35, 0.15)) drop-shadow(0 0 15px rgba(255, 77, 0, 0.08));
  }
  50% {
    filter: drop-shadow(0 0 1.5px rgba(245, 166, 35, 0.5)) drop-shadow(0 4px 18px rgba(245, 166, 35, 0.25)) drop-shadow(0 0 20px rgba(255, 77, 0, 0.12));
  }
}

/* Light theme face mode — warm ivory */
[data-theme="light"] #nova-trigger.nova-face-mode {
  width: 60px;
  height: 82px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.25);
  border: none;
  clip-path: path('M 30 82 C 47 82 60 69 60 52 C 56 36 44 18 38 10 C 34 4 31 0 30 0 C 29 0 26 4 22 10 C 16 18 4 36 0 52 C 0 69 13 82 30 82 Z');
  animation: novaFaceGlowLight 4s ease-in-out infinite;
}
[data-theme="light"] #nova-trigger.nova-face-mode:hover {
  filter: drop-shadow(0 0 2px rgba(180, 120, 40, 0.5)) drop-shadow(0 6px 18px rgba(180, 140, 80, 0.25)) drop-shadow(0 0 25px rgba(180, 120, 40, 0.1));
}

/* Eyes — burnt amber, no outer glow */
[data-theme="light"] .nova-eye {
  background: radial-gradient(circle, #d4882a 0%, #c47a1a 50%, #8b5e14 100%);
  box-shadow: inset 0 0 3px rgba(60, 40, 10, 0.3);
}

/* Pupils — dark brown */
[data-theme="light"] .nova-pupil {
  background: #3d2b0a;
  box-shadow: 0 0 2px rgba(60, 40, 10, 0.4);
}

/* Brows — warm brown */
[data-theme="light"] .nova-brow {
  border-top-color: rgba(140, 90, 30, 0.5);
}

/* Smile — warm brown */
[data-theme="light"] .nova-smile {
  border-bottom-color: rgba(140, 90, 30, 0.4);
}
[data-theme="light"] #nova-trigger:hover .nova-smile {
  width: 24px !important;
  height: 13px !important;
  border-bottom-width: 2.2px !important;
  border-bottom-color: rgba(140, 90, 30, 0.75) !important;
  transition: width 0.3s ease-in-out, border-bottom-width 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out !important;
}


/* Light mode face glow — soft warm shadow */
@keyframes novaFaceGlowLight {
  0%, 100% {
    filter: drop-shadow(0 0 1px rgba(180, 120, 40, 0.25)) drop-shadow(0 4px 12px rgba(180, 140, 80, 0.1)) drop-shadow(0 0 12px rgba(180, 120, 40, 0.05));
  }
  50% {
    filter: drop-shadow(0 0 1.5px rgba(180, 120, 40, 0.4)) drop-shadow(0 4px 18px rgba(180, 140, 80, 0.18)) drop-shadow(0 0 18px rgba(180, 120, 40, 0.08));
  }
}

/* ─── Nova Name Label ─── */
.nova-name-label {
  display: block;
  text-align: center;
  margin-top: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: #f5a623;
  text-shadow: 0 0 8px rgba(245, 166, 35, 0.4), 0 0 16px rgba(255, 77, 0, 0.15);
  pointer-events: none;
  user-select: none;
  animation: novaNamePulse 4s ease-in-out infinite;
}

@keyframes novaNamePulse {
  0%, 100% {
    opacity: 0.7;
    text-shadow: 0 0 8px rgba(245, 166, 35, 0.3), 0 0 16px rgba(255, 77, 0, 0.1);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 12px rgba(245, 166, 35, 0.5), 0 0 24px rgba(255, 77, 0, 0.2);
  }
}

/* Light theme — warm brown name */
[data-theme="light"] .nova-name-label {
  color: #b47828;
  text-shadow: 0 0 6px rgba(180, 120, 40, 0.25), 0 0 12px rgba(180, 120, 40, 0.1);
}

[data-theme="light"] .nova-name-label {
  animation: novaNamePulseLight 4s ease-in-out infinite;
}

@keyframes novaNamePulseLight {
  0%, 100% {
    opacity: 0.65;
    text-shadow: 0 0 6px rgba(180, 120, 40, 0.2);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(180, 120, 40, 0.35);
  }
}

/* ─── Performance: Reduced Motion ─── */
/* Respects OS-level "reduce motion" setting (WCAG 2.1 Level AA) */
@media (prefers-reduced-motion: reduce) {
  #nova-trigger.nova-face-mode,
  [data-theme="light"] #nova-trigger.nova-face-mode {
    animation: none !important;
    filter: drop-shadow(0 0 1px rgba(245, 166, 35, 0.3)) drop-shadow(0 4px 12px rgba(245, 166, 35, 0.15)) !important;
  }
  #nova-trigger,
  #nova-trigger::after {
    animation: none !important;
  }
  .nova-name-label,
  [data-theme="light"] .nova-name-label {
    animation: none !important;
    opacity: 0.85 !important;
  }
  .nova-ember {
    display: none !important;
  }
  .border-beam {
    animation: none !important;
    opacity: 0 !important;
  }
  .nova-typing span {
    animation: none !important;
    opacity: 0.6 !important;
  }
}

/* ─── Performance: Pause animations when tab is hidden ─── */
/* Applied via JS visibilitychange → adds .nova-paused to <html> */
.nova-paused #nova-trigger.nova-face-mode,
.nova-paused [data-theme="light"] #nova-trigger.nova-face-mode {
  animation-play-state: paused !important;
}
.nova-paused #nova-trigger,
.nova-paused #nova-trigger::after {
  animation-play-state: paused !important;
}
.nova-paused .nova-name-label {
  animation-play-state: paused !important;
}
.nova-paused .border-beam {
  animation-play-state: paused !important;
}

/* ==============================
   Service Pages (WEB-14)
   ============================== */

/* --- Breadcrumb --- */
.breadcrumb {
  padding: calc(var(--header-height) + 24px) 0 0;
  background: var(--color-bg-dark);
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: var(--font-size-sm);
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  color: var(--color-gray-400);
}

.breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

.breadcrumb [aria-current="page"] {
  color: var(--color-white);
  font-weight: 500;
}

[data-theme="light"] .breadcrumb [aria-current="page"] {
  color: var(--color-bg-dark);
}

/* --- Service Hero --- */
.service-hero {
  padding: 48px 0 80px;
  background: var(--color-bg-dark);
}

.service-hero-content {
  max-width: 720px;
}

.service-hero .section-tag {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.service-hero h1 {
  font-size: var(--font-size-5xl);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.service-hero-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.service-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Outline Button Variant --- */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}

.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-bg-dark);
}

/* --- Service Detail Section --- */
.service-detail {
  padding: 80px 0;
  background: var(--color-bg-primary);
}

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

.service-deliverable {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition-base);
}

.service-deliverable:hover {
  border-color: rgba(245, 166, 35, 0.2);
  box-shadow: var(--shadow-card);
}

.deliverable-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.service-deliverable h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.service-deliverable p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --- Service Audience Section --- */
.service-audience {
  padding: 80px 0;
  background: var(--color-bg-dark);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.audience-content h2 {
  font-size: var(--font-size-3xl);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.audience-content > p {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.audience-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audience-list li {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: 1.7;
  padding-left: 24px;
  position: relative;
}

.audience-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

.audience-list li strong {
  color: var(--color-white);
}

.audience-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.audience-stat {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.audience-stat-value {
  display: block;
  font-size: var(--font-size-3xl);
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.audience-stat-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

/* --- Service Process Section --- */
.service-process {
  padding: 80px 0;
  background: var(--color-bg-primary);
}

/* --- Light Theme Overrides for Service Pages --- */
[data-theme="light"] .service-hero {
  background: var(--color-bg-dark);
}

[data-theme="light"] .service-hero h1 {
  color: var(--color-bg-dark);
}

[data-theme="light"] .breadcrumb {
  background: var(--color-bg-dark);
}

[data-theme="light"] .service-detail {
  background: var(--color-bg-primary);
}

[data-theme="light"] .service-deliverable {
  background: var(--color-bg-card);
}

[data-theme="light"] .service-deliverable h3 {
  color: var(--color-bg-dark);
}

[data-theme="light"] .service-audience {
  background: var(--color-bg-dark);
}

[data-theme="light"] .audience-content h2 {
  color: var(--color-bg-dark);
}

[data-theme="light"] .audience-list li strong {
  color: var(--color-bg-dark);
}

[data-theme="light"] .audience-stat {
  background: var(--color-bg-card);
}

[data-theme="light"] .service-process {
  background: var(--color-bg-primary);
}

/* --- Responsive: Service Pages --- */
@media (max-width: 1024px) {
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .audience-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .audience-stat {
    flex: 1;
    min-width: 140px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    padding: 32px 0 60px;
  }

  .service-hero h1 {
    font-size: var(--font-size-4xl);
  }

  .service-deliverables {
    grid-template-columns: 1fr;
  }

  .service-detail,
  .service-audience,
  .service-process {
    padding: 64px 0;
  }

  .service-hero-actions {
    flex-direction: column;
  }

  .service-hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .service-hero-actions .btn-outline {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .audience-stats {
    flex-direction: column;
  }

  .service-deliverable {
    padding: 24px;
  }
}

/* ========================================
   WORKSHOP V2 — Takeaways, Bonus, Trainer
   ======================================== */

.workshop-takeaways {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--accent);
}

.workshop-takeaways h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-heading);
}

.workshop-takeaways ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.workshop-takeaways li {
  position: relative;
  padding-left: 24px;
  padding-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.workshop-takeaways li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.workshop-takeaways li:last-child {
  padding-bottom: 0;
}

/* Bonus block */
.workshop-bonus {
  margin-top: 24px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb, 99, 102, 241), 0.08), rgba(var(--accent-rgb, 99, 102, 241), 0.03));
  border: 1px dashed var(--accent);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.workshop-bonus-label {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  margin-right: 10px;
  vertical-align: middle;
}

.workshop-bonus strong {
  color: var(--text-primary);
}

/* Trainer section */
.workshop-trainer {
  padding: 80px 0;
}

.trainer-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.trainer-text h2 {
  font-size: var(--font-3xl);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.trainer-text h3 {
  font-size: var(--font-xl);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.trainer-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.trainer-philosophy {
  font-style: italic;
  padding: 20px 28px;
  margin-top: 24px;
  background: var(--card-bg);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  color: var(--text-primary) !important;
  font-weight: 500;
}

/* Why grid — 5th card support */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

/* Light theme overrides for v2 elements */
[data-theme="light"] .workshop-takeaways {
  background: #f8f9fb;
  border-color: #e2e5ea;
}

[data-theme="light"] .workshop-bonus {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.06), rgba(79, 70, 229, 0.02));
  border-color: rgba(79, 70, 229, 0.3);
}

[data-theme="light"] .trainer-philosophy {
  background: #f8f9fb;
}

/* Responsive for v2 elements */
@media (max-width: 768px) {
  .workshop-takeaways {
    padding: 20px;
  }

  .workshop-bonus {
    padding: 16px 20px;
  }

  .workshop-trainer {
    padding: 48px 0;
  }

  .trainer-text h2 {
    font-size: var(--font-2xl);
  }
}
