:root {
  --orange: #ff4800;
  --purple: #51316c;
  --purple-dark: #3f2557;
  --text: #16142a;
  --muted: #66627a;
  --line: #e8e2ef;
  --bg: #fffdfd;
  --surface: rgba(255, 255, 255, 0.92);
  --shadow: 0 22px 60px rgba(53, 29, 78, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(81, 49, 108, 0.08);
}

.header-grid {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.brand-centered {
  justify-self: center;
}

.brand img,
.footer-logo {
  width: 220px;
  height: auto;
}

.nav-links,
.nav-cta {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-left {
  justify-content: flex-start;
}

.nav-cta {
  justify-content: flex-end;
}

.nav-links a,
.nav-link-ghost {
  font-size: 15px;
  font-weight: 700;
  color: #3b3550;
}

.nav-links a:hover,
.nav-link-ghost:hover {
  color: var(--orange);
}

.mobile-header {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 16px 24px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  padding: 12px 18px;
  font-size: 14px;
}

.btn-primary {
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(255, 72, 0, 0.18);
}

.btn-primary:hover {
  background: #eb4300;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  color: var(--purple);
  border-color: rgba(81, 49, 108, 0.25);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0.58) 40%,
      rgba(255, 255, 255, 0.76) 100%
    ),
    linear-gradient(
      115deg,
      rgba(255, 72, 0, 0.26) 0%,
      rgba(255, 72, 0, 0.1) 38%,
      rgba(81, 49, 108, 0.07) 100%
    ),
    url('parking-bg.jpg') center top / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.72) 72%,
    #ffffff 100%
  );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 720px;
  padding: 55px 0 35px;
  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(720px, 1.15fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(81, 49, 108, 0.09);
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow.purple {
  background: rgba(81, 49, 108, 0.08);
}

.hero-copy h1 {
  margin: 20px 0 18px;
  font-size: clamp(46px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 760px;
}

.hero-copy h1 span,
.waitlist-copy h2 span {
  color: var(--orange);
}

.hero-text {
  max-width: 760px;
  margin: 0;
  font-size: 20px;
  line-height: 1.7;
  color: #413b58;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-proof {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-proof div {
  min-width: 180px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(81, 49, 108, 0.1);
  border-radius: 16px;
}

.hero-proof strong {
  display: block;
  font-size: 15px;
}

.hero-proof span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.hero-card {
  position: relative;
}

.hero-card-shadow {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 78%;
  height: 180px;
  background: var(--purple);
  border-radius: 40px 40px 120px 40px;
  z-index: 0;
}

.dashboard-window {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(81, 49, 108, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(81, 49, 108, 0.08);
}

.dashboard-logo {
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 0.04em;
}

.dashboard-logo span,
.dashboard-user {
  color: var(--purple);
}

.dashboard-user {
  font-size: 14px;
  font-weight: 700;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 195px 1fr;
  min-height: 500px;
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background: rgba(81, 49, 108, 0.03);
  border-right: 1px solid rgba(81, 49, 108, 0.08);
}

.dashboard-sidebar span {
  padding: 10px 12px;
  border-radius: 12px;
  color: #605a73;
  font-size: 14px;
  font-weight: 700;
}

.dashboard-sidebar .active {
  background: rgba(81, 49, 108, 0.12);
  color: var(--purple);
}

.dashboard-content {
  padding: 18px;
}

.dashboard-filters {
  display: grid;
  grid-template-columns: 2.2fr repeat(3, 1fr) auto;
  gap: 10px;
}

.dashboard-filters > div,
.dashboard-filters > button {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(81, 49, 108, 0.1);
  border-radius: 12px;
  background: #ffffff;
  color: #7a738c;
  font-size: 13px;
}

.dashboard-filters button {
  background: var(--purple);
  color: #ffffff;
  border: none;
  font-weight: 800;
}

.dashboard-header-row {
  margin: 18px 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-header-row h3 {
  margin: 0;
  font-size: 26px;
}

.dashboard-header-row a {
  padding: 10px 14px;
  background: var(--purple);
  color: #ffffff;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.listing-card {
  border: 1px solid rgba(81, 49, 108, 0.1);
  border-radius: 18px;
  overflow: hidden;
  padding-bottom: 14px;
  background: #ffffff;
}

.listing-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.car-a {
  background-image: url('toyota-corolla.jpg');
}

.car-b {
  background-image: url('honda-crv.jpg');
}

.car-c {
  background-image: url('mazda-cx5.jpg');
}

.listing-card h4,
.listing-card p,
.listing-card strong,
.listing-card span,
.listing-card em {
  display: block;
  padding: 0 14px;
}

.listing-card h4 {
  margin: 12px 0 4px;
  font-size: 17px;
}

.listing-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.listing-card strong {
  color: var(--purple);
  font-size: 18px;
}

.listing-card span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.listing-card em {
  margin: 12px 14px 0;
  width: fit-content;
  padding: 8px 12px;
  font-style: normal;
  color: #2f7d39;
  background: rgba(86, 196, 101, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.section {
  padding: 65px 0;
}
#beneficios {
  padding-top: 15px;
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 42px;
}

.section-heading.narrow {
  max-width: 700px;
}

.section-heading h2 {
  margin: 18px 0 14px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.benefit-grid.four-up {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.icon-card {
  background: #ffffff;
  border: 1px solid rgba(81, 49, 108, 0.1);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 12px 28px rgba(81, 49, 108, 0.05);
}

.icon-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 26px;
  font-weight: 800;
  color: var(--orange);
  background: rgba(255, 72, 0, 0.08);
}

.icon-card h3 {
  font-size: 22px;
  margin: 20px 0 10px;
}

.icon-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(81, 49, 108, 0.1);
  border-radius: 26px;
  overflow: hidden;
  background: #ffffff;
}

.tool-grid article {
  padding: 28px 26px;
  border-right: 1px solid rgba(81, 49, 108, 0.08);
  border-bottom: 1px solid rgba(81, 49, 108, 0.08);
  min-height: 156px;
}

.tool-grid article:nth-child(3n) {
  border-right: none;
}

.tool-grid article:nth-last-child(-n + 1) {
  border-bottom: none;
}

.tool-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.tool-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.process {
  background: linear-gradient(
    180deg,
    rgba(81, 49, 108, 0.02),
    rgba(81, 49, 108, 0)
  );
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(81, 49, 108, 0.1);
  border-radius: 22px;
  padding: 42px 34px 34px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(81, 49, 108, 0.05);
}

.step-number {
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 900;
}

.step-card h3 {
  margin: 10px 0 12px;
  font-size: 24px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.waitlist {
  background: linear-gradient(
    180deg,
    rgba(81, 49, 108, 0.04),
    rgba(81, 49, 108, 0.025)
  );
}

.waitlist-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 30px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(81, 49, 108, 0.08);
  border-radius: 30px;
  padding: 34px;
}

.waitlist-copy {
  align-self: center;
}

.waitlist-copy h2 {
  margin: 18px 0 16px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.waitlist-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #3f3955;
  font-weight: 700;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  background: rgba(255, 72, 0, 0.08);
  font-size: 13px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(81, 49, 108, 0.08);
  padding: 26px;
  box-shadow: 0 18px 36px rgba(81, 49, 108, 0.06);
}

.field,
.checkbox,
.form-message,
.full {
  grid-column: span 1;
}

.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 800;
  color: #363149;
}

.field input,
.field select {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(81, 49, 108, 0.16);
  border-radius: 14px;
  outline: none;
  background: #ffffff;
}

.field input:focus,
.field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 72, 0, 0.1);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.checkbox input {
  margin-top: 4px;
}

.form-message {
  min-height: 24px;
  font-size: 14px;
  color: var(--purple);
  font-weight: 700;
}

.cta-band-inner {
  background: linear-gradient(
    135deg,
    var(--purple) 0%,
    var(--purple-dark) 100%
  );
  color: #ffffff;
  border-radius: 28px;
  padding: 42px 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-band-inner h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.cta-band-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.site-footer {
  padding: 0 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid rgba(81, 49, 108, 0.08);
}

.footer-grid h4 {
  margin: 0 0 14px;
  color: var(--purple);
}

.footer-grid p,
.footer-grid span,
.footer-grid a {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(81, 49, 108, 0.08);
}

@media (min-width: 1400px) {
  .hero-grid {
    grid-template-columns: minmax(560px, 0.9fr) minmax(820px, 1.1fr);
  }

  .dashboard-window {
    transform: scale(1.02);
    transform-origin: center right;
  }
}

@media (max-width: 1080px) {
  .header-grid {
    grid-template-columns: 1fr;
    padding: 12px 0;
  }

  .nav-links,
  .nav-cta,
  .brand-centered {
    display: none;
  }

  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .hero-grid,
  .waitlist-panel,
  .benefit-grid.four-up,
  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .tool-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tool-grid article:nth-child(3n) {
    border-right: 1px solid rgba(81, 49, 108, 0.08);
  }

  .tool-grid article:nth-child(2n) {
    border-right: none;
  }

  .dashboard-shell,
  .listing-grid,
  .dashboard-filters,
  .cta-band-inner {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-header-row,
  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1440px);
  }

  .brand img,
  .footer-logo {
    width: 170px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-proof {
    flex-direction: column;
  }

  .dashboard-content {
    padding: 14px;
  }

  .listing-grid {
    grid-template-columns: 1fr;
  }

  .tool-grid {
    grid-template-columns: 1fr;
  }

  .tool-grid article {
    border-right: none !important;
  }

  .waitlist-panel {
    padding: 18px;
  }

  .lead-form {
    padding: 18px;
  }

  .cta-band-inner {
    padding: 28px 22px;
  }
}