:root {
  --red: #e10600;
  --gold: #f5b000;
  --text: #0e1726;
  --muted: #5e6b7a;
  --bg: #ffffff;
  --card: #ffffff;
  --line: rgba(15, 23, 42, 0.1);
  --shadow: 0 18px 50px rgba(2, 8, 23, 0.1);
  --shadow2: 0 10px 30px rgba(2, 8, 23, 0.08);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}

/* PURE WHITE like GoMechanic */
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial;
  color: var(--text);
  background: #ffffff;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--red), #ff3b30);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(225, 6, 0, 0.22);
}
.brand__name {
  font-family: Montserrat, Inter;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.brand__tag {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.nav__links {
  display: flex;
  gap: 18px;
}
.nav__links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}
.nav__links a:hover {
  color: var(--text);
}

.nav__cta {
  display: flex;
  gap: 10px;
}

.btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    border-color 0.12s ease;
  box-shadow: 0 10px 20px rgba(2, 8, 23, 0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, 0.18);
  box-shadow: var(--shadow2);
}
.btn--primary {
  border: none;
  color: #1a1200;
  background: linear-gradient(135deg, var(--gold), #ffd86a);
}
.btn--ghost {
  background: #fff;
}
.btn--lg {
  padding: 12px 16px;
  border-radius: 16px;
}
.btn--wide {
  width: 100%;
}

/* Hero */
.hero {
  padding: 52px 0 20px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 22px;
  align-items: stretch;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 1);
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 12px 24px rgba(2, 8, 23, 0.05);
}
.hero__title {
  font-family: Montserrat, Inter;
  font-size: 42px;
  line-height: 1.08;
  margin: 16px 0 10px;
  letter-spacing: -0.6px;
}
.accent {
  background: linear-gradient(135deg, var(--red), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__subtitle {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 18px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0 18px;
}

.trustRow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 10px 0 14px;
}
.trustItem {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(2, 8, 23, 0.05);
}
.trustIcon {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(245, 176, 0, 0.14);
}
.trustTitle {
  font-weight: 900;
  font-size: 13px;
}
.trustText {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.miniCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.miniCard {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 12px 26px rgba(2, 8, 23, 0.05);
}
.miniTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.miniBadge {
  font-weight: 900;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(49, 208, 127, 0.14);
  border: 1px solid rgba(49, 208, 127, 0.22);
}
.miniBadge--gold {
  background: rgba(245, 176, 0, 0.16);
  border-color: rgba(245, 176, 0, 0.25);
}
.miniBadge--red {
  background: rgba(225, 6, 0, 0.1);
  border-color: rgba(225, 6, 0, 0.2);
}
.miniMeta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.miniTitle {
  font-weight: 900;
}
.miniSub {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

/* Right side */
.heroSplit {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.heroImageCard {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.heroImg {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.heroImageOverlay {
  padding: 14px;
}
.overlayTop {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.tag {
  font-weight: 900;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}
.tag--gold {
  border-color: rgba(245, 176, 0, 0.35);
  background: rgba(245, 176, 0, 0.12);
  color: #7a5200;
}
.tag--red {
  border-color: rgba(225, 6, 0, 0.25);
  background: rgba(225, 6, 0, 0.08);
  color: #7a0c08;
}

.overlayTitle {
  font-weight: 900;
  font-family: Montserrat, Inter;
  margin: 6px 0 10px;
}

/* Booking card */
.bookingCard {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(2, 8, 23, 0.05);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}
.field span {
  font-size: 12px;
  font-weight: 900;
  color: var(--muted);
}
.field select {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 900;
  background: #fff;
  outline: none;
}
.field select:focus {
  border-color: rgba(245, 176, 0, 0.55);
  box-shadow: 0 0 0 4px rgba(245, 176, 0, 0.14);
}

.smallHint {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.sideMini {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 12px 26px rgba(2, 8, 23, 0.05);
}
.sideMiniImg {
  width: 92px;
  height: 68px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}
.sideMiniTitle {
  font-weight: 900;
}
.sideMiniSub {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.promoStrip {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.promoPill {
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(2, 8, 23, 0.04);
}

/* Sections: alternate light grey like GoMechanic */
.section {
  padding: 34px 0;
  background: #ffffff;
}
.section:nth-of-type(even) {
  background: #f7f8fa;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sectionTitle {
  font-family: Montserrat, Inter;
  font-size: 22px;
  margin: 0 0 14px;
}

/* Workflow */
.workflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.wf {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 14px 30px rgba(2, 8, 23, 0.05);
}
.wfHead {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}
.wfDot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  display: inline-block;
}
.wfDot--red {
  background: var(--red);
}
.wfDot--gold {
  background: var(--gold);
}
.wfDot--green {
  background: #31d07f;
}
.wfTitle {
  font-weight: 900;
}
.wfText {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.wfChipRow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  display: inline-block;
  font-weight: 900;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.03);
  color: var(--text);
}
.chip--warn {
  border-color: rgba(245, 176, 0, 0.35);
  background: rgba(245, 176, 0, 0.1);
}
.chip--ok {
  border-color: rgba(49, 208, 127, 0.25);
  background: rgba(49, 208, 127, 0.1);
}
.chip--gold {
  border-color: rgba(245, 176, 0, 0.35);
  background: rgba(245, 176, 0, 0.1);
}

/* Portals */
.portalGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.portal {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(2, 8, 23, 0.05);
}
.portalTop {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.portalTitle {
  font-weight: 900;
  font-family: Montserrat, Inter;
  margin: 6px 0 6px;
}
.portalText {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 12px;
}
.portal--customer {
  border-top: 4px solid rgba(245, 176, 0, 0.65);
}
.portal--station {
  border-top: 4px solid rgba(225, 6, 0, 0.55);
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 16px 0 22px;
  background: #fff;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brandSmall {
  font-weight: 900;
  font-family: Montserrat, Inter;
}
.footText {
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
  margin-top: 2px;
}
.footLeft {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Responsive */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .trustRow {
    grid-template-columns: 1fr;
  }
  .miniCards {
    grid-template-columns: 1fr;
  }
  .workflow {
    grid-template-columns: 1fr;
  }
  .portalGrid {
    grid-template-columns: 1fr;
  }
  .nav__links {
    display: none;
  }
  .hero__title {
    font-size: 34px;
  }
}
