:root {
  --ink: #13211f;
  --muted: #66736d;
  --paper: #f8f4ec;
  --paper-strong: #efe4d4;
  --surface: #fffdf8;
  --forest: #153f35;
  --forest-dark: #0b2a24;
  --teal: #24766b;
  --sage: #b7c9b8;
  --sage-soft: #e5eee5;
  --copper: #a7653d;
  --copper-soft: #ead7c5;
  --line: #dfd6c8;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(19, 33, 31, 0.13);
  --shadow-soft: 0 12px 30px rgba(19, 33, 31, 0.08);
  --radius: 10px;
  --radius-sm: 6px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(21, 63, 53, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(21, 63, 53, 0.028) 1px, transparent 1px),
    var(--paper);
  background-size: 56px 56px, 56px 56px, auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.lightbox-open,
body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(36, 118, 107, 0.78);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--forest-dark);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 76px 0;
  scroll-margin-top: 96px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 244, 236, 0.92);
  border-bottom: 1px solid rgba(223, 214, 200, 0.85);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 222px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.12;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 45%),
    var(--forest);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px 14px 14px 4px;
  box-shadow: 0 14px 28px rgba(21, 63, 53, 0.22);
}

.brand-initials {
  position: relative;
  z-index: 1;
  font-size: 0.84rem;
  letter-spacing: 0;
}

.brand-line {
  position: absolute;
  right: 7px;
  bottom: 7px;
  width: 16px;
  height: 3px;
  background: var(--copper);
  border-radius: 999px;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-name,
.brand-subtitle {
  display: block;
}

.brand-name {
  font-size: 1rem;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex: 1;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--forest);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.05rem;
  color: var(--white);
  background: var(--forest);
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(21, 63, 53, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: var(--forest-dark);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 88px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 88% 14%, rgba(183, 201, 184, 0.22), transparent 34%),
    linear-gradient(135deg, #0b2a24 0%, #153f35 58%, #1f5d52 100%);
  background-size: 54px 54px, 54px 54px, auto, auto;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 84px;
  background: var(--paper);
  clip-path: polygon(0 74%, 100% 30%, 100% 100%, 0 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 62px;
}

.hero-grid > * {
  min-width: 0;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero .eyebrow,
.budget-section .eyebrow,
.contact-section .eyebrow {
  color: #bdd8c3;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: min(100%, 760px);
  font-size: 4.1rem;
}

h2 {
  font-size: 2.65rem;
}

h3 {
  font-size: 1.18rem;
}

.hero-lead,
.hero-note {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.14rem;
}

.hero-lead {
  margin: 22px 0 0;
}

.hero-note {
  margin: 18px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--copper);
  font-size: 1rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.88rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn:disabled {
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 18px 36px rgba(21, 63, 53, 0.22);
}

.hero .btn-primary,
.budget-section .btn-primary,
.contact-section .btn-primary {
  color: var(--forest-dark);
  background: #c6ddcc;
  box-shadow: none;
}

.btn-primary:hover {
  color: var(--white);
  background: var(--forest-dark);
}

.hero .btn-primary:hover,
.budget-section .btn-primary:hover,
.contact-section .btn-primary:hover {
  color: var(--white);
  background: var(--teal);
}

.btn-secondary {
  color: var(--forest-dark);
  background: var(--surface);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.hero .btn-secondary,
.contact-section .btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: none;
}

.btn-secondary:hover {
  border-color: rgba(21, 63, 53, 0.34);
}

.studio-board {
  position: relative;
  max-width: 100%;
  min-width: 0;
  padding: 18px;
  background: rgba(255, 253, 248, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 6px 4px 16px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.board-top strong {
  color: var(--forest);
}

.local-preview {
  overflow: hidden;
  max-width: 100%;
  min-width: 0;
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(119, 104, 88, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(119, 104, 88, 0.07) 1px, transparent 1px),
    #f6eee3;
  background-size: 36px 36px, 36px 36px, auto;
  border: 1px solid #ded2c3;
  border-radius: var(--radius-sm);
}

.local-preview-main {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 250px;
  padding: 28px;
  color: #223034;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 44%),
    linear-gradient(135deg, #f7efe3 0%, #dce4e4 54%, #c9d2d3 100%);
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 40px rgba(52, 64, 68, 0.16);
}

.local-preview-main::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 28px;
  width: 54px;
  height: 5px;
  background: #b66f4d;
  border-radius: 999px;
}

.local-preview-main strong {
  max-width: 310px;
  color: #223034;
  font-size: 2rem;
  line-height: 1.06;
}

.local-preview-main em {
  width: fit-content;
  margin-top: 22px;
  padding: 0.64rem 0.96rem;
  color: var(--white);
  background: #52646b;
  border-radius: 999px;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 900;
}

.local-preview-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.local-preview-items article {
  min-height: 86px;
  padding: 16px;
  background: #fffaf3;
  border: 1px solid #e1d4c4;
  border-radius: var(--radius-sm);
}

.local-preview-items span {
  display: block;
  width: 24px;
  height: 4px;
  margin-bottom: 18px;
  background: #b66f4d;
  border-radius: 999px;
}

.local-preview-items article:nth-child(2) span {
  background: #72838a;
}

.local-preview-items article:nth-child(3) span {
  background: #9b876f;
}

.local-preview-items p {
  margin: 0;
  color: #2d383b;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.2;
}

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

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p,
.problem-card p,
.service-statement p,
.demo-slide-content p,
.case-content p,
.process-step p,
.scope-card li,
.budget-copy p,
.budget-panel p,
details p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.04rem;
}

.problem-layout {
  display: grid;
  gap: 44px;
}

.problem-section .section-heading {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.problem-section .eyebrow {
  margin-bottom: 16px;
}

.problem-section h2 {
  max-width: 790px;
  margin-inline: auto;
}

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

.problem-card,
.process-step,
.scope-card {
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid var(--line);
  border-top: 3px solid var(--forest);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.problem-card {
  position: relative;
  min-height: 214px;
  overflow: hidden;
  padding: 30px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(183, 201, 184, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.9)),
    var(--surface);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest), var(--copper));
}

.process-step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 900;
}

.problem-card:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 63, 53, 0.2);
  box-shadow: 0 18px 38px rgba(19, 33, 31, 0.1);
}

