:root {
  --bg: #ffffff;
  --fg: #1a1a1a;
  --muted: #666666;
  --border: rgba(17, 24, 39, 0.12);
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 14px;
  --primary: #f37321;
  --primary-hover: #e56716;
  --primary-light: #f69658;
  --secondary: #c55512;
  --secondary-dark: #a2440c;
  --ring: rgba(243, 115, 33, 0.35);
  --surface: #f7f7f8;
  --surface-2: #f2f4f7;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.5;
  padding-top: 72px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--fg);
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 100;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
  transition: box-shadow 200ms ease, background-color 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border: 1px solid rgba(243, 115, 33, 0.28);
  box-shadow: 0 14px 28px rgba(243, 115, 33, 0.22);
  display: block;
  flex: 0 0 auto;
}

.brand-text {
  font-weight: 750;
  letter-spacing: -0.02em;
  font-size: 18px;
  color: var(--primary);
}

.brand-text span {
  color: var(--primary);
}

.nav {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 650;
}

.nav-toggle:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-link {
  padding: 10px 10px;
  border-radius: 12px;
  color: rgba(75, 85, 99, 1);
  font-weight: 600;
}

.nav-link:hover {
  background: rgba(243, 244, 246, 0.9);
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 650;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(243, 115, 33, 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(243, 115, 33, 0.26);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 86, 166, 0.18);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(0, 86, 166, 0.22);
}

.btn-outline {
  border: 2px solid var(--secondary);
  color: var(--secondary);
  background: transparent;
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(0, 0, 0, 0.8);
}

.btn-ghost:hover {
  background: #fff;
  border-color: rgba(17, 24, 39, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 36px;
  background: #ffffff;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}

.hero-bg {
  display: none;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
}

.hero-copy {
  padding: 16px 0;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(243, 115, 33, 0.08);
  border: 1px solid rgba(243, 115, 33, 0.2);
  color: rgba(17, 24, 39, 0.85);
  font-weight: 700;
  font-size: 13px;
}

.hero-title {
  margin: 16px 0 10px;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 850;
  color: rgba(17, 24, 39, 1);
}

.hero-title-accent {
  display: inline;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0;
  max-width: 70ch;
  color: rgba(107, 114, 128, 1);
  font-size: 18px;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.stats-row {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  padding: 0 18px;
  display: grid;
  gap: 4px;
}

.stat-value {
  font-size: 28px;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: rgba(17, 24, 39, 1);
}

.stat-accent {
  color: var(--primary);
}

.stat-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(156, 163, 175, 1);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(229, 231, 235, 1);
  flex: 0 0 auto;
}

.chip-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(229, 231, 235, 1);
  background: rgba(249, 250, 251, 0.7);
  color: rgba(75, 85, 99, 1);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(243, 115, 33, 0.55);
  flex: 0 0 auto;
}

.hero-visual {
  display: flex;
  justify-content: center;
  max-width: 980px;
  margin: 0 auto;
}

.visual-card {
  width: 100%;
  border-radius: 28px;
  border: 2px solid rgba(229, 231, 235, 1);
  background: linear-gradient(180deg, rgba(249, 250, 251, 0.9) 0%, rgba(255, 255, 255, 1) 100%);
  box-shadow: 0 30px 60px rgba(17, 24, 39, 0.12);
  overflow: hidden;
}

.visual-top {
  padding: 18px 18px 14px;
  background: linear-gradient(135deg, rgba(243, 115, 33, 0.12) 0%, rgba(0, 86, 166, 0.1) 100%);
  border-bottom: 1px solid rgba(229, 231, 235, 1);
}

.visual-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(229, 231, 235, 1);
  font-size: 12px;
  font-weight: 800;
  color: rgba(75, 85, 99, 1);
}

.visual-title {
  margin-top: 10px;
  font-weight: 850;
  letter-spacing: -0.02em;
  font-size: 18px;
  color: rgba(17, 24, 39, 1);
}

.visual-grid {
  padding: 16px 18px 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.visual-item {
  border-radius: 20px;
  border: 1px solid rgba(229, 231, 235, 1);
  background: rgba(255, 255, 255, 0.85);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.visual-icon {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: rgba(243, 115, 33, 0.12);
  border: 1px solid rgba(243, 115, 33, 0.25);
  color: rgba(243, 115, 33, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: 0 0 auto;
}

.visual-icon-secondary {
  background: rgba(0, 86, 166, 0.1);
  border-color: rgba(0, 86, 166, 0.22);
  color: rgba(0, 86, 166, 1);
}

.visual-item-title {
  font-weight: 850;
  letter-spacing: -0.01em;
  color: rgba(17, 24, 39, 1);
}

.visual-item-desc {
  margin-top: 2px;
  font-size: 13px;
  color: rgba(107, 114, 128, 1);
}

.visual-foot {
  padding: 12px 18px 16px;
  border-top: 1px solid rgba(229, 231, 235, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dot {
  width: 4px;
  height: 4px;
  background: rgba(156, 163, 175, 1);
  border-radius: 999px;
}

.section {
  padding: 66px 0;
}

.section-muted {
  background: rgba(249, 250, 251, 0.7);
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  text-align: center;
  justify-items: center;
}

.section-head h2 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 80ch;
}

.section-spacer {
  height: 18px;
}

.subhead {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.grid {
  display: grid;
  gap: 14px;
}

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

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

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

.card {
  border: 2px solid rgba(229, 231, 235, 1);
  background: rgba(255, 255, 255, 1);
  border-radius: 24px;
  padding: 18px 18px 16px;
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.06);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.card:hover {
  border-color: rgba(243, 115, 33, 0.7);
  box-shadow: 0 26px 50px rgba(17, 24, 39, 0.1);
  transform: translateY(-1px);
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.card h3 {
  margin: 0 0 8px;
  letter-spacing: -0.015em;
}

.card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.mini-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(0, 0, 0, 0.78);
}

.mini-list li {
  margin: 6px 0;
}

.logo-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.logo-chip {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  color: rgba(0, 0, 0, 0.7);
}

.tool-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
}

.tool-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 1);
  background: rgba(249, 250, 251, 0.9);
  height: 168px;
}

.tool-media-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(243, 115, 33, 0.18) 0%, rgba(246, 150, 88, 0.12) 35%, rgba(0, 86, 166, 0.14) 100%);
}

