:root {
  --ink: #172235;
  --muted: #637087;
  --blue: #1478ed;
  --sky: #eaf4ff;
  --line: #e7ecf3;
  --paper: #fff;
  --soft: #f7faff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  overflow-x: hidden;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1200px, calc(100% - 48px));
  min-height: 82px;
  margin: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #132033;
  font:
    800 1.38rem/1 "Manrope",
    sans-serif;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.brand > span:last-child span {
  color: var(--blue);
}

.brand-mark,
.mini-logo {
  display: grid;
  grid-template-columns: repeat(2, 8px);
  gap: 3px;
}

.brand-mark i,
.mini-logo i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #142238;
}

.brand-mark i:first-child,
.mini-logo i:first-child {
  background: #17bde7;
}

.nav-links {
  display: flex;
  gap: 32px;
  color: #536075;
  font-size: 0.83rem;
  font-weight: 600;
}

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

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 9px;
  font-weight: 700;
  transition:
    background-color 0.5s ease,
    border-color 0.5s ease,
    color 0.5s ease;
  cursor: pointer;
}

.nav-action {
  padding: 11px 17px;
  border: 1px solid #cfdae8;
  color: #253248;
  font-size: 0.8rem;
}

.nav-action:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: #f5faff;
}

.button-primary:hover {
  background: #0e68d0;
}

.button-quiet:hover {
  color: #1a64c4;
  background: #e2effd;
}

.button-light:hover {
  color: #0f5fc3;
  background: #eaf4ff;
}

.nav-action:focus-visible,
.button:focus-visible,
.dashboard-heading button:focus-visible,
.board-head button:focus-visible,
.request-card button:focus-visible {
  outline: 3px solid rgba(20, 120, 237, 0.3);
  outline-offset: 3px;
}

.hero {
  width: 100%;
  background-image: radial-gradient(
    rgba(95, 119, 151, 0.22) 0.8px,
    transparent 0.8px
  );
  background-size: 7px 7px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: 48px;
  width: min(1200px, calc(100% - 48px));
  min-height: 670px;
  margin: auto;
  padding: 50px 0 72px;
}

.hero-copy {
  padding: 28px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #68768c;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.eyebrow b {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff7b50;
}

.hero h1,
.section h2,
.cta h2 {
  margin: 18px 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.065em;
}

.hero h1 {
  max-width: 630px;
  font-size: clamp(2.85rem, 5.2vw, 4.85rem);
  line-height: 1.04;
}

.hero h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-copy > p {
  max-width: 550px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

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

.button {
  min-height: 49px;
  padding: 0 19px;
  font-size: 0.9rem;
}

.button span {
  font-size: 1.15rem;
}

.button-primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 11px 20px rgba(20, 120, 237, 0.22);
}

.button-quiet {
  color: #314159;
  background: #f0f5fb;
}

.hero-dashboard {
  position: relative;
  min-height: 465px;
  overflow: hidden;
  border: 1px solid #e6edf6;
  border-radius: 20px;
  background: #fbfdff;
  box-shadow: 0 30px 55px rgba(31, 66, 111, 0.13);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 42px;
  padding: 0 18px;
  border-bottom: 1px solid #e9eff6;
  color: #44526a;
  font-size: 0.72rem;
}

.dashboard-topbar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d7dee9;
}

.dashboard-topbar strong {
  margin-left: 13px;
}

.dashboard-topbar small {
  margin-left: auto;
  color: #8a97a9;
}

.dashboard-sidebar {
  position: absolute;
  top: 42px;
  bottom: 0;
  width: 116px;
  padding: 22px 13px;
  border-right: 1px solid #e9eff6;
  color: #7c899d;
  font-size: 0.62rem;
}

.mini-logo {
  grid-template-columns: repeat(2, 5px);
  gap: 2px;
  margin: 0 0 28px 6px;
}

.mini-logo i {
  width: 5px;
  height: 5px;
}

.dashboard-sidebar span {
  display: block;
  margin: 5px 0;
  padding: 9px 8px;
  border-radius: 6px;
}

.dashboard-sidebar .side-active {
  color: var(--blue);
  background: #e8f3ff;
}

.dashboard-main {
  margin-left: 116px;
  padding: 25px 22px;
}

.dashboard-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-heading small,
.stat-row small,
.chart-card small {
  color: #8a96a7;
  font-size: 0.62rem;
}

.dashboard-heading h2 {
  margin: 4px 0 0;
  font-size: 1rem;
}

.dashboard-heading button,
.board-head button {
  border: 0;
  border-radius: 6px;
  padding: 8px 10px;
  color: white;
  background: var(--blue);
  font: 600 0.62rem "DM Sans";
  cursor: pointer;
  transition:
    background-color 0.5s ease;
}

.dashboard-heading button:hover {
  background: #0e68d0;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 19px;
}