.problem-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 26px;
}

.problem-badge {
  display: inline-flex;
  padding: 0.38rem 0.66rem;
  color: var(--forest);
  background: var(--sage-soft);
  border: 1px solid rgba(21, 63, 53, 0.1);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.problem-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: rgba(21, 63, 53, 0.72);
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(21, 63, 53, 0.12);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.problem-card h3 {
  max-width: 260px;
  font-size: 1.34rem;
}

.problem-card p {
  margin: 14px 0 0;
  line-height: 1.52;
}

.service-section,
.demo-section,
.scope-section {
  background: rgba(255, 253, 248, 0.66);
}

.service-layout,
.budget-layout,
.faq-layout,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 56px;
  align-items: start;
}

.service-statement {
  position: relative;
  padding: 28px 28px 34px;
  background:
    linear-gradient(135deg, rgba(183, 201, 184, 0.18), transparent 52%),
    var(--forest);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-statement::before {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 38px;
  height: 4px;
  background: var(--copper);
  border-radius: 999px;
}

.service-statement p,
.service-statement li {
  color: rgba(255, 255, 255, 0.86);
}

.value-list,
.plain-list,
.budget-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-statement .value-list {
  margin-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}

.value-list li,
.plain-list li,
.budget-panel li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}

.value-list li::before,
.budget-panel li::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--sage);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(21, 63, 53, 0.32);
}

.plain-list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 2px;
  width: 12px;
  height: 2px;
  background: var(--muted);
  border-radius: 999px;
}

.demo-section {
  overflow: hidden;
}

.demo-showcase {
  position: relative;
  max-width: 1120px;
  margin: 38px auto 0;
}

