/* ============================================
   KOMPAS4 — Components
   Buttons, cards, CTAs, lists, stats, badges
   ============================================ */

/* ─── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 0.75rem 1.625rem;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--r-lg);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base),
              box-shadow var(--t-base), transform var(--t-fast);
  -webkit-user-select: none;
  user-select: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Primary */
.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}
.btn-primary:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
  color: var(--white);
}

/* Secondary */
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

/* Secondary Dark (on light backgrounds) */
.btn-secondary-dark {
  background: transparent;
  color: var(--blue-600);
  border-color: var(--blue-600);
}
.btn-secondary-dark:hover {
  background: var(--blue-50);
  color: var(--blue-700);
  border-color: var(--blue-700);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border-color: transparent;
  padding-left: var(--s2);
  padding-right: var(--s2);
}
.btn-ghost:hover {
  color: var(--white);
  background: transparent;
}

/* White (for dark sections) */
.btn-white {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gray-100);
  color: var(--navy-900);
}

/* Sizes */
.btn-lg {
  padding: 1rem 2rem;
  font-size: var(--text-base);
  border-radius: var(--r-xl);
  gap: var(--s3);
}
.btn-lg svg { width: 18px; height: 18px; }

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: var(--text-xs);
  border-radius: var(--r-md);
}

/* ─── Icon Button ─────────────────────────── */
.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--r-md);
}

/* ─── Feature Cards ───────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: var(--s8);
  transition: box-shadow var(--t-base), border-color var(--t-base), transform var(--t-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
  transform: translateY(-2px);
}

.card--dark {
  background: var(--navy-800);
  border-color: rgba(255,255,255,0.06);
}

.card--dark:hover {
  border-color: rgba(37,99,235,0.3);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3), 0 0 0 1px rgba(37,99,235,0.15);
}

.card--feature {
  padding: var(--s8);
}

/* ─── Card Icon ───────────────────────────── */
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s6);
  flex-shrink: 0;
  transition: transform var(--t-spring);
}

.card:hover .card-icon {
  transform: scale(1.08);
}

.card-icon--blue {
  background: rgba(37,99,235,0.1);
  color: var(--blue-500);
  border: 1px solid rgba(37,99,235,0.15);
}

.card-icon--dark-blue {
  background: rgba(37,99,235,0.15);
  color: var(--blue-400);
  border: 1px solid rgba(37,99,235,0.2);
}

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

.card-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--s3);
  color: inherit;
}

.card-body {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--gray-600);
}

.card--dark .card-body {
  color: var(--gray-400);
}

/* ─── Check List ──────────────────────────── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  list-style: none;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.check-list li::before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: var(--r-full);
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6L5 9L10 3' stroke='%233B82F6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}

.check-list--dark li {
  color: var(--gray-300);
}

.check-list--dark li::before {
  background-color: rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.25);
}

/* ─── Split Section ──────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.split-section--reverse {
  direction: rtl;
}
.split-section--reverse > * {
  direction: ltr;
}

.split-content {}

.split-visual {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .split-section,
  .split-section--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* ─── CTA Section ─────────────────────────── */
.cta-section {
  background: var(--navy-900);
  color: var(--white);
  padding: var(--section-py) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    rgba(37, 99, 235, 0.12),
    transparent
  );
  pointer-events: none;
}

.cta-title {
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-5xl));
  font-weight: var(--weight-extrabold);
  margin-bottom: var(--s5);
  position: relative;
}

.cta-subtitle {
  font-size: var(--text-lg);
  color: var(--gray-400);
  margin-bottom: var(--s10);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
  flex-wrap: wrap;
  position: relative;
}

