:root {
  color-scheme: light;
  --ink: #16201f;
  --muted: #5d6c69;
  --line: #dbe5e1;
  --paper: #fbfcfa;
  --soft: #edf5f1;
  --teal: #0f766e;
  --teal-dark: #0b4f4a;
  --amber: #c47a1e;
  --blue: #315c88;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(22, 32, 31, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(251, 252, 250, 0.92);
  border-bottom: 1px solid rgba(219, 229, 225, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1200px, calc(100% - 32px));
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(144px, 19.5vw, 198px);
  height: 58px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #344340;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a:hover {
  background: var(--soft);
  color: var(--teal-dark);
}

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

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

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 136px 0 54px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 22, 21, 0.9) 0%, rgba(8, 22, 21, 0.72) 38%, rgba(8, 22, 21, 0.3) 74%, rgba(8, 22, 21, 0.16) 100%),
    linear-gradient(0deg, rgba(8, 22, 21, 0.72) 0%, rgba(8, 22, 21, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions,
.cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
}

.button.outline {
  background: var(--white);
  color: var(--teal-dark);
  border-color: var(--line);
}

.button.outline:hover {
  border-color: rgba(15, 118, 110, 0.42);
  background: var(--soft);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: var(--teal-dark);
  font-weight: 850;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 780px;
  margin: 54px 0 0;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  font-size: 1.8rem;
  font-weight: 850;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.intro-grid,
.pricing-grid,
.sales-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.intro-grid article,
.price-card,
.sales-grid article,
.app-panel,
.result-panel,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(22, 32, 31, 0.04);
}

.intro-grid article,
.sales-grid article {
  padding: 24px;
}

.intro-grid p,
.sales-grid p,
.price-card li,
.timeline p {
  color: var(--muted);
}

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

.price-card.featured {
  border-color: rgba(15, 118, 110, 0.42);
  box-shadow: var(--shadow);
}

.card-topline {
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-weight: 850;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.price {
  margin: 16px 0 20px;
  color: var(--amber);
  font-weight: 850;
  font-size: 1.16rem;
}

.price-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 28px;
  margin: 14px 0;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.roadmap {
  width: 100%;
  max-width: none;
  background: #142320;
  color: var(--white);
  padding-left: max(16px, calc((100vw - 1200px) / 2));
  padding-right: max(16px, calc((100vw - 1200px) / 2));
}

.roadmap .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  overflow: visible;
  padding-bottom: 0;
}

.timeline article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 34px;
  margin-bottom: 32px;
  border-radius: var(--radius);
  background: rgba(196, 122, 30, 0.18);
  color: #ffc06f;
  font-weight: 850;
}

.timeline p {
  color: rgba(255, 255, 255, 0.72);
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.72fr);
  gap: 22px;
  align-items: start;
}

.app-panel,
.result-panel,
.lead-form {
  padding: 22px;
}

.assistant-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.assistant-header small {
  display: block;
  color: var(--muted);
}

.status-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #18a86f;
  box-shadow: 0 0 0 6px rgba(24, 168, 111, 0.12);
}

.app-panel,
.lead-form {
  display: grid;
  gap: 14px;
}

.app-panel label,
.lead-form label {
  display: grid;
  gap: 7px;
  color: #33423f;
  font-weight: 750;
}

.app-panel select,
.app-panel input:not([type="checkbox"]),
.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 12px 13px;
  color: var(--ink);
}

.app-panel select {
  min-height: 48px;
}