.demo-carousel-viewport {
  position: relative;
  min-height: 528px;
  overflow: hidden;
  touch-action: pan-y;
}

.demo-carousel-track {
  position: relative;
  height: 100%;
}

.demo-slide {
  --demo-accent: var(--teal);
  --demo-accent-2: var(--sage);
  --demo-ink: #13211f;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(250px, 0.92fr);
  align-items: center;
  width: min(78vw, 840px);
  min-height: 492px;
  gap: 20px;
  padding: 16px;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(183, 201, 184, 0.18), transparent 48%),
    rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(21, 63, 53, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(19, 33, 31, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.82);
  transition:
    opacity 0.42s ease,
    filter 0.42s ease,
    transform 0.58s cubic-bezier(0.2, 0.82, 0.2, 1);
}

.demo-slide::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--demo-accent), rgba(167, 101, 61, 0));
}

.demo-slide.is-active {
  z-index: 4;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}

.demo-slide.is-prev {
  z-index: 2;
  opacity: 0.46;
  filter: saturate(0.78);
  transform: translateX(calc(-50% - min(47vw, 500px))) scale(0.82);
}

.demo-slide.is-next {
  z-index: 2;
  opacity: 0.46;
  filter: saturate(0.78);
  transform: translateX(calc(-50% + min(47vw, 500px))) scale(0.82);
}

.demo-slide.is-prev .demo-slide-content,
.demo-slide.is-next .demo-slide-content {
  opacity: 0.42;
}

.demo-slide[data-demo-key="restaurante"] {
  --demo-accent: #9a5b37;
  --demo-accent-2: #e0b36f;
}

.demo-slide[data-demo-key="peluqueria"] {
  --demo-accent: #5f5b7a;
  --demo-accent-2: #c7b4c8;
}

.demo-slide[data-demo-key="tienda"] {
  --demo-accent: #7a6a3c;
  --demo-accent-2: #d8ca8f;
}

.demo-slide[data-demo-key="academia"] {
  --demo-accent: #2f6474;
  --demo-accent-2: #a9cbd1;
}

.demo-slide[data-demo-key="autoescuela"] {
  --demo-accent: #52646b;
  --demo-accent-2: #d7b15f;
}

.demo-slide[data-demo-key="fotografia"] {
  --demo-accent: #403b35;
  --demo-accent-2: #c9b299;
}

.demo-slide[data-demo-key="servicios"] {
  --demo-accent: #153f35;
  --demo-accent-2: #a7653d;
}

.demo-device {
  position: relative;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 45%),
    #14211e;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 22px 46px rgba(19, 33, 31, 0.2);
}

.demo-device::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 54px;
  height: 4px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.demo-device-screen {
  display: grid;
  grid-template-rows: auto minmax(220px, 1fr) auto;
  min-height: 338px;
  overflow: hidden;
  background: var(--surface);
  border-radius: 16px;
}

.demo-screen-top {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 14px;
  background: #eef5f0;
  border-bottom: 1px solid rgba(19, 33, 31, 0.09);
}

.demo-screen-top span,
.browser-dots span {
  display: block;
  width: 9px;
  height: 9px;
  background: #d3875c;
  border-radius: 50%;
}

.demo-screen-top span:nth-child(2),
.browser-dots span:nth-child(2) {
  background: #d8bf72;
}

.demo-screen-top span:nth-child(3),
.browser-dots span:nth-child(3) {
  background: #6aa98f;
}

.demo-screen-hero {
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(160deg, var(--demo-accent), var(--demo-accent-2));
}

.demo-screen-hero small {
  width: fit-content;
  padding: 0.32rem 0.62rem;
  color: var(--demo-accent);
  background: rgba(255, 253, 248, 0.92);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.demo-screen-hero strong {
  max-width: 360px;
  font-size: 2.28rem;
  line-height: 1.02;
}

.demo-screen-hero p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
}

.demo-screen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  background: rgba(248, 244, 236, 0.78);
}

