:root {
  --ink: #121816;
  --muted: #5d675f;
  --paper: #f8f2e7;
  --panel: #fffaf1;
  --line: #d8d0c2;
  --green: #244b3d;
  --green-soft: #dbe9dd;
  --purple: #e8e1f4;
  --yellow: #fff1ba;
  --peach: #f4d0bf;
  --blue: #dceaf0;
  font-family: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

.review-offer {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px 18px;
  color: #25372f;
  background: linear-gradient(90deg, #fff4c9 0%, #ffe7a1 50%, #fff4c9 100%);
  border-bottom: 1px solid rgba(70, 55, 12, 0.16);
  box-shadow: 0 4px 14px rgba(70, 55, 12, 0.08);
  font-size: 12px;
  line-height: 1.25;
  text-align: center;
}

.review-offer span {
  padding: 5px 8px;
  border: 1px solid rgba(102, 75, 0, 0.2);
  border-radius: 999px;
  color: #664b00;
  background: rgba(255, 255, 255, 0.48);
  font: 800 9px "DM Mono", monospace;
  letter-spacing: 0.1em;
}

.review-offer strong {
  color: #4c3900;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.review-offer small {
  color: #5f6254;
  font-size: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 56px));
  margin: auto;
}

.site-nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  object-fit: cover;
}

.brand-lockup {
  display: grid;
  gap: 3px;
  line-height: 0.95;
}

.brand-lockup strong {
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: -0.035em;
}