.tool-media-icon {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(229, 231, 235, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: rgba(17, 24, 39, 0.85);
  box-shadow: 0 18px 30px rgba(17, 24, 39, 0.08);
}

.tool-body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.tool-title {
  margin: 0;
  font-size: 19px;
  font-weight: 850;
  letter-spacing: -0.01em;
  color: rgba(17, 24, 39, 1);
}

.tool-desc {
  margin: 0;
  color: rgba(107, 114, 128, 1);
  font-size: 14px;
  line-height: 1.6;
}

.tool-body-text {
  flex: 1 1 auto;
}

.tool-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(209, 213, 219, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  color: rgba(107, 114, 128, 1);
  flex: 0 0 auto;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.tool-card:hover .tool-arrow {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 750;
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 10px 18px rgba(243, 115, 33, 0.25);
}

.cta-bar {
  margin-top: 18px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, rgba(243, 115, 33, 0.12) 0%, rgba(0, 86, 166, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 16px;
  flex-wrap: wrap;
}

.cta-bar-title {
  font-weight: 850;
  letter-spacing: -0.01em;
}

.cta-bar-text {
  color: rgba(0, 0, 0, 0.7);
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

details.legal {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

details.legal summary {
  cursor: pointer;
  padding: 14px 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  list-style: none;
}

details.legal summary::-webkit-details-marker {
  display: none;
}

.legal-body {
  padding: 0 14px 14px;
  color: rgba(0, 0, 0, 0.78);
  max-height: 560px;
  overflow: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-body h2,
.legal-body h3,
.legal-body h4 {
  margin: 14px 0 8px;
}

.legal-body p,
.legal-body li {
  font-size: 14px;
}

.legal-body ul,
.legal-body ol {
  padding-left: 18px;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  text-align: left;
  padding: 14px 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-btn:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.03);
  transition: transform 160ms ease;
  flex: 0 0 auto;
}

.faq-item[data-open="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-panel {
  padding: 0 14px 14px;
  color: rgba(0, 0, 0, 0.75);
  display: none;
}

.faq-item[data-open="true"] .faq-panel {
  display: block;
}

.form {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  background: rgba(255, 255, 255, 0.9);
  padding: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
}

.field {
  display: grid;
  gap: 8px;
}

label {
  font-weight: 750;
  letter-spacing: -0.01em;
  font-size: 13px;
}

input,
textarea {
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, 0.16);
  padding: 12px 12px;
  font: inherit;
  background: #fff;
}

input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.form-actions {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.form-note {
  color: rgba(0, 0, 0, 0.7);
  font-size: 13px;
}

.form-result {
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.75);
  font-weight: 650;
}

.link {
  color: var(--secondary);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

.link:hover {
  color: var(--secondary-dark);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 30px 0;
  background: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.brand-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-tagline {
  color: rgba(0, 0, 0, 0.7);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-content: start;
}

.footer-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  color: rgba(0, 0, 0, 0.7);
}

.footer-copy {
  font-size: 13px;
}

@media (max-width: 980px) {
  .hero-wrap {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-cta {
    justify-content: center;
  }
  .stats-row {
    justify-content: center;
  }
  .stat-divider {
    display: none;
  }
  .visual-grid {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-meta {
    justify-items: start;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-panel {
    display: none;
    position: absolute;
    right: 20px;
    top: 68px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(17, 24, 39, 0.14);
    border-radius: 16px;
    padding: 12px;
    width: min(360px, calc(100vw - 40px));
    box-shadow: var(--shadow);
  }
  .nav-panel[data-open="true"] {
    display: flex;
  }
  .nav-actions {
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
  }
  .btn {
    width: 100%;
  }
  .hero-title {
    font-size: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn {
    transition: none;
  }
}

/* ================================================================
   VISUAL ENHANCEMENTS
   ================================================================ */

/* Hero — gradient blob background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 0% 20%, rgba(243, 115, 33, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 100% 80%, rgba(0, 86, 166, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 110%, rgba(243, 115, 33, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-wrap {
  position: relative;
  z-index: 1;
}

/* Hero dashboard screenshot inside visual card */
.visual-screenshot {
  padding: 0 16px 14px;
}
.visual-screenshot img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(229, 231, 235, 1);
  display: block;
}

/* Section heading accent bar */
.section-head--accent::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
  margin: 0 auto 14px;
}

/* Trust strip — centered chips with dot */
.logo-row {
  justify-content: center;
}
.logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.logo-chip::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
  opacity: 0.55;
  flex: 0 0 auto;
}

/* Card icon badge */
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(243, 115, 33, 0.08);
  border: 1px solid rgba(243, 115, 33, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--primary);
  flex-shrink: 0;
}
.card-icon svg {
  display: block;
}

/* Compliance badge cards */
.compliance-card {
  text-align: center;
  padding: 32px 20px 24px;
}
.compliance-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(243, 115, 33, 0.08);
  border: 1px solid rgba(243, 115, 33, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
}
.compliance-icon svg {
  display: block;
}
.compliance-title {
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: rgba(17, 24, 39, 1);
  margin-bottom: 8px;
}

/* Options cards with image header */
.option-card {
  padding: 0;
  overflow: hidden;
}
.option-media {
  height: 200px;
  overflow: hidden;
}
.option-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.option-card:hover .option-media img {
  transform: scale(1.04);
}
.option-body {
  padding: 20px 20px 18px;
}

/* FAQ two-column layout + open state styles */
.faq {
  grid-template-columns: repeat(2, 1fr);
}
.faq-item[data-open="true"] {
  border-left: 3px solid var(--primary);
}
.faq-item[data-open="true"] .faq-icon {
  transform: none;
  background: rgba(243, 115, 33, 0.1);
  border-color: rgba(243, 115, 33, 0.3);
  color: var(--primary);
}

/* CTA bar — dark dramatic style */
.cta-bar {
  background: linear-gradient(135deg, #0f172a 0%, #1a2d4a 50%, #0f172a 100%);
  border: none;
  padding: 32px;
}
.cta-bar-title {
  color: #fff;
  font-size: 20px;
}
.cta-bar-text {
  color: rgba(255, 255, 255, 0.65);
}

/* Contact two-column layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-side-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
}
.contact-info {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(243, 115, 33, 0.08);
  border: 1px solid rgba(243, 115, 33, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-info-icon svg {
  display: block;
}
.contact-info-label {
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(107, 114, 128, 1);
  margin-bottom: 4px;
}
.contact-info-item > div {
  font-size: 14px;
  color: rgba(17, 24, 39, 0.85);
}

/* Dark footer */
.site-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-top: none;
  color: rgba(255, 255, 255, 0.8);
  padding: 0;
}
.footer-inner {
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  padding: 52px 0 40px;
  align-items: start;
}
.site-footer .brand-text {
  color: rgba(255, 255, 255, 0.92);
}
.site-footer .brand-mark {
  border-color: rgba(255, 255, 255, 0.12);
}
.footer-tagline {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 14px;
  margin-top: 8px;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 650;
  margin-top: 14px;
  text-decoration: none;
  transition: color 160ms ease;
}
.footer-social:hover {
  color: var(--primary);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 4px;
}
.footer-link {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  transition: color 160ms ease;
  text-decoration: none;
}
.footer-link:hover {
  color: #fff;
}
.footer-links,
.footer-meta {
  display: none;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
}
.site-footer .footer-copy {
  color: rgba(255, 255, 255, 0.32) !important;
  font-size: 13px;
}
.site-footer .link {
  color: rgba(255, 255, 255, 0.75);
}
.site-footer .link:hover {
  color: #fff;
}

/* Responsive overrides for new components */
@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-side-img {
    height: 200px;
  }
  .faq {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
}

@media (max-width: 820px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .option-media {
    height: 160px;
  }
}

/* ================================================================
   CARD TOP-ACCENT + SECURITY SECTION DARK TREATMENT
   ================================================================ */

/* Card top accent border on hover */
.card {
  border-top-width: 3px;
  border-top-color: transparent;
}
.card:hover {
  border-top-color: var(--primary);
  border-color: rgba(243, 115, 33, 0.4);
}

/* Security section — dark navy */
#security.section {
  background: linear-gradient(160deg, #0c1628 0%, #0f1f3d 100%);
}
#security .section-head h2 {
  color: #fff;
}
#security .section-head p {
  color: rgba(255, 255, 255, 0.55);
}
#security .card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}
#security .card:hover {
  border-color: var(--primary);
  border-top-color: var(--primary);
}
#security .compliance-icon {
  color: var(--primary-light);
  background: rgba(243, 115, 33, 0.15);
  border-color: rgba(243, 115, 33, 0.25);
}
#security .compliance-title {
  color: #fff;
}
#security .tool-desc {
  color: rgba(255, 255, 255, 0.55);
}
#security details.legal {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}
#security details.legal summary {
  color: rgba(255, 255, 255, 0.85);
}
#security .legal-body {
  color: rgba(255, 255, 255, 0.65);
  border-top-color: rgba(255, 255, 255, 0.1);
}
#security .link {
  color: var(--primary-light);
}
#security .link:hover {
  color: #fff;
}

