:root {
  --paper: #F8F7FC;
  --surface: #ffffff;
  --soft: #EEEAFC;
  --soft-blue: #EEEAFC;
  --ink: #101329;
  --muted: #595D76;
  --line: #E2DEF0;
  --brand: #6544D8;
  --brand-dark: #5130B8;
  --brand-green: #45D9E8;
  --brand-green-dark: #087D91;
  --blue: #087D91;
  --amber: #6544D8;
  --dark: #101329;
  --dark-2: #1B2040;
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

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

p,
ul,
ol {
  margin-top: 0;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(101, 68, 216, .28);
  backdrop-filter: blur(16px);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 22px);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: min(48vw, 238px);
  padding: 4px 8px 4px 4px;
  border-radius: 12px;
  background: #ffffff;
}

.logo img {
  width: clamp(190px, 18vw, 238px);
  max-width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.3vw, 18px);
  color: #101329;
  font-size: .94rem;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--brand-green-dark);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-size: 1.3rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: linear-gradient(135deg, #6544D8, #45D9E8);
  color: #08111f;
  box-shadow: 0 12px 28px rgba(101, 68, 216, .22);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: linear-gradient(135deg, #7959E8, #18A3B8);
}

.btn.secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  border-color: var(--brand);
  color: var(--brand-green-dark);
}

.btn.dark {
  background: var(--dark);
  color: #ffffff;
}

.eyebrow,
.pill,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: var(--radius);
  font-size: .84rem;
  font-weight: 800;
}

.eyebrow {
  padding: 7px 10px;
  background: #EEEAFC;
  color: #5130B8;
  border: 1px solid rgba(101, 68, 216, .38);
}

.hero {
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 10%, rgba(69, 217, 232, .22), transparent 34%),
    radial-gradient(circle at 7% 0, rgba(101, 68, 216, .22), transparent 28%),
    var(--dark);
  padding: 62px 0 42px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: center;
  gap: 48px;
}

.hero h1 {
  margin: 18px 0 4px;
  font-size: 5rem;
  line-height: .96;
}

.headline {
  margin: 0 0 18px;
  color: #dff6ee;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 850;
}

.lead {
  color: #d6e4ee;
  font-size: 1.16rem;
  max-width: 720px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.hero .btn.secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, .28);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.proof {
  min-height: 96px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.proof strong {
  display: block;
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 1.05rem;
}

.proof span {
  color: #b9ccda;
  font-size: .92rem;
}

.hero-visual {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(101, 68, 216, .28);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(238, 234, 252, .08), rgba(69, 217, 232, .06)), var(--dark-2);
}

.hero-visual figcaption {
  margin-top: 14px;
  color: #E6DFFF;
  font-size: .94rem;
}

.solution-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
    radial-gradient(circle at 25% 22%, rgba(101, 68, 216, .24), transparent 30%),
    radial-gradient(circle at 78% 78%, rgba(69, 217, 232, .24), transparent 34%),
    #08111f;
  background-size: 64px 64px, 64px 64px, auto, auto, auto;
}

.solution-map::before,
.solution-map::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 50%;
  height: 3px;
  background: linear-gradient(90deg, #6544D8, #45D9E8);
  transform: translateY(-50%);
  opacity: .78;
}

