@font-face {
  font-family: 'Olnova-ExtraBoldCondIta';
  src: url('../_font/Olnova-ExtraBoldCondIta.ttf') format('truetype');
  font-style: italic;
  font-weight: 800;
  font-display: swap;
}

:root {
  --blue: #068AD0;
  --blue-bright: #22A9EE;
  --blue-dark: #045F91;
  --orange: #F29B27;
  --orange-bright: #FFB34E;
  --green: #28C780;
  --bg: #050B12;
  --bg-soft: #07111D;
  --surface: #0B1622;
  --surface-2: #101E2B;
  --surface-3: #142635;
  --text: #F4F7FA;
  --muted: #9FB0C0;
  --muted-strong: #C2CED8;
  --line: rgba(163, 190, 211, 0.14);
  --line-strong: rgba(163, 190, 211, 0.24);
  --blue-glow: rgba(6, 138, 208, 0.22);
  --orange-glow: rgba(242, 155, 39, 0.18);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --shadow-small: 0 16px 48px rgba(0, 0, 0, 0.24);
  --radius: 24px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 4%, rgba(242, 155, 39, 0.11), transparent 28rem),
    radial-gradient(circle at 92% 10%, rgba(6, 138, 208, 0.16), transparent 32rem),
    linear-gradient(180deg, #050B12 0%, #07111D 48%, #050B12 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: rgba(242, 155, 39, .32); color: #fff; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 11, 18, 0.78);
  backdrop-filter: blur(22px) saturate(140%);
}
.topbar__content {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand__logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(6, 138, 208, .22));
}
.brand__name {
  display: inline-flex;
  align-items: baseline;
  font-family: 'Olnova-ExtraBoldCondIta', "Arial Narrow", "Roboto Condensed", sans-serif;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -.045em;
  font-size: 1.45rem;
  line-height: 1;
}
.brand__sed { color: var(--orange); }
.brand__soft { color: var(--blue-bright); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: var(--muted-strong);
  font-size: .94rem;
  font-weight: 750;
  text-decoration: none;
  transition: color 180ms ease;
}
.nav a:hover { color: #fff; }

.btn {
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 16px;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid rgba(34, 169, 238, .38); outline-offset: 3px; }
.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  box-shadow: 0 18px 46px rgba(6, 138, 208, .28), inset 0 1px 0 rgba(255,255,255,.22);
}
.btn--primary:hover { box-shadow: 0 22px 56px rgba(6, 138, 208, .40), inset 0 1px 0 rgba(255,255,255,.22); }
.btn--orange {
  color: #101820;
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  box-shadow: 0 18px 46px rgba(242, 155, 39, .24), inset 0 1px 0 rgba(255,255,255,.32);
}
.btn--orange:hover { box-shadow: 0 22px 56px rgba(242, 155, 39, .36); }
.btn--outline {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(10px);
}
.btn--outline:hover { border-color: rgba(34,169,238,.45); background: rgba(6,138,208,.10); }
.btn--small { min-height: 44px; padding-inline: 18px; border-radius: 13px; }