/* ================================================================
   COMPLETE SECTION REDESIGN — NEW LAYOUTS
   ================================================================ */

/* ── HERO: centered layout, wide 4-col workflow card ── */

.hero {
  padding: 80px 0 48px;
  min-height: auto;
  align-items: flex-start;
}

.hero > .container {
  width: 100%;
}

.hero::before {
  background:
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(243, 115, 33, 0.11) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 15% 100%, rgba(0, 86, 166, 0.06) 0%, transparent 55%) !important;
}

.hero-center {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 44px;
}

.hero-title {
  font-size: clamp(44px, 6.5vw, 72px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
  line-height: 1.08 !important;
  margin: 18px 0 14px !important;
}

.hero-cta {
  margin-top: 22px;
  justify-content: center;
}

.hero-visual {
  max-width: 980px;
  margin: 0 auto;
  justify-content: stretch;
}

/* 4-column horizontal workflow grid */
.visual-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
  padding: 0 !important;
}

.visual-item {
  border-radius: 0 !important;
  border: none !important;
  border-right: 1px solid rgba(229, 231, 235, 1) !important;
  background: transparent !important;
  padding: 20px 20px !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.visual-item--last {
  border-right: none !important;
}

/* Visual footer: stats row + links stacked */
.visual-foot {
  display: block !important;
  padding: 0 !important;
}

.visual-foot-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 16px 18px;
  border-top: 1px solid rgba(229, 231, 235, 1);
  border-bottom: 1px solid rgba(229, 231, 235, 1);
}

.visual-foot-links {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  flex-wrap: wrap;
}

/* Chip row below the card */
.hero > .container > .chip-row {
  margin-top: 28px;
  justify-content: center;
}

@media (max-width: 820px) {
  .hero {
    padding: 64px 0 36px;
  }
  .hero-center {
    max-width: 100%;
    padding-bottom: 32px;
  }
  .visual-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .visual-item {
    border-right: 1px solid rgba(229, 231, 235, 1) !important;
    border-bottom: 1px solid rgba(229, 231, 235, 1) !important;
  }
  .visual-item:nth-child(2n) {
    border-right: none !important;
  }
  .visual-item--last {
    border-bottom: none !important;
  }
}

@media (max-width: 480px) {
  .visual-grid {
    grid-template-columns: 1fr !important;
  }
  .visual-item {
    border-right: none !important;
  }
}

/* ── FEATURES: Vertical tab panel ── */

.feature-tabs {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  border: 1px solid rgba(229, 231, 235, 1);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 32px rgba(17, 24, 39, 0.06);
}

.feature-tab-list {
  border-right: 1px solid rgba(229, 231, 235, 1);
  background: var(--surface);
  display: flex;
  flex-direction: column;
}

.ftab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border: none;
  border-left: 3px solid transparent;
  background: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: rgba(75, 85, 99, 1);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
  font-family: inherit;
  line-height: 1.3;
}

.ftab:hover:not(.active) {
  background: rgba(243, 115, 33, 0.04);
  color: rgba(17, 24, 39, 1);
}

.ftab.active {
  background: #fff;
  border-left-color: var(--primary);
  color: var(--primary);
}

.ftab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(229, 231, 235, 0.7);
  flex-shrink: 0;
  transition: background 160ms ease;
}

.ftab.active .ftab-icon {
  background: rgba(243, 115, 33, 0.12);
}

.feature-tab-panels {
  padding: 52px 48px;
  min-height: 360px;
}

.ftab-panel {
  display: none;
}

.ftab-panel.active {
  display: block;
}

.ftab-panel-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(243, 115, 33, 0.09);
  border: 1px solid rgba(243, 115, 33, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
}

.ftab-kicker {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.ftab-panel h3 {
  margin: 0 0 14px;
  font-size: 26px;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: rgba(17, 24, 39, 1);
}

.ftab-panel p {
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 820px) {
  .feature-tabs {
    grid-template-columns: 1fr;
  }
  .feature-tab-list {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid rgba(229, 231, 235, 1);
    -webkit-overflow-scrolling: touch;
  }
  .ftab {
    border-left: none;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 14px 16px;
  }
  .ftab.active {
    border-left-color: transparent;
    border-bottom-color: var(--primary);
    background: rgba(243, 115, 33, 0.04);
  }
  .feature-tab-panels {
    padding: 28px 24px;
    min-height: auto;
  }
}

/* ── ABOUT: Split sticky-head + fn-rows + numbered impact ── */

.section-eyebrow {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.about-split {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 72px;
}

.about-split-head {
  position: sticky;
  top: 96px;
}

.about-split-head h2 {
  font-size: 32px;
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0 0 14px;
}

.about-split-head p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* fn-row: horizontal function list item */
.fn-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  align-items: flex-start;
}

.fn-row:first-child {
  border-top: 1px solid rgba(229, 231, 235, 0.8);
}

.fn-row-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(243, 115, 33, 0.08);
  border: 1px solid rgba(243, 115, 33, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.fn-row-title {
  font-weight: 700;
  font-size: 15px;
  color: rgba(17, 24, 39, 1);
  margin-bottom: 4px;
}

.fn-row-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* Impact section header */
.impact-section-head {
  text-align: center;
  margin-bottom: 22px;
}

.impact-section-title {
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

.impact-section-head p {
  color: var(--muted);
  margin: 0;
}

/* Numbered impact items (replace .card in impact grids) */
.impact-grid {
  margin-top: 14px;
}

.impact-item {
  padding: 28px 24px 24px;
  border-top: 3px solid var(--primary);
  background: #fff;
  border-radius: 0 0 16px 16px;
  border-left: 1px solid rgba(229, 231, 235, 0.8);
  border-right: 1px solid rgba(229, 231, 235, 0.8);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.impact-num {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.impact-icon {
  color: var(--primary);
  margin-bottom: 14px;
}

.impact-title {
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -0.01em;
  color: rgba(17, 24, 39, 1);
  margin-bottom: 8px;
}

.impact-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 820px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }
  .about-split-head {
    position: static;
  }
}

/* ── CONTACT: Dark left / white right split ── */

/* Remove old contact-layout */
.contact-layout {
  display: none;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(17, 24, 39, 0.14);
}

.contact-dark {
  background: linear-gradient(150deg, #1c1c1e 0%, #2e1100 100%);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-eyebrow {
  color: rgba(255, 255, 255, 0.42) !important;
}

.contact-dark-title {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 10px 0 18px;
}

.contact-dark-sub {
  color: rgba(255, 255, 255, 0.48);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 36px;
}

/* Override contact-info inside dark panel */
.contact-dark .contact-info {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  gap: 20px;
}

.contact-dark .contact-info-label {
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.contact-dark .contact-info-item > div {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.contact-dark .contact-info-icon {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--primary-light);
}

.contact-dark .link {
  color: var(--primary-light);
  text-decoration-color: rgba(246, 150, 88, 0.4);
}

.contact-dark .link:hover {
  color: #fff;
}

.contact-light {
  background: #fff;
  padding: 56px 48px;
  display: flex;
  align-items: center;
}

.contact-light .form {
  width: 100%;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

/* Remove old contact section-head (title now lives in dark panel) */
#contact .section-head {
  display: none;
}

@media (max-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .contact-dark {
    padding: 40px 28px;
  }
  .contact-dark-title {
    font-size: 38px;
  }
  .contact-light {
    padding: 40px 28px;
    align-items: flex-start;
  }
}

/* ── FOOTER: Bold statement header ── */

.footer-statement {
  padding-top: 56px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-statement-brand {
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.footer-statement-tagline {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.36);
  font-weight: 400;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 28px 0 0;
}

/* Override footer-inner top padding */
.footer-inner {
  padding-top: 40px !important;
}

@media (max-width: 820px) {
  .footer-statement-brand {
    font-size: 32px;
  }
  .footer-statement-tagline {
    font-size: 14px;
  }
}

/* ================================================================
   PRODUCTIVITY SECTION — Orange gradient + white floating cards
   ================================================================ */

#impact.section {
  background: linear-gradient(160deg, #f05d00 0%, #f37321 45%, #e86010 100%);
  overflow: hidden;
  position: relative;
}

#impact.section::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  top: -160px;
  right: -80px;
  pointer-events: none;
}

#impact.section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  bottom: -80px;
  left: 60px;
  pointer-events: none;
}

#impact .section-eyebrow {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
}

#impact .section-head h2 {
  color: #fff;
}

#impact .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.pcard {
  background: #fff;
  border-radius: 20px;
  padding: 36px 30px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.pcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.22);
}