.check-row {
  grid-template-columns: 20px 1fr;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.lead-form textarea {
  resize: vertical;
}

.result-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.result-panel h3 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.estimate-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.estimate-list div {
  padding: 16px;
  border-radius: var(--radius);
  background: var(--soft);
}

.estimate-list dt {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.estimate-list dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 750;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quality {
  padding-top: 44px;
}

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

.checklist label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 750;
}

.checklist input {
  accent-color: var(--teal);
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.cta {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 86px;
  justify-content: space-between;
  padding: 36px;
  border-radius: var(--radius);
  background: #172522;
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta div {
  max-width: 720px;
}

.cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.app-cta {
  margin-top: 58px;
  margin-bottom: 92px;
  padding: 0;
  overflow: hidden;
  align-items: stretch;
  border: 1px solid rgba(15, 118, 110, 0.18);
  background: var(--white);
  color: var(--ink);
}

.app-cta div {
  max-width: 780px;
  padding: 34px 36px;
}

.app-cta .eyebrow {
  color: var(--teal-dark);
}

.app-cta p:not(.eyebrow) {
  color: var(--muted);
}

.app-cta .button {
  align-self: stretch;
  justify-content: center;
  min-width: 250px;
  padding-inline: 30px;
  border-radius: 0;
  background: var(--teal-dark);
}

.app-cta .button:hover {
  background: var(--teal);
}

.footer {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 14px;
  color: var(--muted);
}

.footer p {
  max-width: 100%;
  margin: 0;
  white-space: nowrap;
}

.footer a {
  color: var(--teal-dark);
  font-weight: 800;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal-dark);
  color: var(--white);
  font-size: 0;
  box-shadow: var(--shadow);
}

.back-to-top::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: translateY(4px) rotate(45deg);
}

.back-to-top:hover {
  background: var(--teal);
}

.subpage-hero,
.contact-hero {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 154px 0 58px;
}

.subpage-hero {
  max-width: 980px;
}

.subpage-hero h1,
.contact-hero h1 {
  color: var(--ink);
}

.subpage-hero h1 {
  font-size: clamp(1.55rem, 7vw, 3.4rem);
  line-height: 1.06;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}

.subpage-hero p:not(.eyebrow),
.contact-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.14rem;
}

.local-hero {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 154px 0 82px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.62fr);
  gap: 36px;
  align-items: center;
}

.local-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

.local-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
}

.local-hero-card {
  padding: 30px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(237, 245, 241, 0.88), rgba(255, 255, 255, 0.96)),
    var(--white);
  box-shadow: var(--shadow);
}

.local-hero-card span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.local-hero-card strong {
  display: block;
  margin: 14px 0;
  color: var(--amber);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
}

.local-hero-card p {
  margin: 0;
  color: var(--muted);
}

.local-section {
  padding-top: 72px;
}

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

.local-grid article,
.local-link-grid a {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.local-grid span,
.local-link-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 32px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(15, 118, 110, 0.1);
  color: var(--teal-dark);
  font-weight: 850;
}

.local-grid p,
.local-link-grid p,
.local-split p {
  color: var(--muted);
}

.local-link-grid a {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.local-link-grid a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.local-link-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.local-link-grid p {
  margin: 0;
}

.local-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding-top: 42px;
}

.local-list {
  display: grid;
  gap: 10px;
}

.local-list p {
  margin: 0;
  padding: 16px 18px;
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(22, 32, 31, 0.04);
  font-weight: 760;
}

.legal-layout {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto 84px;
  display: grid;
  gap: 16px;
}

.legal-card,
.contact-card,
.contact-form,
.contact-steps article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(22, 32, 31, 0.04);
}

.legal-card {
  padding: 28px;
}

.legal-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.legal-card p {
  color: var(--muted);
}

.legal-card a,
.contact-card a {
  color: var(--teal-dark);
  font-weight: 800;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 28px;
  align-items: end;
}

.contact-card {
  padding: 28px;
  background: #172522;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin: 0;
  font-size: 1.45rem;
}

.contact-card p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-card a {
  color: #ffc06f;
}

.contact-card-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 22px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-card-logo {
  width: min(100%, 220px);
  height: auto;
  padding: 8px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  flex: 0 0 auto;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.contact-item svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(255, 192, 111, 0.12);
  stroke: #ffc06f;
  stroke-width: 1.8;
  fill: none;
}

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

.contact-item strong {
  margin-bottom: 3px;
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.contact-item span {
  color: rgba(255, 255, 255, 0.8);
}

.contact-layout {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 22px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 28px;
}

.contact-form h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #33423f;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 12px 13px;
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-steps {
  display: grid;
  gap: 14px;
}

.contact-steps article {
  padding: 22px;
}

.contact-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 32px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: rgba(196, 122, 30, 0.15);
  color: var(--amber);
  font-weight: 850;
}

.contact-steps p {
  color: var(--muted);
}

.web-hero {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 142px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
}

.app-hero {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 142px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.86fr);
  gap: 34px;
  align-items: center;
}

