/* ==========================================================================
   Aura — Premium Warm Alpine BrandOS Landing Page CSS Design System
   ========================================================================== */

:root {
  /* Color Palette - Warm Alpine & Organics */
  --bg-light-1: #faf8f5;
  /* Warm linen-white */
  --bg-light-2: #f4f1ea;
  /* Soft ivory grey */
  --bg-light-3: #ffffff;
  /* Pure white */

  --accent-teal: #0d9488;
  /* Ocean Teal */
  --accent-teal-rgb: 13, 148, 136;
  --accent-violet: #6d28d9;
  /* Healing Lavender/Violet */
  --accent-violet-rgb: 109, 40, 217;
  --accent-coral: #f97316;
  /* Soft Coral / Peach */
  --accent-coral-rgb: 249, 115, 22;

  /* Text colors */
  --text-primary: #1e293b;
  /* Charcoal Slate */
  --text-secondary: #475569;
  /* Basalt Slate */
  --text-muted: #8b96a5;
  /* Slate-grey */

  /* Glassmorphism Variables (Warm Light) */
  --glass-bg: rgba(255, 255, 255, 0.78);
  --glass-bg-hover: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(120, 110, 90, 0.08);
  --glass-border-focus: rgba(13, 148, 136, 0.35);
  --glass-shine: rgba(255, 255, 255, 0.4);
  --shadow-organic: 0 20px 40px rgba(83, 76, 61, 0.03), 0 1px 3px rgba(0, 0, 0, 0.01);
  --shadow-premium: 0 30px 60px rgba(83, 76, 61, 0.06), 0 0 20px rgba(109, 40, 217, 0.02);

  /* Typography */
  --font-heading: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container-width: 1200px;
  --header-height: 80px;

  /* Transitions */
  --transition-smooth: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  --transition-fast: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

/* Base Reset & Core Configurations */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light-1);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light-1);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-light-2);
  border: 2px solid var(--bg-light-1);
  border-radius: 10px;
  transition: var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-teal);
}

/* Static low-cost background accents */
.bg-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: none;
  opacity: 0.045;
  transform: none;
  animation: none;
}

.blob-1 {
  top: -10%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-teal) 0%, rgba(13, 148, 136, 0.1) 80%);
}

.blob-2 {
  bottom: -15%;
  left: 10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-violet) 0%, rgba(109, 40, 217, 0.1) 80%);
}

.blob-3 {
  top: 35%;
  left: 35%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--accent-coral) 0%, rgba(249, 115, 22, 0.05) 80%);
}

/* Grid & Layout Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

.grid-2 > * {
  min-width: 0;
}

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

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

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--shadow-organic);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--glass-shine) 0%, transparent 100%);
  pointer-events: none;
}

/* Gradient typography */
.gradient-text {
  background: linear-gradient(135deg, var(--text-primary) 20%, #475569 60%, var(--accent-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accent-gradient-text {
  background: linear-gradient(135deg, var(--accent-teal) 0%, #0284c7 40%, var(--accent-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Friendly Soft Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-teal);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2);
}

.btn-primary:hover {
  background: #0b7c72;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.25);
}

.btn-secondary {
  background: var(--bg-light-3);
  color: var(--text-primary);
  border-color: rgba(120, 110, 90, 0.2);
  box-shadow: var(--shadow-organic);
}

.btn-secondary:hover {
  border-color: var(--accent-teal);
  color: var(--accent-teal);
  background: var(--bg-light-3);
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.08);
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
header {
  height: var(--header-height);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(120, 110, 90, 0.05);
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--glass-border);
  box-shadow: 0 10px 30px rgba(83, 76, 61, 0.02);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 32px;
  height: 32px;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* Powered by Toech Badge */
.toech-badge {
  background: rgba(13, 148, 136, 0.05);
  border: 1px solid rgba(13, 148, 136, 0.15);
  color: var(--accent-teal);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.toech-badge span.dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-teal);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px var(--accent-teal);
  animation: pulse-glow 2.5s infinite;
}

.toech-badge:hover {
  background: rgba(13, 148, 136, 0.1);
  border-color: rgba(13, 148, 136, 0.3);
  transform: translateY(-1px);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
}

nav ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-fast);
  padding: 8px 0;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-teal);
  transition: var(--transition-fast);
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--text-primary);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

/* ==========================================================================
   HERO & VALUE PROP
   ========================================================================== */
.hero-section {
  padding: 96px 0 72px 0;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 920px;
}

.announcement-bar {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--glass-border);
  padding: 6px 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  box-shadow: var(--shadow-organic);
}

.announcement-tag {
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-violet) 100%);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}

.hero-section h1 {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.5px;
  max-width: 980px;
}

.hero-section p.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 760px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

/* Metrics Banner Row */
.metrics-row {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.metric-stat-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-light-3);
  border: 1px solid var(--glass-border);
  padding: 12px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-organic);
  transition: var(--transition-fast);
}

.metric-stat-pill:hover {
  border-color: rgba(13, 148, 136, 0.2);
  transform: translateY(-2px);
}

.metric-pill-icon {
  color: var(--accent-teal);
  min-width: 34px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.metric-pill-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-heading);
}

.metric-pill-text span {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Soft Mockup Frame */
.hero-visual-area {
  position: relative;
}

.dashboard-mockup-frame {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  border-radius: 20px;
  border: 1px solid rgba(120, 110, 90, 0.1);
  box-shadow: var(--shadow-premium);
  background: var(--bg-light-3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Mock Workspace UI */
.mock-titlebar {
  height: 48px;
  background: #fcfbfa;
  border-bottom: 1px solid rgba(120, 110, 90, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.mock-window-dots {
  display: flex;
  gap: 6px;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
}

.mock-dot-red {
  background: #f87171;
}

.mock-dot-yellow {
  background: #fbbf24;
}

.mock-dot-green {
  background: #34d399;
}

.mock-tab-capsule {
  display: flex;
  gap: 4px;
  background: #f4f1ea;
  padding: 4px;
  border-radius: 8px;
}

.mock-mini-tab {
  padding: 4px 10px 6px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}

.mock-mini-tab.active {
  background: var(--bg-light-3);
  color: var(--text-primary);
  box-shadow: var(--shadow-organic);
}

.mock-tab-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-violet));
  box-shadow: 0 0 4px var(--accent-teal);
  pointer-events: none;
}

.mock-mini-tab.active .mock-tab-progress {
  animation: mockTabProgress 4.5s linear forwards;
}

@keyframes mockTabProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.dashboard-mockup-frame.rotation-stopped .mock-tab-progress {
  display: none !important;
}

.mock-content-body {
  flex-grow: 1;
  padding: 20px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  background: radial-gradient(circle at 70% 30%, rgba(13, 148, 136, 0.04) 0%, transparent 70%);
}

.mock-sidebar {
  border-right: 1px solid rgba(120, 110, 90, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 12px;
}

.mock-nav-item {
  height: 32px;
  border-radius: 8px;
  background: #f8f6f0;
  display: flex;
  align-items: center;
  padding: 0 10px;
  transition: background-color var(--transition-fast), border var(--transition-fast);
}

.mock-nav-item.active {
  background: rgba(13, 148, 136, 0.06);
  border: 1px solid rgba(13, 148, 136, 0.12);
}

.mock-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.06);
}

.mock-line-w40 {
  width: 40px;
}

.mock-line-w70 {
  width: 70%;
}

.mock-line-w100 {
  width: 100%;
}

.mock-main-view-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  flex-grow: 1;
}