.demo-screen-grid span {
  min-height: 44px;
  display: grid;
  place-items: center;
  color: var(--forest-dark);
  background: var(--surface);
  border: 1px solid rgba(21, 63, 53, 0.08);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 900;
}

.demo-device-badge {
  position: absolute;
  right: 26px;
  bottom: 26px;
  padding: 0.44rem 0.72rem;
  color: #75513b;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(117, 81, 59, 0.14);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

.demo-slide-content {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 0 12px 12px;
  transition: opacity 0.3s ease;
}

.demo-slide-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.demo-type,
.demo-status {
  display: inline-flex;
  width: fit-content;
  padding: 0.36rem 0.68rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.demo-type {
  color: var(--forest);
  background: var(--sage-soft);
  border: 1px solid rgba(21, 63, 53, 0.1);
}

.demo-status {
  color: #75513b;
  background: var(--copper-soft);
  border: 1px solid rgba(117, 81, 59, 0.12);
}

.demo-status.is-available {
  color: var(--forest);
  background: #dceadf;
  border-color: rgba(21, 63, 53, 0.12);
}

.demo-slide-content h3 {
  margin: 0;
  font-size: 1.78rem;
}

.demo-slide-content p {
  min-height: 78px;
  margin: 0;
  line-height: 1.5;
}

.demo-slide-action {
  justify-self: start;
  margin-top: 2px;
}

.demo-slide-action:disabled {
  color: var(--muted);
  background: var(--paper-strong);
  border-color: transparent;
  box-shadow: none;
}

.demo-arrow {
  position: absolute;
  top: 42%;
  z-index: 8;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  color: var(--forest-dark);
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(21, 63, 53, 0.13);
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.demo-arrow:hover,
.demo-arrow:focus-visible {
  transform: translateY(-2px);
  background: var(--sage-soft);
  border-color: rgba(21, 63, 53, 0.24);
}

.demo-arrow span {
  position: relative;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  font-size: 0;
  line-height: 1;
}

.demo-arrow span::before {
  content: "";
  display: block;
  width: 13px;
  height: 20px;
  background: currentColor;
  clip-path: polygon(18% 0, 100% 50%, 18% 100%, 0 80%, 54% 50%, 0 20%);
  transform: none;
}

.demo-arrow-prev span::before {
  transform: rotate(180deg);
}

.demo-arrow-prev {
  left: 4px;
}

.demo-arrow-next {
  right: 4px;
}

.demo-carousel-meta {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.demo-carousel-meta span {
  padding: 0.42rem 0.68rem;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(21, 63, 53, 0.09);
  border-radius: 999px;
}

.demo-carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 920px;
  margin: 14px auto 0;
}

.demo-carousel-dots button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.72rem;
  color: var(--muted);
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid rgba(21, 63, 53, 0.1);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.demo-carousel-dots button:hover,
.demo-carousel-dots button:focus-visible,
.demo-carousel-dots button.is-active {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

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

.case-content {
  padding: 36px;
}

.case-section {
  background:
    linear-gradient(180deg, rgba(183, 201, 184, 0.18), rgba(248, 244, 236, 0.92)),
    var(--paper);
}

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

.case-visual {
  padding: 12px;
  background: var(--surface);
  border: 1px solid rgba(21, 63, 53, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.case-preview-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
}

.case-preview-button::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--forest-dark);
  background:
    linear-gradient(currentColor, currentColor) center / 14px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 14px no-repeat,
    rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(21, 63, 53, 0.14);
  border-radius: 50%;
  line-height: 1;
  box-shadow: var(--shadow-soft);
}

.case-preview-button img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  background: var(--paper);
  border-radius: var(--radius-sm);
  transition: transform 0.25s ease;
}

.case-preview-button:hover img,
.case-preview-button:focus-visible img {
  transform: scale(1.015);
}

.case-facts {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.case-facts li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 900;
}

.case-facts li::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--copper);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--copper-soft);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.process-step {
  position: relative;
  overflow: hidden;
  min-height: 196px;
  padding: 26px;
  border-top: 0;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--copper), rgba(167, 101, 61, 0));
}