.pcard-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 52px;
  font-weight: 900;
  color: rgba(243, 115, 33, 0.10);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.pcard-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(243, 115, 33, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 22px;
}

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

.pcard-title {
  font-size: 19px;
  font-weight: 750;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.3;
}

.pcard-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

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

/* ================================================================
   FOOTER — Orange background theme
   ================================================================ */

.site-footer {
  background: linear-gradient(160deg, #e05500 0%, #f37321 50%, #d94f00 100%) !important;
  color: #fff !important;
}

.footer-statement-brand {
  color: #fff !important;
}

.footer-statement-tagline {
  color: rgba(255, 255, 255, 0.82) !important;
}

.footer-divider {
  background: rgba(255, 255, 255, 0.30) !important;
}

.site-footer .brand-text {
  color: #fff !important;
}

.site-footer .brand-mark {
  border-color: rgba(255, 255, 255, 0.35) !important;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.82) !important;
}

.footer-social {
  color: #fff !important;
}

.footer-social:hover {
  color: rgba(255, 255, 255, 0.75) !important;
}

.footer-col-title {
  color: rgba(255, 255, 255, 0.70) !important;
  letter-spacing: 0.12em;
}

.footer-link {
  color: #fff !important;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.75) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.22) !important;
  background: rgba(0, 0, 0, 0.15) !important;
}

.site-footer .footer-copy {
  color: rgba(255, 255, 255, 0.70) !important;
}

.site-footer .link {
  color: #fff !important;
}

.site-footer .link:hover {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* ================================================================
   HERO REDESIGN — Dark immersive hero with product mockup
   ================================================================ */

.hero {
  background: #070d1a !important;
  padding: 88px 0 0 !important;
  min-height: auto !important;
  align-items: flex-start !important;
  display: block !important;
}

.hero::before { content: none !important; }

.hero > .container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  position: relative;
  z-index: 1;
  gap: 0;
}

/* Ambient glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-orb--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(243,115,33,0.20) 0%, transparent 65%);
  top: -220px;
  left: -160px;
  filter: blur(64px);
}

.hero-orb--2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,86,166,0.16) 0%, transparent 65%);
  top: -160px;
  right: -160px;
  filter: blur(64px);
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(243,115,33,0.1);
  border: 1px solid rgba(243,115,33,0.28);
  color: rgba(246,150,88,1);
  font-size: 13px;
  font-weight: 650;
  margin-bottom: 30px;
  letter-spacing: 0.01em;
}

.hero-badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  flex-shrink: 0;
  position: relative;
}

.hero-badge-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  opacity: 0.45;
  animation: hero-pulse 2.2s ease infinite;
}

@keyframes hero-pulse {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50% { transform: scale(1.7); opacity: 0; }
}

/* Headline */
.hero-title {
  font-size: clamp(36px, 5.2vw, 64px) !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.04em !important;
  color: #fff !important;
  margin: 0 0 16px !important;
  max-width: 820px !important;
}

.hero-title-accent {
  background: linear-gradient(100deg, var(--primary) 0%, #ff9540 45%, var(--primary-light) 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  display: block !important;
}

.hero-subtitle {
  color: rgba(255,255,255,0.46) !important;
  font-size: 17px !important;
  line-height: 1.75 !important;
  max-width: 560px !important;
  margin: 0 auto 34px !important;
}

/* CTA row */
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 52px;
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.72);
  font-weight: 650;
  font-size: 15px;
  cursor: pointer;
  transition: all 160ms ease;
  text-decoration: none;
  font-family: inherit;
}

.btn-hero-ghost:hover {
  border-color: rgba(255,255,255,0.36);
  color: #fff;
  background: rgba(255,255,255,0.1);
}

/* Product mockup window */
.hero-mockup {
  width: 100%;
  max-width: 1020px;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.09);
  border-bottom: none;
  box-shadow:
    0 -12px 70px rgba(243,115,33,0.1),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  background: #0d1220;
}

/* Browser chrome bar */
.mockup-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #141b2d;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  min-height: 42px;
}

.chrome-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.chrome-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.chrome-dots span:nth-child(1) { background: #ff5f57; }
.chrome-dots span:nth-child(2) { background: #febc2e; }
.chrome-dots span:nth-child(3) { background: #28c840; }

.chrome-url {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-family: monospace;
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
}

.chrome-actions { flex-shrink: 0; }

.chrome-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.22);
  border-radius: 999px;
  padding: 3px 8px;
}

.chrome-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  display: block;
  flex-shrink: 0;
}

/* App body */
.mockup-body {
  display: flex;
  height: 340px;
}

/* Sidebar */
.mockup-sidebar {
  width: 160px;
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
  flex-shrink: 0;
  background: #0a1018;
}

.msb-brand {
  padding: 0 14px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 8px;
}

.msb-logo {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.01em;
}

.msb-nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 0 7px;
}

.msb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border-radius: 7px;
  font-size: 12px;
  color: rgba(255,255,255,0.36);
  user-select: none;
}

.msb-item--active {
  background: rgba(243,115,33,0.14);
  color: var(--primary-light);
}

/* Main content pane */
.mockup-main {
  flex: 1;
  padding: 16px 18px;
  overflow: hidden;
  background: #0f1623;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.mm-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mm-title {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 700;
}

.mm-count {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 999px;
  padding: 2px 7px;
}