.web-hero h1,
.app-hero h1 {
  color: var(--ink);
  font-size: clamp(2.25rem, 5.5vw, 4.8rem);
  line-height: 1;
}

.web-hero p:not(.eyebrow),
.app-hero p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.22rem);
}

.web-hero .hero-actions,
.app-hero .hero-actions {
  margin-top: 28px;
}

.app-preview {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.preview-window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #eef4f0;
}

.preview-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d46a5b;
}

.preview-window-bar span:nth-child(2) {
  background: #dba84c;
}

.preview-window-bar span:nth-child(3) {
  background: #43a66c;
}

.preview-app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.preview-app-head strong,
.preview-app-head small {
  display: block;
}

.preview-app-head small {
  color: var(--muted);
}

.preview-badge {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: rgba(15, 118, 110, 0.1);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfa;
}

.preview-metrics div {
  min-height: 74px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.preview-metrics strong,
.preview-metrics span {
  display: block;
}

.preview-metrics strong {
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.1;
}

.preview-metrics span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
}

.preview-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.72fr);
  gap: 14px;
  padding: 18px;
}

.preview-list {
  display: grid;
  gap: 8px;
}

.preview-list-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: #f7faf8;
}

.preview-list-row.is-active {
  border-color: rgba(15, 118, 110, 0.34);
  background: #edf5f1;
}

.preview-list-row strong,
.preview-list-row small {
  display: block;
}

.preview-list-row small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.8rem;
}

.preview-list-row b {
  color: var(--ink);
  font-size: 0.88rem;
  white-space: nowrap;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 8px;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 850;
}

.status-pill.offer {
  background: rgba(196, 122, 30, 0.14);
  color: #875010;
}

.status-pill.work {
  background: rgba(49, 92, 136, 0.13);
  color: var(--blue);
}

.status-pill.invoice {
  background: rgba(15, 118, 110, 0.12);
  color: var(--teal-dark);
}

.preview-detail {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius);
  background: #172522;
  color: var(--white);
}

.preview-detail span,
.preview-detail dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.preview-detail strong {
  display: block;
  margin-top: 3px;
  font-size: 1.2rem;
}

.preview-detail dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.preview-detail dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.preview-action {
  min-height: 42px;
  border: 0;
  border-radius: var(--radius);
  background: var(--amber);
  color: var(--white);
  font-weight: 850;
}

.preview-footer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: #fbfcfa;
}

.preview-footer span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.preview-footer span:last-child {
  border-right: 0;
}

.preview-app-head strong,
.preview-app-head small,
.preview-metrics strong,
.preview-metrics span,
.preview-list-row strong,
.preview-list-row small,
.preview-list-row b,
.preview-detail,
.preview-footer span {
  overflow-wrap: anywhere;
}

.web-hero-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.web-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.web-hero-media figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-strip,
.included-grid,
.seo-grid,
.app-benefits,
.program-grid {
  display: grid;
  gap: 16px;
}

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

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

.service-strip article,
.included-grid article,
.seo-grid article,
.app-benefits article,
.program-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
}

.service-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 32px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(15, 118, 110, 0.1);
  color: var(--teal-dark);
  font-weight: 850;
}

.included-grid article {
  display: grid;
  align-content: start;
  min-height: 210px;
  background:
    linear-gradient(180deg, rgba(237, 245, 241, 0.68), rgba(255, 255, 255, 0) 54%),
    var(--white);
}

.included-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 32px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(15, 118, 110, 0.1);
  color: var(--teal-dark);
  font-weight: 850;
}

.service-strip p,
.included-grid p,
.seo-grid p,
.app-benefits p,
.program-grid p,
.program-grid li,
.reference-copy p,
.reference-points {
  color: var(--muted);
}

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

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

.program-grid ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.program-grid li {
  position: relative;
  padding-left: 24px;
  margin: 10px 0;
}

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

.app-process {
  width: 100%;
  max-width: none;
  background: #142320;
  color: var(--white);
  padding-left: max(16px, calc((100vw - 1200px) / 2));
  padding-right: max(16px, calc((100vw - 1200px) / 2));
}

.app-process .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.app-timeline article {
  min-height: 230px;
}

.references {
  display: grid;
  gap: 28px;
}

.references .section-heading {
  margin-bottom: 6px;
}

