:root {
  --ink: #FFFFFF;
  --muted: #AAAAAA;
  --line: rgba(255, 255, 255, 0.14);
  --paper: #1c1c1c;
  --soft: #252525;
  --soft-end: #303030;
  --blue: #1b58ea;
  --blue-dark: #2E6BA8;
  --green: #5dff65;
  --amber: #ffec3f;
  --dark: #1c1c1c;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  --content-max: 1536px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(90deg, var(--soft) 0%, var(--soft-end) 100%);
  color: #FFFFFF;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 0 max(clamp(20px, 5vw, 72px), calc((100vw - var(--content-max)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(28, 28, 28, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  display: block;
  width: clamp(148px, 16vw, 204px);
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.main-nav a {
  border-radius: 8px;
  padding: 10px 14px;
  color: #AAAAAA;
  font-size: 0.94rem;
  font-weight: 800;
}

.main-nav a:hover {
  background: rgba(27, 88, 234, 0.18);
  color: #FFFFFF;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
}

.button-primary {
  background: var(--blue);
  color: #FFFFFF;
  box-shadow: 0 14px 28px rgba(27, 88, 234, 0.24);
}

.button-primary:hover {
  background: #174dcc;
}

.button-dark {
  background: var(--dark);
  color: #FFFFFF;
}

.button-dark:hover {
  background: #2A2A2A;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  background: transparent;
  color: #FFFFFF;
}

.button-ghost:hover {
  background: rgba(27, 88, 234, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #1c1c1c;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
  align-items: center;
  gap: clamp(36px, 6vw, 72px);
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px) clamp(72px, 9vw, 112px);
  width: min(var(--content-max), calc(100% - 40px));
  margin: 0 auto;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 950;
  line-height: 1;
  overflow-wrap: normal;
  word-break: normal;
}

.no-break {
  white-space: nowrap;
}

h2 {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 920;
  line-height: 1;
}

h3 {
  margin: 0;
  color: #FFFFFF;
  font-size: 1.14rem;
  font-weight: 920;
}

.hero-text {
  max-width: 650px;
  margin: 28px 0 0;
  color: #AAAAAA;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 560px;
  margin: 42px 0 0;
}

.hero-metrics div {
  border-top: 3px solid var(--blue);
  padding-top: 14px;
}

.hero-metrics dt {
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 950;
}

.hero-metrics dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 18px;
  background: #1c1c1c;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.02), rgba(17, 24, 39, 0.24)),
    linear-gradient(90deg, rgba(17, 24, 39, 0.2), transparent 42%);
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-visual figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  max-width: min(420px, calc(100% - 44px));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.78);
  color: #AAAAAA;
  padding: 16px 18px;
  line-height: 1.5;
  backdrop-filter: blur(14px);
}

.hero-visual figcaption strong {
  display: block;
  color: #FFFFFF;
  font-size: 1.04rem;
}

.product-preview {
  overflow: hidden;
  min-height: 620px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 16px;
  background: #1c1c1c;
  box-shadow: var(--shadow);
}

.preview-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 58px;
  padding: 0 20px;
  background: var(--dark);
  color: #AAAAAA;
}

.preview-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.preview-topbar span:nth-child(1) {
  background: #f97066;
}

.preview-topbar span:nth-child(2) {
  background: #fdb022;
}

.preview-topbar span:nth-child(3) {
  background: #32d583;
}

.preview-topbar strong {
  margin-left: auto;
  font-size: 0.9rem;
}

.preview-grid {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  min-height: 562px;
}

.preview-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--line);
  background: #1c1c1c;
  padding: 18px;
}

.preview-sidebar span {
  border-radius: 8px;
  padding: 11px 10px;
  color: #AAAAAA;
  font-size: 0.87rem;
  font-weight: 850;
}

.preview-sidebar .active {
  background: rgba(27, 88, 234, 0.18);
  color: var(--blue);
}

.preview-content {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
}

.preview-heading,
.preview-kpis {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.preview-heading p,
.preview-heading h2 {
  margin: 0;
}

.preview-heading p {
  color: var(--muted);
  font-weight: 750;
}

.preview-heading h2 {
  margin-top: 4px;
  font-size: 1.9rem;
}

.live-pill {
  border-radius: 8px;
  background: rgba(93, 255, 101, 0.14);
  color: #5dff65;
  padding: 8px 12px;
  font-size: 0.84rem;
  font-weight: 950;
}

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

.preview-kpis div {
  min-height: 136px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}

.preview-kpis span,
.preview-kpis small {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
}

.preview-kpis strong {
  display: block;
  margin: 8px 0 12px;
  color: #FFFFFF;
  font-size: 2.2rem;
  line-height: 1;
}

.preview-kpis i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue) var(--bar-width), #3A3A3A var(--bar-width));
}

.preview-kpis .warning {
  background: rgba(255, 236, 63, 0.10);
}

.preview-kpis .warning strong,
.preview-kpis .warning small,
.preview-kpis .warning span {
  color: #ffec3f;
}

.route-map {
  position: relative;
  min-height: 164px;
  overflow: hidden;
  border: 1px solid rgba(27, 88, 234, 0.35);
  border-radius: 12px;
  background:
    linear-gradient(rgba(27, 88, 234, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 88, 234, 0.35) 1px, transparent 1px),
    #2A2A2A;
  background-size: 38px 38px;
}

.map-line {
  position: absolute;
  left: 17%;
  top: 58%;
  width: 65%;
  height: 5px;
  border-radius: 999px;
  background: var(--blue);
  transform: rotate(-11deg);
  transform-origin: left center;
}

