/* ===================================================================
   JOKER INVEST GROUP — LANDING
   Paleta: violeta profundo + verde tóxico sobre negro. Orden en el caos.
=================================================================== */

:root {
  --bg: #07030c;
  --bg-alt: #0f0818;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  --purple-900: #180430;
  --purple-700: #3b0e6e;
  --purple-500: #6d1fb0;
  --purple-400: #9b3df0;
  --purple-300: #c084fc;

  --green-500: #37e02a;
  --green-400: #6dfc4c;
  --green-300: #a6ff8f;

  --white: #f7f3ff;
  --muted: #b6a8cf;
  --muted-2: #7c6d97;

  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }
svg { display: block; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* subtle grain for premium texture */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===================== TYPE ===================== */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--green-400);
  margin-bottom: 14px;
}

.text-gradient {
  background: linear-gradient(100deg, var(--green-400) 0%, var(--purple-300) 60%, var(--purple-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  position: relative;
  background: linear-gradient(100deg, var(--green-400), var(--purple-400));
  color: #0a0410;
  box-shadow: 0 8px 30px -8px rgba(155, 61, 240, 0.55);
  overflow: hidden;
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.btn--primary:hover::before { transform: translateX(120%); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px -6px rgba(109, 252, 76, 0.4); }
.btn--primary span { position: relative; z-index: 1; }

.btn--ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--border-strong); transform: translateY(-2px); background: var(--surface-strong); }

.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--full { width: 100%; }

/* ===================== NAV ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 3, 12, 0.75);
  backdrop-filter: blur(16px) saturate(140%);
  border-color: var(--border);
  padding: 12px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: flex; align-items: center; gap: 11px; line-height: 1; }
.logo__text { display: flex; flex-direction: column; gap: 3px; }
.logo__mark {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0.02em;
  background: linear-gradient(95deg, var(--green-400), var(--purple-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo__mark .dot { color: var(--green-400); -webkit-text-fill-color: var(--green-400); }
.logo__sub { font-size: 9.5px; letter-spacing: 0.28em; color: var(--muted-2); font-weight: 600; }

/* animated brand mark: diamond emblem with a live "market ticker" line */
.brand-mark {
  position: relative;
  width: 34px; height: 34px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.brand-mark__diamond {
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 7px rgba(155, 61, 240, 0.55));
  animation: brand-pulse 3.2s ease-in-out infinite;
  transform-origin: center;
}
@keyframes brand-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.07) rotate(2deg); }
}
.brand-mark__dot {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 6px 1px rgba(255, 255, 255, 0.9);
  offset-path: path("M9 25 L15 17 L20 21 L26 11 L32 16");
  offset-rotate: 0deg;
  animation: ticker-move 2.6s linear infinite;
}
@keyframes ticker-move {
  0% { offset-distance: 0%; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

.nav__links { display: flex; gap: 32px; }
.nav-link { font-size: 14.5px; font-weight: 500; color: var(--muted); transition: color 0.25s; position: relative; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: linear-gradient(90deg, var(--green-400), var(--purple-400));
  transform: scaleX(0); transform-origin: right; transition: transform 0.35s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta { flex-shrink: 0; }

.nav__burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none;
}
.nav__burger span { width: 22px; height: 2px; background: var(--white); transition: 0.3s; margin: 0 auto; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: 168px 0 60px;
  overflow: hidden;
}

.hero__blobs { position: absolute; inset: 0; z-index: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: drift 16s ease-in-out infinite alternate;
}
.blob--purple {
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--purple-500), transparent 70%);
  top: -160px; left: -120px;
}
.blob--green {
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--green-500), transparent 70%);
  bottom: -200px; right: -140px;
  animation-delay: -6s;
}
@keyframes drift {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.08); }
}
.grid-overlay {
  position: absolute; inset: 0;
  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 60% 50% at 50% 20%, black 40%, transparent 90%);
}

