:root {
  --navy: #061a3f;
  --navy-2: #0b2d63;
  --blue: #146cff;
  --light-blue: #eef7ff;
  --orange: #ff4f30;
  --green: #24c267;
  --purple: #7447e8;
  --ink: #071a3f;
  --muted: #52627a;
  --line: #dbe8f8;
  --card: #ffffff;
  --shadow: 0 22px 60px rgba(6, 26, 63, .13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: linear-gradient(180deg, #edf7ff 0%, #ffffff 44%, #f4faff 100%);
  font-family: Arial, Helvetica, sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 44px);
  background: rgba(247, 252, 255, .94);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 4px;
  min-width: 250px;
}

.brand strong {
  color: var(--navy);
  font-size: clamp(27px, 3vw, 37px);
  line-height: .94;
  font-weight: 900;
}

.brand strong span { color: var(--orange); }

.brand small {
  max-width: 260px;
  color: #0f438f;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.7vw, 28px);
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.main-nav a:hover { color: var(--orange); }

.header-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  font-weight: 900;
}

.top-cta,
.cta,
.price-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  padding: 13px 18px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(255, 79, 48, .28);
}

.login-link { white-space: nowrap; }

.menu-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  gap: 28px;
  align-items: center;
  min-height: 760px;
  padding: 34px clamp(18px, 4vw, 52px) 46px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.9) 0 42%, rgba(255,255,255,.48) 62%, rgba(238,247,255,.28) 100%),
    radial-gradient(circle at 80% 14%, rgba(20,108,255,.15), transparent 34%),
    linear-gradient(180deg, #eef7ff, #ffffff);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -11%;
  bottom: 0;
  width: 64%;
  height: 78%;
  background:
    linear-gradient(120deg, transparent 0 48%, rgba(255, 122, 60, .18) 49% 51%, transparent 52%),
    linear-gradient(90deg, transparent 0 18%, rgba(6, 26, 63, .12) 19% 21%, transparent 22%),
    linear-gradient(180deg, transparent 0 72%, rgba(6, 26, 63, .12) 73% 76%, transparent 77%);
  opacity: .58;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: #0f438f;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.06;
  letter-spacing: 0;
}

h1 span { color: var(--orange); }

.lead {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.45;
  font-weight: 800;
}

.status-tracker {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  max-width: 650px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.95);
  padding: 14px;
  box-shadow: var(--shadow);
}

.status-tracker div {
  position: relative;
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.status-tracker div:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -10px;
  top: 18px;
  color: #94a9c5;
}

.status-tracker i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-style: normal;
  font-size: 17px;
}

.green { background: var(--green); }
.blue { background: var(--blue); }
.orange { background: var(--orange); }
.purple { background: var(--purple); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.cta {
  min-height: 62px;
  padding: 18px 24px;
  gap: 14px;
  font-size: 18px;
}

.cta span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--orange);
}

.play-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  padding: 16px 22px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(6, 26, 63, .1);
}

.play-cta span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid #d8e8fb;
  border-radius: 50%;
  color: var(--navy);
}

.hero-visual {
  min-height: 650px;
}

.visual-bg {
  position: absolute;
  inset: 44px 16px 0 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 14%, rgba(255,255,255,.92), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.4), rgba(20,108,255,.08));
}

.contractor-card {
  position: absolute;
  right: 12%;
  bottom: 95px;
  width: 285px;
  height: 500px;
  filter: drop-shadow(0 22px 34px rgba(6,26,63,.18));
}