.mm-new-btn {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(243,115,33,0.1);
  border: 1px solid rgba(243,115,33,0.22);
  border-radius: 7px;
  padding: 5px 11px;
  cursor: default;
  font-family: inherit;
}

/* Tool cards */
.mm-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.mm-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 9px;
  padding: 10px 11px;
}

.mm-card--featured {
  border-color: rgba(243,115,33,0.24);
  background: rgba(243,115,33,0.05);
}

.mm-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}

.mm-card-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mm-card-icon--orange { background: rgba(243,115,33,0.18); color: var(--primary-light); }
.mm-card-icon--blue   { background: rgba(0,86,166,0.2);    color: #60a5fa; }
.mm-card-icon--green  { background: rgba(34,197,94,0.15);  color: #4ade80; }

.mm-card-tag {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.27);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mm-card-name {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-bottom: 3px;
  line-height: 1.3;
}

.mm-card-meta {
  font-size: 10px;
  color: rgba(255,255,255,0.26);
  margin-bottom: 7px;
}

.mm-card-progress {
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 999px;
  overflow: hidden;
}

.mm-progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.mm-progress-bar--blue  { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.mm-progress-bar--green { background: linear-gradient(90deg, #22c55e, #4ade80); }

/* Pipeline progress bar */
.mm-workflow {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 9px;
  padding: 10px 14px;
  flex: 1;
}

.mm-workflow-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.22);
  margin-bottom: 12px;
}

.mm-steps {
  display: flex;
  align-items: center;
}

.mm-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.mm-step-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.mm-step--done .mm-step-dot {
  background: var(--primary);
  border-color: var(--primary);
}

.mm-step--active .mm-step-dot {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(243,115,33,0.24);
}

.mm-step-name {
  font-size: 9px;
  color: rgba(255,255,255,0.24);
  white-space: nowrap;
  font-weight: 600;
}

.mm-step--done .mm-step-name,
.mm-step--active .mm-step-name { color: rgba(255,255,255,0.65); }

.mm-step-line {
  flex: 1;
  height: 1.5px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 14px;
  align-self: center;
}

.mm-step-line--done { background: var(--primary); }

/* Stats strip below mockup */
.hero-stats {
  width: 100%;
  max-width: 1020px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 0 60px;
  flex-wrap: wrap;
  gap: 0;
}

.hstat {
  padding: 8px 30px;
  text-align: center;
}

.hstat-num {
  font-size: 19px;
  font-weight: 850;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.hstat-label {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  margin-top: 3px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hstat-sep {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* Mobile responsive hero */
@media (max-width: 820px) {
  .hero { padding-top: 60px !important; }
  .hero-badge { font-size: 12px; margin-bottom: 22px; }
  .hero-title { max-width: 100% !important; }
  .hero-actions { margin-bottom: 36px; }
  .mockup-sidebar { display: none; }
  .mm-cards { grid-template-columns: 1fr 1fr; }
  .mm-cards .mm-card:last-child { display: none; }
  .mockup-body { height: 280px; }
  .hstat { padding: 8px 14px; }
  .hstat-num { font-size: 16px; }
}

@media (max-width: 480px) {
  .hero-stats { padding-bottom: 40px; }
  .hstat-sep { display: none; }
  .hstat { flex: 0 0 50%; }
  .mm-cards { grid-template-columns: 1fr; }
  .mm-cards .mm-card:not(.mm-card--featured) { display: none; }
}

/* ================================================================
   TRUST STRIP REDESIGN — Stats row + animated marquee
   ================================================================ */

.trust-section {
  background: #fff;
  padding: 72px 0 0;
  border-top: 1px solid rgba(229, 231, 235, 0.4);
  overflow: hidden;
}

.trust-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 36px;
}

.trust-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.trust-stat {
  text-align: center;
  padding: 0 40px;
}

.trust-stat-num {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: rgba(17, 24, 39, 1);
  line-height: 1;
  margin-bottom: 5px;
}

.trust-stat-lbl {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.trust-stat-sep {
  width: 1px;
  height: 44px;
  background: rgba(229, 231, 235, 0.9);
  flex-shrink: 0;
}

/* Marquee ticker */
.trust-marquee-wrap {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  background: linear-gradient(135deg, #fff8f3 0%, #fef3e8 100%);
  border-top: 1px solid rgba(243, 115, 33, 0.12);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.trust-marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: trust-scroll 30s linear infinite;
}

.tm-chip {
  font-size: 14px;
  font-weight: 650;
  color: rgba(120, 70, 20, 0.65);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.tm-dot {
  color: var(--primary);
  font-size: 16px;
  opacity: 0.5;
  flex-shrink: 0;
}

@keyframes trust-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 640px) {
  .trust-stat { padding: 0 20px; }
  .trust-stat-num { font-size: 22px; }
  .trust-stat-sep { height: 32px; }
}

/* ================================================================
   ABOUT SECTION REDESIGN — Dark department grid + impact items
   ================================================================ */

.section-dark-about {
  background: #070d1a !important;
  padding: 96px 0 96px !important;
  position: relative;
}

.section-dark-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(243, 115, 33, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

/* Header */
.about-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.about-eyebrow {
  color: var(--primary-light) !important;
  opacity: 0.85;
}

.about-title {
  font-size: clamp(30px, 4.2vw, 52px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.035em !important;
  color: #fff !important;
  line-height: 1.1 !important;
  margin: 0 0 18px !important;
}

.about-title-accent {
  background: linear-gradient(100deg, var(--primary) 0%, #ff9540 60%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-subtitle {
  font-size: 16px !important;
  color: rgba(255, 255, 255, 0.42) !important;
  max-width: 480px !important;
  margin: 0 auto !important;
  line-height: 1.7 !important;
}

/* Department card grid */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 88px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.dept-card {
  background: rgba(10, 16, 32, 0.9);
  padding: 32px 28px 30px;
  transition: background 200ms ease, box-shadow 200ms ease;
  cursor: default;
  position: relative;
}

.dept-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity 220ms ease;
}

.dept-card:hover {
  background: rgba(243, 115, 33, 0.06);
}

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

.dept-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(243, 115, 33, 0.1);
  border: 1px solid rgba(243, 115, 33, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  margin-bottom: 18px;
  transition: background 200ms, border-color 200ms;
}

.dept-card:hover .dept-card-icon {
  background: rgba(243, 115, 33, 0.16);
  border-color: rgba(243, 115, 33, 0.32);
}

.dept-card-name {
  font-size: 16px;
  font-weight: 750;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.dept-card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
  margin: 0;
}

/* Impact sub-section inside dark about */
.impact-header {
  text-align: center;
  margin-bottom: 40px;
}

.impact-header-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 850;
  color: #fff;
  letter-spacing: -0.025em;
  margin: 8px 0 12px;
  line-height: 1.15;
}

.impact-header-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Fix grid layout — impact-grid needs display:grid */
.impact-grid {
  display: grid !important;
  gap: 16px !important;
  margin-top: 18px !important;
}

/* Dark-mode redesigned impact cards — watermark number + left accent bar */
.section-dark-about .impact-item {
  position: relative !important;
  overflow: hidden !important;
  background: rgba(255, 255, 255, 0.025) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-top: none !important;
  border-radius: 16px !important;
  padding: 36px 28px 30px 32px !important;
  transition: background 220ms ease, border-color 220ms ease !important;
}

/* Left accent bar */
.section-dark-about .impact-item::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 3px !important;
  height: 100% !important;
  background: linear-gradient(180deg, var(--primary) 0%, transparent 100%) !important;
  border-radius: 0 !important;
}

/* Large watermark number */
.section-dark-about .impact-item::after {
  content: attr(data-num) !important;
  position: absolute !important;
  top: -8px !important;
  right: 18px !important;
  font-size: 88px !important;
  font-weight: 900 !important;
  letter-spacing: -0.06em !important;
  color: rgba(243, 115, 33, 0.07) !important;
  line-height: 1 !important;
  pointer-events: none !important;
  font-family: inherit !important;
}

.section-dark-about .impact-item:hover {
  background: rgba(243, 115, 33, 0.04) !important;
  border-color: rgba(243, 115, 33, 0.18) !important;
}

.section-dark-about .impact-num {
  font-size: 10px !important;
  font-weight: 750 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--primary-light) !important;
  margin-bottom: 22px !important;
  display: block !important;
  opacity: 0.8 !important;
}

.section-dark-about .impact-icon {
  color: var(--primary-light) !important;
  margin-bottom: 16px !important;
}

.section-dark-about .impact-title {
  font-size: 17px !important;
  font-weight: 750 !important;
  color: #fff !important;
  margin-bottom: 10px !important;
  letter-spacing: -0.015em !important;
  line-height: 1.3 !important;
}

.section-dark-about .impact-desc {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.4) !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

/* Responsive */
@media (max-width: 900px) {
  .dept-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .dept-grid { grid-template-columns: 1fr; border-radius: 14px; }
  .dept-card { padding: 24px 20px; }
  .section-dark-about { padding: 64px 0 64px !important; }
  .about-header { margin-bottom: 40px; }
}

/* ================================================================
   FEATURES — Horizontal pill tabs + white card panel
   ================================================================ */

#features.section {
  background: linear-gradient(180deg, #fff8f3 0%, #ffffff 100%);
}

/* Override vertical tab grid → single column */
#features .feature-tabs {
  display: flex;
  flex-direction: column;
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  gap: 0;
}

/* Horizontal pill tab row */
#features .feature-tab-list {
  flex-direction: row;
  border-right: none;
  border-bottom: none;
  background: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

/* Pill tab buttons */
#features .ftab {
  border-left: none;
  border-radius: 100px;
  padding: 10px 22px;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(55, 65, 81, 1);
  background: #fff;
  border: 1.5px solid rgba(229, 231, 235, 1);
  transition: background 160ms, border-color 160ms, color 160ms, box-shadow 160ms;
}

#features .ftab:hover:not(.active) {
  background: rgba(243, 115, 33, 0.05);
  border-color: rgba(243, 115, 33, 0.4);
  color: var(--primary);
}

#features .ftab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  border-left: 1.5px solid var(--primary);
  box-shadow: 0 4px 16px rgba(243, 115, 33, 0.28);
}

#features .ftab-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(229, 231, 235, 0.6);
}

#features .ftab.active .ftab-icon {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* White card panel */
#features .feature-tab-panels {
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 1);
  border-radius: 24px;
  padding: 0;
  min-height: 340px;
  box-shadow: 0 4px 32px rgba(17, 24, 39, 0.07);
  overflow: hidden;
}

