:root {
  --bg: #050816;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: #0a1223;
  --line: rgba(141, 186, 255, 0.22);
  --text: #f4f8ff;
  --muted: #9ca9c5;
  --accent: #2463ff;
  --accent-hover: #1f56de;
  --accent-soft: rgba(99, 169, 255, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 720px at 96% -12%, rgba(53, 117, 255, 0.33), transparent 45%),
    radial-gradient(900px 600px at 14% 0%, rgba(90, 198, 255, 0.21), transparent 38%),
    linear-gradient(180deg, #050816 0%, #030611 100%);
  overflow-x: hidden;
  position: relative;
}

h1,
h2,
h3,
.brand {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

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

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 5.4rem 0;
}

.page-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(45px);
  opacity: 0.45;
  pointer-events: none;
  z-index: -2;
}

.page-glow-a {
  width: 420px;
  height: 420px;
  right: -80px;
  top: -50px;
  background: #2a72ff;
}

.page-glow-b {
  width: 380px;
  height: 380px;
  left: -90px;
  bottom: 40px;
  background: #2ec6e7;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.11;
  background-image: radial-gradient(rgba(255, 255, 255, 0.35) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(4, 8, 22, 0.72);
  border-bottom: 1px solid rgba(137, 182, 255, 0.18);
}

.topbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  font-size: 1.12rem;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.brand span {
  margin-top: 0.38rem;
  color: #b4cdf8;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  font-weight: 600;
}

.nav-pills {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin: 0;
  padding: 0;
}

.nav-pills a {
  display: inline-flex;
  border: 1px solid rgba(149, 197, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: #cde2ff;
  border-radius: 999px;
  padding: 0.46rem 0.82rem;
  font-size: 0.83rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: 0.84rem 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 14px 34px rgba(34, 91, 235, 0.38);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-hover);
}

.btn:focus-visible,
.nav-pills a:focus-visible {
  outline: 2px solid #9ed1ff;
  outline-offset: 2px;
}

.btn-sm {
  padding: 0.56rem 0.9rem;
  font-size: 0.83rem;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(143, 189, 255, 0.24);
  color: #dfeeff;
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  padding-top: 6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.76rem;
  border-radius: 999px;
  border: 1px solid rgba(144, 192, 255, 0.28);
  background: rgba(255, 255, 255, 0.03);
  color: #c9e2ff;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 1rem 0 1.2rem;
  font-size: clamp(2.2rem, 6.2vw, 5rem);
  line-height: 0.98;
  max-width: 12ch;
}

.hero-copy h1 span {
  display: block;
  background: linear-gradient(90deg, #7de8ff, #68a9ff 45%, #2563ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 58ch;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.stats {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.82rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  border: 1px solid rgba(157, 202, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem;
}

.stat-card span {
  color: #9dbbe8;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.23em;
  font-weight: 700;
}

.stat-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1rem;
  color: #f0f6ff;
}

.console {
  position: relative;
}

.console::before,
.console::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  z-index: -1;
}

.console::before {
  width: 190px;
  height: 190px;
  background: rgba(37, 94, 255, 0.42);
  top: 14%;
  left: -10%;
}

.console::after {
  width: 180px;
  height: 180px;
  background: rgba(96, 231, 250, 0.28);
  right: -7%;
  bottom: 9%;
}

.console-shell {
  border-radius: 32px;
  border: 1px solid rgba(155, 202, 255, 0.24);
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 0 80px rgba(38, 105, 255, 0.2);
  padding: 1rem;
}

.dots {
  display: flex;
  gap: 0.44rem;
  padding: 0.15rem 0.2rem 0.9rem;
}

.dots i {
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 999px;
  display: block;
}

.dots i:nth-child(1) {
  background: rgba(253, 121, 121, 0.95);
}

.dots i:nth-child(2) {
  background: rgba(255, 221, 109, 0.95);
}

.dots i:nth-child(3) {
  background: rgba(107, 255, 149, 0.95);
}

.feature-card,
.micro-card,
.flow-card {
  border-radius: 24px;
  border: 1px solid rgba(158, 204, 255, 0.14);
  background: rgba(9, 17, 32, 0.9);
}

.feature-card {
  padding: 1.2rem 1.2rem 1.1rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.23em;
  color: #9ac0f1;
  font-weight: 700;
}