.solution-map::after {
  left: 50%;
  right: auto;
  top: 18%;
  bottom: 18%;
  width: 3px;
  height: auto;
  background: linear-gradient(180deg, #6544D8, #45D9E8);
  transform: translateX(-50%);
}

.map-node,
.map-core {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

.map-node {
  width: min(210px, 44%);
  padding: 16px;
}

.map-node span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #B5A0FF, #6544D8, #45D9E8);
  color: #08111f;
  font-size: .8rem;
  font-weight: 900;
}

.map-node strong,
.map-node small {
  display: block;
}

.map-node strong {
  margin-bottom: 5px;
  font-size: 1.04rem;
}

.map-node small {
  color: var(--muted);
  line-height: 1.35;
}

.map-node-web {
  left: 24px;
  top: 24px;
}

.map-node-app {
  right: 24px;
  top: 46px;
}

.map-node-data {
  left: 36px;
  bottom: 38px;
}

.map-node-ai {
  right: 28px;
  bottom: 26px;
}

.map-core {
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 190px;
  min-height: 104px;
  padding: 18px;
  text-align: center;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #B5A0FF, #6544D8 48%, #45D9E8);
}

.map-core span {
  color: #08111f;
  font-size: 1.3rem;
  font-weight: 950;
}

.map-core strong {
  color: #101329;
  font-size: .84rem;
}

.section {
  padding: 72px 0;
}

.section.compact {
  padding: 54px 0;
}

.section.alt {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section.dark {
  background: var(--dark);
  color: #ffffff;
}

.section-head {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.kicker {
  margin: 0 0 8px;
  color: var(--brand-green-dark);
  font-size: .86rem;
  font-weight: 850;
}

h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.2;
}

h2 {
  margin-bottom: 14px;
  font-size: 2.65rem;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.25rem;
}

h4 {
  margin-bottom: 8px;
}

.muted,
.section p,
.card p,
.footer p,
.small {
  color: var(--muted);
}

.section.dark .muted,
.section.dark p {
  color: #cbd8e3;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

.card,
.service-card,
.plan-card,
.step,
.quote-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.card,
.service-card,
.plan-card {
  padding: 22px;
}

.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.service-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: #EEEAFC;
  color: #5130B8;
  font-weight: 900;
  font-size: .78rem;
}

.icon.blue {
  background: #E4F6F8;
  color: var(--brand-green-dark);
}

.icon.amber {
  background: #EEEAFC;
  color: var(--amber);
}

.list {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 24px;
  color: #415568;
}

.list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--brand-green);
  font-weight: 900;
}

