/* Pruvio – Shared Styles */
/* Version 1.0 – Multi-Page Landing Site */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-deep: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --accent: #16a34a;
  --accent-hover: #15803d;
  --accent-glow: rgba(22, 163, 74, 0.08);
  --accent-soft: #166534;
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* ===== Navigation ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--accent) !important;
  color: #ffffff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: all 0.2s !important;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: var(--font-body);
  padding: 0;
}

.nav-dropdown-trigger:hover { color: var(--text-primary); }

.nav-dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.nav-dropdown.open .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 220px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.15s;
}

.nav-dropdown-menu a:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

.nav-dropdown-menu a .dd-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.nav-dropdown-menu a .dd-icon svg {
  width: 16px;
  height: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Panel */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-card);
  z-index: 105;
  padding: 5rem 2rem 2rem;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  overflow-y: auto;
}

.mobile-nav.open { right: 0; }

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--text-primary); }

.mobile-nav .mobile-nav-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
  border: none;
  padding: 0;
}

.mobile-nav .mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  width: 100%;
  border: none;
  text-align: center;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 104;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-overlay.open { opacity: 1; }

/* ===== Hero ===== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
}

.hero-sm {
  min-height: auto;
  padding: 10rem 2rem 4rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #166534;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease both;
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

h1 {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  max-width: 800px;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  animation: fadeInUp 0.8s ease 0.1s both;
}

h1 .highlight { color: var(--accent); }

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* ===== Product Hero (for product pages) ===== */
.product-hero {
  position: relative;
  z-index: 1;
  padding: 10rem 2rem 4rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.product-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0 auto 1.5rem;
}

.product-hero .hero-sub {
  margin: 0 auto 2.5rem;
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: #ffffff;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: #cbd5e1;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  background: #ffffff;
  color: #166534;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-white:hover {
  background: #f0fdf4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
}

/* ===== Trust Bar ===== */
.trust-bar {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ===== Sections ===== */
.section {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-narrow { max-width: 800px; }
.section-wide { max-width: 1200px; }

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--text-primary);
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

.section-desc.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title.center { text-align: center; }
.section-label.center { text-align: center; }

/* ===== Features Grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.feature-card a { text-decoration: none; color: inherit; }

.feature-icon {
  width: 44px;
  height: 44px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

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

.feature-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}

/* ===== Steps Grid ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.steps-grid-5 { grid-template-columns: repeat(5, 1fr); }

.step-card { text-align: center; position: relative; }

.step-number {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 1.25rem;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== Readiness CTA ===== */
.readiness-section {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

.readiness-box {
  background: linear-gradient(135deg, #166534 0%, #15803d 50%, #16a34a 100%);
  border-radius: 20px;
  padding: 3.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  color: #fff;
  box-shadow: 0 8px 32px rgba(22, 163, 74, 0.15);
}

.readiness-content { flex: 1; }

.readiness-box h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}

.readiness-box p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.readiness-visual {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 200px;
}

.readiness-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.readiness-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-green { background: #4ade80; }
.dot-yellow { background: #fbbf24; }
.dot-red { background: #f87171; }

/* ===== Audience Cards ===== */
.audiences {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.audience-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.audience-icon {
  width: 52px;
  height: 52px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--accent);
}

.audience-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.audience-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.12);
  position: relative;
}

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.pricing-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
  flex: 1;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2.5'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 2px;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
  width: 100%;
  justify-content: center;
}

/* ===== Comparison Table ===== */
.comparison-table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.comparison-table th {
  background: var(--bg-deep);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.comparison-table th.highlight-col {
  background: #f0fdf4;
  color: var(--accent-soft);
}

.comparison-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.comparison-table td.highlight-col {
  background: #fafff7;
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table .check { color: var(--accent); font-weight: 600; }
.comparison-table .cross { color: #ef4444; }
.comparison-table .dash { color: var(--text-muted); }

/* ===== CTA Section ===== */
.cta-section {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 2rem 8rem;
  text-align: center;
}

.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.cta-box h2 {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.cta-box p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 1.25rem;
}

/* ===== Footer ===== */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

footer a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 280px;
}

.footer-trust {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-trust span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-trust svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-col ul li a:hover { color: var(--text-primary); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6.5rem 2rem 0;
  position: relative;
  z-index: 1;
}

.breadcrumb ol {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

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

.breadcrumb li::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--border);
}

.breadcrumb li:last-child::after { content: none; }
.breadcrumb li:last-child { color: var(--text-secondary); font-weight: 500; }

/* ===== Modern Subpages ===== */
.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 720px;
  background:
    radial-gradient(circle at 10% 20%, rgba(22, 163, 74, 0.12), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(59, 130, 246, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.75) 68%, rgba(248,250,252,0) 100%);
  pointer-events: none;
  z-index: 0;
}

.page-shell > * {
  position: relative;
  z-index: 1;
}

.page-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8.75rem 2rem 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: start;
}

.page-hero-copy h1 {
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.page-hero-copy p {
  color: var(--text-secondary);
  font-size: 1.08rem;
  max-width: 760px;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 163, 74, 0.16);
  background: rgba(255,255,255,0.86);
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.page-hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.page-hero-panel {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(226,232,240,0.95);
  border-radius: 28px;
  padding: 1.4rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.page-hero-panel-grid {
  display: grid;
  gap: 0.9rem;
}

.page-panel-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1rem 1rem 0.95rem;
}

.page-panel-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--accent-soft);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-panel-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}

.page-panel-card p {
  color: var(--text-secondary);
  font-size: 0.93rem;
}

.page-kpi-row {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.page-kpi {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1.1rem;
}

.page-kpi strong {
  display: block;
  color: var(--text-primary);
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.page-kpi span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.page-grid-2 {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.spotlight-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.35rem;
  box-shadow: 0 12px 30px rgba(15,23,42,0.05);
}

.spotlight-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.spotlight-card p {
  color: var(--text-secondary);
  margin-bottom: 0.95rem;
}

.spotlight-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.spotlight-list li {
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.spotlight-list li::before {
  content: '';
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin-top: 0.2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2.5'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.highlight-band {
  max-width: 1180px;
  margin: 2rem auto 0;
  padding: 0 2rem;
}

.highlight-band-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #0f172a 0%, #111827 60%, #14532d 100%);
  color: #fff;
  box-shadow: 0 20px 45px rgba(15,23,42,0.18);
}

.highlight-band-inner h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.highlight-band-inner p {
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
}

.process-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-step {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.2rem;
}

.process-step-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(22,163,74,0.12);
  color: var(--accent-soft);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.process-step h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.process-step p {
  color: var(--text-secondary);
  font-size: 0.94rem;
}

.section-compact {
  padding: 3rem 0;
}

/* ===== FAQ Accordion ===== */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-muted);
}

.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 0 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

/* ===== Article Body (Blog) ===== */
.article-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.article-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  color: var(--text-primary);
}

.article-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  color: var(--text-primary);
}

.article-body p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.article-body ul, .article-body ol {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.article-body strong { color: var(--text-primary); }

.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: #f0fdf4;
  border-radius: 0 8px 8px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.article-body .info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.article-body .info-box h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  text-decoration: none;
  display: block;
}

.blog-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #dcfce7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-body .blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: #f0fdf4;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.blog-card-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.blog-card-body .read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

/* Blog Tabs */
.blog-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2.5rem;
  padding-bottom: 0;
}

.blog-tab {
  position: relative;
  padding: 0.625rem 1.25rem;
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: none;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  font-family: var(--font-body);
  margin-bottom: -2px;
}

.blog-tab:hover {
  color: var(--text-primary);
  background: rgba(0,0,0,0.03);
}

.blog-tab.active {
  color: var(--accent);
  font-weight: 600;
  background: #f0fdf4;
}

.blog-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px 2px 0 0;
}

.blog-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: 0.375rem;
  padding: 0.1rem 0.4rem;
  border-radius: 10px;
  background: #e2e8f0;
  color: #64748b;
  min-width: 1.25rem;
  line-height: 1;
}

.blog-tab.active .blog-tab-count {
  background: #dcfce7;
  color: #15803d;
}

@media (max-width: 768px) {
  .blog-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.25rem;
    padding: 0 1rem;
  }
  .blog-tabs::-webkit-scrollbar { display: none; }
  .blog-tab { flex-shrink: 0; }
}

/* Blog Group Section */
.blog-group { margin-bottom: 3rem; }