.hero { position: relative; padding: 92px 0 80px; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 75% 35%, rgba(6,138,208,.11), transparent 24rem),
    linear-gradient(180deg, rgba(255,255,255,.012), transparent);
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 68px;
}
.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(34,169,238,.22);
  border-radius: 999px;
  color: #BFE8FC;
  background: rgba(6,138,208,.09);
  font-size: .83rem;
  font-weight: 850;
  letter-spacing: .02em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(40,199,128,.10), 0 0 18px rgba(40,199,128,.55);
}
h1 {
  margin: 23px 0 20px;
  max-width: 800px;
  font-size: clamp(2.75rem, 6vw, 5.45rem);
  line-height: .98;
  letter-spacing: -.06em;
}
.accent {
  background: linear-gradient(105deg, var(--orange) 4%, #FFD18B 38%, var(--blue-bright) 82%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__subtitle {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 25px;
  color: var(--muted-strong);
  font-size: .92rem;
}
.trust-item { display: inline-flex; align-items: center; gap: 7px; }
.trust-item svg { color: var(--green); flex: 0 0 auto; }

.hero-card-wrap { position: relative; }
.hero-card-wrap::before,
.hero-card-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}
.hero-card-wrap::before {
  width: 190px;
  height: 190px;
  top: -48px;
  right: -45px;
  background: rgba(242,155,39,.19);
}
.hero-card-wrap::after {
  width: 170px;
  height: 170px;
  left: -42px;
  bottom: -38px;
  background: rgba(6,138,208,.23);
}
.hero-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(16,30,43,.96), rgba(7,17,29,.94));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.055);
}
.hero-card__head {
  min-height: 94px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.hero-card__identity { display: flex; align-items: center; gap: 13px; }
.hero-card__identity img { width: 58px; height: 58px; object-fit: contain; }
.hero-card__identity strong { display: block; font-size: 1.04rem; }
.hero-card__identity span { display: block; color: var(--muted); font-size: .82rem; }
.status {
  padding: 7px 10px;
  border: 1px solid rgba(40,199,128,.18);
  border-radius: 999px;
  color: #8CE8B9;
  background: rgba(40,199,128,.09);
  font-size: .75rem;
  font-weight: 850;
  white-space: nowrap;
}
.dashboard { padding: 22px; background: rgba(3,10,17,.35); }
.dashboard__top {
  padding: 25px;
  border: 1px solid rgba(34,169,238,.20);
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 14%, rgba(255,255,255,.16), transparent 11rem),
    linear-gradient(135deg, #034E79, var(--blue));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}
.dashboard__top small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.72);
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.dashboard__top h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.dashboard__stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-top: 14px;
}
.stat {
  min-height: 100px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}
.stat__icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #8DD9FF;
  background: rgba(6,138,208,.13);
  font-weight: 900;
}
.stat strong { color: var(--muted-strong); font-size: .86rem; line-height: 1.25; }

.section { padding: 78px 0; }
.section--white {
  background: rgba(255,255,255,.018);
  border-block: 1px solid var(--line);
}
.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading__kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-bright);
  font-size: .80rem;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.section-heading h2 {
  margin: 0 0 13px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.section-heading p { margin: 0; color: var(--muted); font-size: 1.06rem; }

.benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.benefit {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16,30,43,.82), rgba(9,20,31,.74));
  box-shadow: var(--shadow-small), inset 0 1px 0 rgba(255,255,255,.035);
  transition: transform 180ms ease, border-color 180ms ease;
}
.benefit:hover { transform: translateY(-4px); border-color: rgba(34,169,238,.28); }
.benefit::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(6,138,208,.08);
}
.benefit__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #BDEAFF;
  background: linear-gradient(145deg, rgba(242,155,39,.13), rgba(6,138,208,.14));
  font-size: 1.25rem;
  font-weight: 900;
}
.benefit h3 { margin: 0 0 8px; font-size: 1.18rem; }
.benefit p { margin: 0; color: var(--muted); }

.journey {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: start;
  gap: 58px;
}
.journey__aside {
  position: sticky;
  top: 110px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 10%, rgba(242,155,39,.09), transparent 15rem),
    linear-gradient(145deg, rgba(16,30,43,.92), rgba(7,17,29,.90));
  box-shadow: var(--shadow-small), inset 0 1px 0 rgba(255,255,255,.04);
}
.journey__aside img { width: 92px; margin-bottom: 20px; filter: drop-shadow(0 12px 25px rgba(6,138,208,.18)); }
.journey__aside h3 { margin: 0 0 10px; font-size: 1.55rem; letter-spacing: -.03em; }
.journey__aside p { margin: 0; color: var(--muted); }
.steps { display: grid; gap: 16px; counter-reset: step; }
.step {
  position: relative;
  padding: 24px 24px 24px 82px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(16,30,43,.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  counter-increment: step;
}
.step::before {
  content: "0" counter(step);
  position: absolute;
  top: 24px;
  left: 24px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  box-shadow: 0 10px 24px rgba(6,138,208,.20);
  font-size: .78rem;
  font-weight: 900;
}
.step h3 { margin: 0 0 6px; font-size: 1.15rem; }
.step p { margin: 0; color: var(--muted); }

.contact-card {
  position: relative;
  padding: clamp(34px,6vw,68px);
  overflow: hidden;
  border: 1px solid rgba(34,169,238,.24);
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 8%, rgba(242,155,39,.36), transparent 24rem),
    radial-gradient(circle at 92% 86%, rgba(255,255,255,.11), transparent 20rem),
    linear-gradient(135deg, #033B5D, #057FBE 62%, #0699D8);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.14);
}
.contact-card__grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 42px; }
.contact-card h2 {
  margin: 0 0 14px;
  max-width: 760px;
  font-size: clamp(2.1rem,5vw,4rem);
  line-height: 1;
  letter-spacing: -.05em;
}
.contact-card p { max-width: 690px; margin: 0; color: rgba(255,255,255,.76); font-size: 1.06rem; }
.contact-card__actions { display: flex; flex-direction: column; gap: 12px; min-width: 235px; }
.contact-card .btn--outline {
  color: #fff;
  border-color: rgba(255,255,255,.25);
  background: rgba(3,25,39,.25);
}
.contact-card .btn--outline:hover { background: rgba(3,25,39,.42); border-color: rgba(255,255,255,.42); }

