:root {
  --orange: #ff5a00;
  --orange-hover: #e14e00;
  --charcoal: #1f1f1f;
  --gray: #6b7280;
  --soft: #f5f5f5;
  --line: #e8e8e8;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(31, 31, 31, 0.09);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: "Inter", Aptos, Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

h1,
h2,
h3 {
  font-family: "Poppins", Aptos, Arial, Helvetica, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(2.25rem, 4.55vw, 4.25rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
  color: var(--gray);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: clamp(190px, 22vw, 285px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 12px;
  color: var(--gray);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--charcoal);
  background: var(--soft);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--orange);
  margin-left: 6px;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
  color: var(--white);
  background: var(--orange-hover);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--charcoal);
}

.hero,
.page-hero,
.contact-section {
  padding: clamp(46px, 6vw, 88px) clamp(20px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.74fr);
  gap: clamp(38px, 6vw, 88px);
  align-items: center;
  min-height: auto;
}

.eyebrow {
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.83rem;
  margin-bottom: 18px;
}

.hero-text,
.page-hero p,
.lead {
  margin-top: 20px;
  max-width: 690px;
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
}

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

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-hover);
}

.btn-secondary {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--orange);
}

.btn-light {
  background: var(--white);
  color: var(--orange);
}

.hero-panel {
  padding: clamp(18px, 3vw, 34px);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.report-card,
.sample-report {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.report-card {
  padding: clamp(22px, 3vw, 34px);
}

.report-head,
.sample-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.report-head img,
.sample-top img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
}

.report-head strong,
.sample-top strong {
  display: block;
  font-size: 1.08rem;
}

.report-head span,
.sample-top span {
  color: var(--gray);
}

.metric-grid,
.mini-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-grid div,
.mini-table p {
  padding: 15px;
  background: var(--soft);
  border-radius: 8px;
}

.metric-grid span,
.mini-table span {
  display: block;
  color: var(--gray);
  font-size: 0.82rem;
}

.metric-grid strong,
.mini-table strong {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
}

.bars {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.bars span {
  height: 12px;
  width: var(--w);
  border-radius: 999px;
  background: var(--orange);
}

.section {
  padding: clamp(70px, 8vw, 116px) clamp(20px, 5vw, 72px);
}

.soft {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.two-col,
.card-grid,
.pricing-grid,
.process {
  display: grid;
  gap: 18px;
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.price-card,
.process article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.number,
.process span,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  min-width: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 90, 0, 0.1);
  color: var(--orange);
  font-weight: 800;
  margin-bottom: 18px;
}

.card h3,
.process h3 {
  margin-bottom: 12px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

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

.check-list p {
  position: relative;
  padding: 16px 18px 16px 48px;
  color: var(--charcoal);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.check-list p::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
}

.cta-band {
  margin: 0 clamp(20px, 5vw, 72px) clamp(42px, 6vw, 72px);
  padding: clamp(42px, 6vw, 72px);
  background: var(--orange);
  color: var(--white);
  border-radius: 8px;
}

.cta-band h2,
.cta-band p {
  color: var(--white);
  max-width: 820px;
}

.cta-band p {
  margin: 18px 0 28px;
  font-size: 1.12rem;
}

.page-hero {
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.page-hero h1 {
  max-width: 980px;
}

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

.sample-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(320px, 0.9fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.sample-notes {
  position: sticky;
  top: 110px;
}

.sample-notes h2 {
  margin-bottom: 18px;
}

.compact {
  margin-top: 24px;
}

.sample-report {
  padding: clamp(22px, 4vw, 44px);
}

.rent-result {
  padding: 28px;
  background: var(--charcoal);
  border-radius: 8px;
  margin-bottom: 26px;
}

.rent-result span,
.rent-result p {
  color: rgba(255, 255, 255, 0.78);
}

.rent-result strong {
  display: block;
  color: var(--white);
  font-family: "Poppins", Aptos, Arial, Helvetica, sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  margin: 10px 0;
}

.sample-section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.sample-section h3 {
  margin-bottom: 16px;
}

.comp-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.sample-callout {
  padding: 22px;
  background: rgba(255, 90, 0, 0.1);
  border: 1px solid rgba(255, 90, 0, 0.22);
  border-radius: 8px;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.price {
  color: var(--charcoal);
  font-size: 1.45rem;
  font-weight: 800;
  margin: 15px 0 10px;
}

.price-card ul {
  padding-left: 19px;
  margin: 24px 0;
  color: var(--gray);
}

.price-card li {
  margin-bottom: 10px;
}

.price-card .btn {
  margin-top: auto;
}

.pricing-note {
  text-align: center;
  max-width: 760px;
  margin: 28px auto 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
  background: var(--soft);
}

.contact-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.9rem);
}

.contact-copy > p {
  margin-top: 22px;
  font-size: 1.15rem;
}

.contact-promise {
  margin-top: 32px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-promise strong,
.contact-promise span {
  display: block;
}

.contact-promise span {
  color: var(--gray);
  margin-top: 6px;
}

.demo-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--charcoal);
  font: inherit;
  background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(255, 90, 0, 0.28);
  border-color: var(--orange);
}

.form-note {
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 190px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--gray);
  font-weight: 700;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero,
  .feature-row,
  .sample-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .card-grid,
  .pricing-grid,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sample-notes {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand img {
    width: 180px;
  }

  .hero,
  .page-hero,
  .contact-section,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .two-col,
  .card-grid,
  .pricing-grid,
  .process,
  .metric-grid,
  .mini-table {
    grid-template-columns: 1fr;
  }

  .cta-band {
    margin-left: 18px;
    margin-right: 18px;
    padding: 32px 22px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