.service-band {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.route-list {
  display: grid;
  gap: 12px;
}

.route-item {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.route-item strong {
  color: var(--brand-green-dark);
}

.route-item p {
  margin-bottom: 0;
}

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

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.plan-card.featured {
  border-color: rgba(101, 68, 216, .55);
  background: linear-gradient(180deg, #ffffff, #F6F3FF);
}

.price {
  margin: 8px 0 12px;
  font-size: 1.9rem;
  line-height: 1.1;
  font-weight: 900;
  color: var(--ink);
}

.price small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 700;
}

.plan-card .btn {
  margin-top: auto;
}

.tag {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 5px 8px;
  background: var(--soft-blue);
  color: var(--blue);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 48px 16px 16px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 14px;
  left: 16px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #6544D8, #45D9E8);
  color: #08111f;
  font-size: .85rem;
  font-weight: 900;
}

.quote-panel {
  padding: 28px;
  background: var(--soft);
}

.quote-panel strong {
  color: var(--brand-green-dark);
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.faq-item summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 18px;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #6544D8, #45D9E8);
  color: #08111f;
  font-weight: 950;
}

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

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
}

.section.dark .quote-panel {
  border-color: rgba(101, 68, 216, .34);
  background:
    linear-gradient(135deg, rgba(101, 68, 216, .14), rgba(69, 217, 232, .1)),
    #1B2040;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

.section.dark .quote-panel p {
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
  color: #eef8f0;
  font-weight: 750;
}

.section.dark .quote-panel p:last-child {
  margin-bottom: 0;
}

.section.dark .quote-panel strong {
  color: #7959E8;
}

.cta-band {
  padding: 56px 0;
  background: linear-gradient(135deg, #EEEAFC, #EEEAFC);
  border-top: 1px solid #efd7a7;
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}

.page-hero {
  padding: 58px 0 38px;
  background: var(--dark);
  color: #ffffff;
}

.page-hero h1 {
  margin: 12px 0 16px;
  max-width: 940px;
  font-size: 3.6rem;
  line-height: 1.04;
}

.breadcrumb {
  margin-bottom: 12px;
  color: #b9ccda;
  font-size: .92rem;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.matrix {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.matrix table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.matrix th,
.matrix td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.matrix th {
  background: var(--soft);
  color: var(--ink);
}

.form-panel {
  padding: 24px;
}

.form {
  display: grid;
  gap: 13px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.form textarea {
  min-height: 132px;
  resize: vertical;
}

.notice {
  padding: 12px 14px;
  border: 1px solid rgba(15, 159, 120, .28);
  border-radius: var(--radius);
  background: rgba(15, 159, 120, .1);
  color: #075e49;
  font-weight: 700;
}

.contact-options {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
}

.contact-option span {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 14px 10px 10px;
  border-radius: 999px;
  background: #128c7e;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(11, 24, 36, .22);
  font-weight: 900;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #0b6f62;
}

.floating-whatsapp-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  font-size: .78rem;
  letter-spacing: .02em;
}

.hidden {
  display: none !important;
}

.footer {
  padding: 44px 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
}

.footer img {
  width: 230px;
  margin-bottom: 14px;
}

.footer a {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.footer a:hover {
  color: var(--brand-green-dark);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill {
  padding: 7px 9px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: #3c5062;
}

.subhero {
  padding: 48px 0 24px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

.tab {
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.tab.active {
  border-color: var(--brand);
  background: linear-gradient(135deg, #6544D8, #45D9E8);
  color: #08111f;
}

.app-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.side {
  position: sticky;
  top: 96px;
}

.mini-profile {
  display: flex;
  gap: 12px;
  align-items: center;
}

.avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #6544D8, #45D9E8);
  color: #08111f;
  font-weight: 900;
}

.fixture {
  display: grid;
  gap: 12px;
}

.fixture-card {
  display: grid;
  grid-template-columns: 1fr 70px 1fr 70px;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.fixture-card input {
  width: 64px;
  min-height: 42px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.app-preview,
.ranking {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.ranking {
  overflow: hidden;
}

.ranking div {
  display: grid;
  grid-template-columns: 50px 1fr 70px;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.ranking div:first-child {
  background: var(--soft);
  font-weight: 900;
}

@media (max-width: 1080px) {
  .nav-links {
    position: fixed;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
  }

  .logo {
    max-width: calc(100vw - 112px);
  }

  .logo img {
    width: clamp(188px, 31vw, 230px);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .hero-layout,
  .service-band,
  .cta-layout,
  .app-shell {
    grid-template-columns: 1fr;
  }

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

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

  .side {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  .logo img {
    width: clamp(168px, 58vw, 212px);
  }

  .nav-inner {
    min-height: 70px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 3.3rem;
  }

  .headline {
    font-size: 1.45rem;
  }

  .page-hero h1,
  h2 {
    font-size: 2.15rem;
  }

  .section {
    padding: 52px 0;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .plans,
  .steps,
  .proof-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .route-item {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .fixture-card {
    grid-template-columns: 1fr 64px;
  }

  .solution-map {
    min-height: 620px;
  }

  .solution-map::before {
    left: 50%;
    right: auto;
    top: 12%;
    bottom: 12%;
    width: 3px;
    height: auto;
    transform: translateX(-50%);
  }

  .solution-map::after {
    display: none;
  }

  .map-node {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .map-node-web {
    top: 18px;
  }

  .map-node-app {
    top: 158px;
  }

  .map-core {
    top: 50%;
    width: 180px;
  }

  .map-node-data {
    bottom: 158px;
  }

  .map-node-ai {
    bottom: 18px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 390px) {
  .logo {
    padding-right: 4px;
    max-width: calc(100vw - 78px);
  }

  .logo img {
    width: clamp(148px, 54vw, 182px);
  }

  .menu-btn {
    width: 40px;
    height: 40px;
  }
}