.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero__title {
  font-size: clamp(38px, 5vw, 60px);
  margin-bottom: 22px;
}
.hero__desc {
  font-size: 17.5px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero__stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat__num, .stat__suffix {
  font-family: var(--font-head); font-weight: 700; font-size: 28px; color: var(--white); display: inline;
}
.stat__suffix { color: var(--green-400); }
.stat__label { font-size: 12.5px; color: var(--muted-2); margin-top: 2px; }

/* hero visual — signal mockup */
.hero__visual { position: relative; height: 460px; }

.signal-card {
  position: absolute;
  top: 10px; left: 10%;
  width: 300px;
  background: linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 22px;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}
.signal-card__glow {
  position: absolute; inset: -1px; border-radius: inherit; z-index: -1;
  background: linear-gradient(140deg, var(--green-400), transparent 40%, var(--purple-400));
  opacity: 0.35; filter: blur(18px);
}
.signal-card__header {
  display: flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: 13px; font-weight: 600; margin-bottom: 18px;
}
.signal-card__header svg { color: var(--green-400); }
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green-400);
  margin-left: auto; box-shadow: 0 0 0 0 rgba(109,252,76,0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(109,252,76,0.55); }
  70% { box-shadow: 0 0 0 9px rgba(109,252,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(109,252,76,0); }
}
.signal-card__pair { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.pair-name { font-family: var(--font-head); font-weight: 700; font-size: 19px; }
.pair-tag { font-size: 11.5px; font-weight: 700; padding: 4px 10px; border-radius: 999px; letter-spacing: 0.04em; }
.pair-tag--long { background: rgba(109,252,76,0.15); color: var(--green-400); border: 1px solid rgba(109,252,76,0.3); }
.signal-card__rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.row { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); border-bottom: 1px dashed var(--border); padding-bottom: 8px; }
.row .up { color: var(--green-400); font-weight: 600; }
.row .down { color: #ff6b7a; font-weight: 600; }
.signal-card__footer { font-size: 11.5px; color: var(--muted-2); text-align: right; }

.mini-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: rgba(15,8,24,0.85);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 13px; font-weight: 500;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px -14px rgba(0,0,0,0.55);
  z-index: 3;
}
.mini-card--excel { top: 300px; left: -10px; color: var(--green-300); animation: float 7s ease-in-out infinite; animation-delay: -2s; }
.mini-card--excel svg { color: var(--green-400); }
.mini-card--tg { top: 60px; right: -10px; color: var(--purple-300); animation: float 5.5s ease-in-out infinite; animation-delay: -1s; }
.mini-card--tg svg { color: var(--purple-300); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ticker */
.ticker {
  margin-top: 70px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ticker__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scroll-x 24s linear infinite;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  font-weight: 600;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================== TRUSTBAR ===================== */
.trustbar { padding: 50px 24px 10px; text-align: center; }
.trustbar__label { font-size: 12.5px; letter-spacing: 0.1em; color: var(--muted-2); margin-bottom: 26px; text-transform: uppercase; }
.trustbar__logos { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ===================== IMAGE PLACEHOLDERS ===================== */
.img-ph {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 10px, transparent 10px 20px),
    linear-gradient(160deg, rgba(155,61,240,0.08), rgba(109,252,76,0.05));
  color: var(--muted-2);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  overflow: hidden;
}
.img-ph::before {
  content: "";
  width: 30px; height: 30px;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, calc(-50% - 14px));
  background: var(--muted-2);
  opacity: 0.5;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E") center / contain no-repeat;
}
.img-ph::after {
  content: attr(data-label);
  position: absolute; bottom: 14px;
}
.img-ph--logo { width: 130px; height: 46px; font-size: 10px; }
.img-ph--logo::before { width: 18px; height: 18px; transform: translate(-50%, calc(-50% - 9px)); }
.img-ph--wide { width: 100%; aspect-ratio: 16/10; margin-bottom: 22px; }
.img-ph--avatar { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; }
.img-ph--avatar::before { width: 16px; height: 16px; }
.img-ph--avatar::after { display: none; }

/* ===================== SECTIONS (generic) ===================== */
.section { padding: 120px 0; position: relative; }
.section--alt { background: var(--bg-alt); }

.section__head { max-width: 660px; margin: 0 auto 64px; text-align: center; }
.section__head .eyebrow { display: block; text-align: center; }
.section__title { font-size: clamp(30px, 3.6vw, 42px); margin-bottom: 16px; }
.section__desc { color: var(--muted); font-size: 16.5px; }
.section__desc--note { font-size: 13px; color: var(--muted-2); font-style: italic; margin-top: 6px; }

/* ===================== CARDS GRID (ventajas) ===================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: var(--surface-strong);
}
.card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(109,252,76,0.14), rgba(155,61,240,0.14));
  color: var(--green-400);
  margin-bottom: 20px;
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 18.5px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 14.5px; }

/* ===================== STEPS ===================== */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 12px;
}
.step { text-align: center; padding: 0 8px; }
.step__num {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700;
  color: var(--bg);
  background: linear-gradient(100deg, var(--green-400), var(--purple-300));
  width: 40px; height: 40px; line-height: 40px;
  border-radius: 50%;
  margin-bottom: 18px;
}
.step h3 { font-size: 18px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 14.5px; max-width: 260px; margin: 0 auto; }
.step-line { align-self: center; height: 1px; margin-top: 20px; background: linear-gradient(90deg, var(--green-400), var(--purple-400)); opacity: 0.35; }