/* Active panel: 2-col layout — content left, visual right */
#features .ftab-panel.active {
  display: grid;
  grid-template-columns: 1fr 260px;
  grid-auto-rows: auto;
  position: relative;
}

/* Content elements stay in column 1 */
#features .ftab-panel.active > :not(.ftab-visual) {
  grid-column: 1;
}

/* Visual div occupies column 2, all rows */
#features .ftab-visual {
  grid-column: 2;
  grid-row: 1 / 20;
  background: linear-gradient(145deg, #fff3ea 0%, #fde8cc 55%, #fdf0e2 100%);
  border-left: 1px solid rgba(243, 115, 33, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
}

/* Spacing for each element in left column */
#features .ftab-panel-icon {
  padding: 44px 48px 0;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(243, 115, 33, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 44px 0 0 48px;
  padding: 0;
}

#features .ftab-panel-icon svg {
  width: 32px;
  height: 32px;
}

#features .ftab-kicker {
  padding: 18px 48px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

#features .ftab-panel h3 {
  padding: 10px 48px 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  margin: 0;
}

#features .ftab-panel p {
  padding: 12px 48px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

#features .ftab-panel .mini-list {
  padding: 16px 48px 48px;
}

/* Responsive — stack for mobile */
@media (max-width: 820px) {
  #features .ftab-panel.active {
    grid-template-columns: 1fr;
  }
  #features .ftab-panel.active::after { display: none; }
  #features .ftab-panel-icon { margin: 28px 0 0 24px; }
  #features .ftab-kicker { padding: 14px 24px 0; }
  #features .ftab-panel h3 { padding: 8px 24px 0; }
  #features .ftab-panel p { padding: 10px 24px 0; }
  #features .ftab-panel .mini-list { padding: 14px 24px 32px; }
}

/* ================================================================
   EXAMPLE AI TOOLS — 3-col orange/white cards
   ================================================================ */

#services.section {
  background: #fff;
}

#services .section-head { margin-bottom: 44px; }

/* Force 3-col on the grid */
#services .tools-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card reset & new design */
#services .tool-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 1);
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  transition: box-shadow 220ms ease, border-color 220ms ease, transform 220ms ease;
  cursor: default;
}

#services .tool-card:hover {
  box-shadow: 0 10px 36px rgba(243, 115, 33, 0.13);
  border-color: rgba(243, 115, 33, 0.35);
  transform: translateY(-2px);
}

/* Top band replaces old media */
#services .tool-media {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #fff5ee 0%, #fdebd8 100%);
  border: none;
  border-bottom: 1px solid rgba(243, 115, 33, 0.1);
  border-radius: 0;
  height: auto;
  min-height: unset;
}

/* Remove old pseudo overlay */
#services .tool-media-grad {
  display: none;
}

/* Orange square avatar with letter */
#services .tool-media-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: static;
  transform: none;
  left: auto;
  top: auto;
  bottom: auto;
}

/* Body */
#services .tool-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

#services .tool-body-text { flex: 1; }

#services .tool-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.3;
}

#services .tool-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Remove the chevron arrow */
#services .tool-arrow { display: none; }

/* Responsive: 2-col tablet, 1-col mobile */
@media (max-width: 900px) {
  #services .tools-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  #services .tools-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   FEATURES — UI Mockup Visuals inside each panel
   ================================================================ */

/* Floating white card mockup */
.ftab-vis-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 56px rgba(17, 24, 39, 0.18);
  width: 100%;
  max-width: 210px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.8);
}

