:root {
  --bg: #06101d;
  --bg-deep: #030914;
  --surface: #0b1828;
  --surface-2: #10243a;
  --light-section: #f4f7fb;
  --light-card: #ffffff;
  --text: #f7fafc;
  --text-dark: #0b1728;
  --muted: #a8b6c8;
  --muted-dark: #5f6f82;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(10, 23, 40, 0.1);
  --cyan: #19cbd1;
  --cyan-dark: #087f89;
  --blue: #1689ff;
  --purple: #7559e8;
  --pink: #ff3d74;
  --pink-dark: #d72a59;
  --green: #24d366;
  --warning: #ffb84c;
  --max-width: 1200px;
  --header-height: 80px;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.3);
  --shadow-light: 0 22px 60px rgba(20, 38, 63, 0.12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: var(--bg-deep);
  color: var(--text);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 8%, rgba(25, 203, 209, 0.1), transparent 30%),
    radial-gradient(circle at 87% 16%, rgba(255, 61, 116, 0.08), transparent 30%),
    var(--bg-deep);
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 9px;
  background: #fff;
  color: #000;
  font-weight: 800;
  text-decoration: none;
}

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

.eyebrow {
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  padding: 110px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading.centered {
  display: block;
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 46px;
  text-align: center;
}

.section-heading h2,
.data-intro h2,
.importance-copy h2,
.category-copy h2,
.investment-copy h2,
.faq-intro h2,
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading > p,
.section-heading div + p,
.data-intro > p:last-child,
.importance-copy > p,
.category-copy > p,
.investment-copy > p,
.faq-intro > p,
.final-cta p {
  color: var(--muted);
  font-size: 1.03rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

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

.button-primary {
  background: linear-gradient(100deg, #1689ff 0%, #7955e8 48%, var(--pink) 100%);
  color: #fff;
  box-shadow: 0 16px 35px rgba(81, 87, 220, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 42px rgba(255, 61, 116, 0.3);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(25, 203, 209, 0.55);
  background: rgba(25, 203, 209, 0.08);
}

.button-light {
  background: #fff;
  color: var(--text-dark);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.button-large {
  min-height: 58px;
  padding-inline: 30px;
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
  color: var(--cyan);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(3, 9, 20, 0.72);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(3, 9, 20, 0.95);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.23);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  color: #fff;
  font-size: 1.74rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
}

.logo span {
  background: linear-gradient(90deg, var(--blue), var(--pink));
  -webkit-background-clip: text;
  color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.site-nav a {
  position: relative;
  color: rgba(247, 250, 252, 0.82);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

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

.hero {
  position: relative;
  isolation: isolate;
  min-height: 790px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 88px 0 118px;
  background:
    linear-gradient(180deg, rgba(6, 16, 29, 0.08), rgba(3, 9, 20, 0.96)),
    repeating-linear-gradient(90deg, transparent 0, transparent 83px, rgba(255, 255, 255, 0.023) 84px),
    repeating-linear-gradient(0deg, transparent 0, transparent 83px, rgba(255, 255, 255, 0.023) 84px),
    var(--bg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, var(--bg-deep));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
  gap: 72px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 6vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  background: linear-gradient(92deg, #fff 0%, var(--cyan) 42%, #a58bff 70%, var(--pink) 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 690px;
  margin-top: 26px;
  color: #bec9d7;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-offer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
  margin-top: 28px;
}

.hero-offer strong {
  color: #fff;
  font-size: 1.12rem;
}

.hero-offer span {
  color: var(--muted);
  font-size: 0.93rem;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 24px;
  list-style: none;
}

.hero-benefits li {
  position: relative;
  padding-left: 21px;
  color: #d7e0e9;
  font-size: 0.89rem;
}

.hero-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.photo-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.photo-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(3, 9, 20, 0.24));
}

.photo-shell-hero {
  position: absolute;
  inset: 0 0 0 34px;
  transform: rotate(1.5deg);
}

.photo-shell img,
.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
  background: rgba(5, 14, 27, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.25);
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  font-size: 0.92rem;
}

.floating-card small {
  color: var(--muted);
  font-size: 0.76rem;
}

.floating-icon {
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(22, 137, 255, 0.16);
  color: #6bb4ff;
  font-weight: 900;
}

.floating-icon-pink {
  background: rgba(255, 61, 116, 0.16);
  color: #ff7da1;
}

.floating-icon-green {
  background: rgba(36, 211, 102, 0.16);
  color: #53ed8d;
}

.floating-card-top {
  top: 7%;
  left: -28px;
}

.floating-card-bottom {
  bottom: 9%;
  left: -12px;
}

.floating-card-side {
  top: 46%;
  right: -34px;
}

.hero-orb {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.22;
}

.hero-orb-one {
  top: 10%;
  right: 5%;
  background: var(--cyan);
}

.hero-orb-two {
  bottom: 2%;
  left: 15%;
  background: var(--pink);
}

.data-section {
  position: relative;
  z-index: 3;
  padding: 0 0 105px;
}

.data-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 34px;
}

.data-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -30px;
}

.data-intro h2 {
  font-size: clamp(2rem, 3.8vw, 3.45rem);
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.data-card {
  position: relative;
  min-height: 270px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(16, 36, 58, 0.9), rgba(7, 18, 32, 0.95));
}

.data-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  top: -54px;
  right: -42px;
  border-radius: 50%;
  background: rgba(25, 203, 209, 0.15);
  filter: blur(2px);
}

.data-card-alert::before {
  background: rgba(255, 61, 116, 0.18);
}

.data-card > strong {
  display: block;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #fff, var(--cyan));
  -webkit-background-clip: text;
  color: transparent;
  font-size: 3.4rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.05em;
}

.data-card-alert > strong {
  background: linear-gradient(90deg, #fff, var(--pink));
  -webkit-background-clip: text;
}

.data-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.data-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.data-card a {
  display: inline-block;
  margin-top: 18px;
  color: #7ddfe3;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.roadmap-section {
  background: var(--light-section);
  color: var(--text-dark);
}

.roadmap-section .eyebrow {
  color: var(--cyan-dark);
}

.roadmap-heading p {
  color: var(--muted-dark);
}

.roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.roadmap-line {
  position: absolute;
  top: 32px;
  right: 9%;
  left: 9%;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #dbe3ed;
}

.roadmap-line span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--pink));
  transition: width 0.35s ease;
}