.face {
  position: absolute;
  top: 0;
  left: 88px;
  width: 120px;
  height: 132px;
  border-radius: 48% 48% 44% 44%;
  background:
    radial-gradient(circle at 35% 42%, #2a170f 0 4px, transparent 5px),
    radial-gradient(circle at 66% 42%, #2a170f 0 4px, transparent 5px),
    linear-gradient(180deg, #f3b38e, #d8845d);
  border-top: 20px solid #27221d;
}

.vest {
  position: absolute;
  left: 32px;
  top: 126px;
  width: 230px;
  height: 370px;
  border-radius: 88px 88px 28px 28px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.18), transparent 36%),
    linear-gradient(180deg, #143e71, #071a3f);
}

.vest::before,
.vest::after {
  content: "";
  position: absolute;
  top: 70px;
  width: 74px;
  height: 190px;
  border-radius: 50px;
  background: #12345e;
}

.vest::before { left: -48px; transform: rotate(18deg); }
.vest::after { right: -48px; transform: rotate(-18deg); }

.dashboard-laptop {
  position: absolute;
  right: 9%;
  bottom: 8px;
  width: 460px;
  height: 210px;
  border-radius: 18px 18px 34px 34px;
  background: #071a3f;
  box-shadow: 0 24px 52px rgba(6, 26, 63, .24);
  padding: 16px 18px 28px;
}

.dashboard-laptop::after {
  content: "";
  position: absolute;
  left: -42px;
  right: -42px;
  bottom: -14px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b8c8dc, #eff6ff, #9fb2ca);
}

.laptop-screen {
  display: grid;
  grid-template-columns: 86px repeat(2, 1fr);
  gap: 9px;
  height: 100%;
  border-radius: 8px;
  background: #f7fbff;
  padding: 16px;
}

.laptop-screen b {
  border-radius: 8px;
  background: #e8f1fc;
}

.laptop-screen b:first-child {
  grid-row: span 4;
  background: #08254c;
}

.floating-card {
  position: absolute;
  z-index: 3;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}

.offer-card {
  left: 0;
  top: 18px;
  width: 244px;
  padding: 16px;
}

.offer-card h3 {
  margin: 0 0 11px;
  color: var(--navy);
  font-size: 14px;
}

.offer-card p {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 8px;
  align-items: center;
  margin: 9px 0;
  color: #31415b;
  font-size: 12px;
  font-weight: 800;
}

.offer-card p i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.revenue-card {
  right: 4px;
  top: 38px;
  width: 220px;
  padding: 18px;
}

.profit-card {
  right: 0;
  top: 254px;
  width: 206px;
  padding: 18px;
}

.revenue-card span,
.profit-card span {
  display: block;
  color: #273b59;
  font-size: 12px;
  font-weight: 900;
}

.revenue-card strong,
.profit-card strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: 27px;
}

.revenue-card svg {
  width: 100%;
  height: 60px;
  margin-top: 16px;
}

.donut {
  width: 70px;
  height: 70px;
  margin: 12px 0 0 auto;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0 42%, var(--green) 42% 72%, var(--purple) 72% 100%);
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: #fff;
}

.value-cards,
.level-section,
.journey,
.features,
.pricing {
  padding: 34px clamp(18px, 5vw, 60px);
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -8px;
}

.value-cards article,
.level-card,
.feature-grid article,
.price-grid article,
.mini-faq {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.value-cards article {
  padding: 28px 24px;
}

.icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.blue-icon { background: var(--blue); }
.orange-icon { background: var(--orange); }
.green-icon { background: var(--green); }

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3.2vw, 42px);
  text-align: center;
}

h3 {
  margin: 14px 0 10px;
  color: var(--navy);
  font-size: 19px;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 700;
}

.section-title {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 28px;
  text-align: center;
}

.section-title p {
  max-width: 720px;
  font-size: 18px;
}

.level-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.level-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 30px;
  overflow: hidden;
}

.level-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
}

.level-card.starter::before { background: var(--green); }
.level-card.growth::before { background: var(--blue); }
.level-card.builder::before { background: var(--orange); }

.level-card > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.starter > span { background: var(--green); }
.growth > span { background: var(--blue); }
.builder > span { background: var(--orange); }

.level-card h3 {
  margin: 0;
  font-size: 26px;
}

.level-lead {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.level-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.level-card li {
  color: #233b60;
  font-weight: 800;
}

.level-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}

.level-card strong {
  margin-top: 8px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
}

.journey {
  background: linear-gradient(180deg, rgba(255,255,255,.65), rgba(238,247,255,.9));
}