.stat-row > div {
  padding: 11px;
  border: 1px solid #edf1f6;
  border-radius: 8px;
  background: white;
}

.stat-row strong {
  display: block;
  margin: 8px 0 3px;
  font-size: 1rem;
}

.stat-row span {
  color: #8a96a7;
  font-size: 0.56rem;
}

.stat-row .positive {
  color: #1d9c65;
}

.chart-card {
  margin-top: 13px;
  padding: 15px;
  border: 1px solid #edf1f6;
  border-radius: 9px;
  background: white;
}

.chart-card > div:first-child {
  display: flex;
  justify-content: space-between;
}

.chart-card h3 {
  margin: 3px 0 0;
  font-size: 0.78rem;
}

.chart-card > div:first-child > span {
  color: #8895a8;
  font-size: 0.58rem;
}

.chart {
  display: flex;
  align-items: end;
  justify-content: space-between;
  height: 99px;
  padding: 14px 5px 0;
  border-bottom: 1px solid #edf1f6;
}

.chart i {
  width: 9%;
  border-radius: 4px 4px 0 0;
  background: #b9d9fa;
}

.chart .bar-active {
  background: var(--blue);
}

.chart-days {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: #95a1b1;
  font-size: 0.53rem;
}

.request-card {
  position: absolute;
  right: -4px;
  bottom: 19px;
  z-index: 2;
  width: 180px;
  padding: 15px;
  border: 1px solid #e9eef5;
  border-radius: 11px;
  background: white;
  box-shadow: 0 14px 30px rgba(33, 61, 98, 0.16);
}

.request-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 7px;
  color: var(--blue);
  background: #e5f2ff;
}

.request-card small,
.request-card p {
  display: block;
  margin-top: 9px;
  color: #8490a1;
  font-size: 0.59rem;
}

.request-card strong {
  display: block;
  margin-top: 5px;
  font-size: 0.69rem;
}

.request-card p {
  margin: 4px 0 11px;
}

.request-card button {
  width: 100%;
  border: 0;
  border-radius: 5px;
  padding: 7px;
  color: var(--blue);
  background: #eaf4ff;
  font: 700 0.58rem "DM Sans";
  cursor: pointer;
  transition:
    background-color 0.5s ease;
}

.request-card button:hover {
  background: #d9ebff;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(1100px, calc(100% - 48px));
  margin: auto;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip p {
  margin: 0;
  color: #68758a;
  font-size: 0.78rem;
}

.trust-strip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 23px;
  color: #26364d;
  font: 800 0.61rem "Manrope";
  letter-spacing: 0.05em;
}

.section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 125px 0;
}

.section-intro {
  max-width: 680px;
}

.section h2 {
  max-width: 800px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.13;
}

.section-intro > p,
.workflow-copy > p {
  color: var(--muted);
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 46px;
}

.feature-grid article {
  min-height: 210px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 9px 20px rgba(19, 46, 82, 0.035);
}

.feature-icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 9px;
  font-weight: 800;
}

.blue {
  color: #1478ed;
  background: #e6f2ff;
}

.orange {
  color: #e46e31;
  background: #fff0e8;
}

.green {
  color: #129d6a;
  background: #e5f8f0;
}

.purple {
  color: #7556e8;
  background: #f0edff;
}

.feature-grid h3 {
  margin: 21px 0 10px;
  font: 800 1rem "Manrope";
  letter-spacing: -0.04em;
}

.feature-grid p,
.solution-grid p {
  margin: 0;
  color: #738096;
  font-size: 0.78rem;
  line-height: 1.65;
}

.workflow {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.workflow-copy h2 {
  font-size: clamp(2rem, 3.8vw, 3.15rem);
}

.workflow ol {
  display: grid;
  gap: 18px;
  margin: 33px 0 0;
  padding: 0;
  list-style: none;
}

.workflow li {
  display: flex;
  gap: 14px;
}

.workflow li > span {
  color: var(--blue);
  font-weight: 800;
  font-size: 0.72rem;
}

.workflow li strong {
  font-size: 0.92rem;
}

.workflow li p {
  margin: 5px 0 0;
  color: #79869a;
  font-size: 0.76rem;
}

.rental-board {
  min-height: 395px;
  padding: 23px;
  border: 1px solid #e6edf6;
  border-radius: 16px;
  background: linear-gradient(145deg, #f9fcff, #f1f7fd);
  box-shadow: 0 22px 45px rgba(24, 62, 110, 0.1);
}

.board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.board-head small {
  color: #8190a5;
  font-size: 0.66rem;
}

.board-head h3 {
  margin: 4px 0 0;
  font: 800 1.1rem "Manrope";
}

.board-head button {
  color: #627087;
  background: #fff;
  border: 1px solid #e4eaf2;
}

.board-head button:hover {
  background: #f5f9fd;
}

.board-days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 25px 0 13px;
  text-align: center;
  color: #91a0b3;
  font-size: 0.54rem;
  line-height: 1.75;
}

.board-days b {
  color: #526178;
  font-size: 0.8rem;
}

.board-days .today b {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
}

.booking {
  position: relative;
  margin: 10px 0;
  padding: 11px 14px;
  border-radius: 8px;
  border-left: 3px solid;
}

.booking small,
.booking span {
  color: #77869c;
  font-size: 0.6rem;
}

.booking strong {
  display: block;
  margin: 3px 0;
  font-size: 0.75rem;
}

.booking-a {
  margin-right: 10%;
  border-color: #1c94d3;
  background: #e9f7ff;
}

.booking-b {
  margin-left: 18%;
  margin-right: 3%;
  border-color: #8467ef;
  background: #f0eeff;
}

.booking-c {
  margin-right: 30%;
  border-color: #e79735;
  background: #fff6df;
}

.board-legend {
  display: flex;
  gap: 15px;
  margin-top: 22px;
  color: #8290a2;
  font-size: 0.6rem;
}

.board-legend i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1c94d3;
}