.blog-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.blog-group-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.blog-group-more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}

.blog-group-more:hover { text-decoration: underline; }

/* ===== Code Block ===== */
.code-block {
  background: #1e293b;
  border-radius: 12px;
  padding: 1.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.code-block code {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.85rem;
  color: #e2e8f0;
  line-height: 1.7;
  white-space: pre;
}

.code-block .comment { color: #64748b; }
.code-block .string { color: #4ade80; }
.code-block .keyword { color: #38bdf8; }

/* ===== Provider Grid (IMAP etc) ===== */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.provider-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.2s;
}

.provider-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.provider-card .provider-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.provider-card .provider-detail {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== Timeline ===== */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 3px solid var(--accent);
  z-index: 1;
}

.timeline-item.active::before {
  background: var(--accent);
}

.timeline-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.timeline-item .timeline-date {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.timeline-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

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

/* ===== Demo Search ===== */
.demo-search {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.demo-search-input-wrap {
  position: relative;
  margin-bottom: 1rem;
}

.demo-search-input-wrap svg {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  pointer-events: none;
}

.demo-search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid var(--border);
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-primary);
  background: var(--bg-card);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.demo-search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.demo-search-input::placeholder {
  color: var(--text-muted);
}

.demo-suggestions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.demo-suggestion {
  padding: 0.35rem 0.85rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}

.demo-suggestion:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #f0fdf4;
}

.demo-results {
  margin-top: 1.5rem;
  display: none;
}

.demo-results.visible {
  display: block;
  animation: fadeInUp 0.4s ease;
}

.demo-result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.demo-result-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.08);
}

.demo-result-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.demo-result-body {
  flex: 1;
  min-width: 0;
}

.demo-result-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.demo-result-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.demo-result-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.demo-result-badges {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

.demo-badge {
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
}

.demo-badge-green {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.demo-badge-score {
  background: var(--bg-deep);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.demo-results-cta {
  text-align: center;
  margin-top: 1.25rem;
  padding: 1rem;
  background: linear-gradient(180deg, transparent 0%, var(--bg-deep) 40%);
  position: relative;
}

.demo-results-cta p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.demo-typing {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-deep);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: none;
}

.demo-search-input:focus ~ .demo-typing,
.demo-search-input:not(:placeholder-shown) ~ .demo-typing {
  display: inline-block;
}

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

.lang-switcher-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.lang-switcher-trigger:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}

.lang-switcher-trigger svg {
  width: 14px;
  height: 14px;
}

.lang-switcher-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.25rem;
  min-width: 130px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 110;
}

.lang-switcher.open .lang-switcher-menu {
  opacity: 1;
  visibility: visible;
}

.lang-switcher-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.15s;
}

.lang-switcher-menu a:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

.lang-switcher-menu a.active {
  color: var(--accent);
  font-weight: 600;
}

.mobile-nav .mobile-lang {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.mobile-nav .mobile-lang a {
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  display: inline-block;
}

.mobile-nav .mobile-lang a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.mobile-nav .mobile-lang a.active {
  border-color: var(--accent);
  color: var(--accent);
  background: #f0fdf4;
}

/* ===== 404 Page ===== */
.page-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem;
}

.launch-banner { background: var(--accent); color: #fff; text-align: center; padding: 1rem 2rem; border-radius: 0.75rem; margin: 0 auto 2rem; max-width: 900px; font-size: 0.95rem; }

.page-404 h1 { font-size: 6rem; color: var(--accent); margin-bottom: 0.5rem; }
.page-404 p { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 2rem; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  nav { padding: 0.85rem 1.25rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  .hero { padding: 7rem 1.25rem 3rem; }
  .hero-sm { padding: 8rem 1.25rem 3rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .product-hero { padding: 8rem 1.25rem 3rem; }

  .trust-bar { gap: 1.5rem; }
  .section { padding: 4rem 1.25rem; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps-grid-5 { grid-template-columns: 1fr; }
  .readiness-box { flex-direction: column; text-align: center; padding: 2.5rem 1.5rem; }
  .readiness-visual { min-width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .audiences { grid-template-columns: 1fr 1fr; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .cta-buttons { flex-direction: column; align-items: center; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand { grid-column: 1 / -1; }

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

  .comparison-table { font-size: 0.8rem; }
  .comparison-table th, .comparison-table td { padding: 0.6rem 0.75rem; }

  .demo-search-input { font-size: 0.95rem; padding: 0.85rem 0.85rem 0.85rem 2.75rem; }
  .demo-result-card { flex-wrap: wrap; gap: 0.75rem; padding: 1rem; }
  .demo-result-badges { width: 100%; }
  .demo-result-meta { font-size: 0.78rem; }
  .breadcrumb { padding-top: 5rem; }

  .article-body { padding: 0 1.25rem 3rem; }
}

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

/* ===== Mega Menu ===== */
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  min-width: 520px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}

.nav-dropdown.open .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-menu-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem 0.25rem;
}

.mega-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.15s;
  color: var(--text-secondary);
}

.mega-menu-item:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

.mega-menu-item .mm-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.mega-menu-item .mm-icon svg {
  width: 18px;
  height: 18px;
}

.mega-menu-item .mm-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.mega-menu-item .mm-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mega-menu-item .mm-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.mega-menu-badge {
  display: inline-flex;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.mega-menu-badge-new {
  background: #dbeafe;
  color: #1d4ed8;
}

.mega-menu-badge-soon {
  background: #fef3c7;
  color: #92400e;
}

.mega-menu-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: var(--border);
  margin: 0.25rem 0;
}

/* ===== Product Grid (7 cards) ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.product-card.product-card-soon {
  opacity: 0.7;
}

.product-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card-badge-new {
  background: #dbeafe;
  color: #1d4ed8;
}

.product-card-badge-soon {
  background: #fef3c7;
  color: #92400e;
}

.product-card .feature-icon {
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.product-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
}

.product-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

/* ===== Deep Dive Sections ===== */
.deep-dive {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 4rem 0;
}

.deep-dive-reverse {
  flex-direction: row-reverse;
}

.deep-dive-content {
  flex: 1;
}

.deep-dive-content .section-label {
  margin-bottom: 0.75rem;
}

.deep-dive-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  line-height: 1.3;
}

.deep-dive-content > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.deep-dive-points {
  list-style: none;
  margin-bottom: 1.5rem;
}

.deep-dive-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.deep-dive-points li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2.5'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.deep-dive-visual {
  flex: 1;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f8fafc 100%);
  border-radius: 16px;
  border: 1px solid var(--border);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  padding: 2rem;
}

.deep-dive-visual svg {
  width: 64px;
  height: 64px;
  opacity: 0.4;
}

/* ===== Compliance Grid ===== */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.compliance-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.compliance-tile:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.08);
}

.compliance-tile-planned {
  opacity: 0.5;
  pointer-events: none;
}

.compliance-tile h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.compliance-tile .compliance-stats {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.compliance-tile .compliance-badge {
  display: inline-flex;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  background: #f0fdf4;
  color: #166534;
  align-self: flex-start;
}

.compliance-tile-planned .compliance-badge {
  background: #fef3c7;
  color: #92400e;
}

.compliance-expand {
  text-align: center;
  margin-top: 1rem;
}

.compliance-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}

.compliance-expand-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.compliance-hidden { display: none; }
.compliance-hidden.compliance-visible { display: flex; }

/* ===== Integration Bar ===== */
.integration-bar {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
}

.integration-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.integration-bar-item .int-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.integration-bar-item .int-icon svg {
  width: 22px;
  height: 22px;
}

.channel-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.channel-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

/* ===== Industry / Solution / Product Page Heroes ===== */
.industry-hero,
.solution-hero,
.product-page-hero {
  position: relative;
  z-index: 1;
  padding: 10rem 2rem 4rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.industry-hero h1,
.solution-hero h1,
.product-page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0 auto 1.5rem;
}

.industry-hero .hero-sub,
.solution-hero .hero-sub,
.product-page-hero .hero-sub {
  margin: 0 auto 2.5rem;
}

/* Industry Regulation Block */
.industry-regulation {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 3rem;
}

.industry-regulation h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.regulation-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.75rem;
}

.regulation-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.regulation-list li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2.5'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Industry Workflow */
.industry-workflow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  min-width: 160px;
}