.phoenix-case {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(340px, 1fr);
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.phoenix-case-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  padding: 34px 28px 24px;
  background: #f4f8f6;
}

.desktop-monitor {
  width: min(100%, 780px);
}

.desktop-screen {
  padding: 12px;
  border-radius: 14px;
  background: #16201f;
  box-shadow: 0 24px 46px rgba(22, 32, 31, 0.2);
}

.desktop-screen img {
  width: 100%;
  height: auto;
  aspect-ratio: 3370 / 2434;
  border-radius: 4px;
  object-fit: contain;
  object-position: top center;
  background: #fff;
}

.desktop-stand {
  width: 84px;
  height: 48px;
  margin: 0 auto;
  background: linear-gradient(180deg, #293937, #16201f);
}

.desktop-base {
  width: 230px;
  height: 14px;
  margin: 0 auto;
  border-radius: 999px 999px 4px 4px;
  background: #16201f;
  box-shadow: 0 12px 22px rgba(22, 32, 31, 0.16);
}

.kristine-case {
  border-color: rgba(196, 122, 30, 0.24);
}

.kristine-case .phoenix-case-visual {
  background: #faf5ec;
}

.kristine-case .desktop-screen img {
  aspect-ratio: 2634 / 1722;
}

.kristine-case .case-detail-row section {
  background: #fffaf2;
}

.phoenix-case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 34px 32px;
  overflow-wrap: anywhere;
}

.phoenix-case-copy h3 {
  font-size: clamp(1.72rem, 2.65vw, 2.45rem);
  line-height: 1.06;
}

.case-lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.case-detail-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column: 1 / -1;
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.case-detail-row section {
  padding: 26px 30px;
  background: #f8fbf9;
}

.case-detail-row span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.case-detail-row h4 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.case-detail-row p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.case-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.web-process {
  padding-top: 54px;
}

.web-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 1px 0 rgba(22, 32, 31, 0.04);
}

.web-process-grid article {
  position: relative;
  min-height: 250px;
  padding: 26px 24px;
  background:
    linear-gradient(180deg, rgba(237, 245, 241, 0.72), rgba(255, 255, 255, 0) 58%),
    var(--white);
}

.web-process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--teal-dark);
  color: var(--white);
  font-weight: 850;
}

.web-process-grid h3 {
  margin-bottom: 12px;
}

.web-process-grid p {
  margin: 0;
  color: var(--muted);
}

.trust-section {
  padding-top: 54px;
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 32px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  background: #142320;
  color: var(--white);
  box-shadow: var(--shadow);
}

.trust-panel > div:first-child {
  max-width: 560px;
}

.trust-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

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

.trust-list article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.trust-list span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #ffc06f;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.trust-list h3 {
  margin-bottom: 6px;
}

.trust-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.reference-project {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(22, 32, 31, 0.04);
}

.featured-reference {
  grid-template-columns: minmax(420px, 1.05fr) minmax(360px, 0.95fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-color: rgba(15, 118, 110, 0.22);
  box-shadow: var(--shadow);
}

.featured-reference .reference-copy {
  padding: 34px;
}

.reference-project.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
}

.reference-project.reverse .reference-media {
  order: 2;
}

.reference-media {
  min-height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--soft);
}

.reference-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.reference-gallery {
  display: grid;
  grid-template-rows: minmax(430px, 1fr) 150px;
  gap: 8px;
  padding: 8px;
}

.reference-gallery img {
  border-radius: calc(var(--radius) - 2px);
}

.reference-gallery .website-shot {
  width: auto;
  max-width: min(78%, 330px);
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(22, 32, 31, 0.14);
  border-radius: 18px;
  object-fit: contain;
  object-position: top center;
  background: #101917;
  box-shadow: 0 16px 34px rgba(22, 32, 31, 0.22);
}

.reference-gallery img + img {
  min-height: 150px;
}

.reference-showcase {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 100%;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
    #111b19;
}

.reference-showcase img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0 0 calc(var(--radius) - 2px) calc(var(--radius) - 2px);
  object-fit: cover;
  object-position: top center;
}

.browser-frame {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 0;
  border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0;
  background: #263331;
}

.browser-frame span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
}

.browser-frame span:first-child {
  background: #e05f55;
}

.browser-frame span:nth-child(2) {
  background: #e5b44a;
}