.mock-main-view {
  grid-area: 1 / 1 / 2 / 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.98) translateY(6px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mock-main-view.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
  z-index: 2;
}

.mock-hero-banner {
  height: 80px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.08) 0%, rgba(109, 40, 217, 0.08) 100%);
  border: 1px solid rgba(120, 110, 90, 0.05);
  display: flex;
  align-items: center;
  padding: 0 16px;
}

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

.mock-card {
  height: 80px;
  background: #fcfbfa;
  border: 1px solid rgba(120, 110, 90, 0.05);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

/* Styleguide specific elements */
.mock-color-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.circle-teal {
  background: var(--accent-teal);
  box-shadow: 0 2px 6px rgba(13, 148, 136, 0.25);
}

.circle-violet {
  background: var(--accent-violet);
  box-shadow: 0 2px 6px rgba(109, 40, 217, 0.25);
}

.circle-dark {
  background: var(--text-primary);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.25);
}

.mock-text-preview {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  font-family: var(--font-heading);
}

.font-specimen-card {
  justify-content: space-between;
}

/* Media View Layout */
.mock-media-bar {
  display: flex;
  gap: 8px;
  align-items: center;
}

.mock-search-bar {
  flex-grow: 1;
  height: 24px;
  background: #f8f6f0;
  border-radius: 6px;
  border: 1px solid rgba(120, 110, 90, 0.05);
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.mock-filter-tag {
  width: 28px;
  height: 16px;
  border-radius: 8px;
  background: #f8f6f0;
  border: 1px solid rgba(120, 110, 90, 0.05);
}

.mock-filter-tag.active {
  background: rgba(13, 148, 136, 0.08);
  border-color: rgba(13, 148, 136, 0.15);
}

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

.mock-media-card {
  background: #fcfbfa;
  border: 1px solid rgba(120, 110, 90, 0.05);
  border-radius: 10px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 80px;
}

.mock-media-thumb {
  height: 44px;
  border-radius: 6px;
  border: 1px solid rgba(120, 110, 90, 0.03);
}

.thumb-gradient-1 {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(13, 148, 136, 0.3) 100%);
}

.thumb-gradient-2 {
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.1) 0%, rgba(109, 40, 217, 0.3) 100%);
}

.thumb-gradient-3 {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0.3) 100%);
}

.thumb-gradient-4 {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.3) 100%);
}

.thumb-gradient-5 {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(236, 72, 153, 0.3) 100%);
}

.thumb-gradient-6 {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.3) 100%);
}

/* Studio View Layout */
.mock-studio-split {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
  height: 180px;
}

.mock-studio-canvas {
  background: #fcfbfa;
  border: 1px solid rgba(120, 110, 90, 0.05);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.mock-canvas-inner {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-violet) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.15);
}

.mock-canvas-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  animation: rotate-glow 12s linear infinite;
  pointer-events: none;
}

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

.mock-canvas-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow-organic);
}

.mock-studio-controls {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  height: 100%;
}

.mock-control-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-control-track {
  height: 4px;
  background: #f8f6f0;
  border-radius: 2px;
  position: relative;
  border: 1px solid rgba(120, 110, 90, 0.02);
}

.mock-control-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-teal);
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  box-shadow: 0 1px 4px rgba(13, 148, 136, 0.3);
}

.mock-control-btn {
  height: 28px;
  background: var(--accent-teal);
  border-radius: 6px;
  width: 100%;
  box-shadow: 0 3px 8px rgba(13, 148, 136, 0.2);
  position: relative;
}

.mock-control-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   HOMEPAGE MOCKUP MICRO-ANIMATIONS (declarative inside active tabs)
   ========================================================================== */

/* --- Tab 1: Styleguide Swatch Copying --- */
.mock-view-styleguide.active .mock-card:nth-child(1) {
  animation: mockCardHighlight 4.5s ease-in-out infinite;
}

@keyframes mockCardHighlight {
  0%, 26% {
    border-color: rgba(120, 110, 90, 0.05);
    transform: translateY(0) scale(1);
    box-shadow: none;
  }
  32%, 72% {
    border-color: var(--accent-teal);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.08);
  }
  80%, 100% {
    border-color: rgba(120, 110, 90, 0.05);
    transform: translateY(0) scale(1);
    box-shadow: none;
  }
}

.mock-view-styleguide .mock-card:nth-child(1)::after {
  content: 'HEX Gekopieerd!';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: var(--accent-teal);
  color: #ffffff;
  font-size: 8px;
  font-weight: 700;
  padding: 4px 6px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
  z-index: 10;
  white-space: nowrap;
}

.mock-view-styleguide.active .mock-card:nth-child(1)::after {
  animation: mockCopiedToast 4.5s ease-in-out infinite;
}

@keyframes mockCopiedToast {
  0%, 38% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  44%, 66% {
    opacity: 1;
    transform: translate(-50%, -40%) scale(1);
  }
  72%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
}

/* --- Tab 2: Media DAM Download Action --- */
.mock-view-media.active .mock-media-card:nth-child(2) {
  animation: mockMediaHighlight 4.5s ease-in-out infinite;
}

@keyframes mockMediaHighlight {
  0%, 18% {
    border-color: rgba(120, 110, 90, 0.05);
    transform: translateY(0) scale(1);
  }
  24%, 78% {
    border-color: var(--accent-violet);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 4px 12px rgba(109, 40, 217, 0.08);
  }
  84%, 100% {
    border-color: rgba(120, 110, 90, 0.05);
    transform: translateY(0) scale(1);
  }
}

/* Download overlay container on Card 2 */
.mock-download-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.65);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}

.mock-view-media.active .mock-media-card:nth-child(2) .mock-download-overlay {
  animation: mockDownloadOverlayShow 4.5s ease-in-out infinite;
}

@keyframes mockDownloadOverlayShow {
  0%, 24% {
    opacity: 0;
  }
  30%, 72% {
    opacity: 1;
  }
  78%, 100% {
    opacity: 0;
  }
}