.roadmap-step {
  position: relative;
  z-index: 2;
}

.roadmap-marker {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border: 8px solid var(--light-section);
  border-radius: 50%;
  background: #dfe7f0;
  color: #6b7786;
  font-size: 0.84rem;
  font-weight: 900;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-step.is-active .roadmap-marker {
  background: linear-gradient(135deg, var(--blue), var(--purple), var(--pink));
  color: #fff;
  box-shadow: 0 10px 26px rgba(91, 83, 218, 0.28);
}

.roadmap-content {
  min-height: 355px;
  padding: 24px 20px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 38px rgba(20, 38, 63, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.roadmap-step:hover .roadmap-content,
.roadmap-step.is-active .roadmap-content {
  transform: translateY(-7px);
  border-color: rgba(22, 137, 255, 0.26);
  box-shadow: var(--shadow-light);
}

.step-label {
  margin-bottom: 7px;
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.roadmap-content h3 {
  margin-bottom: 12px;
  font-size: 1.17rem;
  line-height: 1.2;
}

.roadmap-content > p:not(.step-label) {
  color: var(--muted-dark);
  font-size: 0.88rem;
}

.roadmap-content ul {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  list-style: none;
}

.roadmap-content li {
  position: relative;
  padding-left: 18px;
  color: #435268;
  font-size: 0.82rem;
  font-weight: 700;
}

.roadmap-content li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.investment-message {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 34px;
  padding: 24px 26px;
  border-radius: 22px;
  background: linear-gradient(110deg, #087f89, #3952bd 50%, #b92b65);
  color: #fff;
  box-shadow: 0 20px 45px rgba(67, 75, 179, 0.24);
}

.investment-message-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.2rem;
  font-weight: 900;
}

.investment-message strong {
  font-size: 1.06rem;
}

.investment-message p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.importance-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}

.importance-section::before {
  content: "";
  position: absolute;
  width: 530px;
  height: 530px;
  top: 10%;
  left: -260px;
  border-radius: 50%;
  background: rgba(25, 203, 209, 0.1);
  filter: blur(90px);
}

.importance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: 90px;
  align-items: center;
}

.importance-copy > p {
  max-width: 720px;
  margin-top: 20px;
}

.journey-flow {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(16, 36, 58, 0.82), rgba(5, 14, 26, 0.92));
  box-shadow: var(--shadow);
}

.journey-node {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.journey-node > span {
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(22, 137, 255, 0.14);
  color: #7dbcff;
  font-size: 0.78rem;
  font-weight: 900;
}

.journey-node strong {
  font-size: 1rem;
}

.journey-node small {
  color: var(--muted);
}

.journey-node-active {
  border-color: rgba(25, 203, 209, 0.34);
  background: linear-gradient(110deg, rgba(25, 203, 209, 0.12), rgba(117, 89, 232, 0.1));
}

.journey-node-active > span {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #fff;
}

.journey-arrow {
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  font-size: 1.1rem;
}

.solution-index {
  padding-bottom: 70px;
  background: var(--light-section);
  color: var(--text-dark);
}

.solution-index .eyebrow {
  color: var(--cyan-dark);
}

.solution-index .section-heading p {
  color: var(--muted-dark);
}

.category-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.category-nav a {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 74px;
  padding: 16px 20px;
  border: 1px solid var(--line-dark);
  border-radius: 17px;
  background: #fff;
  color: var(--text-dark);
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(20, 38, 63, 0.05);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.category-nav a:hover {
  transform: translateY(-4px);
  border-color: rgba(117, 89, 232, 0.3);
  box-shadow: var(--shadow-light);
}

.category-nav span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(22, 137, 255, 0.12), rgba(255, 61, 116, 0.12));
  color: var(--purple);
  font-size: 0.76rem;
  font-weight: 900;
}

.category-section {
  padding: 120px 0;
  background: var(--bg-deep);
  color: var(--text);
}

.category-section-light {
  background: var(--light-section);
  color: var(--text-dark);
}

.category-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.95fr) minmax(0, 1.05fr);
  gap: 84px;
  align-items: center;
}