.process-step span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--forest-dark);
  background: var(--copper-soft);
  border-radius: 50%;
  font-size: 0.86rem;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.scope-card {
  display: grid;
  align-content: start;
  padding: 34px;
}

.scope-card h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.muted-card {
  background:
    linear-gradient(135deg, rgba(167, 101, 61, 0.08), transparent 42%),
    var(--paper);
  border-top-color: var(--copper);
}

.scope-card .value-list,
.scope-card .plain-list {
  gap: 13px;
}

.budget-section {
  padding: 76px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    var(--forest-dark);
  background-size: 48px 48px, 48px 48px, auto;
}

.budget-section h2 {
  color: var(--white);
}

.budget-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.budget-panel {
  display: grid;
  justify-items: start;
  gap: 24px;
  padding: 32px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(183, 201, 184, 0.2), transparent 46%),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.budget-panel .btn {
  width: auto;
}

.budget-panel ul {
  width: 100%;
  margin-bottom: 0;
  gap: 10px;
}

.budget-panel li {
  color: var(--ink);
  min-height: 44px;
  padding: 0.62rem 0.75rem 0.62rem 2.35rem;
  background: rgba(255, 253, 248, 0.76);
  border: 1px solid rgba(21, 63, 53, 0.08);
  border-radius: var(--radius-sm);
}

.budget-panel p {
  margin: 0 0 28px;
}

.budget-panel li::before {
  top: 50%;
  left: 0.82rem;
  transform: translateY(-50%);
}