/* ─── Stats Row ───────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s1);
}

.stat-item {
  padding: var(--s8) var(--s6);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-5xl));
  font-weight: var(--weight-extrabold);
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--s2);
  display: block;
}

.stat-suffix {
  color: var(--blue-400);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--gray-400);
  font-weight: var(--weight-medium);
}

@media (max-width: 1024px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none; }
}

@media (max-width: 640px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none; }
}

/* ─── Feature List (Numbered/icon) ─────────── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--s6);
}

.feature-list-item {
  display: flex;
  gap: var(--s5);
  align-items: flex-start;
}

.feature-list-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--r-lg);
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
}

.feature-list-icon svg {
  width: 20px;
  height: 20px;
}

.feature-list-content {}

.feature-list-title {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--white);
  margin-bottom: var(--s2);
}

.section--light .feature-list-title,
.section--white .feature-list-title {
  color: var(--gray-900);
}

.feature-list-desc {
  font-size: var(--text-sm);
  color: var(--gray-400);
  line-height: var(--leading-relaxed);
}

.section--light .feature-list-desc,
.section--white .feature-list-desc {
  color: var(--gray-600);
}

/* ─── Tag / Badge ─────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 3px 10px;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  border-radius: var(--r-full);
  letter-spacing: 0.02em;
}

.badge--blue {
  background: var(--blue-100);
  color: var(--blue-700);
}

.badge--dark {
  background: rgba(37,99,235,0.12);
  color: var(--blue-400);
  border: 1px solid rgba(37,99,235,0.2);
}

.badge--success {
  background: rgba(16,185,129,0.1);
  color: var(--success);
}

/* ─── Deployment Options (2-col visual) ──── */
.deploy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
}

.deploy-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-xl);
  padding: var(--s8);
  transition: border-color var(--t-base);
}

.deploy-card:hover {
  border-color: rgba(37,99,235,0.3);
}

.deploy-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-lg);
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  margin-bottom: var(--s6);
}

.deploy-card-icon svg {
  width: 28px;
  height: 28px;
}

.deploy-card-title {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--white);
  margin-bottom: var(--s3);
}

.deploy-card-desc {
  font-size: var(--text-sm);
  color: var(--gray-400);
  line-height: var(--leading-relaxed);
}

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

/* ─── Integration Chips ───────────────────── */
.integration-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
}

.integration-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s3) var(--s5);
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--gray-300);
  transition: border-color var(--t-fast), background var(--t-fast);
}

.integration-chip:hover {
  border-color: rgba(37,99,235,0.35);
  background: rgba(37,99,235,0.06);
  color: var(--white);
}

.integration-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-full);
  background: var(--blue-500);
}

/* ─── Testimonial ─────────────────────────── */
.testimonial {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote-mark {
  color: var(--blue-600);
  font-size: 5rem;
  line-height: 0.5;
  margin-bottom: var(--s6);
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: clamp(var(--text-lg), 2.5vw, var(--text-2xl));
  line-height: var(--leading-relaxed);
  color: var(--gray-200);
  font-weight: var(--weight-medium);
  font-style: italic;
  margin-bottom: var(--s8);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  background: var(--navy-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--blue-400);
  flex-shrink: 0;
}

.testimonial-author-name {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--white);
}

.testimonial-author-company {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

/* ─── Steps / How It Works ────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s8);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(33.33% - 20px);
  width: calc(33.33%);
  height: 1px;
  background: linear-gradient(to right, rgba(37,99,235,0.3), rgba(37,99,235,0.3));
  border-top: 1px dashed rgba(37,99,235,0.3);
}

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

.step-number {
  width: 64px;
  height: 64px;
  border-radius: var(--r-full);
  background: rgba(37,99,235,0.1);
  border: 2px solid rgba(37,99,235,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: var(--weight-extrabold);
  color: var(--blue-400);
  margin: 0 auto var(--s6);
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--white);
  margin-bottom: var(--s3);
}

.step-desc {
  font-size: var(--text-sm);
  color: var(--gray-400);
  line-height: var(--leading-relaxed);
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
  }
  .steps::before { display: none; }
}

/* ─── Tag List ────────────────────────────── */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  list-style: none;
  padding: 0;
}

.tag-list li {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s2) var(--s4);
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  color: var(--gray-300);
}

.tag-list li::before {
  content: '→';
  color: var(--blue-400);
  font-size: var(--text-xs);
}

/* ─── Comparison Box ──────────────────────── */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
}

.comparison-col {
  border-radius: var(--r-xl);
  padding: var(--s8);
}

.comparison-col--old {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.comparison-col--new {
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.2);
}

