:root {
  --o: #F47C20;
  --o2: #FF9A3C;
  --o-pale: #FEF3E8;
  --o-light: #FFDDB8;
  --n: #1A3A6B;
  --n2: #1D4ED8;
  --n-mid: #2255A4;
  --n-pale: #EBF1FB;
  --n-dark: #0D2145;
  --text: #1A2840;
  --muted: #596880;
  --border: #DDE6F3;
  --white: #FFFFFF;
  --bg: #F6F9FE;
  --r: 16px;
  --r2: 24px;
  --shadow: 0 4px 24px rgba(26, 58, 107, .10);
  --shadow-lg: 0 12px 48px rgba(26, 58, 107, .16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Sora', sans-serif;
}

/* ── UTILITY ── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--o-pale);
  color: var(--o);
  border: 1px solid var(--o-light);
  border-radius: 30px;
  padding: 5px 14px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-family: 'Sora', sans-serif;
}

.chip.navy {
  background: var(--n-pale);
  color: var(--n);
  border-color: #C5D8F5;
}

.chip.white {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
}

.sec-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--n-dark);
}

.sec-title span {
  color: var(--o);
}

.sec-title.light {
  color: #fff;
}

.sec-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

.sec-sub.light {
  color: rgba(255, 255, 255, .72);
}

/* ── NAVBAR ── */
#mainNav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}

#mainNav.scrolled {
  box-shadow: 0 2px 20px rgba(26, 58, 107, .12);
}

.navbar-brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--n), var(--n-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-icon i {
  color: var(--o);
  font-size: 1.15rem;
}

.brand-name {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1;
}

.brand-name em {
  color: var(--o);
  font-style: normal;
}

.brand-name strong {
  color: var(--n);
}

.brand-tag {
  font-size: .65rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}

.nav-link {
  font-weight: 500 !important;
  font-size: .88rem !important;
  color: var(--text) !important;
  padding: .5rem 1rem !important;
  transition: color .2s;
}

.nav-link:hover {
  color: var(--o) !important;
}

.btn-cta-nav {
  background: var(--o);
  color: #fff !important;
  border-radius: 30px;
  padding: .45rem 1.4rem !important;
  font-weight: 700 !important;
  font-size: .85rem !important;
  transition: all .2s;
  border: 2px solid var(--o);
}

.btn-cta-nav:hover {
  background: #d96800;
  border-color: #d96800;
  transform: translateY(-1px);
}

.btn-ghost-nav {
  background: transparent;
  color: var(--n) !important;
  border-radius: 30px;
  padding: .43rem 1.3rem !important;
  font-weight: 600 !important;
  font-size: .85rem !important;
  border: 1.5px solid var(--border);
  transition: all .2s;
}

.btn-ghost-nav:hover {
  border-color: var(--n);
  background: var(--n-pale);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(150deg, var(--n-dark) 0%, #162d5e 40%, #1e3f80 100%);
  padding: 90px 0 0;
  overflow: hidden;
  position: relative;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 124, 32, .2) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 0;
}

.hero-glow2 {
  position: absolute;
  bottom: 50px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(29, 78, 216, .3) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 124, 32, .15);
  border: 1px solid rgba(244, 124, 32, .35);
  color: #FFAA5C;
  border-radius: 30px;
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 1.4rem;
}

.hero-eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--o);
  display: inline-block;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
}

.hero h1 em {
  color: var(--o);
  font-style: normal;
}

.hero-desc {
  color: rgba(255, 255, 255, .72);
  font-size: 1.05rem;
  line-height: 1.78;
  max-width: 520px;
  margin-top: 1.2rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

.btn-hero-primary {
  background: var(--o);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: .8rem 2rem;
  font-weight: 700;
  font-size: .98rem;
  font-family: 'Sora', sans-serif;
  box-shadow: 0 6px 24px rgba(244, 124, 32, .45);
  transition: all .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  background: #d96800;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(244, 124, 32, .5);
  color: #fff;
}

.btn-hero-ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .25);
  border-radius: 30px;
  padding: .78rem 2rem;
  font-weight: 600;
  font-size: .98rem;
  transition: all .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2.2rem;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 30px;
  padding: 6px 14px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .8);
  font-weight: 500;
}