.faq-layout {
  grid-template-columns: minmax(240px, 0.74fr) minmax(420px, 1.26fr);
  align-items: center;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  overflow: hidden;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(19, 33, 31, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

details:hover {
  transform: translateY(-1px);
  border-color: rgba(21, 63, 53, 0.18);
  box-shadow: var(--shadow-soft);
}

details[open] {
  border-color: rgba(21, 63, 53, 0.24);
  box-shadow: var(--shadow-soft);
}

summary {
  position: relative;
  padding: 18px 56px 18px 22px;
  font-weight: 900;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

summary:focus-visible {
  outline: 3px solid rgba(36, 118, 107, 0.78);
  outline-offset: -3px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after,
summary::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  display: block;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  border-radius: 50%;
}

summary::after {
  color: var(--forest);
  background: var(--sage-soft);
}

summary::before {
  z-index: 1;
  color: var(--forest);
  background:
    linear-gradient(currentColor, currentColor) center / 12px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 12px no-repeat;
}

details[open] summary::after {
  background: var(--forest);
}

details[open] summary::before {
  color: var(--white);
  background: linear-gradient(currentColor, currentColor) center / 12px 2px no-repeat;
}

details p {
  margin: 0;
  max-width: 620px;
  padding: 0 22px 22px;
}

.contact-section {
  padding-bottom: 88px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(167, 101, 61, 0.22), transparent 30%),
    linear-gradient(135deg, var(--forest), var(--forest-dark));
}

.contact-panel {
  align-items: center;
  gap: 40px;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.contact-panel h2 {
  color: var(--white);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 28px;
  visibility: hidden;
  background: rgba(8, 18, 16, 0.72);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(8px);
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.modal-shell.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.modal-card,
.demo-modal-card {
  position: relative;
  width: min(100%, 620px);
  max-height: calc(100vh - 56px);
  overflow: auto;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition: opacity 0.24s ease, transform 0.28s cubic-bezier(0.2, 0.82, 0.2, 1);
}

.modal-shell.is-open .modal-card,
.modal-shell.is-open .demo-modal-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.contact-modal-card {
  padding: 34px;
}

.contact-modal-card h2 {
  font-size: 2.1rem;
}

.modal-lead {
  max-width: 520px;
  margin: 16px 0 26px;
  color: var(--muted);
  font-size: 1.04rem;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  color: var(--forest-dark);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
  transform: translateY(-1px);
  background: var(--sage-soft);
}

.modal-close span {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  font-size: 0;
  line-height: 1;
}

.modal-close span::before,
.modal-close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.modal-close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

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

.contact-option {
  display: grid;
  gap: 4px;
  min-height: 94px;
  align-content: center;
  padding: 18px;
  color: var(--ink);
  background: rgba(248, 244, 236, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-option:hover,
.contact-option:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(21, 63, 53, 0.24);
  box-shadow: var(--shadow-soft);
}

.contact-option span {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-option strong {
  font-size: 1rem;
}

.contact-option.is-placeholder {
  border-style: dashed;
}

.demo-modal {
  z-index: 1120;
  padding: 22px;
  background: rgba(8, 18, 16, 0.82);
}

.demo-modal-card {
  --demo-frame-scale: 0.88;
  width: min(1320px, calc(100vw - 44px));
  height: min(92vh, 920px);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  overflow: hidden;
  background: #101a18;
  border-color: rgba(255, 255, 255, 0.22);
}

.demo-modal-top {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    #15211f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-dots {
  display: flex;
  gap: 7px;
}

.demo-modal-address {
  min-width: 0;
  padding: 0.62rem 0.9rem;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
}

.demo-modal-address span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-modal-close {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.demo-modal-close {
  min-height: 40px;
  padding: 0.58rem 0.86rem;
  cursor: pointer;
}

.demo-modal-close:hover,
.demo-modal-close:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.demo-modal-titlebar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  background: #f1eadf;
  border-bottom: 1px solid rgba(19, 33, 31, 0.12);
}

.demo-modal-titlebar p {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  color: var(--forest-dark);
  font-size: 0.88rem;
  font-weight: 900;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-modal iframe {
  display: block;
  width: calc(100% / var(--demo-frame-scale));
  height: calc(100% / var(--demo-frame-scale));
  transform: scale(var(--demo-frame-scale));
  transform-origin: top left;
  background: var(--white);
  border: 0;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.82);
  background: #101a18;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.legal-page .site-header {
  position: sticky;
}

.legal-section {
  min-height: calc(100vh - 300px);
  background:
    linear-gradient(90deg, rgba(21, 63, 53, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(21, 63, 53, 0.028) 1px, transparent 1px),
    var(--paper);
  background-size: 56px 56px, 56px 56px, auto;
}

.legal-layout {
  max-width: 880px;
}

.legal-layout h1 {
  font-size: 3rem;
}

.legal-card {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: 30px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.legal-card p {
  margin: 0;
}

.legal-card h2 {
  margin: 14px 0 0;
  color: var(--forest-dark);
  font-size: 1.22rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card a {
  color: var(--forest);
  font-weight: 800;
}

.legal-page .site-footer a[aria-current="page"] {
  color: var(--sage);
  text-decoration: underline;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 36px;
  visibility: hidden;
  background: rgba(8, 18, 16, 0.84);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.image-lightbox.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.lightbox-frame {
  width: min(1120px, 100%);
  max-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
}

.lightbox-frame img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 72px);
  object-fit: contain;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.lightbox-close span {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  font-size: 0;
  line-height: 1;
}

.lightbox-close span::before,
.lightbox-close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.lightbox-close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox-close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.3rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 18px;
    left: 18px;
    display: grid;
    visibility: hidden;
    gap: 4px;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

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

  .site-nav a:hover {
    background: var(--paper);
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .service-layout,
  .case-layout,
  .budget-layout,
  .faq-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .faq-section .section-heading {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }

  .demo-carousel-viewport {
    min-height: 548px;
  }

  .demo-slide {
    width: min(86vw, 780px);
  }

  .demo-slide.is-prev {
    transform: translateX(calc(-50% - min(54vw, 450px))) scale(0.8);
  }

  .demo-slide.is-next {
    transform: translateX(calc(-50% + min(54vw, 450px))) scale(0.8);
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 68px;
  }

  .site-nav {
    top: 68px;
  }

  .brand {
    min-width: 0;
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    padding: 54px 0 78px;
  }

  .demo-carousel-viewport {
    min-height: 690px;
  }

  .demo-slide {
    grid-template-columns: 1fr;
    width: min(86vw, 560px);
    min-height: 650px;
  }

  .demo-slide.is-prev {
    opacity: 0.28;
    transform: translateX(calc(-50% - min(60vw, 350px))) scale(0.78);
  }

  .demo-slide.is-next {
    opacity: 0.28;
    transform: translateX(calc(-50% + min(60vw, 350px))) scale(0.78);
  }

  .demo-device-screen {
    min-height: 306px;
  }

  .demo-arrow {
    top: 35%;
  }

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

  .footer-inner {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-subtitle {
    display: none;
  }

  h1 {
    font-size: 2rem;
  }

  .legal-layout h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .hero-lead,
  .section-heading p,
  .service-statement p,
  .budget-copy p,
  .budget-panel p,
  .contact-panel p {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .problem-grid,
  .process-list,
  .service-statement .value-list,
  .local-preview-items {
    grid-template-columns: 1fr;
  }

  .studio-board,
  .service-statement,
  .case-content,
  .process-step,
  .scope-card,
  .budget-panel {
    padding: 22px;
  }

  .demo-showcase {
    margin-top: 28px;
  }

  .demo-carousel-viewport {
    min-height: 672px;
  }

  .demo-slide {
    width: 100%;
    min-height: 640px;
    gap: 16px;
    padding: 12px;
  }

  .demo-slide.is-prev,
  .demo-slide.is-next {
    opacity: 0;
    transform: translateX(-50%) scale(0.94);
  }

  .demo-device {
    padding: 12px;
    border-radius: 22px;
  }

  .demo-device-screen {
    min-height: 286px;
    border-radius: 12px;
  }

  .demo-screen-hero {
    padding: 22px;
  }

  .demo-screen-hero strong {
    font-size: 1.7rem;
  }

  .demo-screen-hero p {
    font-size: 0.92rem;
  }

  .demo-screen-grid {
    grid-template-columns: 1fr;
  }

  .demo-screen-grid span {
    min-height: 34px;
  }

  .demo-slide-content {
    padding: 0 6px 6px;
  }

  .demo-slide-content h3 {
    font-size: 1.42rem;
  }

  .demo-slide-content p {
    min-height: 0;
  }

  .demo-slide-action {
    width: 100%;
  }

  .demo-arrow {
    top: 30%;
    width: 46px;
    height: 46px;
  }

  .demo-arrow span {
    width: 22px;
    height: 22px;
    font-size: 0;
  }

  .demo-arrow-prev {
    left: 8px;
  }

  .demo-arrow-next {
    right: 8px;
  }

  .demo-carousel-meta {
    flex-wrap: wrap;
    gap: 8px;
  }

  .demo-carousel-dots {
    justify-content: flex-start;
  }

  .demo-carousel-dots button {
    flex: 1 1 calc(50% - 8px);
  }

  .contact-modal-card {
    padding: 28px 22px 22px;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .modal-shell {
    padding: 14px;
  }

  .modal-card,
  .demo-modal-card {
    max-height: calc(100vh - 28px);
  }

  .demo-modal {
    padding: 8px;
  }

  .demo-modal-card {
    --demo-frame-scale: 1;
    height: calc(100vh - 16px);
    border-radius: var(--radius-sm);
  }

  .demo-modal-top {
    grid-template-columns: minmax(0, 1fr);
  }

  .browser-dots {
    display: none;
  }

  .demo-modal-address {
    padding: 0.58rem 0.72rem;
  }

  .demo-modal-close {
    width: 100%;
  }

  .demo-modal-titlebar {
    justify-content: flex-start;
  }

  .demo-modal-titlebar p {
    text-align: left;
  }

  .budget-panel .btn {
    width: 100%;
  }

  .local-preview-main {
    min-height: 220px;
    padding: 24px;
  }

  .local-preview-main strong {
    max-width: 100%;
    font-size: 1.55rem;
  }

  .image-lightbox {
    padding: 16px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }
}