.workflow-step .ws-num {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.workflow-step h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.workflow-step p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.workflow-arrow {
  font-size: 1.5rem;
  color: var(--border);
  flex-shrink: 0;
}

/* Industry Highlights */
.industry-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.industry-highlight {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.industry-highlight .ih-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.industry-highlight h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.industry-highlight p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Solution Features Grid */
.solution-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

/* Product Page Features */
.product-page-features .deep-dive {
  border-bottom: 1px solid var(--border);
}

.product-page-features .deep-dive:last-child {
  border-bottom: none;
}

/* Stats Bar */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin: 2rem 0;
}

.stats-bar-item {
  text-align: center;
}

.stats-bar-item .sb-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.stats-bar-item .sb-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* 5-col footer */
.footer-grid-5 {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

/* ===== Hero Stats Bar ===== */
.hero-stats-bar {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 2.5rem 2rem 1rem;
  animation: fadeInUp 0.8s ease 0.5s both;
}

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

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ===== SSC Comparison Table ===== */
.ssc-table-wrap {
  max-width: 900px;
  margin: 0 auto 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.ssc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.ssc-table thead th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
  background: var(--bg-deep);
}

.ssc-table thead th:last-child {
  background: #f0fdf4;
  color: var(--accent-soft);
}

.ssc-row td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: top;
}

.ssc-row td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  width: 25%;
}

.ssc-row td:last-child {
  background: #fafff7;
  color: var(--accent-soft);
  font-weight: 500;
}

.ssc-row {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ssc-row.ssc-visible {
  opacity: 1;
  transform: translateY(0);
}

.ssc-table tr:last-child td { border-bottom: none; }

.ssc-check { color: var(--accent); font-weight: 700; }
.ssc-cross { color: #ef4444; }

/* ROI Highlight Box */
.roi-highlight-box {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 2px solid #bbf7d0;
  border-radius: 16px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.roi-highlight-box .roi-big-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  line-height: 1;
}

.roi-highlight-box .roi-text h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.roi-highlight-box .roi-text p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== Service Cards Grid ===== */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.service-card .service-icon {
  width: 48px;
  height: 48px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-card .service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.service-card .service-tagline {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.service-card ul {
  list-style: none;
  margin-bottom: 1rem;
  flex: 1;
}

.service-card ul li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.25rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.service-card ul li::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  min-width: 14px;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2.5'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.service-card .service-stat {
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: auto;
}

.service-card .service-stat strong {
  color: var(--accent);
  font-weight: 700;
}

.service-card-module {
  border-color: #bbf7d0;
  background: linear-gradient(180deg, #fafff7 0%, #ffffff 100%);
}

.service-card-module .service-module-badge {
  display: inline-flex;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #f0fdf4;
  color: var(--accent-soft);
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

/* ===== ROI Calculator ===== */
.roi-calculator {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.roi-sliders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  margin-bottom: 2rem;
}

.roi-slider-group label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.roi-slider-group label output {
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
}

.roi-slider-group input[type="range"] {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--border);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.roi-slider-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(22,163,74,0.3);
  cursor: pointer;
}

.roi-slider-group input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(22,163,74,0.3);
  cursor: pointer;
}

.roi-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.roi-result-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
}

.roi-result-box .roi-result-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.15rem;
}

.roi-result-box .roi-result-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.roi-plan-suggestion {
  background: var(--bg-deep);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.roi-plan-suggestion .roi-plan-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.roi-plan-suggestion .roi-plan-text strong {
  color: var(--accent);
  font-weight: 700;
}

/* ===== Audience Cards v2 ===== */
.audience-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.audience-card-v2 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}

.audience-card-v2:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.audience-card-v2 .audience-v2-icon {
  width: 44px;
  height: 44px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}

.audience-card-v2 .audience-v2-icon svg {
  width: 22px;
  height: 22px;
}

.audience-card-v2 h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.audience-card-v2 .audience-v2-pain {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.audience-card-v2 .audience-v2-benefit {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 0.75rem;
}

.audience-card-v2 .audience-v2-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

/* ===== Elevator Pitch ===== */
.elevator-pitch {
  background: linear-gradient(135deg, #166534 0%, #15803d 50%, #16a34a 100%);
  padding: 5rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.elevator-pitch blockquote {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  line-height: 1.5;
  font-style: italic;
}

.elevator-pitch cite {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.92rem;
  font-weight: 400;
  font-style: normal;
  color: rgba(255,255,255,0.7);
}

/* ===== Module Pricing ===== */
.module-pricing-section {
  margin-top: 3rem;
}

.module-pricing-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.module-pricing-section > p {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.module-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.module-pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.module-pricing-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.module-pricing-card.module-popular {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(22,163,74,0.12);
}

.module-pricing-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.module-pricing-card .module-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.module-pricing-card .module-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.module-pricing-card .module-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.module-pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 1rem;
}

.module-pricing-card ul li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 0.25rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.module-pricing-card ul li::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  min-width: 14px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2.5'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* 6-col footer */
.footer-grid-6 {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

/* ===== Responsive Additions ===== */
@media (max-width: 768px) {
  .mega-menu {
    min-width: 300px;
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 0.25rem;
  }
  .product-grid { grid-template-columns: 1fr; }
  .deep-dive { flex-direction: column; gap: 2rem; padding: 2.5rem 0; }
  .deep-dive-reverse { flex-direction: column; }
  .deep-dive-visual { min-height: 200px; width: 100%; }
  .compliance-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-workflow { flex-direction: column; }
  .workflow-arrow { transform: rotate(90deg); }
  .industry-highlights { grid-template-columns: 1fr 1fr; }
  .footer-grid-5 { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid-5 .footer-brand { grid-column: 1 / -1; }
  .footer-grid-6 { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid-6 .footer-brand { grid-column: 1 / -1; }
  .stats-bar { gap: 1.5rem; }
  .hero-stats-bar { gap: 2rem; flex-wrap: wrap; }
  .hero-stat-number { font-size: 2rem; }
  .ssc-table-wrap { border-radius: 12px; }
  .ssc-table { font-size: 0.82rem; }
  .ssc-table thead th, .ssc-row td { padding: 0.75rem 1rem; }
  .roi-highlight-box { flex-direction: column; text-align: center; padding: 1.5rem; gap: 1rem; }
  .roi-highlight-box .roi-big-number { font-size: 2.5rem; }
  .service-cards-grid { grid-template-columns: 1fr; }
  .roi-sliders { grid-template-columns: 1fr; }
  .roi-results { grid-template-columns: 1fr; }
  .roi-plan-suggestion { flex-direction: column; text-align: center; }
  .audience-cards-grid { grid-template-columns: 1fr 1fr; }
  .elevator-pitch { padding: 3rem 1.5rem; }
  .module-pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto 1.5rem; }
  .ssc-facts-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .social-counters { grid-template-columns: 1fr 1fr; }
}

/* ===== SSC Facts Grid ===== */
.ssc-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.ssc-fact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.ssc-fact-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.ssc-fact-card.ssc-fact-solution {
  border-color: #bbf7d0;
  background: linear-gradient(180deg, #fafff7 0%, #ffffff 100%);
}

.ssc-fact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.ssc-fact-icon svg { width: 24px; height: 24px; }

.ssc-fact-icon.ssc-fact-market { background: #eff6ff; border: 1px solid #bfdbfe; color: #2563eb; }
.ssc-fact-icon.ssc-fact-hurdle { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; }
.ssc-fact-icon.ssc-fact-fix { background: #f0fdf4; border: 1px solid #bbf7d0; color: var(--accent); }

.ssc-fact-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.ssc-fact-card ul {
  list-style: none;
}

.ssc-fact-card ul li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.ssc-fact-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
}

.ssc-fact-card.ssc-fact-solution ul li::before {
  background: var(--accent);
}

/* ===== Myths Accordion ===== */
.myth-list {
  max-width: 800px;
  margin: 0 auto;
}

.myth-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.2s ease;
}

.myth-item:hover {
  border-color: #cbd5e1;
}

.myth-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  line-height: 1.4;
}

.myth-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.myth-item.open .myth-question svg { transform: rotate(180deg); }

.myth-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.myth-item.open .myth-answer { max-height: 300px; }

.myth-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ===== 3-Column SSC Comparison ===== */
.ssc-table thead th:nth-child(3) {
  background: #f0fdf4;
  color: var(--accent-soft);
}

.ssc-row td:nth-child(3) {
  color: #dc2626;
  font-size: 0.85rem;
}

.ssc-row td:last-child {
  background: #fafff7;
  color: var(--accent-soft);
  font-weight: 600;
}

.ssc-cta-box {
  max-width: 900px;
  margin: 1.5rem auto 0;
  text-align: center;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 2px solid #bbf7d0;
  border-radius: 16px;
  padding: 2rem;
}

.ssc-cta-box p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

/* ===== ROI Comparison Toggle ===== */
.roi-compare-toggle {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.roi-compare-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.roi-compare-btn:hover {
  border-color: #cbd5e1;
  background: var(--bg-card-hover);
}

.roi-compare-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.roi-compare-result {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
}

.roi-compare-result h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.roi-compare-result .roi-compare-savings {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.roi-compare-result p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ===== Social Proof Counters ===== */
.social-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.counter-item {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
}

.counter-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.counter-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.counter-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.social-counters-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  font-style: italic;
}

@media (max-width: 480px) {
  .compliance-grid { grid-template-columns: 1fr; }
  .industry-highlights { grid-template-columns: 1fr; }
  .footer-grid-5 { grid-template-columns: 1fr; }
  .footer-grid-6 { grid-template-columns: 1fr; }
  .audience-cards-grid { grid-template-columns: 1fr; }
  .hero-stats-bar { gap: 1.5rem; }
  .ssc-facts-grid { grid-template-columns: 1fr; }
  .social-counters { grid-template-columns: 1fr 1fr; }
  .roi-compare-toggle { gap: 0.35rem; }
  .roi-compare-btn { font-size: 0.78rem; padding: 0.4rem 0.75rem; }
}

/* ============================================================
   INTERACTIVE COMPONENTS – Process Landscape, ROI, Configurator
   ============================================================ */

/* ===== Process Landscape ===== */
.landscape-section { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
.landscape-title { text-align: center; margin-bottom: 0.5rem; font-size: 2rem; font-weight: 700; }
.landscape-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 3rem; font-size: 1rem; }

.landscape-layer {
  margin-bottom: 1.5rem;
  border-radius: 16px;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.landscape-layer.visible { opacity: 1; transform: translateY(0); }

.landscape-layer-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  padding-left: 0.25rem;
}

.landscape-modules {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}

.landscape-card {
  position: relative;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-deep);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
}
.landscape-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-color: var(--accent);
}
.landscape-card-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.landscape-card-name { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); }
.landscape-card-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 0.6rem;
  font-weight: 700;
  background: #fef3c7;
  color: #92400e;
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
}

/* Slide-Out Panel */
.landscape-panel-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 200;
  animation: fadeIn 0.2s ease;
}
.landscape-panel-overlay.open { display: block; }

.landscape-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: var(--bg-card);
  z-index: 201;
  box-shadow: -8px 0 24px rgba(0,0,0,0.12);
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 2rem;
}
.landscape-panel.open { right: 0; }

.landscape-panel-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.25rem;
}
.landscape-panel-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.landscape-panel-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.landscape-panel-desc { font-size: 0.92rem; color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.6; }

