/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #080F1E;
  --navy2: #0D1829;
  --navy3: #111F38;
  --accent: #2563EB;
  --accent2: #3B82F6;
  --accent3: #60A5FA;
  --teal: #0D9488;
  --teal2: #14B8A6;
  --gold: #F59E0B;
  --text: #EEF2FF;
  --muted: #94A3B8;
  --muted2: #64748B;
  --border: rgba(148, 163, 184, 0.10);
  --border2: rgba(148, 163, 184, 0.18);
  --card: rgba(13, 24, 41, 0.75);
  --card2: rgba(17, 31, 56, 0.55);
  --font: 'Space Grotesk', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grid background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}

/* Ambient orbs */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}

.orb1 {
  width: 700px;
  height: 700px;
  background: rgba(37, 99, 235, 0.10);
  top: -280px;
  right: -240px;
}

.orb2 {
  width: 450px;
  height: 450px;
  background: rgba(13, 148, 136, 0.07);
  bottom: 15%;
  left: -180px;
}

.orb3 {
  width: 320px;
  height: 320px;
  background: rgba(37, 99, 235, 0.07);
  bottom: 8%;
  right: 8%;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3 {
  letter-spacing: -1.5px;
  line-height: 1.1;
}

h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  letter-spacing: -2.5px;
}

h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
}

h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.gradient-text {
  background: linear-gradient(130deg, var(--accent2) 20%, var(--teal2) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-family: var(--mono);
  color: var(--accent3);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border-color: var(--border2);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(96, 165, 250, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border2);
}

.btn-outline:hover {
  background: var(--card2);
  border-color: rgba(96, 165, 250, 0.3);
}

.btn-lg {
  padding: 14px 34px;
  font-size: 15px;
  border-radius: 11px;
}

/* ============================================================
   LOGO TIPOGRÁFICO
   ============================================================ */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  position: relative;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 38px;
  height: 38px;
}

.logo-type {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.5px;
  color: var(--text);
}

.logo-type em {
  font-style: normal;
  color: var(--accent2);
}

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 66px;
  background: rgba(8, 15, 30, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}

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

.nav-ctas {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--muted);
  border-radius: 2px;
  transition: all .25s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  background: rgba(8, 15, 30, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px 6%;
  z-index: 199;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   SECTION BASE
   ============================================================ */
section {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 6%;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: calc(100vh - 66px);
  display: flex;
  align-items: center;
  padding: 80px 6% 70px;
  gap: 64px;
}

.hero-left {
  flex: 0 0 580px;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  max-width: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--mono);
  background: rgba(37, 99, 235, 0.10);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--accent3);
  margin-bottom: 28px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal2);
  animation: blink 2.4s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

.hero-desc {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 490px;
  margin: 20px 0 38px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.stat-val {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--accent2);
  line-height: 1;
}

.stat-val.teal {
  color: var(--teal2);
}

.stat-lbl {
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
}

/* Hero mockup */
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  max-width: none;
}

.mockup-shell {
  width: 100%;
  max-width: 500px;
  /* Keep mockup size controlled */
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.mock-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: rgba(8, 15, 30, 0.65);
  border-bottom: 1px solid var(--border);
}

.mock-dots {
  display: flex;
  gap: 6px;
}

.mock-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.md-r {
  background: #FF5F57;
}

.md-y {
  background: #FEBC2E;
}

.md-g {
  background: #28C840;
}

.mock-url {
  font-size: 12px;
  font-family: var(--mono);
  color: var(--muted2);
  display: flex;
  align-items: center;
  gap: 5px;
}

.mock-url::before {
  content: '🔒';
  font-size: 10px;
}