.feature-card h2 {
  margin: 0.66rem 0 0;
  font-size: clamp(1.52rem, 3vw, 2rem);
}

.feature-card p {
  margin: 0.62rem 0 0;
  color: #a9bad8;
}

.feature-card span {
  margin-top: 0.95rem;
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(125, 236, 255, 0.28);
  background: rgba(64, 202, 255, 0.16);
  color: #b7ecff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.38rem 0.7rem;
}

.micro-grid {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.micro-card {
  padding: 1rem;
}

.micro-card h3 {
  margin: 0;
  font-size: 1rem;
}

.micro-card p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: #a4b8d8;
}

.flow-card {
  margin-top: 0.9rem;
  padding: 1rem;
  background: linear-gradient(105deg, rgba(30, 103, 255, 0.16), rgba(70, 195, 255, 0.12));
}

.flow-grid {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flow-grid div {
  border-radius: 16px;
  border: 1px solid rgba(155, 199, 255, 0.2);
  background: rgba(11, 20, 38, 0.9);
  padding: 0.66rem;
  font-size: 0.82rem;
  color: #d7e8ff;
}

.flow-grid b {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.66rem;
  color: #8dc0f9;
  letter-spacing: 0.2em;
}

.quick-benefits {
  padding: 1rem 0 0;
}

.quick-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-card {
  margin: 0;
  border: 1px solid rgba(151, 198, 255, 0.17);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 0.84rem 0.9rem;
  font-size: 0.86rem;
  display: flex;
  gap: 0.58rem;
  align-items: center;
  color: #cfdef8;
}

.quick-card span {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: #74dcff;
  box-shadow: 0 0 0 5px rgba(116, 220, 255, 0.18);
  flex-shrink: 0;
}

.section-head {
  max-width: 760px;
}

.section-head h2 {
  margin: 0.76rem 0 0;
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
  line-height: 1.05;
}

.section-head p {
  margin-top: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}

.service-grid {
  margin-top: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  border: 1px solid rgba(156, 203, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 50px rgba(36, 99, 235, 0.11);
  padding: 1.2rem;
}

.service-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
}

.service-card h3 {
  margin: 0;
  font-size: 1.34rem;
  max-width: 13ch;
}

.service-card header span {
  border-radius: 14px;
  border: 1px solid rgba(144, 231, 255, 0.3);
  background: rgba(130, 232, 255, 0.16);
  color: #bef0ff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 0.62rem;
  white-space: nowrap;
}

.service-card p {
  color: #9fb0cd;
  line-height: 1.75;
}

.service-card ul {
  margin: 0.6rem 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  display: flex;
  gap: 0.48rem;
  align-items: flex-start;
  margin-bottom: 0.54rem;
  color: #d3e4ff;
  font-size: 0.91rem;
}

.service-card li::before {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  margin-top: 0.44rem;
  border-radius: 999px;
  background: #7fe6ff;
  box-shadow: 0 0 0 4px rgba(127, 230, 255, 0.16);
  flex-shrink: 0;
}

.service-actions {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.58rem;
}

.service-actions .btn {
  width: 100%;
}

.service-request-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

.service-request-note {
  min-height: 1.05rem;
  color: #9cb4d8;
  font-size: 0.76rem;
}

.license-benefits {
  padding-top: 2rem;
}

.split-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1.1fr 0.9fr;
}

.panel,
.contact-card {
  border-radius: 30px;
  border: 1px solid rgba(153, 200, 255, 0.18);
}

.panel {
  background: rgba(255, 255, 255, 0.04);
  padding: 1.4rem;
}

.panel h2 {
  margin: 0.8rem 0 0;
  max-width: 20ch;
  font-size: clamp(1.8rem, 3.8vw, 2.5rem);
}