.landscape-panel-features {
  list-style: none;
  margin-bottom: 2rem;
}
.landscape-panel-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.landscape-panel-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.landscape-panel-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ===== ROI Calculator (Enhanced) ===== */
.roi-enhanced {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .roi-enhanced { grid-template-columns: 1fr; gap: 2rem; }
}

.roi-form { display: flex; flex-direction: column; gap: 1.5rem; }

.roi-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.roi-field-value {
  float: right;
  color: var(--accent);
  font-weight: 700;
}
.roi-field input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}
.roi-field select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--bg-card);
  color: var(--text-primary);
}
.roi-multiselect {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.roi-multiselect label {
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.roi-multiselect label:has(input:checked) {
  background: #f0fdf4;
  border-color: var(--accent);
  color: var(--accent);
}
.roi-multiselect input[type="checkbox"] { display: none; }

.roi-results {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: sticky;
  top: 5rem;
}

.roi-big-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}
.roi-big-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.roi-comparison-bar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.roi-comparison-bar > div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.roi-bar-segment {
  height: 2rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  min-width: fit-content;
  overflow: visible;
  text-overflow: clip;
  transition: width 0.6s ease;
}
.roi-bar-current { background: #94a3b8; }
.roi-bar-pruvio { background: var(--accent); min-width: 160px; }
.roi-bar-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  min-width: 100px;
  flex-shrink: 0;
}

.roi-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.roi-metric {
  padding: 0.75rem;
  background: var(--bg-deep);
  border-radius: 8px;
  text-align: center;
}
.roi-metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}
.roi-metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.roi-plan-rec {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.roi-plan-rec-title { font-size: 0.8rem; font-weight: 700; color: var(--accent-soft); margin-bottom: 0.25rem; }
.roi-plan-rec-name { font-size: 1.1rem; font-weight: 700; }
.roi-plan-rec-price { font-size: 0.85rem; color: var(--text-muted); }

.roi-ki-btn {
  width: 100%;
  padding: 0.85rem;
  border: 2px dashed var(--accent);
  border-radius: 10px;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 1rem;
}
.roi-ki-btn:hover { background: #f0fdf4; }
.roi-ki-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.roi-ki-btn.loading { animation: pulse 1.5s infinite; }

.roi-ki-result {
  display: none;
  background: var(--bg-deep);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-secondary);
}
.roi-ki-result.visible { display: block; animation: fadeIn 0.3s ease; }
.roi-ki-result h3 { font-size: 0.95rem; margin-bottom: 0.5rem; color: var(--text-primary); }

/* ===== Product Configurator ===== */
.configurator {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .configurator { grid-template-columns: 1fr; }
}

.config-section { margin-bottom: 2rem; }
.config-section-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.config-plans {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.75rem;
}

.config-plan-card {
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  background: var(--bg-card);
}
.config-plan-card:hover { border-color: #94a3b8; }
.config-plan-card.selected { border-color: var(--accent); background: #f0fdf4; }
.config-plan-name { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.25rem; }
.config-plan-price { font-size: 1.25rem; font-weight: 700; color: var(--accent); }
.config-plan-price-unit { font-size: 0.75rem; color: var(--text-muted); }
.config-plan-desc { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem; }
.config-plan-users { font-size: 0.7rem; color: var(--text-secondary); margin-top: 0.35rem; }

.config-user-slider {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-deep);
  border-radius: 12px;
}
.config-user-slider label { font-size: 0.85rem; font-weight: 600; white-space: nowrap; }
.config-user-slider input[type="range"] { flex: 1; accent-color: var(--accent); }
.config-user-slider output { font-weight: 700; color: var(--accent); min-width: 40px; text-align: right; }

.config-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 600px) {
  .config-modules { grid-template-columns: 1fr; }
}

.config-module-card {
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--bg-card);
}
.config-module-card:hover { border-color: #94a3b8; }
.config-module-card.selected { border-color: var(--accent); background: #f0fdf4; }
.config-module-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.config-module-name { font-size: 0.9rem; font-weight: 700; }
.config-module-price { font-size: 0.85rem; font-weight: 700; color: var(--accent); }
.config-module-desc { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.config-module-features { list-style: none; font-size: 0.75rem; color: var(--text-secondary); }
.config-module-features li::before { content: '✓ '; color: var(--accent); font-weight: 600; }
.config-module-check {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  flex-shrink: 0;
}
.config-module-card.selected .config-module-check {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.config-industry-rec {
  padding: 1rem;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #93c5fd;
  border-radius: 12px;
  margin-top: 0.75rem;
  display: none;
}
.config-industry-rec.visible { display: block; animation: fadeIn 0.3s ease; }
.config-industry-rec-title { font-size: 0.8rem; font-weight: 700; color: #1e40af; margin-bottom: 0.25rem; }
.config-industry-rec-text { font-size: 0.85rem; color: #1e3a5f; }

/* Configurator Summary (sticky right) */
.config-summary {
  position: sticky;
  top: 5rem;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}
.config-summary-title { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }

.config-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  font-size: 0.88rem;
}
.config-summary-line.dimmed { color: var(--text-muted); }

.config-summary-divider {
  height: 1px;
  background: var(--border);
  margin: 0.75rem 0;
}

.config-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.config-savings-badge {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1px solid #86efac;
  border-radius: 10px;
  padding: 0.75rem;
  margin-top: 1rem;
  text-align: center;
}
.config-savings-amount { font-size: 1.2rem; font-weight: 700; color: var(--accent); }
.config-savings-pct { font-size: 0.78rem; color: var(--accent-soft); }

.config-summary-ctas {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ===== Feature Flow (Step-by-Step) ===== */
.feature-flow {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
  min-height: 360px;
}
@media (max-width: 768px) {
  .feature-flow { grid-template-columns: 1fr; min-height: auto; }
}

.feature-flow-steps { display: flex; flex-direction: column; gap: 0; }

.feature-flow-step {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  cursor: pointer;
  border-left: 2px solid var(--border);
  transition: all 0.2s ease;
}
.feature-flow-step:last-child { border-left-color: transparent; }
.feature-flow-step.active { border-left-color: var(--accent); }

.feature-flow-step-num {
  position: absolute;
  left: -14px;
  top: 1rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.2s ease;
}
.feature-flow-step.active .feature-flow-step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.feature-flow-step-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}
.feature-flow-step.active .feature-flow-step-title { color: var(--text-primary); }

.feature-flow-step-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  display: none;
}
.feature-flow-step.active .feature-flow-step-desc { display: block; }

.feature-flow-visual {
  background: var(--bg-deep);
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 300px;
  transition: opacity 0.3s ease;
}
.feature-flow-visual-content { text-align: center; }
.feature-flow-visual-icon { font-size: 3rem; margin-bottom: 1rem; }
.feature-flow-visual-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.feature-flow-visual-desc { font-size: 0.88rem; color: var(--text-muted); max-width: 320px; margin: 0 auto; }

/* ===== Shared Animations ===== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
@keyframes countUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ===== ROI Mini (Embed) ===== */
.roi-mini {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  max-width: 500px;
}
.roi-mini-field { margin-bottom: 1rem; }
.roi-mini-field label { font-size: 0.82rem; font-weight: 600; display: block; margin-bottom: 0.3rem; }
.roi-mini-result {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  margin-top: 1rem;
}
.roi-mini-big { font-size: 1.8rem; font-weight: 700; color: var(--accent); }
.roi-mini-sub { font-size: 0.8rem; color: var(--text-muted); }

/* ===== Three Pillars ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}

.pillar-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }

.pillar-card-highlight {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 24px rgba(22,163,74,0.12);
}
.pillar-card-highlight:hover { box-shadow: 0 0 0 1px var(--accent), 0 16px 40px rgba(22,163,74,0.16); }

.pillar-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.pillar-icon svg { width: 28px; height: 28px; stroke: var(--accent); }

.pillar-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.pillar-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pillar-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.pillar-price {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.pillar-price strong { font-size: 1.5rem; font-weight: 700; color: var(--accent); }

.pillar-cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}

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

/* ===== 2x2 Audience Grid ===== */
.audience-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 2rem auto 0;
}
@media (max-width: 768px) {
  .audience-grid-2x2 { grid-template-columns: 1fr; }
}

/* ===== Agent Cards (horizontal scroll on mobile) ===== */
.agent-cards-scroll {
  display: flex;
  gap: 1.25rem;
  max-width: 1200px;
  margin: 2rem auto 0;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.agent-cards-scroll::-webkit-scrollbar { height: 6px; }
.agent-cards-scroll::-webkit-scrollbar-track { background: transparent; }
.agent-cards-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

.agent-card {
  flex: 0 0 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  scroll-snap-align: start;
  transition: all 0.2s ease;
  position: relative;
}
.agent-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.06); }

.agent-card-pharma { border-color: #c084fc; background: linear-gradient(135deg, #faf5ff 0%, #fff 100%); }

.agent-pharma-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #7c3aed;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.agent-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
.agent-icon svg { width: 24px; height: 24px; stroke: var(--accent); }
.agent-card-pharma .agent-icon { background: rgba(124,58,237,0.08); }
.agent-card-pharma .agent-icon svg { stroke: #7c3aed; }

.agent-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.agent-card p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 0.75rem; }
.agent-stat { font-size: 0.75rem; font-weight: 600; color: var(--accent); }
.agent-card-pharma .agent-stat { color: #7c3aed; }

/* ===== Consulting Cards ===== */
.consulting-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}
@media (max-width: 768px) {
  .consulting-cards-grid { grid-template-columns: 1fr; }
}

.consulting-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: all 0.2s ease;
}
.consulting-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.06); }