.mock-body {
  padding: 20px;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.kpi {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
}

.kpi-n {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.kpi-n.bl {
  color: var(--accent2);
}

.kpi-n.te {
  color: var(--teal2);
}

.kpi-n.go {
  color: var(--gold);
}

.kpi-l {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.list-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 9px;
  gap: 12px;
}

.item-avatar {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.av-bl {
  background: rgba(37, 99, 235, 0.18);
  color: var(--accent2);
}

.av-te {
  background: rgba(13, 148, 136, 0.18);
  color: var(--teal2);
}

.av-go {
  background: rgba(245, 158, 11, 0.18);
  color: var(--gold);
}

.item-info {
  flex: 1;
  min-width: 0;
}

.item-name {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-sub {
  font-size: 11px;
  color: var(--muted);
}

.pill {
  font-size: 11px;
  font-weight: 600;
  font-family: var(--mono);
  padding: 3px 10px;
  border-radius: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.p-ok {
  background: rgba(20, 184, 166, 0.14);
  color: var(--teal2);
}

.p-pend {
  background: rgba(245, 158, 11, 0.14);
  color: var(--gold);
}

.p-warn {
  background: rgba(239, 68, 68, 0.14);
  color: #F87171;
}

/* ============================================================
   FEATURES
   ============================================================ */
#features {
  padding: 110px 6%;
}

.section-header {
  margin-bottom: 60px;
}

.section-header p {
  font-size: 17px;
  color: var(--muted);
  max-width: 500px;
  margin-top: 14px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
}

.feat-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: transform .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}

.feat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity .3s;
}

.feat-card:hover {
  transform: translateY(-3px);
}

.feat-card:hover::after {
  opacity: 1;
}

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

.fc-b::after {
  background: linear-gradient(90deg, #2563EB, #60A5FA);
}

.fc-t::after {
  background: linear-gradient(90deg, #0D9488, #2DD4BF);
}

.fc-g::after {
  background: linear-gradient(90deg, #F59E0B, #FCD34D);
}

.feat-ico {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.fi-b {
  background: rgba(37, 99, 235, 0.13);
}

.fi-t {
  background: rgba(13, 148, 136, 0.13);
}

.fi-g {
  background: rgba(245, 158, 11, 0.13);
}

.feat-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 9px;
}

.feat-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   DEMO
   ============================================================ */
#demo {
  padding: 110px 6%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(13, 24, 41, 0.5);
}

.demo-grid {
  display: flex;
  gap: 70px;
  align-items: center;
}

.demo-text {
  flex: 1;
}

.demo-visual {
  flex: 1.25;
}

.demo-tabs {
  display: flex;
  gap: 8px;
  margin: 26px 0 30px;
}

.dtab {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border2);
  background: transparent;
  color: var(--muted);
  font-family: var(--font);
  transition: all .2s;
}

.dtab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.dtab:hover:not(.active) {
  color: var(--text);
  border-color: rgba(96, 165, 250, 0.35);
}

.demo-feats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-feat {
  display: flex;
  gap: 13px;
  padding: 14px 16px;
  border-radius: 11px;
  border: 1px solid transparent;
  transition: all .2s;
  cursor: default;
}

.demo-feat:hover {
  background: var(--card2);
  border-color: var(--border);
}

.chk-circle {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal2);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

.dfeat-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}

.dfeat-desc {
  font-size: 13px;
  color: var(--muted);
}

/* Dashboard mockup */
.dash-shell {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: rgba(8, 15, 30, 0.6);
  border-bottom: 1px solid var(--border);
}

.dash-main-content {
  display: flex;
  height: 380px;
}

.sidebar {
  width: 154px;
  background: rgba(8, 15, 30, 0.75);
  border-right: 1px solid var(--border);
  padding: 18px 12px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.s-logo {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent2);
  padding: 0 6px;
  margin-bottom: 18px;
}

.s-item {
  padding: 8px 10px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  cursor: pointer;
  transition: background .15s;
}

.s-item:hover {
  background: var(--card2);
  color: var(--text);
}

.s-item.on {
  background: rgba(37, 99, 235, 0.14);
  color: var(--accent2);
}

.s-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.dash-content {
  flex: 1;
  padding: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-kpis {
  display: flex;
  gap: 9px;
}

.mkpi {
  flex: 1;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 11px 13px;
}

.mkpi-v {
  font-size: 18px;
  font-weight: 700;
}

.mkpi-l {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}

.mkpi-c {
  font-size: 10px;
  color: var(--teal2);
  margin-top: 1px;
}

.chart-box {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 12px 14px;
}

.chart-lbl {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 8px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 68px;
}

.bar {
  flex: 1;
  background: rgba(37, 99, 235, 0.28);
  border-radius: 3px 3px 0 0;
  transition: background .2s;
}

.bar.hi {
  background: rgba(37, 99, 235, 0.65);
}

.bar:hover {
  background: var(--accent);
}

.recent-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.rrow-name {
  flex: 2;
  font-weight: 500;
}

.rrow-status {
  flex: 1;
}

.rrow-val {
  flex: 1;
  text-align: right;
  font-weight: 600;
  color: var(--teal2);
  font-family: var(--mono);
}

/* ============================================================
   PRICING
   ============================================================ */
#pricing {
  padding: 110px 6%;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header p {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  margin: 14px auto 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 18px;
  padding: 34px;
  position: relative;
  backdrop-filter: blur(12px);
  transition: transform .25s;
}

.price-card:hover {
  transform: translateY(-3px);
}

.price-card.featured {
  border-color: rgba(37, 99, 235, 0.45);
}

.pop-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 24px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  white-space: nowrap;
}

.plan-name {
  font-size: 12px;
  font-family: var(--mono);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.plan-price {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 6px;
  color: var(--text);
}

.plan-price.consult {
  font-size: 26px;
  color: var(--accent2);
  margin-top: 8px;
}

.plan-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.plan-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 30px;
}

.plan-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.plan-feats li .ck {
  color: var(--teal2);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 13px;
}

.plan-feats li.dim {
  opacity: 0.45;
}

.plan-feats li.dim .ck {
  color: var(--muted2);
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  padding: 110px 6%;
  border-top: 1px solid var(--border);
  background: rgba(13, 24, 41, 0.5);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.contact-header {
  margin-bottom: 40px;
}

.contact-header p {
  font-size: 17px;
  color: var(--muted);
  margin-top: 12px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field textarea,
.field select {
  background: rgba(13, 24, 41, 0.7);
  border: 1px solid var(--border2);
  border-radius: 9px;
  padding: 12px 15px;
  color: var(--text);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color .2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.field select option {
  background: #0D1829;
  color: var(--text);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent2);
}

.field textarea {
  resize: vertical;
  min-height: 108px;
  line-height: 1.55;
}

.form-note {
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.6;
}

/* Contact side info */
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.c-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 13px;
}

.c-ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.c-lbl {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}

.c-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent2);
  text-decoration: none;
}

.c-val:hover {
  text-decoration: underline;
}

.c-val.plain {
  color: var(--text);
}

.info-box {
  padding: 20px;
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 13px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.info-box strong {
  color: var(--accent2);
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
}

.info-box a {
  color: var(--accent2);
  text-decoration: none;
}

.info-box a:hover {
  text-decoration: underline;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid var(--border);
  padding: 36px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-copy {
  font-size: 13px;
  color: var(--muted2);
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted2);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--text);
}

/* ============================================================
   TOAST
   ============================================================ */
#toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #065F46;
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #D1FAE5;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 10px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(10px);
  transition: all .35s ease;
  pointer-events: none;
}

#toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  #hero {
    flex-direction: column;
    padding: 60px 6% 50px;
    gap: 40px;
  }

  .hero-right {
    width: 100%;
    max-width: 100%;
  }

  .demo-grid {
    flex-direction: column;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {

  .nav-links,
  .nav-ctas {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    gap: 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}

/* ============================================================
   DEMO MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 15, 30, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 20px;
  width: 92%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform .3s ease;
}

.modal-overlay.show .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 24px;
  cursor: pointer;
}

.modal-title {
  font-size: 24px;
  margin-bottom: 12px;
}

.modal-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.5;
}