.category-grid-reverse .category-media {
  order: 2;
}

.category-grid-reverse .category-copy {
  order: 1;
}

.category-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.category-section-light .category-media {
  border-color: var(--line-dark);
  box-shadow: var(--shadow-light);
}

.category-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 62%, rgba(3, 9, 20, 0.34));
}

.media-label {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  background: rgba(4, 13, 25, 0.82);
  color: #fff;
  backdrop-filter: blur(14px);
  font-size: 0.85rem;
  font-weight: 850;
}

.media-label span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  font-size: 0.72rem;
}

.category-copy .eyebrow {
  color: var(--cyan);
}

.category-section-light .category-copy .eyebrow {
  color: var(--cyan-dark);
}

.category-copy > p {
  margin-top: 22px;
}

.category-section-light .category-copy > p {
  color: var(--muted-dark);
}

.category-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.category-points > div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.035);
}

.category-section-light .category-points > div {
  border-color: var(--line-dark);
  background: #fff;
  box-shadow: 0 10px 26px rgba(20, 38, 63, 0.045);
}

.category-points span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(25, 203, 209, 0.13);
  color: var(--cyan);
  font-weight: 900;
}

.category-section-light .category-points span {
  color: var(--cyan-dark);
}

.category-points strong,
.category-points p {
  display: block;
}

.category-points strong {
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.category-points p {
  color: var(--muted);
  font-size: 0.81rem;
  line-height: 1.5;
}

.category-section-light .category-points p {
  color: var(--muted-dark);
}

.investment-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 30%, rgba(25, 203, 209, 0.1), transparent 32%),
    radial-gradient(circle at 90% 60%, rgba(255, 61, 116, 0.09), transparent 30%),
    var(--bg);
}

