:root {
  color-scheme: light;
  --ink: #10131a;
  --muted: #586174;
  --paper: #f8fafc;
  --panel: #ffffff;
  --line: #dce3ee;
  --blue: #3157ff;
  --red: #ff4d3d;
  --green: #16c776;
  --yellow: #ffcb3d;
  --violet: #6d3dff;
  --shadow: 0 24px 70px rgba(30, 42, 72, 0.14);
  --container: min(1160px, calc(100% - 36px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img,
svg {
  display: block;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

section {
  scroll-margin-top: 98px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 76px;
  padding: 12px max(18px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid rgba(16, 19, 26, 0.1);
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.header-button,
.button {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 950;
}

.brand img {
  width: 46px;
  height: 46px;
}

.nav-links {
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-button {
  min-height: 42px;
  justify-content: center;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 84px;
  background:
    linear-gradient(90deg, rgba(49, 87, 255, 0.09) 0 1px, transparent 1px),
    linear-gradient(rgba(49, 87, 255, 0.09) 0 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 48%, #eef4ff 100%);
  background-size: 68px 68px, 68px 68px, auto;
}

.hero-pattern {
  position: absolute;
  right: -80px;
  top: 74px;
  width: 42vw;
  min-width: 390px;
  height: 72%;
  background:
    linear-gradient(135deg, var(--yellow), var(--red));
  clip-path: polygon(24% 0, 100% 0, 76% 100%, 0 100%);
  opacity: 0.18;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.82fr);
  gap: 60px;
  align-items: center;
}

.eyebrow,
.section-heading p,
.final-card p {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 770px;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 8vw, 6.9rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.button {
  min-height: 54px;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 950;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  background: var(--green);
  color: #04130b;
  box-shadow: 0 18px 48px rgba(22, 199, 118, 0.22);
}

.button-secondary,
.button-rental {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.button-rental {
  width: fit-content;
  background: var(--yellow);
  border-color: transparent;
}

.hero-visual {
  position: relative;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: auto;
}

.section {
  padding: 92px 0;
}

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

.section-heading h2,
.split-grid h2,
.requirement-copy h2,
.final-card h2 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 5.4vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.section-heading span {
  display: block;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.lane-grid article,
.check-list article,
.process-grid article,
.rental-panel,
.final-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 48px rgba(30, 42, 72, 0.08);
}

.lane-grid article {
  min-height: 268px;
  padding: 24px;
}

.lane-grid strong {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 8px;
  background: rgba(49, 87, 255, 0.1);
  color: var(--blue);
}

.lane-grid h3,
.process-grid h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.lane-grid p,
.process-grid p,
.rental-panel p,
.check-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.split-section {
  background: #111827;
  color: #fff;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: center;
}

.split-grid .eyebrow {
  color: var(--yellow);
}

.rental-panel {
  display: grid;
  gap: 22px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(109, 61, 255, 0.2), rgba(255, 77, 61, 0.16)),
    #1c2433;
  border-color: rgba(255, 255, 255, 0.14);
}

.rental-panel p {
  color: #d6ddeb;
  font-size: 1.06rem;
}

.requirements-section {
  background: #fff;
}

.requirement-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(340px, 1fr);
  gap: 54px;
  align-items: start;
}

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

.check-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 94px;
  padding: 16px;
}

.check-list span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 950;
}

.process-section {
  background: #f3f6fb;
}

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

.process-grid article {
  min-height: 250px;
  padding: 24px;
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--red);
  font-weight: 950;
  text-transform: uppercase;
}

.final-cta {
  padding: 82px 0;
  background: var(--paper);
}

.final-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background:
    linear-gradient(90deg, rgba(49, 87, 255, 0.08), rgba(22, 199, 118, 0.08)),
    #fff;
}

.final-card h2 {
  margin-bottom: 0;
}

.footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 26px;
  background: #10131a;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
}

.footer a {
  color: #fff;
}

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

  .nav-links {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .requirement-layout,
  .final-card {
    grid-template-columns: 1fr;
  }

  .lane-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .final-card {
    justify-items: start;
  }
}

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

  .site-header {
    min-height: 70px;
    gap: 10px;
  }

  .brand span {
    display: none;
  }

  .hero {
    padding-top: 64px;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.15rem);
  }

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

  .check-list article {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