/* Arrow Icon moving down */
.mock-download-icon {
  position: absolute;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.mock-view-media.active .mock-media-card:nth-child(2) .mock-download-icon {
  animation: mockDownloadIconAction 4.5s ease-in-out infinite;
}

@keyframes mockDownloadIconAction {
  0%, 30% {
    transform: translateY(-4px);
    opacity: 0;
  }
  34%, 44% {
    transform: translateY(0);
    opacity: 1;
  }
  48% {
    transform: translateY(4px);
    opacity: 0;
  }
  50%, 100% {
    opacity: 0;
  }
}

/* Progress Spinner rotating */
.mock-download-progress {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: #ffffff;
  border-radius: 50%;
  opacity: 0;
}

.mock-view-media.active .mock-media-card:nth-child(2) .mock-download-progress {
  animation: mockDownloadProgressAction 4.5s ease-in-out infinite;
}

@keyframes mockDownloadProgressAction {
  0%, 46% {
    opacity: 0;
    transform: rotate(0deg);
  }
  48%, 58% {
    opacity: 1;
    transform: rotate(360deg);
  }
  62%, 100% {
    opacity: 0;
  }
}

/* Checkmark appearing */
.mock-download-check {
  font-size: 10px;
  font-weight: 800;
  color: #ffffff;
  position: absolute;
  opacity: 0;
  transform: scale(0.6);
}

.mock-view-media.active .mock-media-card:nth-child(2) .mock-download-check {
  animation: mockDownloadCheckAction 4.5s ease-in-out infinite;
}

@keyframes mockDownloadCheckAction {
  0%, 58% {
    opacity: 0;
    transform: scale(0.6);
  }
  62%, 72% {
    opacity: 1;
    transform: scale(1);
  }
  76%, 100% {
    opacity: 0;
    transform: scale(0.7);
  }
}

/* --- Tab 3: Studio Sliders & Publishing Overlay --- */

/* Slider 1 thumb slides right */
.mock-view-studio.active .mock-control-item:nth-child(1) .mock-control-thumb {
  animation: mockStudioSlider1 4.5s ease-in-out infinite;
}

@keyframes mockStudioSlider1 {
  0%, 12% {
    left: 35%;
  }
  38%, 70% {
    left: 75%;
  }
  86%, 100% {
    left: 35%;
  }
}

/* Slider 2 thumb slides left */
.mock-view-studio.active .mock-control-item:nth-child(2) .mock-control-thumb {
  animation: mockStudioSlider2 4.5s ease-in-out infinite;
}

@keyframes mockStudioSlider2 {
  0%, 16% {
    left: 60%;
  }
  42%, 74% {
    left: 20%;
  }
  90%, 100% {
    left: 60%;
  }
}

/* Canvas Text scales/reacts to Slider 1 */
.mock-view-studio.active .mock-canvas-text {
  animation: mockCanvasTextReact 4.5s ease-in-out infinite;
}

@keyframes mockCanvasTextReact {
  0%, 12% {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.18);
  }
  38%, 70% {
    transform: scale(1.16);
    background: rgba(255, 255, 255, 0.28);
  }
  86%, 100% {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.18);
  }
}

/* Save button gets clicked (press down) */
.mock-view-studio.active .mock-control-btn {
  animation: mockStudioBtnClick 4.5s ease-in-out infinite;
}

@keyframes mockStudioBtnClick {
  0%, 70% {
    transform: scale(1);
    background: var(--accent-teal);
    box-shadow: 0 3px 8px rgba(13, 148, 136, 0.2);
  }
  74% {
    transform: scale(0.96);
    background: #0b7c72;
    box-shadow: 0 1px 4px rgba(13, 148, 136, 0.2);
  }
  78%, 100% {
    transform: scale(1);
    background: var(--accent-teal);
    box-shadow: 0 3px 8px rgba(13, 148, 136, 0.2);
  }
}

/* Success notification slides up after button click */
.mock-canvas-inner::after {
  content: 'Gepubliceerd! \2713';
  position: absolute;
  bottom: -32px;
  left: 0;
  width: 100%;
  height: 26px;
  background: rgba(13, 148, 136, 0.96);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: transform 0.4s ease;
  z-index: 5;
}

.mock-view-studio.active .mock-canvas-inner::after {
  animation: mockStudioSuccessNotification 4.5s ease-in-out infinite;
}

@keyframes mockStudioSuccessNotification {
  0%, 74% {
    transform: translateY(0);
  }
  80%, 94% {
    transform: translateY(-32px);
  }
  98%, 100% {
    transform: translateY(0);
  }
}

/* Ambient glow under visual */
.visual-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
  filter: blur(40px);
}

/* ==========================================================================
   4 PILLARS WORKSPACE INTERACTIVE GRID
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px auto;
}

.section-header span.category {
  color: var(--accent-teal);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: block;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
}

/* 4 Pillars Interactive Layout */
.pillars-interactive-wrapper {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
}

.pillars-tabs-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pillar-tab-btn {
  background: var(--bg-light-3);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  box-shadow: var(--shadow-organic);
}

.pillar-tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: transparent;
  border-radius: 4px 0 0 4px;
  transition: var(--transition-fast);
}

.pillar-tab-btn h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pillar-tab-btn h3 svg {
  width: 18px;
  height: 18px;
  opacity: 0.5;
  transition: var(--transition-fast);
}

.pillar-tab-btn p {
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition-fast);
  line-height: 1.45;
}

/* Active tab button styles */
.pillar-tab-btn.active {
  background: var(--bg-light-3);
  border-color: rgba(13, 148, 136, 0.2);
  box-shadow: var(--shadow-premium);
}

.pillar-tab-btn.active::before {
  background: linear-gradient(to bottom, var(--accent-teal), var(--accent-violet));
}

.pillar-tab-btn.active h3 {
  color: var(--text-primary);
}

.pillar-tab-btn.active h3 svg {
  opacity: 1;
  color: var(--accent-teal);
}

.pillar-tab-btn.active p {
  color: var(--text-secondary);
}

.pillar-tab-btn:hover:not(.active) {
  background: var(--bg-light-2);
  transform: translateX(4px);
}

/* Pillar Content Screens */
.pillar-content-panel {
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.panel-window-header {
  height: 52px;
  border-bottom: 1px solid var(--glass-border);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fcfbfa;
}

.panel-window-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.panel-window-title svg {
  width: 16px;
  height: 16px;
  color: var(--accent-teal);
}

.panel-window-body {
  padding: 28px;
  flex-grow: 1;
  background: var(--bg-light-3);
}

.pillar-screen-view {
  display: none;
  animation: fadeIn 0.4s ease-out forwards;
}

.pillar-screen-view.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pillar 1: Styleguide Elements */
.color-swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
}

.swatch-card {
  background: var(--bg-light-1);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-organic);
}

.swatch-color-block {
  width: 100%;
  height: 70px;
  border-radius: 8px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.swatch-info {
  text-align: center;
}

.swatch-name {
  font-size: 12px;
  font-weight: 700;
  display: block;
  color: var(--text-primary);
}

.swatch-hex {
  font-size: 11px;
  color: var(--text-muted);
}

.swatch-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-teal);
  background: var(--bg-light-3);
  box-shadow: 0 10px 20px rgba(13, 148, 136, 0.05);
}

.swatch-card:active {
  transform: scale(0.96);
}

/* Typography Slider Component */
.typo-playground-box {
  background: var(--bg-light-1);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 20px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-organic);
}

.typo-specimen-text {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  min-height: 80px;
  display: flex;
  align-items: center;
  line-height: 1.25;
}

.slider-control-row {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(120, 110, 90, 0.05);
  padding-top: 16px;
}

.slider-control-row label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  min-width: 100px;
}

.styleguide-rule-preview {
  background: var(--bg-light-1);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 18px;
}

.styleguide-rule-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.styleguide-rule-header span {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.styleguide-rule-header strong {
  color: var(--text-primary);
  font-size: 13px;
}

.styleguide-rule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.styleguide-rule-card {
  background: var(--bg-light-3);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 12px;
}

.styleguide-rule-card.wide {
  grid-column: 1 / -1;
}

.styleguide-rule-card p {
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.45;
  margin-top: 8px;
}

.rule-status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  text-transform: uppercase;
}