.board-legend span:nth-child(2) i {
  background: #8467ef;
}

.solutions {
  padding-top: 55px;
}

.centered {
  margin: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 42px;
}

.solution-grid article {
  min-height: 220px;
  padding: 28px;
  border-radius: 13px;
  background: #f7faff;
}

.solution-grid article:nth-child(2) {
  background: #eef7ff;
}

.solution-grid article:nth-child(3) {
  background: #f4f2ff;
}

.solution-grid span {
  color: var(--blue);
  font: 800 0.72rem "Manrope";
}

.solution-grid h3 {
  margin: 54px 0 10px;
  font: 800 1.15rem "Manrope";
  letter-spacing: -0.045em;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(1200px, calc(100% - 48px));
  min-height: 310px;
  margin: 0 auto 70px;
  padding: 54px 70px;
  overflow: hidden;
  border-radius: 18px;
  color: white;
  background: linear-gradient(120deg, #146de3, #115acb);
  position: relative;
}

.cta::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -120px;
  bottom: -260px;
  border: 65px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta h2 {
  max-width: 550px;
  margin: 12px 0;
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  line-height: 1.05;
}

.cta p {
  max-width: 520px;
  margin: 0 0 22px;
  color: #dfeeff;
}

.eyebrow.light {
  color: #dfeeff;
}

.eyebrow.light b {
  background: #9ce7ff;
}

.button-light {
  color: #1669d7;
  background: white;
}

.cta-squares {
  display: grid;
  grid-template-columns: repeat(2, 70px);
  gap: 12px;
  margin-right: 55px;
  transform: rotate(14deg);
}

.cta-squares i {
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-squares i:nth-child(2) {
  background: rgba(255, 255, 255, 0.31);
}

.cta-squares i:nth-child(3) {
  background: rgba(255, 255, 255, 0.28);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1200px, calc(100% - 48px));
  margin: auto;
  padding: 29px 0 38px;
  border-top: 1px solid var(--line);
  color: #79869a;
  font-size: 0.74rem;
}

footer p {
  margin: 0;
}

footer > a:last-child {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .nav-links {
    gap: 17px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 65px;
  }
  .hero-copy {
    max-width: 680px;
  }
  .hero-dashboard {
    max-width: 650px;
    width: 100%;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .workflow {
    grid-template-columns: 1fr;
  }
  .workflow-copy {
    max-width: 650px;
  }
  .cta {
    padding: 48px;
  }
  .cta-squares {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 32px);
    min-height: 70px;
  }
  .nav-links {
    display: none;
  }
  .nav-action {
    padding: 9px 10px;
    font-size: 0.68rem;
  }
  .hero-inner,
  .section,
  .trust-strip,
  .cta,
  footer {
    width: calc(100% - 32px);
  }
  .hero-inner {
    min-height: 0;
    padding: 50px 0;
  }
  .hero h1 {
    font-size: 2.65rem;
  }
  .hero-dashboard {
    min-height: 405px;
  }
  .dashboard-sidebar {
    width: 82px;
    padding: 17px 8px;
  }
  .dashboard-sidebar span {
    padding: 8px 4px;
    font-size: 0.54rem;
  }
  .dashboard-main {
    margin-left: 82px;
    padding: 17px 12px;
  }
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }
  .stat-row > div:last-child {
    display: none;
  }
  .request-card {
    width: 150px;
  }
  .trust-strip {
    display: block;
  }
  .trust-strip div {
    justify-content: start;
    gap: 13px;
    margin-top: 15px;
  }
  .section {
    padding: 82px 0;
  }
  .feature-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid article,
  .solution-grid article {
    min-height: 0;
  }
  .workflow {
    gap: 38px;
  }
  .rental-board {
    padding: 17px;
  }
  .cta {
    margin-bottom: 38px;
    padding: 37px 25px;
  }
  .cta h2 {
    font-size: 2.25rem;
  }
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