.consulting-card-vs {
  margin-bottom: 0.75rem;
}
.consulting-vs-classic {
  font-size: 0.72rem;
  font-weight: 600;
  color: #dc2626;
  background: #fef2f2;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  text-decoration: line-through;
}

.consulting-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.consulting-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 1rem; }
.consulting-card-price { font-size: 0.9rem; color: var(--text-secondary); }
.consulting-card-price strong { font-size: 1.25rem; font-weight: 700; color: var(--accent); }

/* ===== Founder Story ===== */
.founder-story {
  max-width: 700px;
  margin: 2rem auto 0;
  text-align: center;
}

.founder-quote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border-radius: 0 12px 12px 0;
  margin: 0 0 1.5rem 0;
  text-align: left;
}

.founder-info { margin-bottom: 1.25rem; }
.founder-name { font-size: 1rem; font-weight: 700; }
.founder-role { font-size: 0.82rem; color: var(--text-muted); }

.founder-logos {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.founder-logo-item {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-card);
}

/* ===== Mega Menu Pharma Badge ===== */
.mega-menu-badge-pharma {
  background: #7c3aed !important;
  color: #fff !important;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-left: 0.25rem;
}

/* ===== Footer Newsletter ===== */
.footer-newsletter-wrap {
  max-width: 1280px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
}
.footer-newsletter {
  margin-bottom: 0;
}
.footer-newsletter h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.35rem;
}
.footer-newsletter p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
}
.newsletter-form input {
  flex: 1;
  padding: 0.625rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.875rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input:focus {
  border-color: rgba(255,255,255,0.4);
}
.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.5);
}
.newsletter-form button {
  padding: 0.625rem 1.25rem;
  background: #16a34a;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.newsletter-form button:hover {
  background: #15803d;
}
.newsletter-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.newsletter-status {
  font-size: 0.8rem;
  margin-top: 0.5rem;
}
.newsletter-status.success {
  color: #4ade80;
}
.newsletter-status.error {
  color: #f87171;
}

@media (max-width: 640px) {
  .newsletter-form {
    flex-direction: column;
    max-width: 100%;
  }
}

/* ===== Life Sciences Landing Page ===== */

.ls-top-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
  color: #fff;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
.ls-top-banner a {
  color: #c4b5fd;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.78rem;
  transition: color 0.2s;
}
.ls-top-banner a:hover { color: #fff; }

.ls-nav-offset { top: 32px !important; }

.ls-logo-suffix {
  font-size: 0.85rem;
  font-weight: 500;
  color: #7c3aed;
  margin-left: 0.15rem;
}

/* LS Hero */
.ls-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  background: linear-gradient(180deg, #f5f3ff 0%, var(--bg-deep) 100%);
}
.ls-badge {
  display: inline-block;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.ls-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #1e1b4b 0%, #6d28d9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ls-hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.ls-hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.ls-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ls-hero-stat-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: #6d28d9;
}
.ls-hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.ls-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* LS Problem Section */
.ls-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}
@media (max-width: 900px) {
  .ls-problem-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ls-problem-grid { grid-template-columns: 1fr; }
}
.ls-problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  text-align: center;
}
.ls-problem-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 0.75rem;
}
.ls-problem-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.ls-problem-highlight {
  border-color: #7c3aed;
  background: linear-gradient(135deg, #f5f3ff 0%, #faf5ff 100%);
}
.ls-problem-highlight h3 {
  color: #6d28d9;
}

/* LS Product Grid */
.ls-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2.5rem auto 0;
}
@media (max-width: 768px) {
  .ls-product-grid { grid-template-columns: 1fr; }
}
.ls-product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: all 0.25s ease;
}
.ls-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.ls-product-featured {
  border-color: #7c3aed;
  background: linear-gradient(135deg, #faf5ff 0%, #fff 100%);
}
.ls-product-new-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #7c3aed;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.ls-product-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.ls-product-icon svg {
  width: 22px;
  height: 22px;
  stroke: #7c3aed;
}
.ls-product-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.ls-product-subtitle {
  font-size: 0.78rem;
  font-weight: 600;
  color: #7c3aed;
  margin-bottom: 0.75rem;
}
.ls-product-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.ls-product-vs {
  font-size: 0.78rem;
  color: #dc2626;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.ls-product-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: #7c3aed;
  text-decoration: none;
  transition: color 0.2s;
}
.ls-product-cta:hover { color: #5b21b6; }

.ls-pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-style: italic;
}
.ls-pricing-note a {
  color: #7c3aed;
  font-weight: 600;
  text-decoration: none;
}
.ls-pricing-note a:hover { text-decoration: underline; }