/* Mac-style window chrome dots */
.ftab-vis-bar {
  background: rgba(249, 250, 251, 1);
  border-bottom: 1px solid rgba(229, 231, 235, 1);
  padding: 10px 12px;
  display: flex;
  gap: 5px;
  align-items: center;
}
.ftab-vis-bar span {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.ftab-vis-bar span:nth-child(1) { background: #ff5f57; }
.ftab-vis-bar span:nth-child(2) { background: #febc2e; }
.ftab-vis-bar span:nth-child(3) { background: #28c840; }

/* Generic content rows */
.ftab-vis-rows {
  padding: 12px 14px 4px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ftab-vis-r {
  height: 8px;
  border-radius: 4px;
  background: rgba(229, 231, 235, 1);
}
.fvr--wide  { width: 100%; }
.fvr--med   { width: 72%; }
.fvr--narrow{ width: 50%; }
.fvr--accent { background: rgba(243, 115, 33, 0.22); }

/* CTA bar at bottom */
.ftab-vis-cta {
  padding: 10px 14px 14px;
}
.ftab-vis-btn {
  height: 26px;
  border-radius: 6px;
  background: var(--primary);
  width: 80px;
  opacity: 0.9;
}

/* ── Studio: 2×2 tile grid ── */
.ftab-vis-grid4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 12px 14px 8px;
}
.ftab-vis-tile {
  height: 36px;
  border-radius: 8px;
}
.fvt--a { background: rgba(243, 115, 33, 0.15); }
.fvt--b { background: rgba(0, 86, 166, 0.1); }
.fvt--c { background: rgba(229, 231, 235, 1); }
.fvt--d { background: rgba(243, 115, 33, 0.08); }

/* ── Workflows: pipeline nodes ── */
.ftab-vis-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 14px 8px;
  gap: 0;
}
.ftab-vis-node {
  width: 40px; height: 24px;
  border-radius: 6px;
  background: rgba(229, 231, 235, 1);
  border: 1.5px solid rgba(209, 213, 219, 1);
}
.fvn--active { background: var(--primary); border-color: var(--primary); }
.fvn--ghost  { background: rgba(243, 115, 33, 0.12); border-color: rgba(243, 115, 33, 0.3); border-style: dashed; }
.ftab-vis-line {
  width: 2px; height: 14px;
  background: rgba(209, 213, 219, 1);
}

/* ── Data: table mockup ── */
.ftab-vis-table {
  padding: 12px 14px 8px;
}
.ftab-vis-thead {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 4px;
  margin-bottom: 6px;
}
.ftab-vis-th {
  height: 8px;
  border-radius: 3px;
  background: rgba(209, 213, 219, 1);
}
.ftab-vis-trow {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 4px;
  margin-bottom: 5px;
}
.ftab-vis-trow > div {
  height: 10px;
  border-radius: 3px;
  background: rgba(229, 231, 235, 1);
}
.fvtr--hl > div { background: rgba(243, 115, 33, 0.18); }

/* ── Runtime: form inputs ── */
.ftab-vis-form {
  padding: 12px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ftab-vis-label {
  height: 6px;
  width: 55%;
  border-radius: 3px;
  background: rgba(209, 213, 219, 1);
  margin-bottom: 2px;
}
.ftab-vis-input {
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid rgba(229, 231, 235, 1);
  background: rgba(249, 250, 251, 1);
  margin-bottom: 4px;
}
.fvi--accent {
  border-color: rgba(243, 115, 33, 0.45);
  background: rgba(255, 248, 243, 1);
}

/* ── Improve: bar chart ── */
.ftab-vis-chart {
  padding: 12px 14px 0;
}
.ftab-vis-bar-wrap {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 56px;
}
.ftab-vis-bar-col {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(229, 231, 235, 1);
}
.fvc--accent { background: var(--primary); opacity: 0.8; }

/* ── Enterprise: checklist ── */
.ftab-vis-checklist {
  padding: 12px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ftab-vis-chk {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ftab-vis-chk-icon {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}
.fvci--empty { background: rgba(229, 231, 235, 1); }
.ftab-vis-chk-row {
  height: 7px;
  border-radius: 3px;
  background: rgba(229, 231, 235, 1);
}
.fvcr--wide   { width: 100%; }
.fvcr--med    { width: 75%; }
.fvcr--narrow { width: 55%; }

/* Responsive — hide visual panel on mobile */
@media (max-width: 820px) {
  #features .ftab-visual { display: none; }
}

/* ================================================================
   EXAMPLE AI TOOLS — Horizontal scroll cards
   ================================================================ */

#services.section {
  background: #fff;
  overflow: hidden;
}

/* ── Tools scroll wrapper (position context for nav arrows) ── */
.tools-scroll-wrap {
  position: relative;
}

/* ── Tools horizontal scroll ── */
.tools-hscroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 12px 4px 28px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* hide scrollbar — nav arrows handle it */
}

.tools-hscroll::-webkit-scrollbar {
  display: none;
}

/* Nav arrow buttons */
.tools-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(229, 231, 235, 1);
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  transition: background 180ms, border-color 180ms, color 180ms, box-shadow 180ms;
}
.tools-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(243, 115, 33, 0.30);
}
.tools-nav-btn--prev { left: -22px; }
.tools-nav-btn--next { right: -22px; }
.tools-nav-btn:disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* ── Tool card ── */
.tcard {
  min-width: 290px;
  max-width: 290px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 0.9);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  transition: box-shadow 240ms ease, transform 240ms ease, border-color 240ms ease;
  cursor: pointer;
}

.tcard:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18), 0 0 0 1.5px rgba(243, 115, 33, 0.3);
  transform: translateY(-4px);
  border-color: rgba(243, 115, 33, 0.3);
}

/* Visual illustration area */
.tcard-visual {
  height: 168px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Subtle dot grid pattern */
.tcard-vis-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Decorative blurred circles */
.tcard-vis-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
}
.tcard-vis-circle--lg {
  width: 120px;
  height: 120px;
  top: -30px;
  right: -20px;
}
.tcard-vis-circle--sm {
  width: 80px;
  height: 80px;
  bottom: -20px;
  left: 10px;
}

/* Centered icon wrapper */
.tcard-vis-icon {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* Card body */
.tcard-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Category pill — matches screenshot orange-border style */
.tcard-cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid rgba(243, 115, 33, 0.45);
  background: rgba(243, 115, 33, 0.06);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.01em;
  width: fit-content;
}

.tcard-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.35;
}

.tcard-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* "Use Template →" CTA */
.tcard-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-top: 4px;
  transition: color 180ms;
}

.tcard:hover .tcard-cta {
  color: var(--primary);
}

.tcard-arrow {
  display: inline-block;
  transition: transform 180ms;
}

.tcard:hover .tcard-arrow {
  transform: translateX(4px);
}

#hero.hero {
  background: linear-gradient(180deg, #ffffff 0%, #fff6ef 100%) !important;
}

#hero.hero .hero-title {
  color: rgba(17, 24, 39, 1) !important;
}

#hero.hero .hero-subtitle {
  color: rgba(107, 114, 128, 1) !important;
}

#hero.hero .hero-orb--2 {
  background: radial-gradient(circle, rgba(243, 115, 33, 0.16) 0%, transparent 65%) !important;
}

#hero.hero .btn-hero-ghost {
  border-color: rgba(243, 115, 33, 0.28) !important;
  background: rgba(243, 115, 33, 0.06) !important;
  color: rgba(17, 24, 39, 0.85) !important;
}

#hero.hero .btn-hero-ghost:hover {
  border-color: rgba(243, 115, 33, 0.42) !important;
  color: rgba(17, 24, 39, 1) !important;
  background: rgba(243, 115, 33, 0.1) !important;
}

#hero.hero .hero-mockup {
  background: #fff !important;
  border-color: rgba(229, 231, 235, 1) !important;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.14) !important;
}