.point {
  position: absolute;
  width: 25px;
  height: 25px;
  border: 4px solid #1c1c1c;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.2);
}

.point.one {
  left: 17%;
  top: 56%;
  background: var(--blue);
}

.point.two {
  left: 38%;
  top: 48%;
  background: var(--green);
}

.point.three {
  left: 60%;
  top: 39%;
  background: var(--amber);
}

.point.four {
  left: 80%;
  top: 31%;
  background: var(--blue-dark);
}

.status-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  list-style: none;
  overflow: hidden;
}

.status-list li {
  display: grid;
  grid-template-columns: auto minmax(95px, 0.8fr) minmax(120px, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px 16px;
  background: #1c1c1c;
}

.status-list li + li {
  border-top: 1px solid var(--line);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.green {
  background: var(--green);
}

.amber {
  background: var(--amber);
}

.blue {
  background: var(--blue);
}

.status-list strong {
  color: #FFFFFF;
}

.status-list em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 20px max(clamp(20px, 5vw, 72px), calc((100vw - var(--content-max)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #1c1c1c;
}

.trust-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: #BBBBBB;
  font-size: 0.9rem;
  font-weight: 800;
}

.section {
  padding: clamp(70px, 9vw, 120px) 0;
  width: 100%;
  margin: 0;
  background: var(--paper);
}

.section-inner {
  width: min(var(--content-max), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.split-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 6vw, 80px);
}

.section-text {
  display: grid;
  gap: 18px;
}

.section-text p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.feature-band-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-band-inner article,
.module-grid article,
.pricing-grid article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #1c1c1c;
  padding: 24px;
}

.feature-band-inner article {
  min-height: 220px;
}

.feature-band-inner p,
.module-grid p,
.pricing-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.app-showcase-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.7fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.app-showcase {
  background: linear-gradient(90deg, var(--soft) 0%, var(--soft-end) 100%);
}

.app-showcase-copy {
  max-width: 720px;
}

.app-showcase-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #BBBBBB;
  font-weight: 850;
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.phone-visual {
  position: relative;
  margin: 0;
}

.phone-visual img {
  display: block;
  width: min(100%, 430px);
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 10px;
  background: rgba(27, 88, 234, 0.18);
  color: var(--blue);
  font-weight: 950;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

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

.module-grid article {
  min-height: 210px;
}

.booking-strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 80px);
  color: #FFFFFF;
}

.booking-strip h2 {
  color: #FFFFFF;
}

.booking-strip .eyebrow {
  color: #8ab0ff;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 18px;
}

.steps strong {
  color: #FFFFFF;
  font-size: 1.08rem;
}

.steps span {
  color: #d0d5dd;
  line-height: 1.55;
}

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

.pricing-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
}

.pricing-grid .featured {
  border-color: rgba(27, 88, 234, 0.45);
  box-shadow: 0 24px 60px rgba(27, 88, 234, 0.14);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  background: rgba(93, 255, 101, 0.14);
  color: #5dff65;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 950;
}

.pricing-grid article > strong {
  display: block;
  margin: 10px 0 18px;
  color: #FFFFFF;
  font-size: 1.25rem;
}

.pricing-grid ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  color: #BBBBBB;
  list-style: none;
}

.pricing-grid li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green);
}

.pricing-grid .button {
  margin-top: auto;
}

.contact-section {
  background: var(--paper);
}

.contact-section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-facts {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-facts span {
  border-left: 3px solid var(--blue);
  padding: 8px 0 8px 14px;
  color: #BBBBBB;
  font-weight: 820;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #1c1c1c;
  padding: clamp(18px, 3vw, 28px);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: #BBBBBB;
  font-size: 0.9rem;
  font-weight: 850;
}

.booking-form .form-wide,
.booking-form .form-submit,
.form-note {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #2A2A2A;
  color: #FFFFFF;
  padding: 12px 13px;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(27, 88, 234, 0.16);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(clamp(20px, 5vw, 72px), calc((100vw - var(--content-max)) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #1c1c1c;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-links a {
  color: #BBBBBB;
  font-weight: 850;
}

.footer-links a:hover {
  color: var(--blue);
}

.legal-page {
  min-height: 100vh;
  background: linear-gradient(90deg, var(--soft) 0%, var(--soft-end) 100%);
}

.legal-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #1c1c1c;
  padding: clamp(24px, 5vw, 48px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
}

.legal-card h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  line-height: 1.2;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card ul {
  padding-left: 1.25rem;
}

.legal-note {
  border-left: 3px solid var(--blue);
  margin: 28px 0;
  padding: 12px 0 12px 16px;
  background: #1c1c1c;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .main-nav {
    position: absolute;
    inset: 76px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #1c1c1c;
    padding: 10px;
    box-shadow: var(--shadow);
  }

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

  .nav-toggle {
    display: block;
  }

  .hero,
  .split-inner,
  .app-showcase-inner,
  .booking-strip-inner,
  .contact-section-inner {
    grid-template-columns: 1fr;
  }

  .product-preview {
    min-height: auto;
  }

  .preview-grid {
    min-height: auto;
  }

  .feature-band-inner,
  .module-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
  }

  .header-action {
    display: none;
  }

  .hero {
    padding-top: 44px;
  }

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

  .hero-metrics,
  .feature-band-inner,
  .module-grid,
  .pricing-grid,
  .booking-form,
  .preview-kpis {
    grid-template-columns: 1fr;
  }

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

  .preview-sidebar {
    display: none;
  }

  .preview-heading {
    grid-template-columns: 1fr;
  }

  .status-list li {
    grid-template-columns: auto 1fr;
  }

  .status-list em {
    grid-column: 2;
  }

  .steps li {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}
