/* 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; }

/* ===== 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);
}

/* ===== 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; }
}
