:root {
  --navy: #000080;
  --navy-light: #1b2b8c;
  --orange: #ff6600;
  --orange-light: #ff8a3d;
  --bg: #06070f;
  --bg-alt: #0a0c1c;
  --surface: #0e1130;
  --surface-2: #11163a;
  --border: rgba(255,255,255,0.08);
  --text: #eef0fb;
  --text-dim: #9aa0c3;
  --radius: 18px;
  --container: 1180px;
  --ff-display: 'Sora', sans-serif;
  --ff-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
html, body { overscroll-behavior-y: none; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  line-height: 1.6;
  overflow-x: hidden;
}
a, button { outline: none; -webkit-appearance: none; appearance: none; }
a:focus, button:focus { outline: none; }
h1, h2, h3, h4 { font-family: var(--ff-display); margin: 0 0 .5em; line-height: 1.15; }
p { margin: 0 0 1em; color: var(--text-dim); }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Background fx */
.bg-grid {
  position: fixed; inset: 0; z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}
.bg-glow {
  position: fixed; inset: 0; z-index: -3; background: var(--bg); overflow: hidden;
}
.bg-glow::before, .bg-glow::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(10px);
}
.bg-glow::before {
  width: 700px; height: 700px; left: -10%; top: -10%;
  background: radial-gradient(circle, rgba(255,102,0,0.22), transparent 65%);
  animation: drift1 26s ease-in-out infinite;
}
.bg-glow::after {
  width: 800px; height: 800px; right: -15%; top: 0%;
  background: radial-gradient(circle, rgba(0,0,128,0.4), transparent 65%);
  animation: drift2 32s ease-in-out infinite;
}
@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8%, 12%) scale(1.15); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-10%, 8%) scale(1.1); }
}

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(6,7,15,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}
.header__inner { position: relative; display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 12px; flex-wrap: nowrap; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--ff-display); min-width: 0; flex-shrink: 0; }
.logo__mark {
  display: block; width: 40px; height: 40px; border-radius: 10px;
  object-fit: contain; flex-shrink: 0;
}
.logo__text { font-weight: 600; font-size: 16px; color: var(--text); }
.logo__text strong { color: var(--orange); }

.nav { display: flex; gap: 28px; }
.nav a { font-size: 14.5px; color: var(--text-dim); font-weight: 500; transition: color .2s; }
.nav a:hover { color: var(--orange-light); }

.header__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header__phone { font-size: 14px; color: var(--text-dim); display: none; white-space: nowrap; }
@media (min-width: 1024px) { .header__phone { display: inline-block; } }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 10px; cursor: pointer; padding: 0; flex-shrink: 0; z-index: 210;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--text); display: block; margin: 0 auto; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 14.5px;
  border: 1px solid transparent; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn--primary { background: linear-gradient(135deg, var(--orange), #ff3d00); color: #fff; box-shadow: 0 8px 24px rgba(255,102,0,0.35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,102,0,0.45); }
.btn--ghost { background: rgba(255,255,255,0.04); color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange-light); }
.btn--lg { padding: 15px 30px; font-size: 16px; }
.btn--sm { padding: 9px 16px; font-size: 13.5px; }
.btn--block { width: 100%; }

/* Hero */
.hero { padding: 150px 0 100px; position: relative; }
.hero__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
  background: rgba(255,102,0,0.1); border: 1px solid rgba(255,102,0,0.35); color: var(--orange-light);
  margin-bottom: 22px;
}
.badge em { font-style: normal; color: #fff; }
.badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(255,102,0,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,102,0,.5)} 70%{box-shadow:0 0 0 8px rgba(255,102,0,0)} 100%{box-shadow:0 0 0 0 rgba(255,102,0,0)} }