.browser-frame span:nth-child(3) {
  background: #67b96b;
}

.reference-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 12px;
}

.reference-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
}

.reference-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
}

.reference-copy h3 {
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.project-facts {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.project-facts div {
  padding: 14px;
  border-radius: var(--radius);
  background: var(--soft);
}

.project-facts dt {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.project-facts dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 750;
}

.reference-points {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 0 0 24px;
}

.reference-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.seo-section {
  padding-top: 54px;
}

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

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

  .nav-links {
    position: absolute;
    top: 88px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-stats,
  .intro-grid,
  .pricing-grid,
  .sales-grid,
  .demo-layout,
  .checklist,
  .contact-hero,
  .contact-layout,
  .local-hero,
  .local-grid,
  .local-link-grid,
  .local-split,
  .web-hero,
  .app-hero,
  .service-strip,
  .included-grid,
  .app-benefits,
  .program-grid,
  .phoenix-case,
  .reference-project,
  .reference-project.reverse,
  .trust-panel,
  .web-process-grid,
  .seo-grid {
    grid-template-columns: 1fr;
  }

  .featured-reference {
    grid-template-columns: 1fr;
  }

  .reference-project.reverse .reference-media {
    order: 0;
  }

  .preview-workspace {
    grid-template-columns: 1fr;
  }

  .sales-grid {
    gap: 14px;
  }
}

@media (max-width: 620px) {
  .nav {
    width: min(100% - 24px, 1200px);
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 156px;
    height: 52px;
  }

  .hero {
    min-height: 780px;
    padding-top: 118px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 22, 21, 0.92), rgba(8, 22, 21, 0.68)),
      linear-gradient(0deg, rgba(8, 22, 21, 0.78), rgba(8, 22, 21, 0.02));
  }

  .section {
    padding: 68px 0;
  }

  .hero-stats {
    margin-top: 34px;
  }

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

  .timeline article {
    min-height: 0;
  }

  .timeline span {
    margin-bottom: 18px;
  }

  .hero-stats div,
  .price-card,
  .intro-grid article,
  .sales-grid article,
  .app-panel,
  .result-panel,
  .cta,
  .reference-project {
    padding: 18px;
  }

  .web-hero {
    padding-top: 118px;
  }

  .app-hero {
    padding-top: 118px;
  }

  .phoenix-case-visual {
    min-height: auto;
    padding: 18px 14px 16px;
  }

  .phoenix-case-copy {
    padding: 24px 22px;
  }

  .phoenix-case-copy h3 {
    font-size: clamp(1.58rem, 8vw, 2.1rem);
  }

  .desktop-screen {
    padding: 8px;
    border-radius: 10px;
  }

  .desktop-stand {
    width: 54px;
    height: 30px;
  }

  .desktop-base {
    width: 150px;
    height: 10px;
  }

  .case-detail-row {
    grid-template-columns: 1fr;
  }

  .case-detail-row section {
    padding: 22px;
  }

  .app-cta {
    margin-top: 34px;
    padding: 0;
    flex-direction: column;
  }

  .app-cta div {
    padding: 24px 22px;
  }

  .app-cta .button {
    width: 100%;
    min-width: 0;
    min-height: 64px;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .preview-list-row {
    grid-template-columns: 1fr;
  }

  .preview-app-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .preview-metrics {
    grid-template-columns: 1fr;
  }

  .preview-list-row {
    display: grid;
    gap: 8px;
  }

  .preview-list-row b {
    white-space: normal;
  }

  .reference-media img {
    min-height: 280px;
  }

  .web-process-grid article {
    min-height: 0;
    padding: 22px;
  }

  .web-process-grid span {
    margin-bottom: 18px;
  }

  .trust-panel {
    padding: 22px;
  }

  .featured-reference .reference-copy {
    padding: 24px 22px;
  }

  .reference-showcase {
    min-height: auto;
    padding: 10px;
  }

  .reference-showcase img {
    min-height: 360px;
    max-height: 560px;
  }

  .reference-tags span {
    font-size: 0.78rem;
  }

  .reference-gallery {
    grid-template-rows: 430px 150px;
  }

  .reference-gallery .website-shot {
    max-width: min(84%, 300px);
  }

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

  .footer p {
    white-space: normal;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