.hero-badge-item i {
  color: var(--o);
}

/* ── DASHBOARD MOCKUP ── */
.hero-visual {
  position: relative;
  z-index: 2;
  padding-top: 10px;
}

.dash-shell {
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -12px 60px rgba(0, 0, 0, .4);
  overflow: hidden;
}

.dash-titlebar {
  background: #f1f5fc;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e3eaf6;
}

.dtb-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dash-body {
  display: flex;
  min-height: 300px;
}

.dash-sidebar {
  width: 180px;
  background: var(--n-dark);
  padding: 12px 0;
  flex-shrink: 0;
}

.dash-logo-mini {
  padding: 4px 16px 14px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  margin-bottom: 8px;
}

.dash-logo-mini em {
  color: var(--o);
  font-style: normal;
}

.dash-nav-item {
  padding: 8px 16px;
  font-size: .7rem;
  color: rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: default;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  transition: all .15s;
}

.dash-nav-item.active {
  background: rgba(244, 124, 32, .18);
  color: #FFAA5C;
  border-left: 3px solid var(--o);
}

.dash-nav-item i {
  font-size: .82rem;
}

.dash-main {
  flex: 1;
  padding: 16px;
  background: var(--bg);
}

.dash-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.dash-kpi {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(26, 58, 107, .07);
}

.dash-kpi-val {
  font-size: 1.2rem;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
}

.dash-kpi-lbl {
  font-size: .6rem;
  color: #8a9abb;
  margin-top: 2px;
}

.dash-card {
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 2px 8px rgba(26, 58, 107, .07);
}

.dash-card-title {
  font-size: .65rem;
  font-weight: 700;
  color: #8a9abb;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}

.bar-lbl {
  font-size: .62rem;
  color: #8a9abb;
  width: 50px;
  flex-shrink: 0;
}

.bar-track {
  flex: 1;
  height: 6px;
  background: #eaf0fb;
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 4px;
}

.dash-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 30px;
  padding: 3px 9px;
  font-size: .58rem;
  font-weight: 600;
}

/* ── MARQUEE ── */
.ticker {
  background: var(--o);
  overflow: hidden;
  white-space: nowrap;
  padding: 11px 0;
}

.ticker-inner {
  display: inline-flex;
  gap: 0;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: 0 28px;
}

.ticker-item i {
  font-size: .75rem;
  opacity: .8;
}

.ticker-sep {
  color: rgba(255, 255, 255, .4);
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ── PROBLEM ── */
.problem-section {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.problem-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--n-dark), var(--n2), var(--o));
}

.problem-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r2);
  padding: 28px 26px;
  height: 100%;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}

.problem-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e53e3e, #fc8181);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.problem-card:hover::after {
  transform: scaleX(1);
}

.prob-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #FEF2F2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #EF4444;
  margin-bottom: 1.1rem;
}

.problem-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--n-dark);
  margin-bottom: .5rem;
}

.problem-card p {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.vs-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--n-dark);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(13, 33, 69, .3);
}

/* ── SOLUTION ── */
.solution-section {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--n-dark) 0%, #162e60 55%, #1a3f80 100%);
  position: relative;
  overflow: hidden;
}

.sol-mesh {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(244, 124, 32, .06) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 0;
}

.sol-glow {
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244, 124, 32, .15) 0%, transparent 65%);
  border-radius: 50%;
}

.sol-content {
  position: relative;
  z-index: 2;
}

.sol-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r2);
  padding: 30px 26px;
  height: 100%;
  transition: all .25s;
  backdrop-filter: blur(6px);
}

.sol-card:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(244, 124, 32, .4);
  transform: translateY(-4px);
}

.sol-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(244, 124, 32, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--o2);
  margin-bottom: 1.1rem;
}

.sol-card h5 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .6rem;
}

.sol-card p {
  color: rgba(255, 255, 255, .65);
  font-size: .87rem;
  line-height: 1.65;
  margin-bottom: .9rem;
}

