/* CompliHub Marketing Website — www.complihub.in */

:root {
  --primary: #1e40af;
  --primary-light: #3b82f6;
  --primary-dark: #1e3a8a;
  --accent: #6d28d9;
  --accent-light: #8b5cf6;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --surface-dark: #0f172a;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-inverse: #f1f5f9;
  --border: #e2e8f0;
  --success: #059669;
  --warning: #d97706;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-lg: 0 4px 12px rgba(0,0,0,0.1), 0 16px 48px rgba(0,0,0,0.08);
  --max-w: 1200px;
  --transition: 0.2s ease;
}

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: var(--primary-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-brand svg {
  width: 28px;
  height: 28px;
}

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

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

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  padding: 140px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, #f0f5ff 0%, var(--surface) 100%);
}

.hero-kicker {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(30, 64, 175, 0.08);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--surface-dark);
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Stats bar */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 48px auto 0;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.hero-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

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

/* Frameworks pill bar */
.frameworks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.frameworks span {
  padding: 5px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ===== SECTION SHARED ===== */
section {
  padding: 80px 0;
}

.section-kicker {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(109, 40, 217, 0.08);
  color: var(--accent);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--surface-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ===== PROBLEM SECTION ===== */
.problem {
  background: var(--surface-alt);
}

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

.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.problem-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.problem-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--surface-dark);
  margin-bottom: 8px;
}

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

/* ===== FEATURES / HOW IT WORKS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: rgba(30, 64, 175, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--surface-dark);
}

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

/* ===== MODULES ===== */
.modules {
  background: var(--surface-alt);
}

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

.modules-col h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--surface-dark);
}

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

.modules-col li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.modules-col li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.pricing-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--surface-dark);
  margin-bottom: 6px;
}

.pricing-card .price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 12px 0 4px;
}

.pricing-card .price-unit {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pricing-card .buyer {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 12px 0 20px;
  line-height: 1.5;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  font-size: 0.9rem;
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ===== IMPLEMENTATION TIMELINE ===== */
.timeline {
  background: var(--surface-alt);
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.timeline-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  background: var(--primary);
  border: 3px solid var(--surface-alt);
  border-radius: 50%;
  margin: 20px auto 16px;
  box-shadow: 0 0 0 3px var(--primary-light);
}

.timeline-step h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--surface-dark);
  margin-bottom: 4px;
}

.timeline-step p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.timeline-step .phase {
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== QUESTIONS / FAQ ===== */
.questions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.question-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
}

.question-card .q-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(30, 64, 175, 0.08);
  color: var(--primary);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.question-card h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--surface-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.question-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== DEPLOYMENT ===== */
.deploy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.deploy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.deploy-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--surface-dark);
  margin-bottom: 10px;
}

.deploy-card p, .deploy-card li {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.deploy-card ul {
  list-style: none;
  margin-top: 8px;
}

.deploy-card li {
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.deploy-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 0.8rem;
}

/* ===== CTA ===== */
.cta-section {
  background: var(--surface-dark);
  color: var(--text-inverse);
  text-align: center;
}

.cta-section .section-title {
  color: #fff;
}

.cta-section .section-sub {
  color: #94a3b8;
}

.cta-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 40px 0;
  text-align: center;
}

.cta-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.cta-step p {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
}

.cta-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--surface-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 24px;
  color: #94a3b8;
}