.benefit-two-col {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-block {
  border-radius: 22px;
  border: 1px solid rgba(149, 198, 255, 0.16);
  background: rgba(8, 17, 33, 0.85);
  padding: 1rem;
}

.benefit-block h3 {
  margin: 0;
  font-size: 1.08rem;
}

.benefit-block ul {
  margin: 0.6rem 0 0;
  padding-left: 1rem;
}

.benefit-block li {
  margin-bottom: 0.45rem;
  color: #b1c4e4;
}

.contact-card {
  padding: 1.4rem;
  background: linear-gradient(165deg, rgba(36, 99, 255, 0.25), rgba(42, 193, 255, 0.16));
  box-shadow: 0 0 80px rgba(37, 99, 235, 0.2);
}

.contact-card h3 {
  margin: 0.75rem 0 0;
  font-size: 2rem;
}

.contact-card p {
  color: #d8e7ff;
  line-height: 1.7;
}

.contact-card ul {
  margin: 0.6rem 0 0;
  padding-left: 1rem;
  color: #e4f0ff;
}

.contact-card .btn {
  margin-top: 1rem;
  width: 100%;
}

.payments {
  padding-top: 2.3rem;
}

.payment-grid {
  margin-top: 1.45rem;
  display: grid;
  gap: 0.95rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.payment-card {
  border-radius: 24px;
  border: 1px solid rgba(151, 200, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}

.payment-card h3 {
  margin: 0;
  font-size: 1.42rem;
}

.payment-card p {
  margin: 0.55rem 0 0;
  color: #b1c2df;
}

.payment-card span {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(145, 224, 255, 0.28);
  border-radius: 999px;
  padding: 0.34rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #bdeeff;
  background: rgba(117, 215, 255, 0.13);
}

.anydesk-section {
  padding-top: 2.4rem;
}

.anydesk-grid {
  margin-top: 1.35rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 0.8fr;
}

.anydesk-card {
  border-radius: 24px;
  border: 1px solid rgba(151, 200, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  padding: 1.2rem;
}

.anydesk-card h3 {
  margin: 0;
  font-size: 1.34rem;
}

.anydesk-steps {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
  color: #d4e3fb;
}

.anydesk-steps li {
  margin-bottom: 0.55rem;
  line-height: 1.6;
}

.anydesk-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.anydesk-note ul {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
  color: #b5c7e4;
}

.anydesk-note li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.pix-qr {
  margin-top: 0.35rem;
  width: min(100%, 260px);
  border-radius: 14px;
  padding: 0.52rem;
  border: 1px solid rgba(153, 201, 255, 0.22);
  background: rgba(7, 15, 30, 0.72);
}

.pix-qr img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: #ffffff;
}

.pix-label {
  margin-top: 0.2rem;
  color: #bdd3f2;
  font-size: 0.82rem;
  font-weight: 700;
}

.pix-code {
  min-height: 92px;
  width: 100%;
  border: 1px solid rgba(151, 201, 255, 0.2);
  border-radius: 12px;
  background: rgba(5, 11, 24, 0.82);
  color: #e8f2ff;
  font-size: 0.78rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  line-height: 1.45;
  padding: 0.68rem;
  resize: vertical;
}

.pix-code:focus-visible {
  outline: 2px solid #9cd3ff;
  outline-offset: 1px;
}

.btn-inline {
  padding: 0.66rem 0.94rem;
  font-size: 0.84rem;
}

.faq-section {
  padding-top: 2.7rem;
}

.faq-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border-radius: 18px;
  border: 1px solid rgba(148, 198, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  padding: 0.9rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: #e6f2ff;
}

.faq-list p {
  margin: 0.5rem 0 0;
  color: #b6c8e6;
}

.cta {
  padding-top: 3rem;
  padding-bottom: 6rem;
}

.cta-card {
  text-align: center;
  border-radius: 30px;
  border: 1px solid rgba(154, 203, 255, 0.2);
  background: linear-gradient(160deg, rgba(17, 40, 80, 0.96), rgba(13, 31, 61, 0.94));
  box-shadow: 0 0 90px rgba(37, 99, 235, 0.2);
  padding: 2rem;
}

.cta-card h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.cta-card p {
  margin: 0.85rem auto 0;
  max-width: 56ch;
  color: #abc1e2;
}

.cta-card .btn {
  margin-top: 1rem;
}

.site-footer {
  border-top: 1px solid rgba(143, 189, 255, 0.15);
  background: rgba(4, 9, 20, 0.93);
}

.footer-wrap {
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: #89a2c5;
  font-size: 0.86rem;
}

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

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

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

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

@media (max-width: 820px) {
  .nav-pills {
    display: none;
  }

  .quick-grid,
  .service-grid,
  .benefit-two-col,
  .anydesk-grid,
  .payment-grid,
  .flow-grid,
  .micro-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    min-height: 72px;
  }

  .hero {
    padding-top: 4.5rem;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 4rem 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .anydesk-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    min-height: auto;
    padding: 1rem 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
