@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/_vinext_fonts/geist-8ac0455e797f/geist-98bbbccb.woff2")
    format("woff2");
}

:root {
  --navy-950: #030b1c;
  --navy-900: #06152f;
  --navy-800: #0a2e5d;
  --blue: #2385ff;
  --blue-light: #79c2ff;
  --orange: #f58220;
  --orange-strong: #ff6b0a;
  --ink: #10203a;
  --muted: #637089;
  --surface: #f4f7fb;
  --line: #dfe7f1;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Geist", Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: -70px;
  left: 16px;
  padding: 12px 16px;
  color: #fff;
  background: var(--orange);
  border-radius: 10px;
  font-weight: 750;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  color: #fff;
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  color: #2786ef;
  font-size: 39px;
  font-style: italic;
  font-weight: 850;
  letter-spacing: -0.07em;
}

.brand::after {
  content: "";
  width: 22px;
  height: 22px;
  margin: 1px 0 0 7px;
  border: 4px solid var(--orange);
  border-left-color: transparent;
  border-radius: 999px;
  transform: rotate(-28deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.nav a {
  color: #e8f2ff;
  font-size: 15px;
  font-weight: 620;
}

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

.nav .nav-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  border: 1px solid #ffffff8f;
  border-radius: 12px;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 73% 30%, #177be36b, transparent 33%),
    linear-gradient(126deg, var(--navy-950), var(--navy-900) 53%, var(--navy-800));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 47% -15% -20%;
  opacity: 0.24;
  background-image:
    linear-gradient(#59adff45 1px, transparent 1px),
    linear-gradient(90deg, #59adff45 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(650px) rotateX(58deg) scale(1.25);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 820px;
  padding-top: 132px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(400px, 1.06fr);
  align-items: center;
  gap: 42px;
}

.breadcrumbs {
  margin-bottom: 20px;
  color: #b9c8da;
  font-size: 13px;
}

.breadcrumbs a:hover {
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 9px 14px;
  color: #dcedff;
  background: #0a2a56ad;
  border: 1px solid #378feb;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-badge::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 0 0 5px #f5822026;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 660px;
  margin-bottom: 22px;
  color: #f8fbff;
  font-size: clamp(48px, 5.4vw, 74px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: var(--orange);
}

.hero-copy > p {
  max-width: 650px;
  margin-bottom: 0;
  color: #bcc9d9;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 750;
  transition: 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-strong));
  box-shadow: 0 14px 32px #ff6b0a3d;
}

.button-secondary {
  color: #fff;
  background: #061b3c91;
  border-color: #ffffff8f;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 25px;
  color: #cbd8e8;
  font-size: 13px;
}

.hero-proof span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--orange);
  font-weight: 900;
}

.hero-image {
  position: relative;
  align-self: end;
  min-height: 665px;
  margin-right: -44px;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 8% 2% 7% 5%;
  background: radial-gradient(circle, #3a9bff4f, transparent 68%);
  filter: blur(16px);
}

.hero-image img {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 30px 58px #0008);
}

.quick-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: -58px;
}