.faq { display: grid; gap: 12px; max-width: 880px; }
details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(16,30,43,.64);
  overflow: hidden;
  transition: border-color 180ms ease, background 180ms ease;
}
details[open] { border-color: rgba(34,169,238,.26); background: rgba(16,30,43,.90); }
summary { padding: 20px 22px; cursor: pointer; list-style: none; font-weight: 850; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--blue-bright); font-size: 1.3rem; line-height: 1; }
details[open] summary::after { content: "−"; }
details p { margin: 0; padding: 0 22px 20px; color: var(--muted); }

footer {
  padding: 38px 0 100px;
  border-top: 1px solid var(--line);
  background: rgba(3,8,13,.68);
}
.footer__content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img { width: 54px; height: 54px; object-fit: contain; }
.footer__brand p { margin: 4px 0 0; color: var(--muted); font-size: .86rem; }
.footer__links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 20px; }
.footer__links a { color: var(--muted-strong); font-size: .91rem; font-weight: 750; text-decoration: none; }
.footer__links a:hover { color: var(--blue-bright); }

.whatsapp-float {
  position: fixed;
  z-index: 50;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #25D366, #16A954);
  box-shadow: 0 18px 42px rgba(20,145,81,.32), inset 0 1px 0 rgba(255,255,255,.28);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 22px 50px rgba(20,145,81,.43); }
.whatsapp-float svg { width: 29px; height: 29px; }

.mobile-cta {
  display: none;
  position: fixed;
  z-index: 45;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 19px;
  background: rgba(5,11,18,.88);
  box-shadow: 0 18px 48px rgba(0,0,0,.44);
  backdrop-filter: blur(20px);
  transform: translateY(130%);
  transition: transform 220ms ease;
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta .btn { width: 100%; }

@media (max-width: 960px) {
  .nav a:not(.btn) { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-card-wrap { max-width: 680px; }
  .benefits { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr; }
  .journey__aside { position: static; }
  .contact-card__grid { grid-template-columns: 1fr; }
  .contact-card__actions { min-width: 0; max-width: 360px; }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar__content { min-height: 70px; }
  .brand__logo { width: 46px; height: 46px; }
  .brand__name { font-size: 1.25rem; }
  .nav .btn { display: none; }
  .hero { padding: 54px 0 62px; }
  h1 { font-size: clamp(2.55rem, 13vw, 4.15rem); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-card { border-radius: 24px; }
  .hero-card__head { padding: 17px; }
  .hero-card__identity img { width: 48px; height: 48px; }
  .status { display: none; }
  .dashboard { padding: 15px; }
  .dashboard__top { padding: 21px; }
  .dashboard__stats { grid-template-columns: 1fr; }
  .stat { min-height: 78px; }
  .section { padding: 60px 0; }
  .benefit { padding: 24px; }
  .journey__aside { padding: 24px; }
  .step { padding: 78px 22px 23px; }
  .step::before { top: 22px; left: 22px; }
  .contact-card { border-radius: 25px; }
  .contact-card__actions { max-width: none; }
  .footer__content { grid-template-columns: 1fr; }
  .footer__links { justify-content: flex-start; }
  .whatsapp-float { display: none; }
  .mobile-cta { display: block; }
  footer { padding-bottom: 116px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