.investment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  gap: 85px;
  align-items: start;
}

.investment-copy > p {
  margin-top: 22px;
}

.price-card {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(16, 36, 58, 0.96), rgba(7, 18, 32, 0.96));
  box-shadow: var(--shadow);
}

.price-card > span {
  display: block;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card > strong {
  display: block;
  margin: 10px 0 14px;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: -0.055em;
}

.price-card > strong small {
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0;
}

.price-card > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.88rem;
}

.value-stack {
  display: grid;
  gap: 14px;
}

.value-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 118px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.value-item:hover {
  transform: translateX(8px);
  border-color: rgba(25, 203, 209, 0.28);
  background: rgba(25, 203, 209, 0.055);
}

.value-item > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(22, 137, 255, 0.16), rgba(255, 61, 116, 0.16));
  color: #8fc4ff;
  font-size: 0.82rem;
  font-weight: 900;
}

.value-item h3 {
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.value-item p {
  color: var(--muted);
  font-size: 0.85rem;
}

.comparison-section {
  background: var(--light-section);
  color: var(--text-dark);
}

.comparison-section .eyebrow {
  color: var(--cyan-dark);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.comparison-card {
  position: relative;
  padding: 38px;
  overflow: hidden;
  border-radius: 25px;
}

.comparison-card-before {
  border: 1px solid rgba(216, 67, 100, 0.16);
  background: linear-gradient(145deg, #fff, #fff2f5);
}

.comparison-card-after {
  border: 1px solid rgba(26, 161, 168, 0.2);
  background: linear-gradient(145deg, #fff, #eefcfc);
  box-shadow: var(--shadow-light);
}

.comparison-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(255, 61, 116, 0.06);
}

.comparison-card-after::after {
  background: rgba(25, 203, 209, 0.08);
}

.comparison-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(215, 42, 89, 0.08);
  color: var(--pink-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-card-after .comparison-tag {
  background: rgba(8, 127, 137, 0.09);
  color: var(--cyan-dark);
}

.comparison-card h3 {
  max-width: 490px;
  margin-bottom: 24px;
  font-size: 1.65rem;
  line-height: 1.2;
}

.comparison-card ul {
  display: grid;
  gap: 13px;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 27px;
  color: #526277;
}

.comparison-card li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--pink-dark);
  font-weight: 950;
}

.comparison-card-after li::before {
  content: "✓";
  color: var(--cyan-dark);
}

.faq-section {
  background: var(--bg-deep);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;
  align-items: start;
}

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

.faq-intro > p {
  margin: 20px 0 28px;
}

.faq-list {
  display: grid;
  gap: 13px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.faq-item summary {
  position: relative;
  padding: 22px 56px 22px 22px;
  cursor: pointer;
  color: #fff;
  font-weight: 820;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 10px;
  background: rgba(25, 203, 209, 0.1);
  color: var(--cyan);
  font-size: 1.1rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.final-cta {
  padding: 92px 0;
  background: linear-gradient(115deg, #087f89 0%, #4152c4 50%, #bd2c67 100%);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 60px;
  align-items: center;
}

.final-cta .eyebrow {
  color: #d8ffff;
}

.final-cta p {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.final-cta-action {
  min-width: 300px;
  text-align: center;
}

.final-cta-action small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.sources-section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  background: #050c16;
}

.sources-section details {
  color: var(--muted);
  font-size: 0.78rem;
}

.sources-section summary {
  cursor: pointer;
  color: #d5dee8;
  font-weight: 800;
}

.sources-section ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 12px 22px;
}

.sources-section a {
  color: var(--cyan);
}

.site-footer {
  padding: 65px 0 22px;
  background: #030914;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(160px, 0.7fr));
  gap: 50px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-grid > div:first-child p {
  max-width: 350px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-grid h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 0.9rem;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid a,
.footer-grid span {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--cyan);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #718196;
  font-size: 0.78rem;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--green);
  color: #042b13;
  box-shadow: 0 16px 38px rgba(36, 211, 102, 0.28);
  font-size: 0.84rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(36, 211, 102, 0.36);
}

.whatsapp-float span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.mobile-contact-bar {
  display: none;
}

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

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

.reveal-delay,
.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 17px;
  }

  .site-nav a {
    font-size: 0.81rem;
  }

  .header-cta {
    padding-inline: 18px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(3rem, 6.7vw, 5rem);
  }

  .data-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .roadmap-line {
    display: none;
  }

  .roadmap-marker {
    margin-left: 18px;
  }

  .category-grid,
  .importance-grid,
  .investment-grid {
    gap: 55px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 74px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    order: 3;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(4, 12, 23, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 13px;
    border-radius: 11px;
    font-size: 0.93rem;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-top: 72px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-visual {
    min-height: 610px;
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
  }

  .photo-shell-hero {
    left: 0;
  }

  .data-intro,
  .section-heading,
  .importance-grid,
  .category-grid,
  .investment-grid,
  .faq-grid,
  .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 20px;
  }

  .roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .investment-message {
    grid-template-columns: auto 1fr;
  }

  .investment-message .button {
    grid-column: 1 / -1;
  }

  .importance-grid {
    gap: 50px;
  }

  .journey-flow {
    max-width: 650px;
    width: 100%;
    margin-inline: auto;
  }

  .category-grid-reverse .category-media,
  .category-grid-reverse .category-copy {
    order: initial;
  }

  .category-media {
    max-width: 740px;
    width: 100%;
    margin-inline: auto;
  }

  .investment-grid {
    gap: 48px;
  }

  .price-card {
    max-width: 540px;
  }

  .faq-intro {
    position: static;
  }

  .final-cta-action {
    min-width: 0;
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 30px, var(--max-width));
  }

  .section,
  .category-section {
    padding: 84px 0;
  }

  .hero {
    padding: 60px 0 94px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.3rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 480px;
  }

  .photo-shell-hero {
    inset: 0 0 0 10px;
  }

  .floating-card {
    min-width: 154px;
    padding: 11px 12px;
  }

  .floating-card-top {
    left: -4px;
  }

  .floating-card-bottom {
    left: 0;
  }

  .floating-card-side {
    right: -4px;
  }

  .data-intro {
    display: block;
  }

  .data-intro .eyebrow {
    margin-bottom: 14px;
  }

  .data-intro h2 {
    margin-bottom: 18px;
  }

  .data-grid,
  .roadmap,
  .category-nav,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .data-card {
    min-height: 220px;
  }

  .roadmap-marker {
    margin-left: 18px;
  }

  .roadmap-content {
    min-height: 0;
  }

  .investment-message {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .investment-message-icon {
    width: 46px;
    height: 46px;
  }

  .category-media {
    min-height: 440px;
  }

  .category-points {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    padding: 28px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 950;
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(3, 9, 20, 0.95);
    backdrop-filter: blur(16px);
  }

  .mobile-contact-bar a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: var(--green);
    color: #052711;
    font-size: 0.9rem;
    font-weight: 900;
    text-decoration: none;
  }

  .site-footer {
    padding-bottom: 95px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    gap: 14px;
  }

  .logo {
    font-size: 1.48rem;
  }

  .hero-benefits {
    display: grid;
    gap: 10px;
  }

  .hero-visual {
    min-height: 410px;
  }

  .floating-card {
    min-width: auto;
    max-width: 155px;
  }

  .floating-card strong {
    font-size: 0.78rem;
  }

  .floating-card small {
    font-size: 0.67rem;
  }

  .floating-card-top {
    top: 5%;
  }

  .floating-card-bottom {
    bottom: 5%;
  }

  .floating-card-side {
    top: 43%;
  }

  .data-card > strong {
    font-size: 3rem;
  }

  .category-media {
    min-height: 360px;
  }

  .value-item {
    grid-template-columns: 46px 1fr;
    padding: 18px;
  }

  .value-item > span {
    width: 46px;
    height: 46px;
  }

  .price-card > strong {
    font-size: 3rem;
  }
}