.sol-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sol-list li {
  font-size: .82rem;
  color: rgba(255, 255, 255, .7);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.sol-list li:last-child {
  border: none;
}

.sol-list li i {
  color: var(--o2);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── SELF HOSTING BANNER ── */
.selfhost-section {
  padding: 60px 0;
  background: var(--n-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.selfhost-card {
  background: linear-gradient(135deg, var(--n-dark), #1e3f80);
  border-radius: var(--r2);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.selfhost-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(244, 124, 32, .2), transparent 65%);
  border-radius: 50%;
}

.selfhost-icon-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.sh-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 30px;
  padding: 8px 18px;
  color: #fff;
  font-size: .84rem;
  font-weight: 600;
}

.sh-pill i {
  color: var(--o2);
}

/* ── FEATURES ── */
.features-section {
  padding: 100px 0;
  background: #fff;
}

.feat-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r2);
  padding: 28px;
  height: 100%;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--o), var(--n2));
  opacity: 0;
  transition: opacity .25s;
}

.feat-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.feat-card:hover::before {
  opacity: 1;
}

.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feat-card h5 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--n-dark);
  margin-bottom: .45rem;
}

.feat-card p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 .8rem;
}

.feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.feat-tag {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 9px;
  font-size: .72rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── MODULES EXPLORER ── */
.modules-section {
  padding: 100px 0;
  background: var(--bg);
}

.mod-btn {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 14px 18px;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-family: 'Sora', sans-serif;
}

.mod-btn:hover,
.mod-btn.active {
  background: var(--n-dark);
  border-color: var(--n-dark);
}

.mod-btn:hover .mod-btn-title,
.mod-btn.active .mod-btn-title {
  color: #fff;
}

.mod-btn:hover .mod-btn-icon,
.mod-btn.active .mod-btn-icon {
  background: rgba(244, 124, 32, .25);
  color: var(--o2);
}

.mod-btn-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--n-pale);
  color: var(--n);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
  transition: all .2s;
}

.mod-btn-title {
  font-weight: 700;
  font-size: .88rem;
  color: var(--text);
}

.mod-panel {
  display: none;
}

.mod-panel.active {
  display: block;
}

.mod-panel-card {
  background: #fff;
  border-radius: var(--r2);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.mod-panel-card h3 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--n-dark);
  margin-bottom: .4rem;
}

.mod-panel-card>p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.mod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mod-item {
  background: var(--bg);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mod-item i {
  color: var(--o);
  margin-top: 2px;
  flex-shrink: 0;
}

.mod-item span {
  font-size: .83rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}

/* ── HOW IT WORKS ── */
.hiw-section {
  padding: 100px 0;
  background: #fff;
}

.hiw-step {
  text-align: center;
  padding: 20px 16px;
}

.hiw-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--o), var(--o2));
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 6px 20px rgba(244, 124, 32, .35);
}

.hiw-step h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--n-dark);
  margin-bottom: .4rem;
}

.hiw-step p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.hiw-arrow {
  display: none;
  color: var(--border);
  font-size: 1.4rem;
  padding-top: 34px;
}

@media(min-width:992px) {
  .hiw-arrow {
    display: block;
  }
}

/* ── PRICING ── */
.pricing-section {
  padding: 100px 0;
  background: var(--bg);
}

.price-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--r2);
  padding: 36px 30px;
  height: 100%;
  transition: all .25s;
  position: relative;
}

.price-card.featured {
  border-color: var(--o);
  box-shadow: 0 12px 48px rgba(244, 124, 32, .2);
}

.featured-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--o);
  color: #fff;
  border-radius: 30px;
  padding: 5px 20px;
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
  font-family: 'Sora', sans-serif;
}

.price-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--n-dark);
  margin-bottom: .3rem;
}

.price-card .price-tagline {
  font-size: .83rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.price-amount {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--n-dark);
  line-height: 1;
}

.price-amount sup {
  font-size: 1.2rem;
  vertical-align: super;
}

.price-period {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
  margin-top: .2rem;
}

.price-highlight {
  background: var(--o-pale);
  border: 1px solid var(--o-light);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 1.4rem;
  font-size: .82rem;
  color: var(--o);
  font-weight: 600;
}