.rule-do {
  background: rgba(13, 148, 136, 0.08);
  color: var(--accent-teal);
}

.rule-dont {
  background: rgba(249, 115, 22, 0.08);
  color: var(--accent-coral);
}

.rule-note {
  background: rgba(109, 40, 217, 0.08);
  color: var(--accent-violet);
}

/* Clipboard Toast */
.copy-toast {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--accent-teal);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.25);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 90;
}

.copy-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Pillar 2: High-Performance DAM Explorer */
.dam-explorer-mock {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  height: 100%;
  min-width: 0;
}

.dam-sidebar-folders {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid rgba(120, 110, 90, 0.05);
  padding-right: 16px;
  min-width: 0;
}

.folder-item {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.folder-item.active,
.folder-item:hover {
  background: var(--bg-light-1);
  color: var(--text-primary);
}

.folder-item svg {
  width: 15px;
  height: 15px;
  color: var(--accent-teal);
}

.dam-main-workspace {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  position: relative;
}

.dam-search-bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.dam-search-input {
  flex-grow: 1;
  min-width: 0;
  background: var(--bg-light-1);
  border: 1px solid var(--glass-border);
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition-fast);
}

.dam-search-input:focus {
  border-color: var(--accent-teal);
  box-shadow: 0 0 10px rgba(13, 148, 136, 0.08);
}

.dam-assets-view-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  min-width: 0;
  overflow-x: hidden;
}

.dam-asset-card {
  height: 100px;
  min-width: 0;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: var(--bg-light-3);
  box-shadow: var(--shadow-organic);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dam-asset-card:hover {
  transform: scale(1.03);
  border-color: var(--accent-teal);
}

.dam-asset-thumb {
  width: 100%;
  height: 64%;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.04) 0%, rgba(109, 40, 217, 0.04) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(120, 110, 90, 0.03);
}

.dam-asset-thumb svg {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
}

.dam-asset-card:hover .dam-asset-thumb svg {
  color: var(--accent-teal);
  transform: scale(1.1);
  transition: var(--transition-fast);
}

.dam-asset-name-bar {
  height: 36%;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  min-width: 0;
}

.dam-asset-name-bar span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.dam-asset-tag-badge {
  font-size: 9px;
  background: rgba(13, 148, 136, 0.06);
  color: var(--accent-teal);
  border-radius: 4px;
  padding: 1px 4px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Upload simulator button */
.upload-btn-simulator {
  flex: 0 0 auto;
  background: var(--bg-light-3);
  border: 1px dashed rgba(13, 148, 136, 0.3);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-teal);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
}

.upload-btn-simulator:hover {
  background: rgba(13, 148, 136, 0.03);
  border-color: var(--accent-teal);
}

.simulated-upload-progress-bar {
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, var(--accent-teal), var(--accent-violet));
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.1s ease;
}

.dam-upload-status {
  position: absolute;
  right: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  background: rgba(13, 148, 136, 0.94);
  color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.22);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  padding: 7px 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  z-index: 8;
}

.dam-upload-status.show {
  opacity: 1;
  transform: translateY(0);
}

/* Pillar 3: Visual Studio & LinkedIn Feed Preview */
.feed-simulator-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
}

.simulator-editor-inputs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.sim-input-group label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}

.sim-textarea {
  height: 120px;
  background: var(--bg-light-1);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 10px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 12px;
  outline: none;
  resize: none;
  transition: var(--transition-fast);
}

.sim-textarea:focus {
  border-color: var(--accent-teal);
}

.sim-select-template {
  background: var(--bg-light-1);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 8px;
  color: var(--text-primary);
  font-size: 12px;
  outline: none;
}

/* Mock LinkedIn Card (Light Theme) */
.linkedin-mock-preview {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1e1e1e;
  box-shadow: var(--shadow-organic);
  max-width: 440px;
  margin: 0 auto;
}

.linkedin-header {
  display: flex;
  gap: 10px;
}

.linkedin-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-violet) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
}

.linkedin-user-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.linkedin-user-name {
  font-size: 13px;
  font-weight: 700;
}

.linkedin-user-headline {
  font-size: 10px;
  color: #666;
}

.linkedin-post-time {
  font-size: 9px;
  color: #888;
  margin-top: 2px;
}

.linkedin-post-body-text {
  font-size: 12px;
  line-height: 1.45;
  white-space: pre-wrap;
  min-height: 48px;
  color: #333;
}

.linkedin-media-box {
  width: 100%;
  aspect-ratio: 1.91 / 1;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  position: relative;
}

.linkedin-media-visual {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.08) 0%, rgba(109, 40, 217, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 16px;
  box-sizing: border-box;
}

.linkedin-media-visual h4.template-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  margin: 0;
  line-height: 1.25;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.linkedin-media-visual p.template-desc {
  font-size: 9px;
  color: #ffffff;
  opacity: 0.9;
  margin-top: 6px;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.linkedin-media-visual span.template-branding {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.9;
}

/* Pillar 4: AI Brand Guardrails & TOV Sandbox */
.tov-sandbox-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tov-editor-card {
  background: var(--bg-light-1);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow-organic);
}

.tov-editable-container {
  min-height: 120px;
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.65;
  outline: none;
  font-family: var(--font-body);
}

/* Warm Empathetic Alert Highlighting */
.tov-editable-container span.highlight-alert {
  background: rgba(249, 115, 22, 0.08);
  border-bottom: 2px dashed var(--accent-coral);
  padding: 1px 0;
  cursor: help;
  position: relative;
}

.tov-editable-container span.highlight-alert:hover {
  background: rgba(249, 115, 22, 0.15);
}

.tov-action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(120, 110, 90, 0.05);
  padding-top: 16px;
  margin-top: 10px;
}

.tov-metrics-info {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-secondary);
}

.tov-pill {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tov-pill span.dot-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.tov-pill-alert span.dot-indicator {
  background-color: var(--accent-coral);
}

.tov-pill-good span.dot-indicator {
  background-color: #10b981;
}

/* TOV Custom Replacements Tooltip Floating Cards */
.tov-tooltip-card {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  z-index: 50;
  width: 290px;
  background: var(--bg-light-3);
  border: 1px solid rgba(109, 40, 217, 0.15);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 15px 30px rgba(83, 76, 61, 0.05), 0 0 15px rgba(109, 40, 217, 0.03);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 12.5px;
  text-align: left;
  line-height: 1.45;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlight-alert:hover .tov-tooltip-card {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(6px);
  pointer-events: auto;
}

.tov-tooltip-card-header {
  font-weight: 700;
  color: var(--accent-teal);
  margin-bottom: 6px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.5px;
}

.tov-tooltip-suggestion-box {
  background: var(--bg-light-1);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 6px 10px;
  margin: 8px 0;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--accent-teal);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tov-tooltip-suggestion-box:hover {
  background: rgba(13, 148, 136, 0.05);
  border-color: var(--accent-teal);
}

.tov-tooltip-explanation {
  color: var(--text-secondary);
}

.tov-impact-level {
  font-size: 9px;
  font-weight: 800;
  background: rgba(249, 115, 22, 0.06);
  color: var(--accent-coral);
  border-radius: 4px;
  padding: 2px 6px;
  display: inline-block;
  margin-top: 6px;
}

/* ==========================================================================
   ROI CALCULATOR SECTION
   ========================================================================== */
.roi-section {
  padding: 80px 0;
  position: relative;
}

.roi-container-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: stretch;
}

.roi-calc-interface {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.roi-calc-title h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.roi-calc-title p {
  font-size: 14px;
  color: var(--text-secondary);
}

.slider-group-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.slider-header-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.slider-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
}

.slider-value-counter {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-teal);
}