#hero.hero .mockup-chrome {
  background: linear-gradient(135deg, rgba(243, 115, 33, 0.14), rgba(246, 150, 88, 0.08)) !important;
  border-bottom-color: rgba(229, 231, 235, 1) !important;
}

#hero.hero .chrome-url {
  background: rgba(255, 255, 255, 0.8) !important;
  border-color: rgba(229, 231, 235, 1) !important;
  color: rgba(107, 114, 128, 0.85) !important;
}

#hero.hero .chrome-badge {
  color: var(--primary) !important;
  background: rgba(243, 115, 33, 0.1) !important;
  border-color: rgba(243, 115, 33, 0.26) !important;
}

#hero.hero .chrome-badge::before {
  background: var(--primary) !important;
}

#hero.hero .mockup-sidebar {
  background: rgba(255, 248, 243, 1) !important;
  border-right-color: rgba(229, 231, 235, 1) !important;
}

#hero.hero .msb-item {
  color: rgba(17, 24, 39, 0.55) !important;
}

#hero.hero .msb-item--active {
  background: rgba(243, 115, 33, 0.12) !important;
  color: var(--primary) !important;
}

#hero.hero .mockup-main {
  background: #fff !important;
}

#hero.hero .mm-title {
  color: rgba(17, 24, 39, 0.88) !important;
}

#hero.hero .mm-count {
  color: rgba(107, 114, 128, 0.9) !important;
  background: rgba(249, 250, 251, 1) !important;
  border-color: rgba(229, 231, 235, 1) !important;
}

#hero.hero .mm-card {
  background: rgba(17, 24, 39, 0.02) !important;
  border-color: rgba(229, 231, 235, 1) !important;
}

#hero.hero .mm-card--featured {
  border-color: rgba(243, 115, 33, 0.3) !important;
  background: rgba(243, 115, 33, 0.05) !important;
}

#hero.hero .mm-card-tag {
  color: rgba(107, 114, 128, 0.85) !important;
}

#hero.hero .mm-card-name {
  color: rgba(17, 24, 39, 0.82) !important;
}

#hero.hero .mm-card-meta {
  color: rgba(107, 114, 128, 0.9) !important;
}

#hero.hero .mm-card-progress {
  background: rgba(229, 231, 235, 1) !important;
}

#hero.hero .mm-card-icon--blue,
#hero.hero .mm-card-icon--green {
  background: rgba(243, 115, 33, 0.14) !important;
  color: var(--primary) !important;
}

#hero.hero .mm-progress-bar--blue,
#hero.hero .mm-progress-bar--green {
  background: linear-gradient(90deg, var(--primary), var(--primary-light)) !important;
}

#hero.hero .mm-workflow,
#hero.hero .mm-workflow-label,
#hero.hero .mm-step-dot {
  border-color: rgba(229, 231, 235, 1) !important;
}

#hero.hero .mm-workflow {
  background: rgba(249, 250, 251, 1) !important;
}

#hero.hero .mm-workflow-label {
  color: rgba(107, 114, 128, 0.9) !important;
}

#hero.hero .mm-step-dot {
  background: rgba(249, 250, 251, 1) !important;
}

#hero.hero .mm-step-name {
  color: rgba(107, 114, 128, 1) !important;
}

#hero.hero .mm-step--done .mm-step-name,
#hero.hero .mm-step--active .mm-step-name {
  color: rgba(17, 24, 39, 0.85) !important;
}

#hero.hero .mm-step-line {
  background: rgba(229, 231, 235, 1) !important;
}

#hero.hero .hstat-num {
  color: rgba(17, 24, 39, 1) !important;
}

#hero.hero .hstat-label {
  color: rgba(107, 114, 128, 1) !important;
}

#hero.hero .hstat-sep {
  background: rgba(229, 231, 235, 1) !important;
}

.cta-bar {
  background: linear-gradient(135deg, rgba(243, 115, 33, 0.12) 0%, rgba(246, 150, 88, 0.08) 100%) !important;
  border: 1px solid rgba(243, 115, 33, 0.2) !important;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.08) !important;
}

.cta-bar-title {
  color: rgba(17, 24, 39, 1) !important;
}

.cta-bar-text {
  color: rgba(107, 114, 128, 1) !important;
}

#security.section {
  background: #fff !important;
}

#security .section-head h2 {
  color: rgba(17, 24, 39, 1) !important;
}

#security .section-head p {
  color: rgba(107, 114, 128, 1) !important;
}

#security .card {
  background: #fff !important;
  border-color: rgba(229, 231, 235, 1) !important;
}

#security .compliance-title {
  color: rgba(17, 24, 39, 1) !important;
}

#security .tool-desc {
  color: rgba(107, 114, 128, 1) !important;
}

#security .link:hover {
  color: var(--primary-hover) !important;
}

#security details.legal {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(17, 24, 39, 0.12) !important;
}

#security details.legal summary {
  color: rgba(17, 24, 39, 0.9) !important;
}

#security .legal-body {
  color: rgba(0, 0, 0, 0.78) !important;
  border-top-color: rgba(17, 24, 39, 0.08) !important;
}

.section-dark-about {
  background: #fff !important;
}

.section-dark-about::before {
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(243, 115, 33, 0.08) 0%, transparent 70%) !important;
}

.about-title,
.impact-header-title {
  color: rgba(17, 24, 39, 1) !important;
}

.about-subtitle,
.impact-header-sub {
  color: rgba(107, 114, 128, 1) !important;
}

.dept-grid {
  background: rgba(229, 231, 235, 1) !important;
}

.dept-card {
  background: #fff !important;
}

.dept-card-name,
.section-dark-about .impact-title {
  color: rgba(17, 24, 39, 0.92) !important;
}

.dept-card-desc,
.section-dark-about .impact-desc {
  color: rgba(107, 114, 128, 1) !important;
}

.section-dark-about .impact-item {
  background: #fff !important;
  border-color: rgba(229, 231, 235, 1) !important;
}

footer.site-footer {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
  color: rgba(255, 255, 255, 0.92) !important;
  border-top: none !important;
}

footer.site-footer .brand-text {
  color: rgba(255, 255, 255, 0.98) !important;
}

footer.site-footer .brand-text span {
  color: rgba(255, 255, 255, 0.98) !important;
}

footer.site-footer .footer-tagline,
footer.site-footer .footer-meta,
footer.site-footer .footer-copy {
  color: rgba(255, 255, 255, 0.82) !important;
}

footer.site-footer .footer-col-title {
  color: rgba(255, 255, 255, 0.86) !important;
}

footer.site-footer .footer-link,
footer.site-footer .footer-social,
footer.site-footer .link {
  color: rgba(255, 255, 255, 0.9) !important;
}

footer.site-footer .footer-link:hover,
footer.site-footer .footer-social:hover,
footer.site-footer .link:hover {
  color: rgba(255, 255, 255, 1) !important;
}

footer.site-footer .footer-bottom {
  background: rgba(0, 0, 0, 0.08) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.visual-top,
.tool-media-grad,
.hero::before {
  background: linear-gradient(135deg, rgba(243, 115, 33, 0.12) 0%, rgba(246, 150, 88, 0.1) 100%) !important;
}

.visual-icon-secondary,
.tool-arrow:hover,
.fvt--b {
  background: rgba(243, 115, 33, 0.12) !important;
  border-color: rgba(243, 115, 33, 0.22) !important;
  color: var(--primary) !important;
}
