:root {
  --ink: #15110f;
  --ink-soft: #4f4640;
  --muted: #766b63;
  --line: #e8ddd2;
  --paper: #fffaf3;
  --paper-strong: #fff4e2;
  --white: #ffffff;
  --red: #d82222;
  --red-dark: #a91616;
  --gold: #f2a93b;
  --green: #15803d;
  --charcoal: #191512;
  --shadow: 0 24px 70px rgba(61, 39, 22, 0.16);
  --radius: 22px;
  --container: min(1160px, calc(100% - 32px));
  --font-sans: Avenir, "Trebuchet MS", Verdana, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(242, 169, 59, 0.18), transparent 30rem),
    linear-gradient(180deg, #fffaf3 0%, #ffffff 42%, #fff7eb 100%);
  color: var(--ink);
  font-family: var(--font-sans);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(232, 221, 210, 0.8);
  background: rgba(255, 250, 243, 0.9);
  backdrop-filter: blur(16px);
}

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

.nav__logo {
  width: 132px;
}

.nav__links,
.nav__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__links {
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 800;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
}

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 70;
  display: none;
  width: min(360px, 92vw);
  border-left: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 24px;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-panel nav {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.mobile-panel a {
  border-radius: 14px;
  padding: 12px;
  color: var(--ink-soft);
  font-weight: 900;
}

.mobile-panel a:hover {
  background: var(--paper-strong);
}

.btn {
  display: inline-flex;
  min-height: 46px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(216, 34, 34, 0.26);
}

.btn--light {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.btn--dark {
  background: var(--charcoal);
  color: var(--white);
}

.btn--full {
  width: 100%;
}

.section {
  padding: 88px 0;
}

.section--soft {
  background:
    linear-gradient(180deg, rgba(255, 244, 226, 0.76), rgba(255, 250, 243, 0.94)),
    repeating-linear-gradient(135deg, rgba(216, 34, 34, 0.05) 0 1px, transparent 1px 18px);
}

.section--dark {
  background:
    radial-gradient(circle at 80% 20%, rgba(242, 169, 59, 0.22), transparent 22rem),
    linear-gradient(135deg, #191512, #2a1713);
  color: var(--white);
}

.section__head {
  max-width: 760px;
  margin-bottom: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #ffe2d2;
  padding: 8px 14px;
  color: var(--red-dark);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero {
  overflow: hidden;
  padding: 82px 0 76px;
}

.hero__grid {
  display: grid;
  align-items: center;
  gap: 42px;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.hero h1,
.page-hero h1,
.section h2 {
  margin: 16px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero h1 {
  font-size: clamp(3.1rem, 8vw, 6.4rem);
}

.page-hero h1,
.section h2 {
  font-size: clamp(2.25rem, 5vw, 4.2rem);
}

.section--dark h1,
.section--dark h2 {
  color: var(--white);
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.section--dark .lead {
  color: rgba(255, 255, 255, 0.78);
}

.hero__actions,
.module-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.metrics-strip {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.metric {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  padding: 18px;
}

.metric strong {
  display: block;
  color: var(--red-dark);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-card,
.lead-card,
.card,
.form-card {
  border: 1px solid rgba(232, 221, 210, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -120px auto auto -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(216, 34, 34, 0.16);
}

.hero-card__screen {
  position: relative;
  border-radius: 18px;
  background: var(--charcoal);
  color: var(--white);
  padding: 22px;
}

.hero-card__screen h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2.1rem;
  letter-spacing: -0.04em;
}

.hero-card__screen p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

.stack {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.stack__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.stack__item span {
  color: var(--gold);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  padding: 24px;
}

.card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.15rem;
}

.card p {
  color: var(--muted);
  line-height: 1.62;
}

.card__icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: #ffe2d2;
  color: var(--red-dark);
  font-weight: 950;
}

.business-card {
  overflow: hidden;
  padding: 0;
}

.business-card img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
}

.business-card__copy {
  padding: 20px;
}

.pricing {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-pill {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 18px;
}

.price-pill strong {
  display: block;
  color: var(--red-dark);
  font-size: 1.7rem;
}

.module-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.module-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  padding: 20px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.module-card:hover {
  box-shadow: 0 18px 50px rgba(61, 39, 22, 0.12);
  transform: translateY(-2px);
}

.module-card h3 {
  margin: 12px 0 8px;
}

.module-card p {
  color: var(--muted);
  line-height: 1.58;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 58px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 24px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 950;
}

.form-card {
  padding: 28px;
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.fieldset legend {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 900;
}

.field input,
.field select {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  padding: 0 14px;
}

.fieldset {
  display: grid;
  gap: 10px;
  grid-column: 1 / -1;
  margin: 0;
  border: 0;
  padding: 0;
}

.checks {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 250, 243, 0.72);
  padding: 10px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.privacy-check {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.estimate-box {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-radius: 18px;
  background: var(--charcoal);
  color: var(--white);
  padding: 18px;
}

.estimate-box span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.estimate-box strong {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-size: 1.45rem;
}

.form-message {
  min-height: 24px;
  color: var(--red-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-message.is-success {
  color: var(--green);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

body {
  background: #ffffff;
  color: #111827;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.container {
  width: min(1280px, calc(100% - 64px));
}

.nav {
  position: sticky;
  border-bottom: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.96);
}

.nav__inner {
  width: min(1200px, calc(100% - 64px));
  min-height: 80px;
  padding-inline: 32px;
}

.nav__logo {
  width: auto;
  height: 40px;
}

.nav__links {
  gap: 32px;
  color: #4b5563;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav .btn--primary {
  min-height: 28px;
  border-radius: 8px;
  padding-inline: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: none;
}

.home-section {
  padding: 72px 0;
  background: #ffffff;
}

.home-section__head {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.home-section__head--left {
  margin-inline: 0;
  text-align: left;
}

.home-section__head h2,
.investment h2,
.final-demo h2 {
  margin: 0;
  color: #050505;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.home-section__head p,
.investment p,
.final-demo p {
  margin: 18px auto 0;
  color: #6b7280;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.home-hero {
  display: block;
  padding: 64px 0 0;
  background: #faf9f7;
}

.home-hero__grid {
  display: grid;
  align-items: center;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

.home-hero__copy {
  padding: 64px 0;
}

.home-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #4b5563;
  font-size: 0.875rem;
}

.home-badge span {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #e52328;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 900;
}

.home-hero h1 {
  max-width: 620px;
  margin: 24px 0 0;
  color: #111827;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.home-hero__subtitle {
  max-width: 448px;
  margin: 20px 0 0;
  color: #717a8c;
  font-size: 1.125rem;
  line-height: 1.625;
}

.home-hero__cta {
  min-height: 48px;
  margin-top: 32px;
  border-radius: 8px;
  padding-inline: 32px;
  font-size: 1rem;
  font-weight: 600;
}

.home-video {
  border: 5px solid #e52328;
  border-radius: 24px;
  background: #000000;
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.16);
  overflow: hidden;
}

.home-video__link {
  position: relative;
  display: block;
}

.home-video img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: brightness(0.72);
}

.home-video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #e52328;
  font-size: 1.7rem;
  transform: translate(-50%, -50%);
}

.home-video__label {
  position: absolute;
  left: 50%;
  bottom: 34%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: #1f2937;
  padding: 10px 18px;
  font-size: 1rem;
  font-weight: 700;
  transform: translateX(-50%);
  white-space: nowrap;
}

.home-business {
  padding-top: 80px;
}

.business-showcase {
  display: grid;
  gap: 28px;
  grid-template-columns: 360px minmax(0, 1fr);
}

.business-showcase__menu {
  min-height: 564px;
  border-radius: 32px;
  background: #18171c;
  padding: 24px;
}

.business-showcase__pill {
  display: grid;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  color: #18171c;
  font-weight: 800;
}

.business-showcase__items {
  margin-top: 18px;
}

.business-showcase__items button {
  display: block;
  width: 100%;
  cursor: pointer;
  border: 0;
  border-left: 2px solid transparent;
  border-radius: 10px;
  background: transparent;
  padding: 10px 16px;
  color: #6b7280;
  font: inherit;
  text-align: left;
}

.business-showcase__items button span {
  display: block;
  font-size: 1.45rem;
  line-height: 1.25;
}

.business-showcase__items button.is-active {
  border-left-color: #e52328;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.business-showcase__items button strong {
  display: inline-block;
  margin-top: 4px;
  color: #e52328;
}

.business-showcase__media {
  display: grid;
  gap: 28px;
  grid-template-columns: 36% minmax(0, 1fr);
}

.business-showcase__photos {
  display: grid;
  gap: 28px;
}

.business-showcase__photos img,
.business-showcase__mockup {
  border-radius: 16px;
  overflow: hidden;
}

.business-showcase__photos img {
  width: 100%;
  height: 268px;
  object-fit: cover;
}

.business-showcase__mockup {
  display: grid;
  min-height: 564px;
  place-items: center;
  background: #ffffff;
}

.business-showcase__mockup img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.value-props {
  padding: 24px 0 32px;
  background: #ffffff;
}

.value-props__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  text-align: center;
}

.value-props article {
  max-width: 264px;
  flex: 1 1 0;
}

.value-props article span {
  color: #e52328;
  font-size: 2.2rem;
  line-height: 1;
}

.value-props h3 {
  margin: 12px 0 0;
  font-size: 1rem;
}

.value-props p {
  margin: 6px auto 0;
  max-width: 250px;
  color: #6b7280;
  font-size: 0.94rem;
  line-height: 1.5;
}

.home-solutions {
  background: #1a1a1a;
}

.home-section__head--dark h2,
.home-section__head--dark p {
  color: #ffffff;
}

.home-section__head--dark p {
  color: #d1d5db;
}

.solutions-icons {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.solutions-icons a {
  display: grid;
  min-height: 120px;
  place-items: center;
  border-radius: 18px;
  padding: 18px 10px;
  text-align: center;
  transition: background 160ms ease;
}

.solutions-icons a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.solutions-icons span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: rgba(229, 35, 40, 0.13);
  color: #e52328;
  font-weight: 900;
}

.solutions-icons strong {
  margin-top: 12px;
  color: #d1d5db;
  font-size: 0.92rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline::before {
  content: "";
  position: absolute;
  left: 13%;
  right: 13%;
  top: 24px;
  border-top: 2px dashed #fecaca;
}

.timeline article {
  position: relative;
  text-align: center;
}

.timeline span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.22);
}

.timeline h3 {
  margin: 22px 0 0;
  color: #111827;
  font-size: 1.12rem;
}

.timeline p {
  margin: 10px 0 0;
  color: #6b7280;
  font-size: 0.94rem;
  line-height: 1.55;
}

.location-pin {
  display: block;
  margin-bottom: 18px;
  color: #e52328;
  font-size: 2rem;
}

.locations-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.locations-grid article {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #d1d5db;
  aspect-ratio: 3 / 4;
}

.locations-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.locations-grid article::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.locations-grid div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 24px;
}

.locations-grid h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.35rem;
}

.locations-grid span {
  display: inline-block;
  margin-top: 10px;
  border-radius: 4px;
  background: #ffffff;
  color: #1f2937;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.differentials-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.differentials-grid article {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  padding: 24px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.differentials-grid article:hover {
  border-color: #fecaca;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
  transform: translateY(-2px);
}

.differentials-grid span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 12px;
  background: #fef2f2;
  color: #e52328;
  font-weight: 900;
}

.differentials-grid h3 {
  margin: 18px 0 0;
  color: #111827;
}

.differentials-grid p {
  margin: 10px 0 0;
  color: #6b7280;
  line-height: 1.55;
}

.investment {
  text-align: center;
  padding: 96px 0;
}

.investment__inner {
  max-width: 880px;
}

.investment__badge {
  display: inline-flex;
  gap: 8px;
  border-radius: 999px;
  background: rgba(229, 35, 40, 0.1);
  color: #e52328;
  padding: 8px 16px;
  font-weight: 800;
}

.investment h2 {
  margin-top: 20px;
  font-size: clamp(2rem, 4.4vw, 3rem);
}

.investment h2 span {
  color: #e52328;
}

.investment__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.investment__chips span {
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #f9fafb;
  color: #4b5563;
  padding: 10px 16px;
  font-weight: 700;
}

.investment__button {
  min-height: 56px;
  margin-top: 42px;
  border-radius: 14px;
  padding-inline: 38px;
}

.final-demo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 40px 40px 0 0;
  background: #18171c;
  color: #ffffff;
  padding: 80px 0;
}

.final-demo__grid {
  display: grid;
  align-items: center;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) 480px;
}

.final-demo h2 {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 3rem);
}

.final-demo p {
  margin-inline: 0;
  color: rgba(255, 255, 255, 0.78);
}

.final-demo__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.final-demo__badges span {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  padding: 12px 16px;
  font-weight: 800;
}

.demo-form {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  padding: 38px;
}

.demo-form h3 {
  margin: 0 0 28px;
  color: #111827;
  font-size: 1.7rem;
}

.demo-form .field {
  margin-top: 16px;
}

.demo-form input,
.demo-form select {
  min-height: 50px;
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #ffffff;
  color: #111827;
  padding: 0 16px;
}

.demo-form .btn {
  min-height: 50px;
  margin-top: 8px;
  border-radius: 10px;
}

.demo-form__legal {
  margin: 14px 0 0;
  color: #9ca3af;
  font-size: 0.78rem;
  line-height: 1.55;
  text-align: center;
}

.page-hero {
  padding: 72px 0;
}

.page-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.86);
}

.bullets {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.bullets li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  line-height: 1.58;
}

.section--dark .bullets li {
  color: rgba(255, 255, 255, 0.78);
}

.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}