/* Range Input Customization */
.premium-range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #e5e7eb;
  outline: none;
  margin: 10px 0;
  transition: var(--transition-fast);
}

.premium-range-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
}

.premium-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-violet) 100%);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(13, 148, 136, 0.25);
  border: 2px solid #ffffff;
  margin-top: -8px;
  transition: var(--transition-fast);
}

.premium-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

/* Comparison Subscriptions Card Lists */
.comparisons-cards-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comp-tool-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-light-1);
  border: 1px solid var(--glass-border);
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 13px;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-organic);
}

.comp-tool-name {
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.comp-tool-name span.tool-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.03);
  color: var(--text-muted);
}

.comp-tool-price {
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-secondary);
}

/* Massive Savings Display Card */
.savings-output-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(13, 148, 136, 0.06) 0%, rgba(109, 40, 217, 0.02) 50%, transparent 100%), var(--glass-bg);
  border: 1px solid rgba(13, 148, 136, 0.15);
  position: relative;
  box-shadow: var(--shadow-premium);
}

.savings-badge {
  background: rgba(13, 148, 136, 0.05);
  border: 1px solid rgba(13, 148, 136, 0.2);
  color: var(--accent-teal);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.savings-huge-figure {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}

.savings-label-text {
  font-size: 13.5px;
  color: var(--text-secondary);
  max-width: 280px;
  line-height: 1.45;
  margin-bottom: 32px;
}

.savings-calculator-cta {
  width: 100%;
}

/* ==========================================================================
   PRICING MATRIX SECTION
   ========================================================================== */
.pricing-section {
  padding: 80px 0;
  position: relative;
}

.pricing-section .container {
  max-width: 1400px;
}

.pricing-tier-grid {
  margin-top: 24px;
}

.price-card {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Highlight Featured Card */
.price-card.featured {
  background: radial-gradient(circle at 100% 0%, rgba(109, 40, 217, 0.05) 0%, rgba(13, 148, 136, 0.01) 60%, rgba(255, 255, 255, 0.8) 100%), var(--glass-bg);
  border-color: rgba(109, 40, 217, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(109, 40, 217, 0.03), var(--shadow-premium);
}

.price-card.featured:hover {
  transform: translateY(-12px);
}

.price-card:hover:not(.featured) {
  transform: translateY(-4px);
  border-color: rgba(120, 110, 90, 0.15);
}

.pricing-badge-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 28px;
  margin-bottom: 16px;
}

.pricing-card-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.03);
  color: var(--text-muted);
}

.price-card.featured .pricing-card-badge {
  background: rgba(109, 40, 217, 0.08);
  color: var(--accent-violet);
  border: 1px solid rgba(109, 40, 217, 0.15);
}

.price-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.price-card p.tier-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.45;
  height: 36px;
}

.price-tag-row {
  display: flex;
  align-items: baseline;
  margin-bottom: 28px;
}

.currency-sym {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-right: 2px;
}

.actual-price {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
}

.price-period {
  font-size: 13px;
  color: var(--text-muted);
  margin-left: 8px;
}

.price-card-divider {
  height: 1px;
  background: rgba(120, 110, 90, 0.06);
  margin-bottom: 28px;
  width: 100%;
}

.price-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  flex-grow: 1;
}

.price-features-list li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features-list li svg {
  width: 16px;
  height: 16px;
  color: var(--accent-teal);
  flex-shrink: 0;
}

.price-card.featured .price-features-list li svg {
  color: var(--accent-violet);
}

.pricing-card-cta {
  width: 100%;
}

/* Pricing FAQ (accordion via <details>) */
.pricing-faq-item {
  border-bottom: 1px solid rgba(120, 110, 90, 0.12);
}

.pricing-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.pricing-faq-item summary::-webkit-details-marker {
  display: none;
}

.pricing-faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: var(--accent-teal);
  transition: transform 0.2s ease;
}

.pricing-faq-item[open] summary::after {
  content: "\2212"; /* minus */
}

.pricing-faq-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  padding: 0 4px 20px;
  margin: 0;
  max-width: 95%;
}

/* ==========================================================================
   ABOUT / VISION STYLES
   ========================================================================== */
.vision-banner {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.05) 0%, rgba(109, 40, 217, 0.05) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-organic);
}

.vision-header-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
}

.vision-banner p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.empower-quote-card {
  border-left: 4px solid var(--accent-teal);
  padding: 16px 24px;
  background: var(--bg-light-3);
  border-radius: 0 16px 16px 0;
  box-shadow: var(--shadow-organic);
  margin-top: 24px;
}

.empower-quote-card p {
  font-style: italic;
  font-size: 14px;
  color: var(--text-primary);
}

.empower-quote-author {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   DEMO MODAL & FORM FIELDS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1e293b;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.08s ease, visibility 0s linear 0.08s;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.08s ease, visibility 0s;
}

.modal-window {
  width: 100%;
  max-width: 520px;
  margin: 16px;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease;
  will-change: opacity, transform;
}

.modal-overlay.open .modal-window {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal-box-layout {
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 5;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-light-1);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--bg-light-2);
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 24px;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-header p {
  font-size: 13.5px;
  color: var(--text-secondary);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-field-group label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}

.form-input {
  background: var(--bg-light-1);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--accent-teal);
  box-shadow: 0 0 10px rgba(13, 148, 136, 0.08);
}

.form-select {
  background: var(--bg-light-3);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-organic);
}

.form-select:focus {
  border-color: var(--accent-teal);
}

.form-submit-btn {
  margin-top: 8px;
  width: 100%;
}

/* Success Modal Container */
.modal-success-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  animation: fadeIn 0.4s ease-out;
}

.success-check-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.06);
  border: 2px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
  margin-bottom: 24px;
}

.success-check-badge svg {
  width: 36px;
  height: 36px;
}

.modal-success-screen h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.modal-success-screen p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 320px;
}

/* Confetti particles container */
.confetti-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 99;
}

.confetti-particle {
  position: absolute;
  width: 6px;
  height: 10px;
  opacity: 0.8;
  border-radius: 2px;
  animation: confettiFall 2.5s linear infinite;
}

@keyframes confettiFall {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translateY(500px) rotate(720deg);
    opacity: 0;
  }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
footer {
  background: var(--bg-light-2);
  border-top: 1px solid rgba(120, 110, 90, 0.05);
  padding: 48px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-row .logo-icon {
  width: 32px;
  height: 32px;
}

.footer-logo-row .logo-icon svg {
  width: 26px;
  height: 26px;
}

.footer-logo-row span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
}

.footer-links-row {
  display: flex;
  list-style: none;
  gap: 24px;
}

.footer-links-row a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition-fast);
}

.footer-links-row a:hover {
  color: var(--text-primary);
}

.footer-copyright {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
}

.footer-copyright a {
  color: var(--accent-teal);
  text-decoration: none;
  font-weight: 600;
}