.price-highlight i {
  margin-right: 5px;
}

.price-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
}

.price-feats li {
  padding: 8px 0;
  font-size: .87rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  border-bottom: 1px solid var(--bg);
}

.price-feats li:last-child {
  border: none;
}

.price-feats li i {
  color: var(--o);
  flex-shrink: 0;
  margin-top: 2px;
}

.price-feats li.dim {
  color: #bbc8d9;
}

.price-feats li.dim i {
  color: #bbc8d9;
}

.btn-price-main {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 30px;
  padding: .72rem;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  font-size: .92rem;
  text-decoration: none;
  transition: all .2s;
}

.btn-price-fill {
  background: var(--o);
  color: #fff;
  border: 2px solid var(--o);
  box-shadow: 0 4px 16px rgba(244, 124, 32, .35);
}

.btn-price-fill:hover {
  background: #d96800;
  border-color: #d96800;
  color: #fff;
  transform: translateY(-1px);
}

.btn-price-border {
  border: 2px solid var(--n-dark);
  color: var(--n-dark);
  background: transparent;
}

.btn-price-border:hover {
  background: var(--n-dark);
  color: #fff;
}

/* ── ROADMAP ── */
.roadmap-section {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--n-dark) 0%, #162d5e 100%);
  position: relative;
  overflow: hidden;
}

.roadmap-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px);
  background-size: 28px 28px;
}

.road-content {
  position: relative;
  z-index: 2;
}

.road-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r2);
  padding: 26px;
  transition: all .2s;
  backdrop-filter: blur(4px);
}

.road-card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(244, 124, 32, .4);
  transform: translateY(-3px);
}

.road-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(244, 124, 32, .15);
  color: var(--o2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.road-card h5 {
  color: #fff;
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.road-card p {
  color: rgba(255, 255, 255, .6);
  font-size: .83rem;
  line-height: 1.6;
  margin: 0;
}

.road-coming {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(244, 124, 32, .18);
  color: var(--o2);
  border-radius: 30px;
  padding: 4px 12px;
  font-size: .7rem;
  font-weight: 700;
  margin-bottom: .8rem;
}

/* ── DATA OWNERSHIP STRIP ── */
.ownership-section {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid var(--border);
}

.own-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--n-dark);
  color: var(--o);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
}

.own-item {
  text-align: center;
}

.own-item h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--n-dark);
  margin-bottom: .4rem;
}

.own-item p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ── FAQ ── */
.faq-section {
  padding: 100px 0;
  background: var(--bg);
}

.accordion-button {
  font-weight: 700 !important;
  font-family: 'Sora', sans-serif !important;
  color: var(--n-dark) !important;
  background: #fff !important;
  font-size: .93rem !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--o) !important;
}

.accordion-item {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--r) !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-body {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── DEMO FORM ── */
.demo-section {
  padding: 100px 0;
  background: #fff;
}

.demo-form-wrap {
  background: var(--bg);
  border-radius: var(--r2);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.form-control,
.form-select {
  border-radius: 12px !important;
  border: 1.5px solid var(--border) !important;
  font-size: .9rem !important;
  padding: .65rem 1rem !important;
  font-family: 'DM Sans', sans-serif;
  transition: border-color .2s, box-shadow .2s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--o) !important;
  box-shadow: 0 0 0 3px rgba(244, 124, 32, .12) !important;
}

.form-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 5px;
}

/* ── CTA BANNER ── */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(130deg, var(--o) 0%, #e06800 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, .06);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
}

.cta-section p {
  color: rgba(255, 255, 255, .88);
  font-size: 1rem;
}

.btn-cta-wh {
  background: #fff;
  color: var(--o);
  border-radius: 30px;
  padding: .78rem 2.2rem;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  font-size: .98rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}

.btn-cta-wh:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
  color: var(--o);
}

.btn-cta-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .5);
  border-radius: 30px;
  padding: .76rem 2.2rem;
  font-weight: 600;
  font-family: 'Sora', sans-serif;
  font-size: .98rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}

.btn-cta-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

/* ── FOOTER ── */
footer {
  background: var(--n-dark);
  padding: 70px 0 0;
  color: rgba(255, 255, 255, .65);
}