.legal-content {
  max-width: 860px;
}

.legal-content article {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.legal-content h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}

.legal-content p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
  color: #6b7280;
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer h2,
.footer h3 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 0.875rem;
  font-weight: 700;
}

.footer__brand img {
  width: 120px;
  height: auto;
}

.footer__brand p {
  max-width: 280px;
  margin: 18px 0 0;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer a {
  display: block;
  margin: 9px 0;
  color: #4b5563;
  font-size: 0.875rem;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 56px;
  border-top: 1px solid #e5e7eb;
  padding: 24px 0;
  color: #6b7280;
  font-size: 0.75rem;
}

.footer__bottom p {
  margin: 0;
}

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

.footer__bottom a {
  margin: 0;
  font-size: 0.75rem;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: #16a34a;
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(22, 163, 74, 0.3);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.whatsapp-float:hover {
  box-shadow: 0 22px 44px rgba(22, 163, 74, 0.38);
  transform: scale(1.08);
}

.cookie-pill {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 82;
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
  color: #4b5563;
  cursor: pointer;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.cookie-pill span {
  color: #e52328;
}

.cookie-pill.is-visible {
  display: inline-flex;
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 83;
  display: none;
  padding: 16px;
}

.cookie-banner.is-open {
  display: block;
}

.cookie-banner__box {
  display: flex;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.18);
  padding: 22px;
}

.cookie-banner__text {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 14px;
}

.cookie-banner__text > span {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: rgba(229, 35, 40, 0.1);
  color: #e52328;
}

.cookie-banner strong {
  color: #111827;
}

.cookie-banner p {
  margin: 4px 0 0;
  color: #6b7280;
  font-size: 0.84rem;
  line-height: 1.55;
}

.cookie-banner a {
  color: #e52328;
  font-weight: 800;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-banner__actions .btn {
  min-height: 42px;
  border-radius: 10px;
}

.cookie-banner__close {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  font-size: 1.3rem;
}

.cookie-banner__close:hover {
  background: #f3f4f6;
  color: #4b5563;
}

@media (max-width: 920px) {
  .nav__links,
  .nav__actions {
    display: none;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .hero__grid,
  .home-hero__grid,
  .business-showcase,
  .business-showcase__media,
  .cookie-banner__box,
  .final-demo__grid,
  .page-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .grid--3,
  .grid--4,
  .module-list,
  .pricing,
  .value-props__grid,
  .solutions-icons,
  .locations-grid,
  .differentials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero {
    min-height: auto;
    padding: 40px 0 0;
  }

  .home-hero h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .home-hero__copy {
    padding: 32px 0 24px;
  }

  .business-showcase__menu,
  .business-showcase__mockup {
    min-height: auto;
  }

  .business-showcase__mockup {
    height: 420px;
  }

  .timeline {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .timeline::before {
    bottom: 0;
    left: 24px;
    right: auto;
    top: 0;
    border-left: 2px dashed #fecaca;
    border-top: 0;
  }

  .timeline article {
    padding-left: 70px;
    text-align: left;
  }

  .timeline span {
    position: absolute;
    left: 0;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 62px 0;
  }

  .hero {
    padding-top: 56px;
  }

  .metrics-strip,
  .grid--3,
  .grid--4,
  .module-list,
  .pricing,
  .value-props__grid,
  .solutions-icons,
  .locations-grid,
  .differentials-grid,
  .form-grid,
  .checks,
  .estimate-box {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(100% - 32px, 1440px);
  }

  .nav__inner {
    width: min(1200px, calc(100% - 32px));
    min-height: 82px;
    padding-inline: 0;
  }

  .nav__logo {
    width: auto;
    height: 40px;
  }

  .value-props__grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .footer__grid,
  .footer__bottom {
    grid-template-columns: 1fr;
  }

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

  .home-hero__cta,
  .investment__button {
    width: 100%;
  }

  .home-video {
    border-width: 4px;
    border-radius: 22px;
  }

  .home-video__play {
    width: 66px;
    height: 66px;
    font-size: 1.5rem;
  }

  .home-video__label {
    bottom: 24%;
    max-width: calc(100% - 24px);
    white-space: normal;
    text-align: center;
  }

  .business-showcase__photos {
    grid-template-columns: 1fr;
  }

  .business-showcase__photos img,
  .business-showcase__mockup {
    height: 260px;
  }

  .final-demo {
    border-radius: 28px 28px 0 0;
  }

  .demo-form {
    padding: 26px;
  }

  .whatsapp-float {
    right: 24px;
    bottom: 24px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .hero__actions,
  .module-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