.footer-copyright a:hover {
  text-decoration: underline;
}

.simulated-upload-progress-bar {
  transition: width 0.15s ease;
}

.confetti-layer.success-visible::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(13, 148, 136, 0.08), transparent 45%);
  pointer-events: none;
}

/* ==========================================================================
   AURA CORE KERNCONTENT UPGRADES
   ========================================================================== */

/* 1. USPs Grid Section */
.usps-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-light-1) 0%, rgba(244, 241, 234, 0.5) 100%);
  border-top: 1px solid rgba(120, 110, 90, 0.04);
  border-bottom: 1px solid rgba(120, 110, 90, 0.04);
}

.usps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 32px;
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  background: var(--bg-light-3);
  overflow: hidden;
  box-shadow: var(--shadow-organic);
}

.usp-card {
  background: transparent;
  border: none;
  border-right: 1px solid var(--glass-border);
  border-radius: 0;
  padding: 36px 24px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background-color 0.15s ease;
}

.usp-card:last-child {
  border-right: none;
}

/* Hover top gradient lines */
.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  opacity: 0;
  transition: opacity 0.35s ease, background 0.35s ease;
}

.usp-card.color-teal::before { background: var(--accent-teal); }
.usp-card.color-violet::before { background: var(--accent-violet); }
.usp-card.color-coral::before { background: var(--accent-coral); }
.usp-card.color-blue::before { background: #0284c7; }
.usp-card.color-amber::before { background: #f59e0b; }

/* Desktop hover state shifts */
.usp-card:hover {
  background: rgba(250, 248, 245, 0.7);
}

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

.usp-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-organic);
}

.usp-icon.teal { background: rgba(13, 148, 136, 0.08); color: var(--accent-teal); }
.usp-icon.violet { background: rgba(109, 40, 217, 0.08); color: var(--accent-violet); }
.usp-icon.coral { background: rgba(249, 115, 22, 0.08); color: var(--accent-coral); }
.usp-icon.blue { background: rgba(2, 132, 199, 0.08); color: #0284c7; }
.usp-icon.amber { background: rgba(245, 158, 11, 0.08); color: #f59e0b; }

/* Interactive colors for text on card hover */
.usp-card.color-teal:hover h3 { color: var(--accent-teal); }
.usp-card.color-violet:hover h3 { color: var(--accent-violet); }
.usp-card.color-coral:hover h3 { color: var(--accent-coral); }
.usp-card.color-blue:hover h3 { color: #0284c7; }
.usp-card.color-amber:hover h3 { color: #f59e0b; }

.usp-card h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  transition: color 0.3s ease;
}

.usp-card p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Large numbers styling */
.usp-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 32px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: rgba(120, 110, 90, 0.06);
  user-select: none;
  transition: color 0.35s ease;
  line-height: 1;
}

.usp-card:hover .usp-number {
  color: rgba(120, 110, 90, 0.16);
}

/* 2. Color Palettes RGB / CMYK Selector Dropdown */
.swatch-card {
  position: relative;
  overflow: visible !important;
}

.swatch-format-menu {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--bg-light-3);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  padding: 4px;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  width: 140px;
}

.swatch-card:hover .swatch-format-menu {
  opacity: 1;
  pointer-events: auto;
}

.swatch-format-btn {
  background: transparent;
  border: none;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: left;
  cursor: pointer;
  border-radius: 6px;
  transition: var(--transition-fast);
}

.swatch-format-btn:hover {
  background: var(--bg-light-2);
  color: var(--text-primary);
}

/* 3. DAM Alt-Text Suggestion Simulation */
.dam-asset-card {
  position: relative;
  overflow: visible !important;
}

.asset-alt-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(13, 148, 136, 0.9);
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 20px;
  opacity: 0;
  transform: scale(0.9);
  transition: var(--transition-fast);
  pointer-events: none;
  z-index: 5;
  box-shadow: var(--shadow-organic);
}

.dam-asset-card:hover .asset-alt-badge {
  opacity: 1;
  transform: scale(1);
}

.asset-alt-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30, 41, 59, 0.95);
  color: white;
  font-size: 11px;
  padding: 8px 12px;
  border-radius: 8px;
  width: 200px;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  z-index: 100;
  box-shadow: var(--shadow-premium);
  text-align: center;
}

.asset-alt-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(30, 41, 59, 0.95);
}

.dam-asset-card:hover .asset-alt-tooltip {
  opacity: 1;
}

/* 4. Multi-Channel Social Selector */
.platform-selector-row {
  display: flex;
  gap: 6px;
  background: var(--bg-light-2);
  padding: 4px;
  border-radius: 30px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.platform-selector-btn {
  background: transparent;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.platform-selector-btn.active {
  background: var(--bg-light-3);
  color: var(--text-primary);
  box-shadow: var(--shadow-organic);
}

.feature-social-editor-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(280px, 1.15fr);
  gap: 18px;
  align-items: start;
}

.feature-social-editor-grid .platform-selector-row {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.feature-social-editor-controls {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-bottom: 0;
  border-right: 1px solid var(--glass-border);
  padding-right: 16px;
  padding-bottom: 0;
}

.feature-social-editor-grid .linkedin-mock-preview {
  height: 300px;
  margin-top: 0;
  overflow: hidden;
  width: 100%;
}

.feature-social-editor-grid .linkedin-media-box {
  flex: 0 0 auto;
}

.feature-social-editor-grid .linkedin-post-body-text {
  flex: 0 0 auto;
}

/* Facebook & Instagram Mockup CSS Overrides */
.linkedin-mock-preview.facebook-preview {
  border-radius: 12px;
  background: #ffffff;
}
.linkedin-mock-preview.facebook-preview .linkedin-avatar {
  background: #1877f2;
}
.linkedin-mock-preview.facebook-preview .linkedin-user-name {
  color: #1c1e21;
}
.linkedin-mock-preview.facebook-preview .linkedin-media-box {
  border-radius: 0;
}

.linkedin-mock-preview.instagram-preview {
  background: #ffffff;
  border-radius: 16px;
}
.linkedin-mock-preview.instagram-preview .linkedin-header {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 10px;
}
.linkedin-mock-preview.instagram-preview .linkedin-avatar {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.linkedin-mock-preview.instagram-preview .linkedin-media-box {
  order: -1;
  margin-top: 0;
  margin-bottom: 12px;
}
.linkedin-mock-preview.instagram-preview .linkedin-post-body-text {
  font-size: 12px;
  margin-bottom: 14px;
}

/* 5. Campagne Creator Simulator UI */
.campagne-simulator-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.campagne-theme-row {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 14px;
  flex-wrap: wrap;
}

.campagne-theme-btn {
  background: var(--bg-light-3);
  border: 1px solid var(--glass-border);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-secondary);
}

.campagne-theme-btn.active {
  background: var(--accent-teal);
  color: white;
  border-color: var(--accent-teal);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}

.campagne-copy-control {
  background: var(--bg-light-1);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
}

.campagne-copy-control label {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.campagne-copy-control input {
  background: var(--bg-light-3);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 12px;
  outline: none;
  padding: 9px 10px;
  transition: var(--transition-fast);
  width: 100%;
}

.campagne-copy-control input:focus {
  border-color: var(--accent-teal);
  box-shadow: 0 0 10px rgba(13, 148, 136, 0.08);
}

.campagne-formats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.campagne-format-card {
  background: var(--bg-light-3);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--shadow-organic);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.campagne-format-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.campagne-format-canvas {
  width: 100%;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.02);
  color: var(--text-primary);
  border: 1px solid rgba(0,0,0,0.03);
}

.canvas-story {
  aspect-ratio: 9 / 16;
  height: 200px;
  margin: 0 auto;
}

.canvas-post {
  aspect-ratio: 1 / 1;
}

.canvas-banner {
  aspect-ratio: 1.91 / 1;
}

.campagne-format-canvas .canvas-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.campagne-format-canvas .canvas-tag {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

/* 6. TOV Highlight & Impact badging */
.highlight-alert {
  border-bottom: 2px dashed var(--accent-violet);
  background-color: rgba(109, 40, 217, 0.04);
}

.highlight-alert.high-impact {
  border-bottom-color: var(--accent-coral);
  background-color: rgba(249, 115, 22, 0.05);
}

.highlight-alert.high-impact .tov-tooltip-card-header {
  color: var(--accent-coral);
}

.tov-impact-level {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-teal);
  letter-spacing: 0.5px;
  margin-top: auto;
  align-self: flex-start;
}

.highlight-alert.high-impact .tov-impact-level {
  color: var(--accent-coral);
}

/* 7. Homepage Features Grid Showcase */
.features-grid-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.feature-showcase-card {
  background: var(--bg-light-3);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-organic);
  transition: border-color 0.15s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.feature-showcase-card:hover {
  border-color: rgba(13, 148, 136, 0.2);
}

.feature-showcase-card .feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-organic);
  margin-bottom: 4px;
}