.quick-strip article {
  min-height: 116px;
  padding: 24px;
  color: #fff;
  background: linear-gradient(145deg, #0d2d53, #06172f);
  border: 1px solid #5da9f55e;
  border-radius: 16px;
  box-shadow: 0 18px 45px #06162f33;
}

.quick-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quick-strip span {
  color: #d5e3f4;
  font-size: 14px;
  line-height: 1.5;
}

.section {
  padding: 100px 0;
}

.section-soft {
  background:
    radial-gradient(circle at 8% 10%, #2182f00f, transparent 24%),
    var(--surface);
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 90% 15%, #2285ef2e, transparent 26%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.heading {
  max-width: 790px;
  margin: 0 auto 48px;
  text-align: center;
}

.heading.left {
  margin-inline: 0;
  text-align: left;
}

.eyebrow {
  margin-bottom: 16px;
  color: #1d6fc8;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: var(--blue-light);
}

.heading h2,
.split-copy h2,
.cta h2 {
  margin-bottom: 17px;
  color: var(--navy-900);
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-dark .heading h2,
.section-dark .split-copy h2 {
  color: #fff;
}

.heading p,
.split-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.section-dark .heading p,
.section-dark .split-copy > p {
  color: #b9c8da;
}

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

.card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 15px 42px #17365f0d;
}

.card-number,
.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 21px;
  color: #1470cf;
  background: #edf6ff;
  border: 1px solid #2385ff2f;
  border-radius: 13px;
  font-weight: 850;
}

.card h3 {
  margin-bottom: 10px;
  color: var(--navy-900);
  font-size: 20px;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.flow article {
  position: relative;
  padding: 25px 20px;
  background: #ffffff0d;
  border: 1px solid #79b9f63a;
  border-radius: 16px;
}

.flow article:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 44%;
  right: -19px;
  color: var(--orange);
  font-size: 23px;
  font-weight: 850;
}

.flow b {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 16px;
}

.flow p {
  margin: 0;
  color: #afc0d4;
  font-size: 13px;
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 78px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 11px;
  color: #34445e;
  line-height: 1.55;
}

.check-list li::before {
  content: "✓";
  flex: none;
  color: var(--orange);
  font-weight: 900;
}

.feature-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
  background: linear-gradient(145deg, #071b3b, #0b3262);
  border: 1px solid #62adfa4f;
  border-radius: 24px;
  box-shadow: 0 30px 70px #092a5533;
}

.feature-panel article {
  min-height: 145px;
  padding: 23px;
  background: #ffffff0d;
  border: 1px solid #ffffff17;
  border-radius: 15px;
}

.feature-panel strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 16px;
}

.feature-panel p {
  margin: 0;
  color: #adbed2;
  font-size: 13px;
  line-height: 1.6;
}

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

.segments span {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  color: #2d3e57;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 720;
}

.segments span::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 11px;
  background: var(--orange);
  border-radius: 999px;
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 30px 20px 0;
  color: var(--navy-900);
  font-weight: 750;
}

.faq-list p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.7;
}

.related {
  padding: 0 0 90px;
  background: var(--surface);
}

.related-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
}

.related-box p {
  margin: 6px 0 0;
  color: var(--muted);
}

.related-box a {
  color: #136cc9;
  font-weight: 780;
}

.cta-section {
  padding: 0 0 100px;
  background: var(--surface);
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 46px;
  padding: 52px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, #2385ff42, transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  border: 1px solid #5fa8f34c;
  border-radius: 25px;
}

.cta h2 {
  margin-bottom: 12px;
  color: #fff;
}

.cta p {
  margin: 0;
  color: #bdcbdb;
  line-height: 1.65;
}

.site-footer {
  padding: 60px 0 25px;
  color: #9cacbf;
  background: #020918;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.6;
}

.footer-grid h2 {
  margin: 0 0 18px;
  color: #eef4fb;
  font-size: 14px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid #18243a;
  font-size: 12px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #159748;
  border: 1px solid #ffffff4f;
  border-radius: 999px;
  box-shadow: 0 16px 34px #095d2a59;
  font-size: 22px;
  font-weight: 900;
}

:focus-visible {
  outline: 3px solid #ffa24a;
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .nav a:not(.nav-cta) {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 125px;
    text-align: center;
  }

  .hero-copy > p,
  .hero h1 {
    margin-inline: auto;
  }

  .actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-image {
    min-height: 600px;
    margin: -50px 0 0;
  }

  .quick-strip,
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .flow article:not(:last-child)::after {
    display: none;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 560px);
  }

  .brand {
    font-size: 33px;
  }

  .brand::after {
    width: 19px;
    height: 19px;
    border-width: 3px;
  }

  .nav .nav-cta {
    min-height: 43px;
    padding-inline: 13px;
    font-size: 13px;
  }

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

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-image {
    min-height: 465px;
  }

  .quick-strip {
    grid-template-columns: 1fr;
    margin-top: -30px;
  }

  .section {
    padding: 74px 0;
  }

  .cards,
  .flow,
  .feature-panel,
  .segments {
    grid-template-columns: 1fr;
  }

  .cta {
    grid-template-columns: 1fr;
    padding: 36px 25px;
  }

  .cta .button {
    width: 100%;
  }

  .related-box,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