/* ===================== SERVICES ===================== */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.service:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
  color: var(--green-400);
  background: rgba(109,252,76,0.12);
  border: 1px solid rgba(109,252,76,0.25);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 12px;
}
.tag--soon { color: var(--purple-300); background: rgba(155,61,240,0.12); border-color: rgba(155,61,240,0.28); }
.service__body { padding: 6px 10px 14px; }
.service h3 { font-size: 18.5px; margin-bottom: 8px; }
.service p { color: var(--muted); font-size: 14.5px; }

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.t-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.t-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.t-card__stars { color: var(--green-400); letter-spacing: 2px; font-size: 14px; }
.t-card p { font-size: 14.5px; color: var(--white); flex: 1; }
.t-card__author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  background: linear-gradient(135deg, var(--purple-500), var(--green-500));
  color: var(--white);
}
.t-card__author strong { display: block; font-size: 13.5px; }
.t-card__author span { font-size: 12px; color: var(--muted-2); }

/* ===================== CTA BANNER ===================== */
.cta-banner { padding: 20px 24px 0; }
.cta-banner__inner {
  position: relative;
  border-radius: 28px;
  padding: 70px 40px;
  text-align: center;
  background: linear-gradient(135deg, var(--purple-700), var(--bg-alt) 60%);
  border: 1px solid var(--border-strong);
  overflow: hidden;
}
.cta-banner__inner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(109,252,76,0.18), transparent 55%);
}
.cta-banner__inner h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 14px; position: relative; }
.cta-banner__inner p { color: var(--muted); margin-bottom: 30px; position: relative; }
.cta-banner__inner .btn { position: relative; }

/* ===================== CONTACT ===================== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact__info .section__title { text-align: left; }
.contact__list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.contact__list li { display: flex; align-items: center; gap: 12px; color: var(--muted); }
.contact__list svg { width: 20px; height: 20px; color: var(--green-400); flex-shrink: 0; }
.contact__list a:hover { color: var(--white); }

.contact__form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex; flex-direction: column; gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; font-weight: 600; color: var(--muted); }
.field input, .field textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14.5px;
  resize: vertical;
  transition: border-color 0.3s, background 0.3s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-400);
  background: rgba(255,255,255,0.05);
}
.form-note { font-size: 13px; color: var(--green-400); min-height: 16px; }
.form-note.error { color: #ff6b7a; }

/* ===================== FOOTER ===================== */
.footer { border-top: 1px solid var(--border); padding-top: 70px; background: var(--bg-alt); }
.footer__inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px;
  padding-bottom: 60px;
}
.footer__brand p { color: var(--muted-2); font-size: 13.5px; margin-top: 14px; max-width: 220px; }
.footer__links { display: flex; gap: 70px; }
.footer__links h4 { font-size: 13px; color: var(--muted-2); letter-spacing: 0.05em; margin-bottom: 16px; text-transform: uppercase; }
.footer__links a { display: block; color: var(--muted); font-size: 14.5px; margin-bottom: 12px; transition: color 0.25s; }
.footer__links a:hover { color: var(--green-400); }
.footer__legal {
  border-top: 1px solid var(--border);
  padding: 24px 24px 40px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 12.5px; color: var(--muted-2);
}
.disclaimer { max-width: 760px; line-height: 1.6; }

/* ===================== REVEAL ANIMATIONS ===================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal--delay-1.in-view { transition-delay: 0.12s; }
.reveal--delay-2.in-view { transition-delay: 0.24s; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { height: 380px; margin-top: 40px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .step-line { display: none; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: rgba(7,3,12,0.97);
    padding: 24px; gap: 20px; border-bottom: 1px solid var(--border);
  }
  .hero { padding-top: 130px; }
  .cards-grid, .services, .testimonials { grid-template-columns: 1fr; }
  .signal-card { position: static; width: 100%; margin: 0 auto; }
  .mini-card { display: none; }
  .hero__visual { height: auto; }
  .footer__inner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