.feature-showcase-card .feature-icon.teal { background: rgba(13, 148, 136, 0.08); color: var(--accent-teal); }
.feature-showcase-card .feature-icon.violet { background: rgba(109, 40, 217, 0.08); color: var(--accent-violet); }
.feature-showcase-card .feature-icon.coral { background: rgba(249, 115, 22, 0.08); color: var(--accent-coral); }
.feature-showcase-card .feature-icon.blue { background: rgba(2, 132, 199, 0.08); color: #0284c7; }
.feature-showcase-card .feature-icon.amber { background: rgba(245, 158, 11, 0.08); color: #f59e0b; }

.feature-showcase-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.feature-showcase-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-points-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(120, 110, 90, 0.08);
  padding-top: 16px;
  margin-top: auto;
}

.feature-points-list li {
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-points-list li strong {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 13.5px;
}

.feature-points-list li span {
  color: var(--text-secondary);
  font-size: 12.5px;
}

/* ==========================================================================
   V2 ADDITIONS — navigatie, hero-visual, formulier, utilities
   ========================================================================== */

@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

/* Header rechts: CTA + hamburger */
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Klikbaar logo */
.logo-home-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

/* Hamburger (alleen mobiel zichtbaar) */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}

.nav-toggle:hover {
  background: var(--bg-light-2);
}

/* USP- en feature-iconen (SVG i.p.v. emoji) */
.usp-icon svg,
.feature-icon svg,
.value-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(13, 148, 136, 0.08);
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-organic);
}

/* Sectie-utilities (vervangen inline styles) */
.section-pad {
  padding: 60px 0;
}

.section-pad-lg {
  padding: 80px 0;
}

.section-tinted {
  background: rgba(250, 248, 245, 0.6);
  border-top: 1px solid rgba(120, 110, 90, 0.05);
  border-bottom: 1px solid rgba(120, 110, 90, 0.05);
}

.section-divider {
  border-bottom: 1px solid rgba(120, 110, 90, 0.05);
}

/* Feature-/pijlerpagina */
.pillar-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-teal);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.pillar-label svg {
  width: 18px;
  height: 18px;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.pillar-lead {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

.pillar-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pillar-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pillar-checklist li svg {
  width: 16px;
  height: 16px;
  color: var(--accent-teal);
  flex-shrink: 0;
  margin-top: 3px;
}

.pillar-checklist li strong {
  color: var(--text-primary);
}

/* Afsluitende CTA-sectie */
.closing-cta-section {
  padding: 80px 0;
}

.closing-cta-card {
  position: relative;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  border: none;
  border-radius: 28px;
  padding: 64px 40px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(13, 148, 136, 0.15);
  overflow: hidden;
}

.closing-cta-card h2,
.closing-cta-card h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.closing-cta-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.closing-cta-card .btn,
.closing-cta-card .btn-primary {
  position: relative;
  z-index: 2;
  background: #ffffff;
  color: var(--accent-teal);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.closing-cta-card .btn:hover,
.closing-cta-card .btn-primary:hover {
  background: var(--bg-light-1);
  color: #0b7c72;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.closing-cta-card .cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Formulier: bericht-veld en privacy-noot */
.form-textarea {
  background: var(--bg-light-1);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: var(--transition-fast);
  resize: vertical;
  min-height: 72px;
}

.form-textarea:focus {
  border-color: var(--accent-teal);
  box-shadow: 0 0 10px rgba(13, 148, 136, 0.08);
}

.form-privacy-note {
  font-size: 11.5px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}

.form-privacy-note a {
  color: var(--accent-teal);
  text-decoration: none;
}

.form-privacy-note a:hover {
  text-decoration: underline;
}

/* ROI-disclaimer */
.roi-disclaimer {
  text-align: center;
  margin-top: 24px;
  font-size: 12.5px;
  color: var(--text-muted);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Privacy-pagina */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 80px 24px;
}

.legal-content h1 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 8px;
}

.legal-content .legal-updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  margin: 32px 0 10px 0;
}

.legal-content p,
.legal-content li {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-content ul {
  padding-left: 20px;
  margin: 8px 0;
}

/* Mobiele navigatie */
@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  header.nav-open nav {
    display: block;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-light-3);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(83, 76, 61, 0.08);
    padding: 8px 24px 16px 24px;
  }

  header.nav-open nav ul {
    flex-direction: column;
    gap: 0;
  }

  header.nav-open nav ul li a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
  }

  header .btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .toech-badge {
    display: none;
  }

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

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual-area {
    display: none;
  }

  .usps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    border: none;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }
  .usp-card {
    border: 1px solid var(--glass-border) !important;
    border-radius: 20px !important;
    background: var(--bg-light-3) !important;
    padding: 24px !important;
    box-shadow: var(--shadow-organic) !important;
  }
  .usp-card::before {
    display: none !important;
  }
  .usp-number {
    display: none !important;
  }
}

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


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