/* LS Data Platform */
.ls-data-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #f5f3ff 50%, var(--bg-deep) 100%);
}
.ls-data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 2.5rem auto 0;
}
@media (max-width: 768px) {
  .ls-data-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ls-data-grid { grid-template-columns: 1fr; }
}
.ls-data-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s ease;
}
.ls-data-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}
.ls-data-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #6d28d9;
  margin-bottom: 0.25rem;
}
.ls-data-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.ls-data-source {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.ls-data-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* LS Agent Grid */
.ls-agent-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}
@media (max-width: 1000px) {
  .ls-agent-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .ls-agent-grid { grid-template-columns: repeat(2, 1fr); }
}
.ls-agent-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.2s ease;
  position: relative;
}
.ls-agent-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  border-color: #c4b5fd;
}
.ls-agent-level {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7c3aed;
  background: #f5f3ff;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.ls-agent-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.ls-agent-expertise {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.ls-agents-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* LS Package Grid */
.ls-consulting-section {
  background: #faf5ff;
}
.ls-package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}
@media (max-width: 900px) {
  .ls-package-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ls-package-grid { grid-template-columns: 1fr; }
}
.ls-package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.2s ease;
}
.ls-package-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}
.ls-package-classic {
  font-size: 0.72rem;
  font-weight: 600;
  color: #dc2626;
  background: #fef2f2;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.75rem;
  text-decoration: line-through;
}
.ls-package-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.ls-package-duration {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.ls-package-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: #7c3aed;
  text-decoration: none;
  transition: color 0.2s;
}
.ls-package-cta:hover { color: #5b21b6; }

/* LS Comparison Table */
.ls-comparison-wrap {
  max-width: 900px;
  margin: 2rem auto 0;
  overflow-x: auto;
}
.ls-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.ls-comparison-table th,
.ls-comparison-table td {
  padding: 0.85rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.ls-comparison-table th {
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--bg-card);
  position: sticky;
  top: 0;
}
.ls-comparison-table th:first-child,
.ls-comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
}
.ls-highlight-col {
  background: #f5f3ff;
  color: #6d28d9;
  font-weight: 600;
}
.ls-highlight-col a {
  color: #6d28d9;
  font-weight: 700;
  text-decoration: none;
}
.ls-highlight-col a:hover { text-decoration: underline; }
.ls-comparison-table thead .ls-highlight-col {
  background: #6d28d9;
  color: #fff;
  border-radius: 8px 8px 0 0;
}

/* LS Nav Link Muted */
.nav-link-muted {
  color: var(--text-muted) !important;
  font-size: 0.82rem !important;
}

@media (max-width: 768px) {
  .ls-hero { padding: 8rem 1.5rem 3rem; }
  .ls-hero h1 { font-size: 1.8rem; }
  .ls-hero-stats { gap: 1.25rem; }
  .ls-hero-stat-num { font-size: 1.35rem; }
  .ls-top-banner { font-size: 0.72rem; padding: 0.4rem 0.75rem; gap: 0.75rem; }
  .ls-agent-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================================================
   VSSC Homepage Relaunch (2026-03)
   ======================================================================== */

/* Hero extra line */
.hero-extra {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.25s both;
  text-align: center;
}

/* KPI Strip */
.vssc-kpi-strip {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem 2rem 0;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
  max-width: 1000px;
  margin: 0 auto;
}

.vssc-kpi-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.vssc-kpi-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Problem Cards */
.vssc-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.vssc-problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.vssc-problem-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.vssc-problem-icon {
  width: 52px;
  height: 52px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #dc2626;
}

.vssc-problem-icon svg {
  width: 24px;
  height: 24px;
}

.vssc-problem-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.vssc-problem-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Two-Column Operative / Strategic */
.vssc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.vssc-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.vssc-col:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.vssc-col-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.vssc-col-header svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  flex-shrink: 0;
}

.vssc-col-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.vssc-col-operative { border-top: 3px solid var(--accent); }
.vssc-col-strategic { border-top: 3px solid #3b82f6; }

.vssc-col-strategic .vssc-col-header svg { color: #3b82f6; }

.vssc-col-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vssc-col-list li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}

.vssc-col-list li:last-child { border-bottom: none; }

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

.vssc-col-strategic .vssc-col-list li::before { background: #3b82f6; }

/* Transition Section */
.vssc-transition-section {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #166534 0%, #15803d 50%, #16a34a 100%);
  padding: 5rem 2rem;
  margin: 0;
}

.vssc-transition-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.vssc-transition-inner h2 {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.vssc-transition-inner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Autonomous vs. Supervised Cards */
.vssc-models-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.vssc-model-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.vssc-model-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.vssc-model-premium {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.1);
}

.vssc-model-label {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.vssc-model-premium .vssc-model-label { color: var(--accent); }

.vssc-model-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.vssc-model-tasks-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.vssc-model-tasks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.vssc-model-tasks li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.vssc-model-tasks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.vssc-model-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  margin-top: auto;
}

.vssc-model-cta {
  align-self: flex-start;
  width: 100%;
  justify-content: center;
}

.vssc-models-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-style: italic;
  margin-top: 2rem;
}

/* Agent Cards */
.vssc-agents-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.vssc-agent-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.vssc-agent-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.vssc-agent-icon {
  width: 48px;
  height: 48px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--accent);
}

.vssc-agent-icon svg {
  width: 22px;
  height: 22px;
}

.vssc-agent-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.vssc-agent-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Timeline / Workflow */
.vssc-timeline {
  max-width: 700px;
  margin: 3rem auto 0;
  position: relative;
  padding-left: 3rem;
}

.vssc-timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.vssc-timeline-step {
  position: relative;
  padding-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.vssc-timeline-step:last-child { padding-bottom: 0; }

.vssc-timeline-number {
  position: absolute;
  left: -3rem;
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  z-index: 1;
}

.vssc-timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  flex: 1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.vssc-timeline-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.vssc-timeline-conclusion {
  text-align: center;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 700px;
  margin: 2.5rem auto 0;
  line-height: 1.6;
}

/* Proof Cards */
.vssc-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.vssc-proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.vssc-proof-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.vssc-proof-icon {
  width: 48px;
  height: 48px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--accent);
}

.vssc-proof-icon svg {
  width: 22px;
  height: 22px;
}

.vssc-proof-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.vssc-proof-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Comparison Table */
.vssc-compare-table-wrap {
  margin-top: 3rem;
  overflow-x: auto;
}

.vssc-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
}

.vssc-compare-table th,
.vssc-compare-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}

.vssc-compare-table thead th {
  background: var(--bg-deep);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.vssc-compare-table thead .vssc-compare-highlight {
  background: var(--accent);
  color: #ffffff;
}

.vssc-compare-table tbody tr:last-child td { border-bottom: none; }

.vssc-compare-table tbody td:first-child {
  font-weight: 500;
  color: var(--text-primary);
}

.vssc-compare-table tbody td:nth-child(2) {
  color: var(--text-muted);
}

.vssc-compare-check {
  color: var(--accent) !important;
  font-weight: 500;
}

.vssc-compare-footnote {
  text-align: center;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  margin-top: 2.5rem;
  font-style: italic;
}

/* Comparison Mobile Cards (hidden on desktop) */
.vssc-compare-cards { display: none; }

.vssc-compare-card-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 0.75rem;
}

