:root {
  --bg: #05080b;
  --bg-soft: #081118;
  --panel: #0d1820;
  --panel-2: #101f29;
  --line: rgba(142, 184, 200, 0.17);
  --line-strong: rgba(67, 230, 164, 0.37);
  --text: #f5f8fa;
  --muted: #a7b7c1;
  --muted-2: #7c909b;
  --blue: #00c8ff;
  --blue-soft: #73dcff;
  --green: #43e6a4;
  --green-dark: #25ba7b;
  --red: #ff6478;
  --radius: 23px;
  --container: 1180px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.64;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
body::selection { background: var(--green); color: #052719; }

img, svg { display: block; }
img {
  max-width: 100%;
  height: auto;
}
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
button, a { -webkit-tap-highlight-color: transparent; }

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

.section {
  position: relative;
  padding: 108px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  border-radius: 9px;
  background: var(--green);
  color: #052719;
  font-weight: 850;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(67, 230, 164, 0.1), 0 0 20px rgba(67, 230, 164, 0.82);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #ffffff !important;
  font-size: 0.91rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover { transform: translateY(-2px); }

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 180ms ease;
}

.button:hover svg { transform: translateX(3px); }

.button-primary,
.button-small {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: 0 16px 40px rgba(67, 230, 164, 0.2);
}

.button-primary:hover,
.button-small:hover {
  background: linear-gradient(135deg, #2bc987, #58edb2);
  box-shadow: 0 18px 50px rgba(67, 230, 164, 0.3);
}

.button-small {
  min-height: 45px;
  padding: 10px 17px;
  border-radius: 10px;
  font-size: 0.8rem;
}

.button-large {
  min-height: 66px;
  padding: 17px 23px;
}

.button-large strong {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
  white-space: nowrap;
}

.button-wide {
  width: 100%;
  min-height: 64px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 82px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 8, 11, 0.72);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 8, 11, 0.95);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-logo {
  display: grid;
  width: 50px;
  height: 50px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(67, 230, 164, 0.2);
  border-radius: 14px;
  background: #fafbf9;
  box-shadow: 0 10px 30px rgba(0, 200, 255, 0.08);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 880;
  letter-spacing: -0.04em;
}

.brand-text span { color: var(--green); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav > a:not(.button) {
  color: #c4d0d6;
  font-size: 0.85rem;
  font-weight: 740;
  transition: color 160ms ease;
}

.main-nav > a:not(.button):hover { color: var(--green); }

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  color: var(--text);
}

.menu-toggle i {
  width: 20px;
  height: 2px;
  border-radius: 3px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  padding: 150px 0 88px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 16%, rgba(0, 200, 255, 0.09), transparent 31%),
    radial-gradient(circle at 18% 78%, rgba(67, 230, 164, 0.07), transparent 28%),
    linear-gradient(145deg, #05080b 0%, #08131a 58%, #061016 100%);
}

.cyber-grid,
.offer-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(111, 168, 190, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 168, 190, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 92%);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(45px);
  pointer-events: none;
}

.glow-blue {
  top: 120px;
  right: -210px;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(0, 200, 255, 0.3);
  box-shadow: inset 0 0 130px rgba(0, 200, 255, 0.07);
}

.glow-green {
  bottom: -210px;
  left: -180px;
  width: 490px;
  height: 490px;
  background: rgba(67, 230, 164, 0.06);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 610px;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  align-items: center;
  gap: 75px;
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(2.8rem, 5vw, 5.05rem);
  font-weight: 880;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero-copy h1::after {
  display: inline-block;
  width: 0.16em;
  height: 0.16em;
  margin-left: 0.08em;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 22px rgba(67, 230, 164, 0.85);
  content: "";
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: #b8c5cc;
  font-size: clamp(1.03rem, 1.6vw, 1.18rem);
}

.hero-actions {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.microcopy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
}

.microcopy svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 27px;
  color: #bdcbd1;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-points span { display: flex; align-items: center; gap: 7px; }
.hero-points i { color: var(--green); font-style: normal; font-weight: 900; }

.hero-visual {
  position: relative;
  min-height: 600px;
  isolation: isolate;
}

.phone {
  position: absolute;
  z-index: 5;
  top: 17px;
  left: 50%;
  width: 322px;
  height: 600px;
  padding: 12px;
  border: 1px solid rgba(224, 239, 246, 0.35);
  border-radius: 43px;
  background: linear-gradient(145deg, #748892, #e0eaed 12%, #435660 49%, #b8c7ce);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.58), 0 0 54px rgba(0, 200, 255, 0.13);
  transform: translateX(-50%) perspective(1200px) rotateY(-8deg) rotateZ(2.2deg);
}

.phone::before {
  position: absolute;
  z-index: -1;
  inset: 6px;
  border-radius: 37px;
  background: #020405;
  content: "";
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 4px solid #05080a;
  border-radius: 32px;
  background:
    linear-gradient(rgba(0, 200, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 50% 38%, rgba(0, 200, 255, 0.1), transparent 42%),
    #061218;
  background-size: 31px 31px, 31px 31px, auto, auto;
}

.phone-speaker {
  position: absolute;
  z-index: 8;
  top: 15px;
  left: 50%;
  width: 70px;
  height: 18px;
  border-radius: 0 0 14px 14px;
  background: #05080a;
  transform: translateX(-50%);
}

.status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 0;
  color: #cdd9de;
  font-size: 0.58rem;
  font-weight: 850;
}

.status-icons { color: var(--green); letter-spacing: 0.12em; }

.phone-tag {
  margin: 67px 0 0;
  color: var(--blue-soft);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-align: center;
}

.timer-wrap {
  display: grid;
  height: 222px;
  place-items: center;
}

.timer-ring {
  position: relative;
  display: grid;
  width: 185px;
  height: 185px;
  place-items: center;
  border: 4px solid rgba(67, 230, 164, 0.22);
  border-top-color: var(--green);
  border-right-color: var(--green);
  border-radius: 50%;
  box-shadow: inset 0 0 35px rgba(0, 200, 255, 0.05), 0 0 25px rgba(67, 230, 164, 0.12);
  transform: rotate(8deg);
}

.timer-ring::before {
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(0, 200, 255, 0.25);
  border-radius: 50%;
  content: "";
}

.timer-ring span,
.timer-ring small {
  position: absolute;
  transform: rotate(-8deg);
}

.timer-ring span {
  top: 53px;
  color: #ffffff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  text-shadow: 0 0 16px rgba(0, 200, 255, 0.45);
}

.timer-ring small {
  top: 110px;
  color: var(--green);
  font-size: 0.52rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.phone-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  padding: 0 36px;
}

.phone-progress span {
  height: 4px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
}

.phone-progress .active {
  background: var(--green);
  box-shadow: 0 0 10px rgba(67, 230, 164, 0.5);
}

.phone-copy { margin-top: 28px; text-align: center; }
.phone-copy strong, .phone-copy small { display: block; }
.phone-copy strong { font-size: 0.9rem; }
.phone-copy small { margin-top: 5px; color: var(--muted); font-size: 0.62rem; }

.start-button {
  margin: 35px 33px 0;
  padding: 13px;
  border: 1px solid rgba(67, 230, 164, 0.45);
  border-radius: 10px;
  background: rgba(67, 230, 164, 0.1);
  color: var(--green);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-align: center;
}

.phone-shadow {
  position: absolute;
  z-index: 0;
  bottom: -7px;
  left: 50%;
  width: 360px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.68);
  filter: blur(22px);
  transform: translateX(-50%);
}

.orbit {
  position: absolute;
  z-index: 1;
  top: 51%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 485px;
  height: 485px;
  border: 1px solid rgba(0, 200, 255, 0.2);
  box-shadow: 0 0 60px rgba(0, 200, 255, 0.05);
}

.orbit-one::after {
  position: absolute;
  top: 66px;
  right: 25px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 20px var(--blue);
  content: "";
}

.orbit-two {
  width: 420px;
  height: 550px;
  border: 1px dashed rgba(67, 230, 164, 0.18);
  transform: translate(-50%, -50%) rotate(26deg);
}

.verify-seal {
  position: absolute;
  z-index: 8;
  top: 126px;
  right: -32px;
  display: flex;
  min-width: 211px;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border: 1px solid rgba(67, 230, 164, 0.28);
  border-radius: 14px;
  background: rgba(9, 22, 29, 0.9);
  box-shadow: 0 17px 42px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.verify-seal svg {
  width: 35px;
  height: 35px;
  fill: rgba(67, 230, 164, 0.06);
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.verify-seal b, .verify-seal small { display: block; line-height: 1.25; }
.verify-seal b { font-size: 0.75rem; }
.verify-seal small { margin-top: 3px; color: var(--muted); font-size: 0.64rem; }

.system-chip {
  position: absolute;
  z-index: 8;
  bottom: 77px;
  left: -12px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(9, 22, 29, 0.88);
  color: #d6e0e4;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  box-shadow: 0 15px 36px rgba(0, 0, 0, 0.25);
}

.system-chip span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

.section-heading {
  max-width: 735px;
  margin-bottom: 50px;
}

.section-heading-center {
  max-width: 930px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading-center .eyebrow { justify-content: center; }

.section-heading h2,
.steps-intro h2,
.offer-copy h2 {
  margin-bottom: 21px;
  font-size: clamp(2.15rem, 4.2vw, 3.9rem);
  font-weight: 860;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.section-heading > p:not(.eyebrow),
.steps-intro > p:not(.eyebrow),
.offer-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.problem {
  background: linear-gradient(180deg, #070c10, #091118);
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.risk-card {
  position: relative;
  min-height: 325px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(17, 30, 39, 0.97), rgba(8, 16, 22, 0.97));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.risk-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  content: "";
  opacity: 0.55;
}

.risk-card:nth-child(1)::before { background: linear-gradient(90deg, transparent, var(--red), transparent); }
.risk-card:nth-child(3)::before { background: linear-gradient(90deg, transparent, var(--green), transparent); }

.risk-number {
  position: absolute;
  top: 23px;
  right: 27px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 2.65rem;
  font-weight: 900;
  line-height: 1;
}

.risk-icon {
  display: grid;
  width: 51px;
  height: 51px;
  margin-bottom: 54px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 14px;
}

.risk-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.risk-icon.red { background: rgba(255, 100, 120, 0.08); color: var(--red); }
.risk-icon.blue { background: rgba(0, 200, 255, 0.07); color: var(--blue); }
.risk-icon.green { background: rgba(67, 230, 164, 0.07); color: var(--green); }

.risk-card h3 {
  margin-bottom: 12px;
  font-size: 1.38rem;
  letter-spacing: -0.03em;
}

.risk-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.steps {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--line);
  background: #060b0f;
}

.steps-glow {
  position: absolute;
  top: -260px;
  left: -250px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(67, 230, 164, 0.05);
  filter: blur(65px);
}

.steps-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 76px;
}

.steps-intro {
  position: sticky;
  top: 120px;
}

.document-preview {
  position: relative;
  width: 210px;
  margin-top: 35px;
  padding: 9px;
  border: 1px solid rgba(0, 200, 255, 0.24);
  border-radius: 15px;
  background: #0b161d;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32), 0 0 32px rgba(0, 200, 255, 0.06);
  transform: rotate(-3deg);
}

.document-preview img { border-radius: 9px; }

.document-preview span {
  position: absolute;
  right: -41px;
  bottom: 30px;
  padding: 7px 11px;
  border-radius: 7px;
  background: var(--green);
  color: #062719;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.timeline {
  position: relative;
  display: grid;
  gap: 15px;
}

.timeline::before {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 53px;
  width: 1px;
  background: linear-gradient(var(--blue), var(--green));
  content: "";
  opacity: 0.33;
}

.step-card {
  position: relative;
  display: grid;
  min-height: 190px;
  grid-template-columns: 78px 1fr 35px;
  align-items: center;
  gap: 20px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(15, 29, 38, 0.97), rgba(8, 17, 23, 0.97));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, border-color 180ms ease;
}

.step-card:hover {
  border-color: var(--line-strong);
  transform: translateX(-5px);
}

.time {
  position: relative;
  z-index: 2;
  display: grid;
  width: 58px;
  height: 77px;
  place-items: center;
  border: 1px solid rgba(0, 200, 255, 0.3);
  border-radius: 16px;
  background: #0b1d25;
  box-shadow: 0 0 0 8px #0b141a;
}

.step-card:nth-child(2) .time,
.step-card:nth-child(4) .time { border-color: rgba(67, 230, 164, 0.35); }

.time b {
  align-self: end;
  color: var(--blue-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1.45rem;
  line-height: 1;
}

.step-card:nth-child(2) .time b,
.step-card:nth-child(4) .time b { color: var(--green); }

.time span {
  align-self: start;
  color: var(--muted-2);
  font-size: 0.57rem;
  font-weight: 800;
  text-transform: uppercase;
}

.step-content > p {
  margin-bottom: 4px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.step-content h3 {
  margin-bottom: 13px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  line-height: 1.24;
}

.step-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 15px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.75rem;
  list-style: none;
}

.step-content li::before { margin-right: 6px; color: var(--blue); content: "•"; }

.step-check {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(67, 230, 164, 0.34);
  border-radius: 8px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
}

.offer {
  overflow: hidden;
  border-bottom: 1px solid rgba(67, 230, 164, 0.13);
  background:
    radial-gradient(circle at 75% 50%, rgba(67, 230, 164, 0.11), transparent 31%),
    linear-gradient(135deg, #061016, #09242a);
}

.offer-grid {
  opacity: 0.22;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.offer-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.76fr);
  align-items: center;
  gap: 88px;
}

.offer-copy > p:not(.eyebrow) { max-width: 620px; }

.offer-copy ul {
  display: grid;
  gap: 13px;
  margin: 33px 0 0;
  padding: 0;
  list-style: none;
}

.offer-copy li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #d1dce1;
  font-size: 0.93rem;
}

.offer-copy li span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  border-radius: 50%;
  background: rgba(67, 230, 164, 0.12);
  color: var(--green);
  font-size: 0.73rem;
  font-weight: 900;
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border: 1px solid rgba(110, 224, 187, 0.25);
  border-radius: 28px;
  background: linear-gradient(155deg, rgba(16, 31, 40, 0.99), rgba(6, 14, 19, 0.99));
  box-shadow: var(--shadow), 0 0 60px rgba(67, 230, 164, 0.07);
}

.price-card::before {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(0, 200, 255, 0.06);
  content: "";
}

.price-label {
  position: relative;
  margin-bottom: 26px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.old-price, .price-intro {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.old-price { margin-bottom: 5px; }

.price {
  display: flex;
  align-items: flex-start;
  margin: 0 0 27px;
  font-size: 5.45rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.96;
}

.price > span {
  margin-top: 14px;
  margin-right: 8px;
  font-size: 1.23rem;
  letter-spacing: -0.03em;
}

.price sup {
  margin-top: 12px;
  font-size: 1.62rem;
  letter-spacing: -0.03em;
}

.secure-note {
  margin: 16px 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.secure-note span { margin-right: 5px; color: var(--green); }

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.payment-methods span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #b7c7ce;
  font-size: 0.67rem;
  font-weight: 800;
}

.faq {
  background: linear-gradient(180deg, #080f14, #05080b);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 88px;
}

.faq-layout .section-heading {
  position: sticky;
  top: 122px;
  align-self: start;
}

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 5px;
  color: #e8f0f3;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 780;
  line-height: 1.45;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary > span {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid rgba(0, 200, 255, 0.26);
  border-radius: 50%;
  background: rgba(0, 200, 255, 0.04);
}

.faq-list summary > span::before,
.faq-list summary > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary > span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] summary { color: var(--green); }
.faq-list details[open] summary > span::after { transform: translate(-50%, -50%); }

.faq-list details > div { padding: 0 58px 27px 5px; }
.faq-list details p { margin: 0; color: var(--muted); font-size: 0.93rem; }

.site-footer {
  padding: 52px 0 27px;
  border-top: 1px solid var(--line);
  background: #04070a;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 33px;
}

.footer-brand .brand-logo { width: 58px; height: 58px; }
.footer-brand > span:last-child { display: flex; flex-direction: column; }
.footer-brand small { margin-top: 2px; color: var(--muted-2); font-size: 0.68rem; font-weight: 650; }

.footer-links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-links a { color: #adbbc3; font-size: 0.78rem; font-weight: 700; }
.footer-links a:hover { color: var(--green); }

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #71838e;
  font-size: 0.7rem;
}

.mobile-cta { display: none; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .main-nav { gap: 20px; }
  .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(350px, 0.74fr); gap: 35px; }
  .hero-copy h1 { font-size: clamp(2.8rem, 5.5vw, 4.4rem); }
  .phone { width: 296px; height: 555px; }
  .hero-visual { min-height: 565px; }
  .orbit-one { width: 420px; height: 420px; }
  .orbit-two { width: 360px; height: 500px; }
  .verify-seal { right: -5px; }
  .steps-layout, .offer-layout { gap: 54px; }
}

@media (max-width: 920px) {
  .section { padding: 87px 0; }
  .menu-toggle { display: flex; }
  .menu-toggle[aria-expanded="true"] i:nth-of-type(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:nth-of-type(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] i:nth-of-type(3) { transform: translateY(-7px) rotate(-45deg); }

  .main-nav {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    display: none;
    height: calc(100vh - 82px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 29px 24px;
    background: rgba(5, 8, 11, 0.99);
  }

  .main-nav.is-open { display: flex; }
  .main-nav > a:not(.button) { padding: 17px 3px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .main-nav .button { margin-top: 22px; }

  .hero { padding: 140px 0 72px; }
  .hero-layout { grid-template-columns: 1fr; gap: 42px; }
  .hero-copy { max-width: 760px; margin-inline: auto; text-align: center; }
  .hero-copy .eyebrow, .hero-actions { justify-content: center; }
  .hero-points { justify-content: center; }
  .hero-visual { width: min(100%, 560px); margin-inline: auto; }

  .risk-grid { grid-template-columns: 1fr; }
  .risk-card { min-height: 0; }
  .risk-icon { margin-bottom: 30px; }

  .steps-layout, .offer-layout, .faq-layout { grid-template-columns: 1fr; gap: 52px; }
  .steps-intro, .faq-layout .section-heading { position: static; }
  .document-preview { width: 180px; }

  .offer-copy { text-align: center; }
  .offer-copy .eyebrow { justify-content: center; }
  .offer-copy > p:not(.eyebrow), .offer-copy h2 { margin-right: auto; margin-left: auto; }
  .offer-copy ul { display: inline-grid; text-align: left; }
  .price-card { width: min(100%, 510px); margin-inline: auto; }
}

@media (max-width: 680px) {
  body { padding-bottom: 72px; font-size: 16px; }
  .container { width: min(100% - 32px, var(--container)); }
  .section { padding: 72px 0; }
  .site-header { height: 73px; }
  .brand-logo { width: 45px; height: 45px; border-radius: 11px; }
  .brand-text { font-size: 1.07rem; }
  .main-nav { top: 73px; height: calc(100vh - 73px); }

  .hero { min-height: 0; padding: 122px 0 56px; }
  .hero-layout { min-height: 0; }
  .hero-copy h1 { margin-bottom: 21px; font-size: clamp(2.45rem, 11.8vw, 3.7rem); line-height: 1; }
  .hero-copy .eyebrow { justify-content: flex-start; text-align: left; }
  .hero-lead { font-size: 1rem; }
  .button-large { width: 100%; flex-wrap: wrap; padding: 17px; }
  .button-large strong { padding-left: 0; border-left: 0; }
  .button-large svg { display: none; }
  .microcopy { max-width: 320px; align-self: center; }
  .hero-points { gap: 8px 14px; }

  .hero-visual { min-height: 520px; }
  .phone { top: 15px; width: 270px; height: 510px; }
  .phone-tag { margin-top: 52px; }
  .timer-wrap { height: 190px; }
  .timer-ring { width: 158px; height: 158px; }
  .timer-ring span { top: 46px; font-size: 2.05rem; }
  .timer-ring small { top: 95px; }
  .phone-copy { margin-top: 22px; }
  .start-button { margin-top: 27px; }
  .orbit-one { width: 340px; height: 340px; }
  .orbit-two { width: 290px; height: 430px; }
  .verify-seal { top: 105px; right: -5px; min-width: 185px; }
  .system-chip { bottom: 22px; left: -3px; }

  .section-heading { margin-bottom: 36px; }
  .section-heading h2, .steps-intro h2, .offer-copy h2 { font-size: clamp(2.05rem, 10vw, 3.05rem); }
  .section-heading-center { text-align: left; }
  .section-heading-center .eyebrow { justify-content: flex-start; }

  .risk-card, .step-card, .price-card { padding: 24px; border-radius: 19px; }
  .step-card { grid-template-columns: 59px 1fr; gap: 17px; }
  .step-check { position: absolute; top: 20px; right: 20px; }
  .timeline::before { left: 48px; }
  .time { width: 50px; height: 69px; }
  .step-content h3 { padding-right: 20px; }
  .document-preview { margin-inline: auto; }

  .price { font-size: 4.75rem; }
  .faq-list summary { min-height: 82px; font-size: 0.93rem; }
  .faq-list details > div { padding-right: 5px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: 9px;
    left: 10px;
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 13px;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.55), 0 0 25px rgba(67, 230, 164, 0.16);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 850;
  }

  .mobile-cta strong { padding-left: 9px; border-left: 1px solid rgba(255, 255, 255, 0.45); }
}

@media (max-width: 390px) {
  .brand-text { display: none; }
  .hero-copy h1 { font-size: 2.33rem; }
  .hero-visual { transform: scale(0.92); transform-origin: top center; }
  .price-card { padding: 22px; }
  .button-wide { font-size: 0.84rem; }
}

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

/* Tema oficial ByteSeguro — alinhado à Homepage */
:root {
  --ink: #123b42;
  --teal: #0b6472;
  --teal-dark: #084e5b;
  --mint: #eaf8f2;
  --cream: #fbfcf9;
  --bg: #fbfcf9;
  --bg-soft: #f4faf7;
  --panel: #ffffff;
  --panel-2: #eaf8f2;
  --line: #dceae5;
  --line-strong: rgba(61, 187, 135, 0.52);
  --text: #123b42;
  --muted: #5e7476;
  --muted-2: #7a8c8d;
  --blue: #0b6472;
  --blue-soft: #0b6472;
  --green: #3dbb87;
  --green-dark: #2a996f;
  --red: #d95362;
  --shadow: 0 24px 60px rgba(18, 59, 66, 0.1);
}

body::selection { background: var(--green); color: #ffffff; }

.skip-link { color: #ffffff; }

.site-header {
  border-bottom-color: rgba(220, 234, 229, 0.92);
  background: rgba(251, 252, 249, 0.88);
}

.site-header.is-scrolled {
  background: rgba(251, 252, 249, 0.97);
  box-shadow: 0 12px 36px rgba(18, 59, 66, 0.09);
}

.main-nav > a:not(.button) { color: var(--ink, #123b42); }

.menu-toggle {
  background: #ffffff;
  color: var(--text);
}

.hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(11, 100, 114, 0.09), transparent 31%),
    radial-gradient(circle at 18% 78%, rgba(61, 187, 135, 0.13), transparent 29%),
    linear-gradient(145deg, #fbfcf9 0%, #f2faf6 58%, #eaf8f2 100%);
}

.cyber-grid,
.offer-grid {
  background-image:
    linear-gradient(rgba(11, 100, 114, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 100, 114, 0.07) 1px, transparent 1px);
}

.glow-blue {
  border-color: rgba(11, 100, 114, 0.18);
  box-shadow: inset 0 0 130px rgba(11, 100, 114, 0.05);
}

.glow-green { background: rgba(61, 187, 135, 0.1); }
.hero-lead, .hero-points { color: var(--muted); }

.hero-copy h1::after {
  box-shadow: 0 0 18px rgba(61, 187, 135, 0.48);
}

.verify-seal,
.system-chip {
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  border-color: var(--line);
  box-shadow: 0 16px 38px rgba(18, 59, 66, 0.12);
}

.problem { background: var(--mint, #eaf8f2); }

.risk-card {
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(18, 59, 66, 0.08);
}

.risk-number { color: rgba(11, 100, 114, 0.09); }
.risk-icon.blue { background: rgba(11, 100, 114, 0.07); color: var(--blue); }
.risk-icon.green { background: rgba(61, 187, 135, 0.09); color: var(--green); }

.steps {
  border-top-color: var(--line);
  background: var(--bg);
}

.steps-glow { background: rgba(61, 187, 135, 0.09); }

.document-preview {
  border-color: rgba(11, 100, 114, 0.2);
  background: #ffffff;
  box-shadow: 0 24px 55px rgba(18, 59, 66, 0.12);
}

.step-card {
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(18, 59, 66, 0.08);
}

.time {
  border-color: rgba(11, 100, 114, 0.25);
  background: var(--panel-2);
  box-shadow: 0 0 0 8px #ffffff;
}

.offer {
  border-bottom-color: var(--line);
  background:
    radial-gradient(circle at 75% 50%, rgba(61, 187, 135, 0.15), transparent 31%),
    linear-gradient(135deg, #eaf8f2, #f7fbf8);
}

.offer-copy li { color: var(--text); }

.price-card {
  border-color: rgba(61, 187, 135, 0.34);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.price-card::before { background: rgba(11, 100, 114, 0.05); }
.payment-methods span { color: var(--text); background: var(--bg-soft); }

.faq { background: #ffffff; }
.faq-list summary { color: var(--text); }

.faq-list summary > span {
  border-color: rgba(11, 100, 114, 0.22);
  background: rgba(11, 100, 114, 0.04);
}

.site-footer { background: var(--bg); }
.footer-links a { color: var(--muted); }
.footer-bottom { color: var(--muted-2); }

@media (max-width: 920px) {
  .main-nav { background: rgba(251, 252, 249, 0.99); }
}

@media (max-width: 680px) {
  .mobile-cta {
    border-color: rgba(255, 255, 255, 0.32);
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    box-shadow: 0 15px 40px rgba(42, 153, 111, 0.28);
  }
}