.journey-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.journey-steps article {
  display: grid;
  justify-items: center;
  min-height: 190px;
  padding: 28px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.journey-steps > i {
  color: #1f3f70;
  font-style: normal;
  font-size: 32px;
  font-weight: 900;
}

.journey-steps span {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
}

.green-step { background: var(--green); }
.blue-step { background: var(--blue); }
.orange-step { background: var(--orange); }

.features {
  padding-top: 42px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.feature-grid article {
  padding: 24px;
  min-height: 190px;
}

.feature-grid span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: #eaf7ef;
  color: var(--green);
  font-size: 20px;
  font-weight: 900;
}

.platform-block {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 30px;
  align-items: stretch;
  margin: 20px clamp(18px, 5vw, 60px) 0;
  padding: 34px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 75% 18%, rgba(20,108,255,.18), transparent 28%),
    linear-gradient(135deg, #031633, #082b5f);
  box-shadow: var(--shadow);
}

.platform-block h2 {
  color: #fff;
  text-align: left;
}

.platform-block h2 span {
  display: block;
  color: var(--orange);
}

.platform-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.platform-benefits article {
  display: grid;
  gap: 10px;
}

.platform-benefits i {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: #063f89;
  color: #fff;
  font-style: normal;
  font-weight: 900;
}

.platform-benefits h3,
.platform-benefits p,
.platform-list p,
.mini-faq h3,
.mini-faq summary,
.mini-faq p {
  color: #fff;
}

.platform-side {
  display: grid;
  gap: 18px;
}

.platform-list {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255,255,255,.07);
}

.platform-list p { font-weight: 900; }

.mini-faq {
  padding: 20px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.08);
}

.mini-faq h3 {
  margin: 0 0 14px;
}

.mini-faq details {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 11px 0;
}

.mini-faq summary {
  cursor: pointer;
  font-weight: 900;
}

.mini-faq p {
  margin-top: 8px;
  color: #cbd9ee;
  font-size: 13px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-grid article {
  position: relative;
  padding: 30px;
}

.price-grid .featured {
  border: 2px solid var(--blue);
  transform: translateY(-10px);
}

.price-grid em {
  position: absolute;
  top: -16px;
  left: 20px;
  right: 20px;
  border-radius: 12px 12px 0 0;
  background: var(--blue);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  padding: 5px;
}

.price-grid strong {
  display: block;
  margin: 14px 0 6px;
  color: var(--navy);
  font-size: 36px;
}

.price-grid strong span {
  font-size: 15px;
  font-weight: 700;
}

.price-grid small {
  display: block;
  margin-bottom: 20px;
  color: var(--muted);
  font-weight: 900;
}

.price-grid p {
  margin: 8px 0;
  color: #155b33;
}

.price-grid a {
  width: 100%;
  margin-top: 24px;
  border-radius: 8px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: center;
  padding: 24px clamp(18px, 5vw, 60px);
  background: #05183a;
  color: #fff;
}

.trust-bar div {
  display: flex;
  gap: 12px;
  align-items: center;
}

.trust-bar strong {
  font-size: 26px;
}

.trust-bar span {
  color: #d7e5f8;
  font-weight: 800;
}

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

  .menu-toggle {
    display: inline-flex;
    justify-content: center;
    border: 0;
    border-radius: 10px;
    background: var(--navy);
    color: #fff;
    padding: 11px 15px;
    font-weight: 900;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .site-header.open .main-nav,
  .site-header.open .header-actions {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .site-header.open .main-nav a,
  .site-header.open .header-actions a {
    padding: 10px 0;
  }

  .hero,
  .platform-block {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }

  .value-cards,
  .feature-grid,
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .level-grid,
  .price-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .level-grid,
  .price-grid,
  .platform-benefits,
  .value-cards,
  .feature-grid,
  .trust-bar {
    grid-template-columns: 1fr;
  }

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

  .journey-steps > i {
    transform: rotate(90deg);
    justify-self: center;
  }

  .price-grid .featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  .brand { min-width: 0; }
  .brand strong { font-size: 28px; }
  .brand small { font-size: 11px; }

  .hero {
    padding-top: 24px;
  }

  .status-tracker {
    grid-template-columns: 1fr;
  }

  .status-tracker div:not(:last-child)::after {
    display: none;
  }

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

  .hero-visual {
    min-height: 520px;
  }

  .contractor-card {
    right: 9%;
    transform: scale(.82);
    transform-origin: bottom right;
  }

  .dashboard-laptop {
    left: 8px;
    right: 8px;
    width: auto;
  }

  .offer-card,
  .revenue-card,
  .profit-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    margin-bottom: 12px;
  }

  .platform-block {
    margin-inline: 18px;
    padding: 24px;
  }
}