/* ===== THE IDEA STATEMENT ===== */
.idea-section {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.idea-section .section-kicker {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.idea-section .section-title {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.idea-section .section-sub {
  color: rgba(255,255,255,0.8);
  max-width: 680px;
  margin: 0 auto;
}

/* ===== EVIDENCE PROPERTIES ===== */
.evidence {
  background: var(--surface-alt);
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.evidence-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.evidence-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.evidence-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.evidence-card .evidence-q {
  display: block;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.evidence-card p {
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.6;
}

/* ===== COST STRIP ===== */
.cost-strip {
  margin-top: 48px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.cost-strip-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--surface-dark);
  margin-bottom: 20px;
}

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

.cost-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cost-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.cost-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== MODULES FULL GRID ===== */
.modules-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.module-domain {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.module-domain:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.module-domain h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.module-domain ul {
  list-style: none;
}

.module-domain li {
  padding: 5px 0;
  font-size: 0.85rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.module-domain li:last-child {
  border-bottom: none;
}

.module-domain li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--primary-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.modules-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ===== COVERAGE TABLE ===== */
.coverage {
  background: var(--surface-alt);
}

.coverage-table-wrap {
  overflow-x: auto;
}

.coverage-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.coverage-table th,
.coverage-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.coverage-table th {
  background: var(--surface-dark);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.coverage-table td:first-child {
  font-weight: 600;
  color: var(--surface-dark);
  white-space: nowrap;
}

.coverage-table td:last-child {
  color: var(--text-muted);
}

.coverage-table tr:hover td {
  background: var(--surface-alt);
}

.coverage-table .coverage-gap td {
  background: #fef2f2;
  color: #991b1b;
}

.coverage-table .coverage-gap td:first-child {
  color: #991b1b;
}

/* ===== PRICING INCLUDES ===== */
.pricing-includes {
  list-style: none;
  text-align: left;
  margin: 12px 0 20px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}

.pricing-includes li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}

.pricing-includes li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ===== ADDON PACKS ===== */
.addon-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.addon-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--surface-dark);
  text-align: center;
  margin-bottom: 20px;
}

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

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.addon-name {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
}

.addon-price {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary);
}

/* ===== TIMELINE NOTE ===== */
.timeline-note {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== BENEFIT CASE ===== */
.benefit {
  background: var(--surface-alt);
}

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

.benefit-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.benefit-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--surface-dark);
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== QUESTIONS HIGHLIGHT ===== */
.question-card.highlight {
  border-color: var(--accent);
  background: #faf5ff;
}

.question-card.highlight .q-num {
  background: rgba(109, 40, 217, 0.12);
  color: var(--accent);
}

.questions-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-style: italic;
}

/* ===== DEPLOY NOTE ===== */
.deploy-note {
  margin-top: 24px;
  padding: 16px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== ABOUT ===== */
.about {
  background: var(--surface-alt);
}

.about-intro {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.about-intro p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 12px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.about-value {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.about-value:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.about-value h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.about-value p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-products h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--surface-dark);
  text-align: center;
  margin-bottom: 24px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.product-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

a.product-item {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.product-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.product-item h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--surface-dark);
  margin-bottom: 8px;
}

.product-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== CTA ACTIONS ===== */
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== FOOTER EXPANDED ===== */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-col li {
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-col a {
  color: #94a3b8;
}

.footer-col a:hover {
  color: #fff;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 8px;
}

.footer-company {
  font-size: 0.82rem;
  color: #64748b;
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: #64748b;
}

/* ===== AI SECTION (ComplianceBuddy) ===== */
.ai-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  color: #fff;
}

.ai-section .section-kicker {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}

.ai-section .section-title {
  color: #fff;
}

.ai-section .section-sub {
  color: #94a3b8;
}

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

.ai-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: background var(--transition), transform var(--transition);
}

.ai-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.ai-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.ai-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.ai-card p {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.7;
}

/* ===== DOWNLOADS ===== */
.downloads {
  background: var(--surface-alt);
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  align-items: stretch;
}

.download-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.download-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.download-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.download-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--surface-dark);
  margin-bottom: 12px;
}

.download-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.download-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ===== SCROLL ANIMATIONS ===== */
.problem-card,
.feature-card,
.evidence-card,
.question-card,
.module-domain,
.pricing-card,
.about-value,
.product-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.2s ease;
}

.problem-card.visible,
.feature-card.visible,
.evidence-card.visible,
.question-card.visible,
.module-domain.visible,
.pricing-card.visible,
.about-value.visible,
.product-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .timeline-steps::before {
    display: none;
  }

  .timeline-step {
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
  }

  .timeline-dot {
    margin: 4px 0 0;
  }

  .evidence-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding: 120px 0 60px;
  }

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

  .problem-grid,
  .questions-grid,
  .modules-columns,
  .benefit-grid,
  .cost-items,
  .downloads-grid,
  .ai-grid {
    grid-template-columns: 1fr;
  }

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

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

  .modules-grid-full {
    grid-template-columns: 1fr;
  }

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

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

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

  .about-values {
    grid-template-columns: 1fr;
  }

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

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

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

  .cta-actions {
    flex-direction: column;
  }
}