.hero h1 { font-size: clamp(34px, 4.2vw, 54px); font-weight: 800; color: #fff; }
.text-gradient {
  background: linear-gradient(90deg, var(--orange-light), var(--orange), #6e7dff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { font-size: 17px; max-width: 540px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 40px; }
.hero__trust { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-family: var(--ff-display); font-size: 22px; color: #fff; }
.trust-item span { font-size: 12.5px; color: var(--text-dim); }

.hero__visual { position: relative; height: 420px; }
.hud-card {
  position: absolute; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px; box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.hud-card--main { top: 10px; left: 0; right: 0; width: 100%; }
.hud-card__head { display: flex; align-items: center; gap: 6px; margin-bottom: 18px; }
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot--red { background: #ff5f56; } .dot--yellow { background: #ffbd2e; } .dot--green { background: #27c93f; }
.hud-card__title { margin-left: 8px; font-size: 12.5px; color: var(--text-dim); }
.hud-bars { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.hud-bar { height: 9px; border-radius: 6px; background: var(--surface-2); position: relative; overflow: hidden; }
.hud-bar::after {
  content: ''; position: absolute; inset: 0; width: var(--w); border-radius: 6px;
  background: linear-gradient(90deg, var(--navy-light), var(--orange));
  animation: grow 1.6s ease-out forwards;
}
@keyframes grow { from { width: 0; } }
.hud-stat { display: flex; gap: 12px; }
.hud-stat__box { flex: 1; background: var(--surface-2); border-radius: 12px; padding: 12px 14px; }
.hud-stat__box span { display: block; font-size: 11.5px; color: var(--text-dim); }
.hud-stat__box strong { font-family: var(--ff-display); color: var(--orange-light); font-size: 18px; }
.hud-card--float-1, .hud-card--float-2 {
  font-size: 12.5px; padding: 10px 14px; font-weight: 600; animation: float 4s ease-in-out infinite;
}
.hud-card--float-1 { bottom: 60px; left: -10px; color: #27c93f; }
.hud-card--float-2 { bottom: 10px; right: -10px; color: var(--orange-light); animation-delay: .8s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Logobar */
.logobar {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 22px 0; background: var(--bg-alt); overflow: hidden; position: relative;
}
.logobar::before, .logobar::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.logobar::before { left: 0; background: linear-gradient(90deg, var(--bg-alt), transparent); }
.logobar::after { right: 0; background: linear-gradient(270deg, var(--bg-alt), transparent); }
.logobar__inner { display: flex; align-items: center; gap: 22px; width: max-content; }
.logobar__track { display: flex; align-items: center; gap: 48px; flex-shrink: 0; animation: marquee 22s linear infinite; }
.logobar__inner span { color: var(--text-dim); font-size: 13.5px; flex-shrink: 0; }
.logobar__track strong { font-size: 14.5px; color: var(--text-dim); font-weight: 600; opacity: .85; white-space: nowrap; transition: opacity .2s, color .2s; }
.logobar__track strong:hover { opacity: 1; color: var(--orange-light); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Sections */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-alt); }
.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange-light); margin-bottom: 12px;
}
.section__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section__head h2 { font-size: clamp(26px, 3vw, 38px); color: #fff; }
.section__lead { font-size: 16px; }
.section--split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.section--split-rev .section__visual { order: 2; }
.section__content h2 { font-size: clamp(26px, 3vw, 36px); color: #fff; }
.section__content em { color: var(--orange-light); font-style: normal; }

.checklist { display: flex; flex-direction: column; gap: 12px; margin: 22px 0 28px; }
.checklist li { padding-left: 30px; position: relative; color: var(--text); font-size: 15px; }
.checklist li::before {
  content: '✓'; position: absolute; left: 0; top: -1px; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,102,0,0.15); color: var(--orange); font-size: 12px; display: flex; align-items: center; justify-content: center;
}

/* Verifactu ring visual */
.ring-panel { position: relative; width: 320px; height: 320px; margin: 0 auto; display: flex; align-items: center; justify-content: center; }
.ring-panel__beam {
  position: absolute; inset: -60px; border-radius: 50%; z-index: 0;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255,102,0,0.55) 60deg, transparent 140deg, rgba(0,0,128,0.6) 220deg, transparent 300deg, transparent 360deg);
  filter: blur(28px);
  animation: beam-spin 7s linear infinite;
}
@keyframes beam-spin { to { transform: rotate(360deg); } }
.ring-panel__pulse {
  position: absolute; width: 60%; height: 60%; border-radius: 50%; z-index: 1;
  background: radial-gradient(circle, rgba(255,102,0,0.35), transparent 70%);
  animation: pulse-glow 3.2s ease-in-out infinite;
}
@keyframes pulse-glow { 0%,100% { opacity: .5; transform: scale(.9); } 50% { opacity: 1; transform: scale(1.15); } }
.ring { position: absolute; border-radius: 50%; border: 1px solid var(--border); z-index: 1; }
.ring--1 { width: 100%; height: 100%; border-color: rgba(255,102,0,0.25); animation: spin 18s linear infinite; }
.ring--2 { width: 76%; height: 76%; border-color: rgba(0,0,128,0.4); animation: spin 12s linear infinite reverse; }
.ring--3 { width: 50%; height: 50%; border-color: rgba(255,102,0,0.4); animation: spin 9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.ring-panel__core {
  position: relative; z-index: 2; width: 150px; height: 150px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #06070f);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 0 60px rgba(255,102,0,0.25), inset 0 0 30px rgba(0,0,128,.6);
  animation: core-breathe 3.2s ease-in-out infinite;
}
@keyframes core-breathe {
  0%,100% { box-shadow: 0 0 60px rgba(255,102,0,0.25), inset 0 0 30px rgba(0,0,128,.6); }
  50% { box-shadow: 0 0 90px rgba(255,102,0,0.45), inset 0 0 40px rgba(0,0,128,.8); }
}
.ring-panel__core span { font-size: 11px; color: var(--text-dim); }
.ring-panel__core strong { font-family: var(--ff-display); color: var(--orange-light); font-size: 18px; }

/* Feature grid */
.grid-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; transition: transform .25s, border-color .25s;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(255,102,0,0.4); }
.feature-card__icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: 12px; background: rgba(255,102,0,0.1); font-size: 20px; margin-bottom: 14px;
}
.feature-card h3 { font-size: 16.5px; color: #fff; }
.feature-card p { font-size: 14px; margin: 0; }

/* Module grid */
.grid-modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.module-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; position: relative; overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.module-card::before {
  content: ''; position: absolute; top: 0; left: -150%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.06), transparent);
  transition: left .7s ease;
}
.module-card:hover::before { left: 150%; }
.module-card:hover {
  transform: translateY(-6px); border-color: rgba(255,102,0,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.module-card--accent { border-color: rgba(255,102,0,0.45); background: linear-gradient(160deg, rgba(255,102,0,0.08), var(--surface)); }
.module-card__icon {
  width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  border-radius: 12px; background: rgba(255,102,0,0.1); color: var(--orange-light); margin-bottom: 16px;
  transition: transform .35s ease, background .35s ease;
}
.module-card:hover .module-card__icon { transform: scale(1.1) rotate(-4deg); background: rgba(255,102,0,0.2); }
.module-card__icon svg { width: 24px; height: 24px; }
.module-card h3 { font-size: 17px; color: #fff; }
.module-card p { font-size: 14px; margin-bottom: 16px; }
.module-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.module-card__tags li {
  font-size: 12px; font-weight: 600; color: var(--text-dim);
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; padding: 5px 11px;
}

/* AI panel visual */
.ai-panel {
  background: #06081c; border: 1px solid rgba(255,102,0,0.25); border-radius: var(--radius); padding: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5); position: relative; overflow: hidden;
  animation: ai-border-glow 4s ease-in-out infinite;
}
@keyframes ai-border-glow {
  0%,100% { box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 rgba(255,102,0,0); }
  50% { box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 32px rgba(255,102,0,0.25); }
}
.ai-panel__head { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; position: relative; z-index: 1; }
.ai-line {
  font-family: 'Sora', monospace; font-size: 13px; color: var(--text-dim);
  background: var(--surface-2); border-radius: 8px; padding: 10px 12px; margin-bottom: 8px;
  display: flex; gap: 8px; align-items: center; position: relative; z-index: 1;
  opacity: 0; transform: translateX(-10px);
  animation: ai-line-in .6s ease forwards;
}
.ai-line:nth-child(2) { animation-delay: .15s; }
.ai-line:nth-child(3) { animation-delay: .45s; }
.ai-line:nth-child(4) { animation-delay: .75s; }
.ai-line:nth-child(5) { animation-delay: 1.05s; }
.ai-line:nth-child(6) { animation-delay: 1.4s; }
@keyframes ai-line-in { to { opacity: 1; transform: translateX(0); } }
.ai-tag { background: rgba(0,0,128,0.5); color: #bcd; font-size: 10.5px; font-weight: 700; padding: 2px 7px; border-radius: 5px; text-transform: uppercase; }
.ai-line--ok { color: #4ade80; font-weight: 600; background: rgba(74,222,128,0.08); }
.ai-line--ok::after { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #4ade80; margin-left: auto; animation: pulse 1.6s infinite; }

/* Sync visual */
.sync-card { display: flex; flex-direction: column; align-items: center; gap: 0; }
.sync-node {
  width: 100%; max-width: 280px; padding: 16px 20px; border-radius: 14px; font-weight: 600; font-size: 14.5px;
  background: var(--surface); border: 1px solid var(--border); text-align: center;
  transition: transform .25s, border-color .25s;
}
.sync-node:hover { transform: translateY(-3px); border-color: rgba(255,102,0,0.4); }
.sync-node--core {
  background: linear-gradient(135deg, var(--navy), #06070f); border-color: rgba(255,102,0,0.4); color: #fff;
  animation: core-breathe 3.2s ease-in-out infinite;
}
.sync-line {
  width: 2px; height: 36px; margin: 4px 0; position: relative; overflow: hidden;
  background: rgba(255,255,255,0.08);
}
.sync-line::after {
  content: ''; position: absolute; left: 0; top: -100%; width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent, var(--orange), transparent);
  animation: flow-down 1.6s linear infinite;
}
@keyframes flow-down { to { top: 100%; } }

/* Pricing */
.grid-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 28px; position: relative; display: flex; flex-direction: column;
}
.price-card { transition: transform .25s, box-shadow .25s; }
.price-card:hover { transform: translateY(-5px); }
.price-card--featured {
  border-color: var(--orange); background: linear-gradient(160deg, rgba(255,102,0,0.08), var(--surface));
  transform: scale(1.02); animation: featured-glow 3.5s ease-in-out infinite;
}
.price-card--featured:hover { transform: scale(1.02) translateY(-5px); }
@keyframes featured-glow {
  0%,100% { box-shadow: 0 0 0 rgba(255,102,0,0); }
  50% { box-shadow: 0 0 36px rgba(255,102,0,0.3); }
}
.price-card__tag {
  position: absolute; top: -13px; left: 28px; background: var(--orange); color: #fff; font-size: 11.5px;
  font-weight: 700; padding: 5px 12px; border-radius: 999px;
}
.price-card h3 { color: #fff; font-size: 18px; }
.price-card__price { font-family: var(--ff-display); color: var(--text-dim); margin-bottom: 20px; }
.price-card__price span { font-size: 34px; color: #fff; font-weight: 800; }
.price-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; flex: 1; }
.price-card ul li { font-size: 14.5px; padding-left: 22px; position: relative; color: var(--text); }
.price-card ul li::before { content: '—'; position: absolute; left: 0; color: var(--orange); }

/* Video */
.video-frame {
  position: relative; max-width: 860px; margin: 0 auto; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: 0 30px 70px rgba(0,0,0,0.55);
  aspect-ratio: 16 / 9; background: #000;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* AI launcher */
.ai-launcher {
  position: fixed; bottom: 24px; right: 24px; z-index: 150;
  display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--navy));
  color: #fff; font-weight: 700; font-size: 14px;
  box-shadow: 0 10px 30px rgba(255,102,0,0.4);
  transition: transform .2s, box-shadow .2s;
  will-change: auto;
}
.ai-launcher:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(255,102,0,0.5); }
.ai-launcher svg { width: 20px; height: 20px; flex-shrink: 0; }
.ai-launcher__dot {
  position: absolute; top: -3px; right: -3px; width: 12px; height: 12px; border-radius: 50%;
  background: #4ade80; border: 2px solid #0a0c1c;
}

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 18px 22px; }
.faq-item summary { cursor: pointer; font-weight: 600; color: #fff; font-size: 15.5px; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; float: right; color: var(--orange); font-size: 20px; }
.faq-item[open] summary::after { content: '–'; }
.faq-item p { margin-top: 12px; font-size: 14.5px; }

/* Demo / CTA */
.section--cta { background: var(--bg-alt); position: relative; overflow: hidden; }
.cta-block {
  position: relative; text-align: center; max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}
.cta-block__glow {
  position: absolute; top: -120px; left: 50%; width: 600px; height: 400px; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,102,0,0.28), transparent 65%);
  filter: blur(10px); z-index: 0; animation: cta-glow-pulse 4s ease-in-out infinite;
}
@keyframes cta-glow-pulse { 0%,100% { opacity: .6; transform: translateX(-50%) scale(1); } 50% { opacity: 1; transform: translateX(-50%) scale(1.15); } }
.cta-block h2 { font-size: clamp(26px, 3vw, 36px); color: #fff; position: relative; z-index: 1; }
.cta-block p { position: relative; z-index: 1; }
.cta-block__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin: 10px 0 24px; position: relative; z-index: 1; }
.cta-block__meta { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; font-size: 14px; color: var(--text-dim); position: relative; z-index: 1; }

/* Footer */
.footer { background: #04050c; border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; padding-bottom: 40px; }
.footer__brand p { font-size: 13.5px; max-width: 320px; }
.footer__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 360px; }
.footer__cols h4 { color: #fff; font-size: 14px; margin-bottom: 14px; }
.footer__cols a { display: block; font-size: 13.5px; color: var(--text-dim); margin-bottom: 10px; }
.footer__cols a:hover { color: var(--orange-light); }
.footer__bottom { border-top: 1px solid var(--border); padding: 18px 0; text-align: center; font-size: 12.5px; color: var(--text-dim); }

/* Reveal animation */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 980px) {
  .hero__inner, .section--split, .footer__inner { grid-template-columns: 1fr; }
  .section--split-rev .section__visual { order: 0; }
  .grid-features, .grid-modules { grid-template-columns: repeat(2, 1fr); }
  .grid-pricing { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .hero { padding: 130px 0 70px; }
  .hero__visual { height: 380px; margin-top: 20px; }
}
@media (max-width: 768px) {
  .logo__text { font-size: 14px; }
  .logo__text strong { display: block; }
  .header__phone { display: none !important; }
  .btn--sm { padding: 9px 12px; font-size: 12.5px; }

  /* Sin movimiento/transiciones en menú y botones del header en móvil */
  .nav, .nav-toggle span, .btn, .ai-launcher {
    transition: none !important; animation: none !important;
  }
  .header { backdrop-filter: none; background: #07080f; }
  .ai-launcher:hover, .ai-launcher:active { transform: none !important; box-shadow: 0 10px 30px rgba(255,102,0,0.4) !important; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #0a0c1c; border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    flex-direction: column; align-items: stretch; padding: 10px 20px 18px; gap: 4px;
    max-height: calc(100vh - 72px); max-height: calc(100svh - 72px); overflow-y: auto;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 4px; border-bottom: 1px solid var(--border); font-size: 15.5px; }
  .nav a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .btn:hover, .btn:active { transform: none !important; box-shadow: none !important; }
  .btn--primary, .btn--primary:hover, .btn--primary:active { box-shadow: 0 8px 20px rgba(255,102,0,0.3) !important; }

  .grid-features { grid-template-columns: 1fr; }
  .grid-modules { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .module-card { padding: 18px; }
  .module-card:hover { transform: none; }
  .module-card__icon { width: 38px; height: 38px; margin-bottom: 10px; }
  .module-card__icon svg { width: 20px; height: 20px; }
  .module-card h3 { font-size: 14.5px; }
  .module-card p { font-size: 12.5px; margin-bottom: 10px; }
  .module-card__tags { gap: 5px; }
  .module-card__tags li { font-size: 10.5px; padding: 4px 9px; }
  .footer__cols { grid-template-columns: 1fr; }
  .ai-launcher__text { display: none; }
  .ai-launcher { padding: 14px; bottom: 18px; right: 18px; }
}

@media (max-width: 420px) {
  .logo__text { display: none; }
  .header__actions { gap: 8px; }
  .btn--sm { padding: 9px 10px; font-size: 12px; }
}