.comparison-col-header {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-bottom: var(--s6);
  padding-bottom: var(--s4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.comparison-col--old .comparison-col-header { color: var(--gray-500); }
.comparison-col--new .comparison-col-header { color: var(--blue-400); }

.comparison-items {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: var(--text-sm);
  color: var(--gray-400);
}

.comparison-item::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: var(--r-full);
  display: flex;
  flex-shrink: 0;
}

.comparison-col--old .comparison-item::before {
  background: rgba(239,68,68,0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 2L8 8M8 2L2 8' stroke='%23EF4444' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.comparison-col--new .comparison-item::before {
  background: rgba(16,185,129,0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M1.5 5L4 7.5L8.5 2.5' stroke='%2310B981' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

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

/* ─── Certification Trust Bar ──────────────── */
.cert-bar {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 14px 0;
}
.cert-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s6);
  flex-wrap: wrap;
}
.cert-bar__label {
  font-size: var(--text-xs);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: var(--weight-semibold);
}
.cert-bar__badges {
  display: flex;
  align-items: center;
  gap: var(--s5);
  flex-wrap: wrap;
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: var(--r-full);
  padding: 5px 14px;
  font-size: 12px;
  font-weight: var(--weight-medium);
  color: var(--blue-300);
  white-space: nowrap;
}
.cert-badge svg {
  flex-shrink: 0;
}

/* ─── Footer Certifications ────────────────── */
.footer-certs {
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
  justify-content: center;
  margin: var(--s3) 0 0;
  font-size: 11px;
  color: var(--gray-600);
}
.footer-cert-sep { color: var(--gray-700); }

/* ─── App Chaos Section ───────────────────────────── */
.app-chaos-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--s6);
  align-items: start;
  margin-top: var(--s10);
}

.app-chaos-label {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--s4);
}
.app-chaos-label--bad  { color: #EF4444; }
.app-chaos-label--good { color: #22C55E; }

.app-chaos-center-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: var(--s6);
  margin-bottom: var(--s5);
}

.app-chaos-core {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-align: center;
  padding: var(--s3) var(--s5);
  border-radius: var(--r-md);
  margin-bottom: var(--s4);
}
.app-chaos-core--simple {
  background: rgba(255,255,255,0.06);
  color: var(--gray-400);
  border: 1px dashed rgba(255,255,255,0.15);
}
.app-chaos-core--kompas {
  background: var(--blue-500);
  color: var(--white);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
}

.app-chaos-apps {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  justify-content: center;
}

.app-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--r-full);
}
.app-pill--dim {
  background: rgba(255,255,255,0.05);
  color: var(--gray-500);
  border: 1px solid rgba(255,255,255,0.08);
}
.app-pill--bright {
  background: rgba(37,99,235,0.15);
  color: var(--blue-300);
  border: 1px solid rgba(37,99,235,0.25);
}
.app-cost {
  color: #EF4444;
  font-weight: var(--weight-semibold);
}

.app-chaos-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  margin-bottom: var(--s5);
}
.app-chaos-point {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  font-size: var(--text-sm);
  color: var(--gray-400);
  line-height: 1.5;
}

.app-chaos-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--r-lg);
  padding: var(--s4) var(--s5);
  text-align: center;
}
.app-chaos-stat-num {
  font-size: 40px;
  font-weight: var(--weight-extrabold);
  color: #EF4444;
  line-height: 1;
}
.app-chaos-stat-label {
  font-size: var(--text-xs);
  color: var(--gray-500);
  margin-top: var(--s1);
}

.app-chaos-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.app-chaos-callout {
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: var(--r-lg);
  padding: var(--s5) var(--s6);
}
.app-chaos-callout strong {
  display: block;
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--white);
  margin-bottom: var(--s3);
}
.app-chaos-callout p {
  font-size: var(--text-sm);
  color: var(--gray-400);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .app-chaos-layout {
    grid-template-columns: 1fr;
  }
  .app-chaos-divider {
    padding-top: 0;
    transform: rotate(90deg);
  }
}

/* ── Grid utilities ─────────────────────────── */
.grid--2, .grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s6);
}
.grid--3, .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}
@media (max-width: 900px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid--2,
  .grid--3 { grid-template-columns: 1fr; }
}

/* ── Feature cards ──────────────────────────── */
.feature-card {
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl);
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(96,165,250,0.25);
  transform: translateY(-2px);
}
.feature-card--light {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.feature-card--light:hover {
  border-color: rgba(37,99,235,0.18);
  box-shadow: 0 4px 16px rgba(37,99,235,0.08);
  transform: translateY(-2px);
}
.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(37,99,235,0.12);
}
.feature-card-title {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--white);
  line-height: 1.4;
  margin: 0;
}
.feature-card--light .feature-card-title {
  color: var(--navy-900);
}
.feature-card-body {
  font-size: var(--text-sm);
  color: var(--gray-400);
  line-height: 1.6;
  margin: 0;
}
.feature-card--light .feature-card-body {
  color: var(--gray-600);
}