@media (min-width: 1024px) {
  .features-grid-showcase {
    grid-template-columns: repeat(6, 1fr);
  }
  .features-grid-showcase .feature-showcase-card {
    grid-column: span 2;
  }
  .features-grid-showcase .feature-showcase-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .features-grid-showcase .feature-showcase-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .hero-section {
    padding: 60px 0 60px 0;
  }

  .hero-text-content {
    align-items: flex-start;
    text-align: left;
  }

  .hero-section h1 {
    font-size: 40px;
  }

  .hero-section p.hero-subtitle {
    max-width: 760px;
  }

  .metrics-row {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-visual-area {
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
  }

  .pillars-interactive-wrapper {
    grid-template-columns: 1fr;
  }

  .pillars-tabs-menu {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .pillar-tab-btn {
    flex-shrink: 0;
    width: 220px;
  }

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

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .grid-4 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .logo-name {
    font-size: 20px;
  }

  .toech-badge {
    padding: 3px 8px;
    font-size: 10px;
  }

  nav {
    display: none;
    /* simple menu toggle in absolute minimal context or header scroll layout */
  }

  .hero-section h1 {
    font-size: 30px;
  }

  .metrics-row {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
  }

  .metric-stat-pill {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .pillars-tabs-menu {
    flex-wrap: nowrap;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .dam-explorer-mock {
    grid-template-columns: 1fr;
  }

  .dam-sidebar-folders {
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid rgba(120, 110, 90, 0.05);
    padding-bottom: 12px;
    padding-right: 0;
    overflow-x: auto;
  }

  .feed-simulator-layout {
    grid-template-columns: 1fr;
  }

  .feature-social-editor-grid {
    grid-template-columns: 1fr;
  }

  .feature-social-editor-controls {
    border-right: 0;
    border-bottom: 1px solid var(--glass-border);
    padding-right: 0;
    padding-bottom: 16px;
  }

  .styleguide-rule-grid {
    grid-template-columns: 1fr;
  }

  .form-group-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .modal-box-layout {
    padding: 24px;
  }
}

/* ==========================================================================
   EXPERTISES TABS & VIDEO WRAPPER
   ========================================================================== */
.expertises-container {
  background: var(--bg-light-3);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 48px;
  box-shadow: var(--shadow-organic);
}

.expertises-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.expertise-tabs-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 16px;
}

.expertise-tab {
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 10px 24px;
  cursor: pointer;
  border-radius: 40px;
  transition: all 0.25s ease;
}

.expertise-tab:hover {
  color: var(--accent-teal);
  background: rgba(13, 148, 136, 0.05);
}

.expertise-tab.active {
  color: #ffffff;
  background: var(--accent-teal);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}

.expertise-content-wrapper {
  position: relative;
  min-height: 200px;
}

.expertise-pane {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

.expertise-pane-text h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.expertise-pane-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 800px;
}

.expertise-bullet-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0;
}

.expertise-bullet-list li {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  background: var(--bg-light-1);
  border: 1px solid var(--glass-border);
  padding: 18px;
  border-radius: 16px;
  position: relative;
  transition: transform 0.25s ease;
}

.expertise-bullet-list li:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 148, 136, 0.15);
}

.expertise-bullet-list li strong {
  display: block;
  font-size: 14.5px;
  color: var(--text-primary);
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .expertise-tabs-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .expertise-bullet-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .expertises-container {
    padding: 24px;
  }
}

/* ==========================================================================
   HOMEPAGE WIDGET ILLUSTRATION SLICES
   ========================================================================== */

.widget-illustration-slice {
  width: 100%;
  height: 110px;
  background: var(--bg-light-1);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
  margin-bottom: 4px;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.widget-illustration-slice * {
  box-sizing: border-box;
}

.feature-showcase-card:hover .widget-illustration-slice {
  border-color: rgba(13, 148, 136, 0.18);
  background: var(--bg-light-3);
}

/* Styleguide slice styles */
.mini-styleguide-container {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  justify-content: center;
}

.mini-colors {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mini-color-circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(120, 110, 90, 0.08);
}
.mini-color-circle.teal { background: var(--accent-teal); }
.mini-color-circle.violet { background: var(--accent-violet); }
.mini-color-circle.orange { background: var(--accent-coral); }

.mini-typo-specimen {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light-3);
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--glass-border);
  flex-grow: 1;
  max-width: 140px;
}

.mini-typo-letter {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.mini-typo-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
}

.mini-typo-line {
  height: 3px;
  background: var(--bg-light-2);
  border-radius: 1.5px;
}
.mini-typo-line.w-100 { width: 100%; }
.mini-typo-line.w-60 { width: 60%; }

/* Media slice styles */
.mini-media-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.mini-search-row {
  background: var(--bg-light-3);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  height: 22px;
  display: flex;
  align-items: center;
  padding: 0 6px;
  gap: 4px;
}

.mini-search-icon {
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--text-muted);
  border-radius: 50%;
  position: relative;
}
.mini-search-icon::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 3px;
  height: 1.5px;
  background: var(--text-muted);
  transform: rotate(45deg);
}

.mini-search-placeholder {
  width: 50px;
  height: 3px;
  background: var(--bg-light-2);
  border-radius: 1.5px;
}

.mini-assets-row {
  display: flex;
  gap: 6px;
  justify-content: space-between;
}

.mini-asset-card {
  flex: 1;
  height: 40px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.03);
}

.mini-asset-badge {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-asset-badge::after {
  content: '✓';
  color: white;
  font-size: 7px;
  font-weight: 700;
  line-height: 1;
}

/* Template slice styles */
.mini-template-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  background: var(--bg-light-3);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 6px;
  box-shadow: 0 2px 4px rgba(120, 110, 90, 0.04);
}

.mini-post-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mini-avatar {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-teal);
}

.mini-user-lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-grow: 1;
}

.mini-user-line {
  height: 2px;
  background: var(--bg-light-2);
  border-radius: 1px;
}
.mini-user-line.w-80 { width: 40px; }
.mini-user-line.w-50 { width: 24px; }

.mini-post-banner {
  height: 38px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.05) 0%, rgba(109, 40, 217, 0.05) 100%);
  border: 1px dashed rgba(13, 148, 136, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 6px;
}

.mini-banner-text {
  font-size: 8px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.mini-banner-logo {
  font-size: 6px;
  font-weight: 700;
  color: var(--accent-teal);
  align-self: flex-end;
  line-height: 1;
}

/* Campaign slice styles */
.mini-campaign-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
}

.mini-device {
  background: var(--bg-light-3);
  border: 1px solid var(--glass-border);
  border-radius: 3px;
  padding: 2px;
  box-shadow: 0 2px 4px rgba(120, 110, 90, 0.04);
  display: flex;
}

.mini-device-content {
  width: 100%;
  height: 100%;
  border-radius: 1.5px;
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-violet) 100%);
}

.device-story {
  width: 24px;
  height: 42px;
}

.device-post {
  width: 30px;
  height: 30px;
}

.device-banner {
  width: 36px;
  height: 20px;
}

/* TOV slice styles */
.mini-tov-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  width: 100%;
}

.mini-tov-text {
  font-size: 9px;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg-light-3);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--glass-border);
}

.mini-tov-highlight {
  border-bottom: 1px dashed var(--accent-coral);
  background: rgba(249, 115, 22, 0.06);
  padding: 0 1px;
}

.mini-tov-suggestion {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mini-tov-arrow {
  width: 4px;
  height: 4px;
  border-right: 1px solid var(--text-muted);
  border-bottom: 1px solid var(--text-muted);
  transform: rotate(-45deg);
}

.mini-tov-pill {
  font-size: 8px;
  font-weight: 700;
  background: rgba(13, 148, 136, 0.08);
  color: var(--accent-teal);
  padding: 1px 4px;
  border-radius: 10px;
  border: 1px solid rgba(13, 148, 136, 0.12);
}