.vssc-compare-dimension {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.vssc-compare-old {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.vssc-compare-new {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
}

/* Final CTA */
.vssc-final-cta {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #166534 0%, #15803d 50%, #16a34a 100%);
  padding: 6rem 2rem;
  margin-top: 2rem;
}

.vssc-final-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.vssc-final-cta-inner h2 {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.vssc-final-cta-inner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.vssc-final-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== VSSC Responsive ===== */
@media (max-width: 1024px) {
  .vssc-agents-grid { grid-template-columns: repeat(3, 1fr); }
  .vssc-proof-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .vssc-kpi-strip {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .vssc-problem-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .vssc-two-col {
    grid-template-columns: 1fr;
  }

  .vssc-models-grid {
    grid-template-columns: 1fr;
  }

  .vssc-agents-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .vssc-proof-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Hide table, show cards on mobile */
  .vssc-compare-table-wrap { display: none; }
  .vssc-compare-cards { display: block; margin-top: 2rem; }

  .vssc-transition-section { padding: 3.5rem 1.5rem; }
  .vssc-final-cta { padding: 4rem 1.5rem; }

  .vssc-timeline { padding-left: 2.5rem; }
  .vssc-timeline::before { left: 14px; }
  .vssc-timeline-number {
    left: -2.5rem;
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }
}

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

  .vssc-final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .vssc-final-cta-buttons .btn-primary,
  .vssc-final-cta-buttons .btn-white {
    width: 100%;
    justify-content: center;
  }
}

/* ===== 3-Ebenen Workstream Grid ===== */
.vssc-levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.vssc-level-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  border-top: 3px solid var(--accent);
}

.vssc-level-card:hover {
  border-color: #cbd5e1;
  border-top-color: var(--accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.vssc-level-card-taktisch {
  border-top-color: #3b82f6;
}

.vssc-level-card-taktisch:hover {
  border-top-color: #3b82f6;
}

.vssc-level-card-strategisch {
  border-top-color: #7c3aed;
}

.vssc-level-card-strategisch:hover {
  border-top-color: #7c3aed;
}

.vssc-level-header {
  margin-bottom: 1rem;
}

.vssc-level-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
}

.vssc-level-green {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.vssc-level-blue {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

.vssc-level-purple {
  background: #f5f3ff;
  color: #5b21b6;
  border: 1px solid #ddd6fe;
}

.vssc-level-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.vssc-level-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vssc-level-list li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}

.vssc-level-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.vssc-level-card-taktisch .vssc-level-list li::before {
  background: #3b82f6;
}

.vssc-level-card-strategisch .vssc-level-list li::before {
  background: #7c3aed;
}

.vssc-levels-conclusion {
  text-align: center;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 700px;
  margin: 2.5rem auto 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .vssc-levels-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ===== Pilotprojekt Section ===== */
.vssc-pilot-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 5rem 2rem;
  text-align: center;
}

.vssc-pilot-inner {
  max-width: 800px;
  margin: 0 auto;
}

.vssc-pilot-label {
  display: inline-block;
  background: rgba(22, 163, 74, 0.15);
  color: #4ade80;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.9rem;
  border-radius: 6px;
  border: 1px solid rgba(22, 163, 74, 0.25);
  margin-bottom: 1.5rem;
}

.vssc-pilot-section h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.vssc-pilot-section > .vssc-pilot-inner > p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.vssc-pilot-examples {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  text-align: left;
}

.vssc-pilot-example {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vssc-pilot-example:last-child {
  border-bottom: none;
}

.vssc-pilot-example svg {
  width: 20px;
  height: 20px;
  color: #4ade80;
  flex-shrink: 0;
}

.vssc-pilot-example span {
  color: #e2e8f0;
  font-size: 0.92rem;
  line-height: 1.4;
}

.vssc-pilot-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .vssc-pilot-section h2 {
    font-size: 1.5rem;
  }

  .vssc-pilot-cta {
    flex-direction: column;
    align-items: center;
  }

  .vssc-pilot-cta .btn-primary,
  .vssc-pilot-cta .btn-white {
    width: 100%;
    justify-content: center;
  }
}

/* ===== VSSC Landing Page (/vssc/) ===== */

/* Hero – Split Layout */
.vp-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(160deg, #f8fafc 0%, #f0fdf4 40%, #ecfeff 100%);
  position: relative;
  overflow: hidden;
}

.vp-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.vp-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.vp-hero-content h1 {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.vp-hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.vp-hero-extra {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 2rem;
}

/* Hero Visual – 3-Ebenen Stack */
.vp-hero-visual {
  position: relative;
}

.vp-hero-levels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vp-hero-level {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.vp-hero-level:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  transform: translateX(4px);
}

.vp-hero-level-op { border-left: 3px solid #16a34a; }
.vp-hero-level-takt { border-left: 3px solid #3b82f6; }
.vp-hero-level-strat { border-left: 3px solid #7c3aed; }

.vp-hero-level-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.vp-hero-level-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  min-width: 80px;
}

.vp-hero-level-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Meaning Section – Dark */
.vp-meaning-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 5rem 2rem;
  text-align: center;
}

.vp-meaning-inner {
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.vp-meaning-inner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.vp-meaning-inner p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Comparison Trio */
.vp-compare-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.vp-compare-option {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.vp-compare-option-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vp-compare-old .vp-compare-option-label { color: #94a3b8; }
.vp-compare-manual .vp-compare-option-label { color: #94a3b8; }
.vp-compare-pruvio .vp-compare-option-label { color: #4ade80; }

.vp-compare-option ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vp-compare-option li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.25rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

.vp-compare-old li,
.vp-compare-manual li {
  color: #64748b;
}

.vp-compare-old li::before,
.vp-compare-manual li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #475569;
}

.vp-compare-pruvio li {
  color: #e2e8f0;
}

.vp-compare-pruvio li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
}

.vp-compare-pruvio {
  border-color: rgba(74, 222, 128, 0.2);
  background: rgba(22, 163, 74, 0.06);
}

.vp-compare-highlight-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #16a34a, #4ade80);
  border-radius: 0 0 16px 16px;
}

/* Workflow Pipeline */
.vp-workflow-section {
  background: var(--bg-deep);
  padding: 5rem 2rem;
}

.vp-workflow-title {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 3rem;
}

.vp-workflow-pipeline {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vp-workflow-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.vp-workflow-step:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.vp-workflow-step-number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

.vp-workflow-step-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.vp-workflow-step-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

.vp-workflow-connector {
  width: 2px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== VSSC Page Responsive ===== */
@media (max-width: 968px) {
  .vp-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .vp-hero-visual {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .vp-hero {
    padding: 7rem 1.5rem 3rem;
  }

  .vp-compare-trio {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .vp-meaning-section {
    padding: 3.5rem 1.5rem;
  }

  .vp-workflow-section {
    padding: 3.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .vp-hero-level {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
  }

  .vp-hero-level-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}

/* ===== Autonomous Landing Page (/autonomous/) ===== */

/* Hero – Split Layout */
.au-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(160deg, #f8fafc 0%, #f0fdf4 40%, #ecfeff 100%);
  position: relative;
  overflow: hidden;
}

.au-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.au-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.au-hero-content h1 {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.au-hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.au-hero-extra {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 2rem;
}

/* Hero Visual – Governance Flow */
.au-hero-visual {
  position: relative;
}

.au-gov-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.au-gov-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.au-gov-step:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  transform: translateX(4px);
}

.au-gov-step-rules { border-left: 3px solid #16a34a; }
.au-gov-step-exec { border-left: 3px solid #3b82f6; }
.au-gov-step-escalate { border-left: 3px solid #f59e0b; }
.au-gov-step-result { border-left: 3px solid #16a34a; }

.au-gov-step-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.au-gov-step-rules .au-gov-step-icon { background: rgba(22, 163, 74, 0.1); color: #16a34a; }
.au-gov-step-exec .au-gov-step-icon { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.au-gov-step-escalate .au-gov-step-icon { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.au-gov-step-result .au-gov-step-icon { background: rgba(22, 163, 74, 0.1); color: #16a34a; }

.au-gov-step-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.au-gov-step-text span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.au-gov-connector {
  width: 2px;
  height: 16px;
  background: var(--border);
  flex-shrink: 0;
}

/* Meaning Grid – 5 Cards */
.au-meaning-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.au-meaning-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.au-meaning-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.au-meaning-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(22, 163, 74, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--accent);
}

.au-meaning-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.au-meaning-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* Work Section – Dark BG */
.au-work-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 5rem 2rem;
}

.au-work-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.au-work-title {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 3rem;
}

.au-work-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
}

.au-work-col {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
}

.au-work-col-header {
  margin-bottom: 1.5rem;
}

.au-work-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.au-work-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  font-size: 0.92rem;
  color: #e2e8f0;
  line-height: 1.5;
}

.au-work-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
}

.au-work-note {
  color: #94a3b8;
  font-size: 0.92rem;
  margin-top: 2.5rem;
  font-weight: 500;
}

/* Governance Grid – 6 Cards */
.au-gov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.au-gov-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.au-gov-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.au-gov-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(22, 163, 74, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.au-gov-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.au-gov-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Fit Grid – Two Columns */
.au-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 3rem auto 0;
}

.au-fit-col {
  border-radius: 16px;
  padding: 2.5rem;
}

.au-fit-yes {
  background: rgba(22, 163, 74, 0.04);
  border: 1px solid rgba(22, 163, 74, 0.15);
}

.au-fit-maybe {
  background: rgba(245, 158, 11, 0.04);
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.au-fit-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.au-fit-yes .au-fit-header {
  color: #16a34a;
}

.au-fit-maybe .au-fit-header {
  color: #d97706;
}

.au-fit-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.au-fit-col li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.au-fit-yes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
}

.au-fit-maybe li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d97706;
}

.au-fit-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #d97706;
  text-decoration: none;
  transition: color 0.2s;
}

.au-fit-link:hover {
  color: #b45309;
}

/* Practice Section – Dark BG */
.au-practice-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 5rem 2rem;
  text-align: center;
}

.au-practice-title {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 3rem;
}

.au-practice-cases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.au-practice-case {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
}

.au-practice-case-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  color: #4ade80;
}

.au-practice-case-header h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.au-practice-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
}

.au-practice-steps li {
  counter-increment: step-counter;
  position: relative;
  padding: 0.4rem 0 0.4rem 1.75rem;
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.55;
}

.au-practice-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.2);
  color: #4ade80;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Benefit Grid – 5 Cards */
.au-benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.au-benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.au-benefit-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.au-benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(22, 163, 74, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--accent);
}

.au-benefit-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.au-benefit-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* Bridge Section – Dark Transition */
.au-bridge-section {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 5rem 2rem;
  text-align: center;
}

.au-bridge-inner {
  max-width: 700px;
  margin: 0 auto;
}

.au-bridge-inner h2 {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.au-bridge-inner p {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: #0f172a;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
}

.btn-white:hover {
  background: #f1f5f9;
  transform: translateY(-1px);
}

/* ===== Autonomous Page Responsive ===== */
@media (max-width: 968px) {
  .au-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .au-hero-visual {
    max-width: 500px;
  }

  .au-meaning-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .au-benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 768px) {
  .au-hero {
    padding: 7rem 1.5rem 3rem;
  }

  .au-meaning-grid {
    grid-template-columns: 1fr 1fr;
  }

  .au-benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .au-work-cols {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .au-gov-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .au-fit-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .au-practice-cases {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .au-work-section,
  .au-practice-section,
  .au-bridge-section {
    padding: 3.5rem 1.5rem;
  }
}

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

  .au-benefit-grid {
    grid-template-columns: 1fr;
  }

  .au-gov-grid {
    grid-template-columns: 1fr;
  }

  .au-gov-step {
    padding: 1rem 1.25rem;
  }
}

/* ===== Supervised Landing Page (/supervised/) ===== */

/* Hero – Split Layout */
.sv-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(160deg, #f8fafc 0%, #eef2ff 40%, #f0fdf4 100%);
  position: relative;
  overflow: hidden;
}

.sv-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.sv-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.sv-hero-content h1 {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.sv-hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.sv-hero-extra {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 2rem;
}

/* Hero Visual – Oversight Flow */
.sv-hero-visual {
  position: relative;
}

.sv-oversight-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.sv-flow-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.sv-flow-step:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  transform: translateX(4px);
}

.sv-flow-step-ki { border-left: 3px solid #3b82f6; }
.sv-flow-step-rules { border-left: 3px solid #16a34a; }
.sv-flow-step-review { border-left: 3px solid #8b5cf6; }
.sv-flow-step-result { border-left: 3px solid #16a34a; }

.sv-flow-step-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sv-flow-step-ki .sv-flow-step-icon { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.sv-flow-step-rules .sv-flow-step-icon { background: rgba(22, 163, 74, 0.1); color: #16a34a; }
.sv-flow-step-review .sv-flow-step-icon { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.sv-flow-step-result .sv-flow-step-icon { background: rgba(22, 163, 74, 0.1); color: #16a34a; }

.sv-flow-step-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.sv-flow-step-text span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.sv-flow-connector {
  width: 2px;
  height: 16px;
  background: var(--border);
  flex-shrink: 0;
}

/* Meaning Grid – 3 Cards */
.sv-meaning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.sv-meaning-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.sv-meaning-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.sv-meaning-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(139, 92, 246, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #8b5cf6;
}

.sv-meaning-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.sv-meaning-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Expert Section – Dark BG */
.sv-expert-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 5rem 2rem;
}

.sv-expert-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.sv-expert-title {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.sv-expert-sub {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.sv-expert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: left;
}

.sv-expert-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
}

.sv-expert-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #a78bfa;
}

.sv-expert-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.sv-expert-card p {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.sv-expert-note {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-top: 2.5rem;
  font-weight: 500;
  font-style: italic;
}

/* Fit Grid – Two Columns */
.sv-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.sv-fit-col {
  border-radius: 16px;
  padding: 2.5rem;
}

.sv-fit-yes {
  background: rgba(139, 92, 246, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.sv-fit-examples {
  background: rgba(22, 163, 74, 0.04);
  border: 1px solid rgba(22, 163, 74, 0.15);
}

.sv-fit-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.sv-fit-yes .sv-fit-header { color: #7c3aed; }
.sv-fit-examples .sv-fit-header { color: #16a34a; }

.sv-fit-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sv-fit-col li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.sv-fit-yes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7c3aed;
}

.sv-fit-examples li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
}

/* Practice Section – Dark BG */
.sv-practice-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 5rem 2rem;
  text-align: center;
}

.sv-practice-title {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 3rem;
}

.sv-practice-cases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.sv-practice-case {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
}

.sv-practice-case-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  color: #a78bfa;
}

.sv-practice-case-header h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.sv-practice-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: sv-step-counter;
}

.sv-practice-steps li {
  counter-increment: sv-step-counter;
  position: relative;
  padding: 0.4rem 0 0.4rem 1.75rem;
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.55;
}

.sv-practice-steps li::before {
  content: counter(sv-step-counter);
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.2);
  color: #a78bfa;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Benefit Grid – 5 Cards */
.sv-benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.sv-benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.sv-benefit-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.sv-benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #8b5cf6;
}

.sv-benefit-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.sv-benefit-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* Evolution Section – Dark Transition */
.sv-evolution-section {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 5rem 2rem;
  text-align: center;
}

.sv-evolution-inner {
  max-width: 800px;
  margin: 0 auto;
}

.sv-evolution-inner h2 {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.sv-evolution-inner > p {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.sv-evolution-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.sv-evolution-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
}

.sv-evolution-step-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.2);
  color: #a78bfa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.sv-evolution-step-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.15rem;
}

.sv-evolution-step-text span {
  font-size: 0.78rem;
  color: #94a3b8;
}

.sv-evolution-arrow {
  padding: 0 0.75rem;
  color: #475569;
}

/* Pilot Quote */
.sv-pilot-quote {
  color: #94a3b8;
  font-size: 0.92rem;
  font-style: italic;
  margin: 2rem auto 2.5rem;
  max-width: 600px;
  line-height: 1.6;
}

/* Impact Grid – 5 Cards */
.sv-impact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.sv-impact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.sv-impact-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.sv-impact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #8b5cf6;
}

.sv-impact-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.sv-impact-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* ===== Supervised Page Responsive ===== */
@media (max-width: 968px) {
  .sv-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sv-hero-visual {
    max-width: 500px;
  }

  .sv-benefit-grid,
  .sv-impact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

@media (max-width: 768px) {
  .sv-hero {
    padding: 7rem 1.5rem 3rem;
  }

  .sv-meaning-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .sv-benefit-grid,
  .sv-impact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sv-expert-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .sv-fit-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .sv-practice-cases {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .sv-expert-section,
  .sv-practice-section,
  .sv-evolution-section {
    padding: 3.5rem 1.5rem;
  }

  .sv-evolution-steps {
    flex-direction: column;
    gap: 0.5rem;
  }

  .sv-evolution-arrow {
    transform: rotate(90deg);
    padding: 0.25rem 0;
  }
}

@media (max-width: 480px) {
  .sv-benefit-grid,
  .sv-impact-grid {
    grid-template-columns: 1fr;
  }

  .sv-flow-step {
    padding: 1rem 1.25rem;
  }

  .sv-evolution-step {
    padding: 1rem;
    width: 100%;
  }
}