.foot-brand {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}

.foot-brand em {
  color: var(--o);
  font-style: normal;
}

.foot-brand strong {
  color: #fff;
}

footer p {
  font-size: .87rem;
  line-height: 1.75;
}

.foot-tagline {
  font-size: .78rem;
  color: rgba(255, 255, 255, .35);
  margin-top: .4rem;
}

footer h6 {
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 1.2rem;
  font-family: 'Sora', sans-serif;
}

.foot-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.foot-links li {
  margin-bottom: 8px;
}

.foot-links a {
  color: rgba(255, 255, 255, .6);
  font-size: .87rem;
  text-decoration: none;
  transition: color .2s;
}

.foot-links a:hover {
  color: var(--o);
}

.foot-social {
  display: flex;
  gap: 8px;
  margin-top: .5rem;
}

.foot-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: all .2s;
}

.foot-social a:hover {
  background: var(--o);
  color: #fff;
}

.foot-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .86rem;
}

.foot-contact-item i {
  color: var(--o);
  margin-top: 2px;
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 60px;
  padding: 20px 0;
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: .1s;
}

.reveal-d2 {
  transition-delay: .2s;
}

.reveal-d3 {
  transition-delay: .3s;
}

.reveal-d4 {
  transition-delay: .4s;
}

.reveal-d5 {
  transition-delay: .5s;
}

/* responsive */
@media(max-width:767px) {
  .hero {
    padding: 70px 0 0;
  }

  .mod-grid {
    grid-template-columns: 1fr;
  }

  .selfhost-card {
    padding: 32px 24px;
  }
}

.os-toast-wrap {
  position: fixed;
  /* top: 24px;
  left: 50%;
  transform: translateX(-50%); */
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  top: 10%;          /* adjust until it clears your navbar height */
  left: auto;         /* remove left positioning */
  right: 1%;        /* distance from right edge */
  transform: none;    /* remove the centering transform */
}

.os-toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px 14px 16px;
  min-width: 320px;
  max-width: 440px;
  box-shadow: 0 8px 32px rgba(26, 58, 107, .18), 0 2px 8px rgba(26, 58, 107, .10);
  border-left: 4px solid #ccc;
  pointer-events: all;
  animation: osSlideIn .32s cubic-bezier(.22, .85, .44, 1) both;
  position: relative;
  overflow: hidden;
}

.os-toast.os-success {
  border-left-color: #F47C20;
}

.os-toast.os-error {
  border-left-color: #E24B4A;
}

.os-toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.os-success .os-toast-icon {
  background: #FEF3E8;
  color: #F47C20;
}

.os-error .os-toast-icon {
  background: #FCEBEB;
  color: #E24B4A;
}

.os-toast-body {
  flex: 1;
  min-width: 0;
}

.os-toast-title {
  font-family: 'Sora', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: #0D2145;
  line-height: 1.2;
  margin-bottom: 3px;
}

.os-toast-msg {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  color: #596880;
  line-height: 1.5;
  margin: 0;
}

.os-toast-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #a0afc0;
  font-size: 14px;
  padding: 2px 4px;
  border-radius: 6px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: -2px;
  transition: color .15s, background .15s;
}

.os-toast-close:hover {
  color: #0D2145;
  background: #EBF1FB;
}

.os-toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 0 2px 2px 0;
  animation: osProgress 30s linear forwards;
}

.os-success .os-toast-progress {
  background: linear-gradient(90deg, #F47C20, #FFAA55);
}

.os-error .os-toast-progress {
  background: linear-gradient(90deg, #E24B4A, #F09595);
}

.os-toast.os-hide {
  animation: osSlideOut .28s cubic-bezier(.4, 0, 1, 1) forwards;
}

@keyframes osSlideIn {
  from {
    opacity: 0;
    transform: translateY(-16px) scale(.97)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

@keyframes osSlideOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1)
  }

  to {
    opacity: 0;
    transform: translateY(-10px) scale(.96)
  }
}

@keyframes osProgress {
  from {
    width: 100%
  }

  to {
    width: 0%
  }
}