.brand-lockup small {
  color: var(--muted);
  font: 800 8px "DM Mono", monospace;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav nav a {
  font-size: 14px;
  text-decoration: none;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.nav-cta {
  padding: 12px 17px;
  color: #ffffff !important;
  background: var(--ink);
}

.menu-toggle {
  display: none;
}

.section-label {
  margin: 0 0 14px;
  color: var(--muted);
  font: 500 12px "DM Mono", monospace;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 46px;
  align-items: center;
  padding: 76px 64px;
  border-radius: 18px;
  background: var(--purple);
}

.hero h1,
.section-title h2,
.process-title h2,
.demo-callout h2 {
  margin: 0;
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.hero p,
.section-title > p,
.section-title > div + p,
.process-title p,
.demo-callout p {
  max-width: 610px;
  margin: 20px 0 0;
  color: #37423c;
  font-size: 16px;
  line-height: 1.6;
}

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

.button {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
}

.button.dark {
  color: #ffffff;
  background: var(--ink);
}

.button.light {
  background: #ffffff;
  border-color: var(--line);
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: auto;
  padding: 24px;
  border: 1px solid rgba(18, 24, 22, 0.12);
  border-radius: 12px;
  background: #fffaf1;
}

.hero-panel span {
  color: var(--muted);
  font: 500 12px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-panel ul {
  display: grid;
  gap: 0;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 18px;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.quick-info article {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.info-icon,
.service-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 12px;
  color: #ffffff;
  background: var(--green);
  overflow: hidden;
}

.info-icon::before,
.info-icon::after,
.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.icon-business::before {
  width: 20px;
  height: 14px;
  bottom: 10px;
  border: 2px solid currentColor;
  border-top: 0;
}

.icon-business::after {
  width: 18px;
  height: 18px;
  top: 9px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

.icon-check::before {
  width: 21px;
  height: 11px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.icon-arrow::before {
  width: 20px;
  height: 2px;
  background: currentColor;
  transform: rotate(-35deg);
}

.icon-arrow::after {
  width: 9px;
  height: 9px;
  right: 12px;
  top: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.icon-layout::before {
  inset: 11px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.icon-layout::after {
  left: 13px;
  right: 13px;
  top: 19px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 7px 0 currentColor;
}

.icon-calendar::before {
  inset: 10px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.icon-calendar::after {
  left: 12px;
  right: 12px;
  top: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 6px 8px 0 -1px currentColor, 14px 8px 0 -1px currentColor;
}

.icon-form::before {
  width: 18px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.icon-form::after {
  width: 12px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor;
}

.icon-pages::before {
  width: 18px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 3px;
  transform: translate(2px, -2px);
}

.icon-pages::after {
  width: 18px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 3px;
  transform: translate(-3px, 3px);
  opacity: 0.55;
}

.icon-refresh::before {
  width: 20px;
  height: 20px;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow:
    0 -8px 0 -5px currentColor,
    0 8px 0 -5px currentColor,
    8px 0 0 -5px currentColor,
    -8px 0 0 -5px currentColor;
}

.icon-refresh::after {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
}

.icon-search::before {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-3px, -3px);
}

.icon-search::after {
  width: 10px;
  height: 2px;
  background: currentColor;
  transform: translate(8px, 8px) rotate(45deg);
}

.quick-info article:nth-child(2) .info-icon,
.service-grid article:nth-child(2) .service-icon,
.service-grid article:nth-child(5) .service-icon {
  color: var(--ink);
  background: var(--yellow);
}

.quick-info article:nth-child(3) .info-icon,
.service-grid article:nth-child(3) .service-icon,
.service-grid article:nth-child(6) .service-icon {
  color: var(--ink);
  background: var(--blue);
}

.service-grid article:nth-child(4) .service-icon {
  color: var(--ink);
  background: var(--peach);
}

.quick-info strong,
.service-grid h3,
.steps h3 {
  display: block;
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.quick-info p,
.service-grid p,
.steps p,
.pricing-note {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.services,
.pricing,
.process,
.demo-callout {
  margin-top: 28px;
  padding: 54px;
  border-radius: 18px;
}

.services {
  background: var(--peach);
}

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

.process {
  background: var(--purple);
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 44px;
  align-items: start;
  margin-bottom: 32px;
}

.section-title h2,
.process-title h2,
.demo-callout h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(18, 24, 22, 0.18);
  border-left: 1px solid rgba(18, 24, 22, 0.18);
}

.service-grid article {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-right: 1px solid rgba(18, 24, 22, 0.18);
  border-bottom: 1px solid rgba(18, 24, 22, 0.18);
  background: rgba(255, 250, 241, 0.46);
}

.service-grid h3 {
  margin-top: 4px;
}

.service-grid button {
  width: max-content;
  margin-top: auto;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  background: transparent;
  font: 500 12px "DM Mono", monospace;
  cursor: pointer;
}

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

.price-card {
  min-height: 218px;
  padding: 26px;
  border: 1px solid rgba(18, 24, 22, 0.15);
  border-radius: 12px;
  background: rgba(255, 250, 241, 0.68);
}

.price-card.enova {
  color: #ffffff;
  background: var(--green);
}

.price-card span {
  display: block;
  margin-bottom: 26px;
  font: 500 12px "DM Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.price-card p {
  max-width: 260px;
  margin: 0;
  color: inherit;
  opacity: 0.78;
  line-height: 1.5;
}

.pricing-note {
  margin-top: 18px;
  max-width: 830px;
  font-size: 13px;
}

.process-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 44px;
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(18, 24, 22, 0.16);
}

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

.steps article {
  padding: 28px 30px 0;
  border-right: 1px solid rgba(18, 24, 22, 0.16);
}

.steps article:first-child {
  padding-left: 0;
}

.steps article:last-child {
  border-right: 0;
}

.steps span {
  display: inline-flex;
  margin-bottom: 36px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff7d9;
  color: #42534a;
  font: 500 11px "DM Mono", monospace;
  text-transform: uppercase;
}

.steps article:nth-child(2) span {
  background: #d8f0e7;
}

.steps article:nth-child(3) span {
  background: #f5d7cc;
}

.demo-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--yellow);
}

.demo-callout > div {
  max-width: 680px;
}

.footer {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
}

.footer p {
  max-width: 330px;
  margin: 0;
}

.footer div {
  display: flex;
  gap: 16px;
}

.footer a {
  text-decoration: none;
}

.footer > span {
  font: 500 11px "DM Mono", monospace;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(18, 24, 22, 0.28);
}

.service-modal.open {
  display: flex;
}

.modal-card {
  width: min(520px, 100%);
  padding: 36px;
  border-radius: 12px;
  background: var(--panel);
  box-shadow: 0 28px 90px rgba(18, 24, 22, 0.25);
}

.modal-kicker {
  color: var(--muted);
  font: 500 11px "DM Mono", monospace;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.modal-card h2 {
  margin: 18px 0 14px;
  font-size: 44px;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.modal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.modal-back {
  margin-top: 28px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

body.modal-open main,
body.modal-open header,
body.modal-open footer {
  filter: blur(6px);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 850px) {
  .review-offer {
    flex-wrap: wrap;
    gap: 5px 10px;
    padding-inline: 12px;
  }

  .wrap {
    width: calc(100% - 32px);
  }

  .site-nav {
    min-height: 74px;
  }

  .menu-toggle {
    display: block;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: 500 12px "DM Mono", monospace;
  }

  .site-nav nav {
    display: none;
  }

  .site-nav.open nav {
    position: absolute;
    z-index: 20;
    top: 72px;
    left: 18px;
    right: 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--panel);
    box-shadow: 0 20px 40px rgba(18, 24, 22, 0.14);
  }

  .hero,
  .section-title,
  .process-title {
    grid-template-columns: 1fr;
  }

  .hero,
  .services,
  .pricing,
  .process,
  .demo-callout {
    padding: 34px 20px;
  }

  .hero {
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(38px, 13vw, 58px);
    letter-spacing: -0.045em;
  }

  .section-title,
  .process-title {
    gap: 16px;
  }

  .quick-info,
  .service-grid,
  .price-compare,
  .steps {
    grid-template-columns: 1fr;
  }

  .service-grid article,
  .steps article,
  .steps article:first-child {
    border-right: 0;
    padding: 24px 0;
  }

  .service-grid {
    border-left: 0;
  }

  .service-grid article {
    padding: 24px;
    border-left: 1px solid rgba(18, 24, 22, 0.18);
  }

  .demo-callout,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-card {
    min-height: auto;
  }
}
