:root {
  --bg: #ece6da;
  --bg-alt: #f7f3ec;
  --surface: #faf7f2;
  --text: #1a1814;
  --text-muted: #5c564c;
  --border: #c9bfb0;
  --primary: #a03d28;
  --primary-dark: #7d2f1f;
  --primary-soft: #e8d5cf;
  --accent: #3d5a45;
  --accent-soft: #dce5dd;
  --ink: #1a1814;
  --shadow-sm: 0 1px 0 rgba(26, 24, 20, 0.06);
  --shadow-md: 4px 4px 0 rgba(26, 24, 20, 0.08);
  --radius: 4px;
  --radius-sm: 2px;
  --font: "IBM Plex Sans", system-ui, sans-serif;
  --font-display: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --font-mono: "IBM Plex Sans", ui-monospace, monospace;
  --container: min(1080px, calc(100% - 2.5rem));
  --header-h: 68px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 700;
}

h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
}

.hero__subtitle {
  margin: 0.35rem 0 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--text);
  color: #fff;
}

.skip-link:focus {
  left: 1rem;
}

.eyebrow,
.kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.text-gradient {
  color: inherit;
  background: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn:hover {
  transform: none;
}

.btn--primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  color: #fff;
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn--ghost {
  background: var(--surface);
  border-color: var(--ink);
  color: var(--text);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--surface);
}

.btn--light {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.btn--light:hover {
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.btn--lg {
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
}

.btn--small {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

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

.btn--header {
  padding: 0.65rem 1.1rem;
}

.launch-banner {
  background: var(--ink);
  color: #e8e2d8;
  border-bottom: 3px solid var(--primary);
}

.launch-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.launch-banner p {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: #94a3b8;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(236, 230, 218, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.header--scrolled {
  border-color: var(--ink);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
}

.brand:hover {
  color: inherit;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
}

.brand__mark svg {
  width: 22px;
  height: 22px;
}

.brand__logo {
  display: block;
  height: 42px;
  width: auto;
  max-width: min(200px, 52vw);
  object-fit: contain;
}

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

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand__text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.brand__text small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.nav {
  display: none;
  gap: 1.5rem;
}

.nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--text);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__phone {
  display: none;
  font-weight: 600;
  color: var(--text);
}

.nav-toggle {
  display: grid;
  gap: 5px;
  padding: 0.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 1rem 1rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-mobile[hidden] {
  display: none;
}

.nav-mobile a {
  padding: 0.75rem 0;
  color: var(--text);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

body.nav-open {
  overflow: hidden;
}

.hero {
  padding: clamp(2.5rem, 7vw, 4.5rem) 0 clamp(2rem, 5vw, 3rem);
  border-bottom: 2px solid var(--ink);
  background:
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.hero__layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero__content h1 {
  max-width: 14em;
  font-size: clamp(2rem, 4.2vw, 2.85rem);
}

.hero__content h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero__lead {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 36ch;
}

.hero__sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__sectors li {
  padding: 0.3rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
}

.hero__panel {
  padding: 1.5rem 1.5rem 1.35rem;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.hero__panel-kicker {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  text-align: center;
}

.hero__panel .btn--block {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.65rem;
}

.hero__panel .btn--block:last-of-type {
  margin-bottom: 0;
}

.hero__trust {
  margin: 1.15rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.hero__trust li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero__trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.hero__layout--solo {
  max-width: 40rem;
}

.hero--solo .hero__lead {
  margin: 0 0 1.35rem;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 38ch;
}

.hero--solo h1 {
  max-width: 16ch;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero__meta li::before {
  content: "·";
  margin-right: 0.5rem;
  color: var(--primary);
  font-weight: 700;
}

.hero__meta li:first-child::before {
  content: none;
  margin: 0;
}

.hero__note {
  padding: 1.35rem 1.5rem;
  background: var(--surface);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-md);
}

.hero__note-title {
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero__note-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.hero__note-list li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.hero__note-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero__note-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  padding-top: 0.15rem;
}

.hero__note-list strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
  color: var(--ink);
}

.hero__note-list p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.hero__note-foot {
  margin: 1.15rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 38rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.75rem 0 2rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
}

.hero__stats li {
  display: flex;
  flex-direction: column;
}

.hero__stats strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.hero__stats span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero__visual {
  position: relative;
  min-height: 320px;
}

.browser-mock {
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  overflow: hidden;
}

.browser-mock__bar {
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border);
}

.browser-mock__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.browser-mock__screen {
  padding: 1.25rem;
}

.mock-hero {
  height: 110px;
  border-radius: 12px;
  background: var(--gradient);
  margin-bottom: 1rem;
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.mock-cards div {
  height: 72px;
  border-radius: 10px;
  background: #f1f5f9;
}

.hero__float {
  position: absolute;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero__float--1 {
  top: 8%;
  right: -2%;
}

.hero__float--2 {
  bottom: 12%;
  left: -4%;
}

.clients-strip {
  padding: 1rem 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.clients-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.clients-strip__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.clients-strip__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.clients-strip__tags li {
  padding: 0.35rem 0.65rem;
  font-size: 0.85rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-sm);
}

.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--contact {
  background: var(--bg-alt);
  border-top: 2px solid var(--ink);
}

/* ——— Prose & typographic rhythm ——— */
.prose {
  max-width: 42rem;
  color: var(--text-muted);
}

.prose p {
  margin: 0 0 0.85rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose--hero {
  margin: 1.25rem 0 0;
  font-size: 1.05rem;
}

.prose--lead {
  margin-top: 0.5rem;
  font-size: 1.02rem;
}

.prose--center {
  margin-inline: auto;
  text-align: center;
}

.prose--compact {
  font-size: 0.95rem;
}

.prose--compact p {
  margin-bottom: 0.55rem;
}

.section__head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.section__lead {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 36rem;
}

.section__lead--solo {
  margin-top: 0.35rem;
}

.portfolio-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 980px;
  margin-inline: auto;
}

/* ——— Portfolio showcase ——— */
.showcase-card {
  display: grid;
  gap: 1.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.showcase-card__visual {
  position: relative;
  padding: 1.25rem 1.25rem 0;
  background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
}

.browser-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 40px rgba(26, 24, 20, 0.12);
}

.browser-frame__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.85rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.browser-frame__bar span:not(.browser-frame__url) {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--border);
}

.browser-frame__bar span:nth-child(1) {
  background: #c45c4a;
}

.browser-frame__bar span:nth-child(2) {
  background: #c9a227;
}

.browser-frame__bar span:nth-child(3) {
  background: #5a8f5e;
}

.browser-frame__url {
  flex: 1;
  margin-left: 0.5rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-frame__screen {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.browser-frame__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.45s ease;
}

.browser-frame__screen:hover img {
  transform: scale(1.02);
}

.showcase-card__badge {
  position: absolute;
  right: 2rem;
  bottom: 1rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-sm);
}

.showcase-card__content {
  padding: 0 1.5rem 1.75rem;
}

.showcase-card__meta {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
}

.showcase-card__title {
  margin-bottom: 0.65rem;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
}

.showcase-card__desc {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 52ch;
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0 0 1.25rem;
}

.showcase-tag {
  padding: 0.3rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
}

.showcase-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.35rem;
}

.showcase-stat {
  padding: 0.75rem 0.85rem;
  text-align: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.showcase-stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.showcase-stat__label {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.showcase-story {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 720px) {
  .showcase-story {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .showcase-story__item {
    display: flex;
    flex-direction: column;
  }
}

.showcase-story__item {
  padding: 0.85rem 1rem;
  background: var(--surface);
  border-left: 3px solid var(--border);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.showcase-story__item--accent {
  background: var(--primary-soft);
  border-left-color: var(--primary);
}

.showcase-story__label {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
}

.showcase-story__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.showcase-story__item--accent .showcase-story__text {
  color: var(--text);
}

.showcase-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.project-card {
  display: grid;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.project-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.project-card__media:hover img {
  transform: scale(1.04);
}

.project-card__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
}

.project-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.project-card__meta {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
}

.project-card__title {
  margin-bottom: 0.5rem;
}

.project-card__desc {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.link-arrow {
  font-weight: 600;
}

.link-arrow::after {
  content: " →";
}

.offers-grid {
  display: grid;
  gap: 1.25rem;
}

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: none;
}

.offer-card--popular {
  padding-top: 2.25rem;
}

.offer-card--popular {
  border-color: var(--ink);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}

.offer-card__tag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.35rem 0.65rem;
  border-radius: 0;
  background: var(--ink);
  color: var(--surface);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-card__level {
  margin: 0 0 0.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.offer-card__name {
  margin-bottom: 0.75rem;
}

.offer-card__price {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.offer-card__price--symbol {
  font-size: 2.25rem;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.12em;
}

.offer-card__sub {
  margin: 0.25rem 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.offer-card__list {
  list-style: none;
  margin: 0 0 1.25rem;
  flex: 1;
}

.offer-card__list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
  color: var(--text-muted);
}

.offer-card__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

.offer-card__delay {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.offers-footnotes {
  margin-top: 1.75rem;
  text-align: center;
  margin-inline: auto;
}

.offers-footnotes p {
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.offers-footnote {
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.offers-note {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.steps {
  display: grid;
  gap: 1rem;
  list-style: none;
  counter-reset: step;
}

.steps--compact {
  max-width: 960px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .steps--compact {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps--compact li {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.65rem;
  }

  .steps--compact .steps__num {
    margin-inline: auto;
  }
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1.15rem;
  padding: 1.35rem 1.4rem;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
}

.steps__body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.steps__body p {
  margin: 0 0 0.35rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.steps__detail {
  font-size: 0.88rem !important;
  color: var(--text-muted);
  opacity: 0.9;
  font-style: italic;
}

.steps__num {
  display: grid;
  place-items: center;
  align-self: start;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--ink);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
}

.why-grid {
  display: grid;
  gap: 2rem;
}

.why-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.why-grid__intro {
  max-width: 28rem;
}

.why-list li {
  padding: 1.15rem 1.3rem;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
}

.why-list h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
}

.why-list p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.faq__list {
  display: grid;
  gap: 0.75rem;
}

details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.25rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.85rem 0;
  list-style: none;
}

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

.faq__answer {
  padding: 0 0 0.85rem;
}

details p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.contact-subhead {
  margin: 1.75rem 0 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-form__head {
  margin-bottom: 0.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.contact-form__head h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font);
  font-size: 1.05rem;
}

.contact-form__head p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-direct {
  list-style: none;
  margin: 0 0 1.75rem;
}

.contact-direct li {
  display: grid;
  gap: 0.15rem;
  margin-bottom: 1rem;
}

.contact-direct__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
}

.contact-form label span {
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  background: #fafbfd;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
  border-color: var(--primary);
}

.form-feedback {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.form-feedback--error {
  color: #b91c1c;
}

.form-feedback--success {
  color: #15803d;
}

.is-hidden {
  display: none !important;
}

.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer p {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer__copy {
  font-size: 0.85rem;
}

@media (min-width: 720px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .header__phone {
    display: inline-flex;
  }

  .hero__layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 5vw, 3.5rem);
  }

  .hero__panel {
    max-width: 22rem;
    margin-left: auto;
  }

  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

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

  .why-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

@media (min-width: 960px) {
  .showcase-card {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 0;
  }

  .showcase-card__visual {
    padding: 1.75rem 1.5rem 1.75rem 1.75rem;
  }

  .showcase-card__content {
    padding: 2rem 2rem 2rem 1.25rem;
  }

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

/* ——— About ——— */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-photo {
  width: min(280px, 100%);
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  margin-inline: auto;
  box-shadow: var(--shadow-md);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo__initial {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
}

.about-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.about-content {
  max-width: 38rem;
}

.about-lead {
  margin: 0.75rem 0 1.75rem;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.about-subhead {
  margin: 1.75rem 0 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-grid--page {
  padding-block: 2rem 3rem;
}

.about-zone {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ——— Client logos ——— */
.client-logos {
  padding: 1.25rem 0;
  background: #fff;
  border-block: 1px solid var(--border);
}

.client-logos__title {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-align: center;
}

.client-logos__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}

.client-logo {
  text-align: center;
}

.client-logo__name {
  display: block;
  font-weight: 700;
  color: var(--text);
}

.client-logo__label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ——— Empty state ——— */
.empty-state {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #fff;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

.empty-state--compact {
  padding: 1.75rem 1.25rem;
}

.empty-state__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.empty-state__text {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  max-width: 46ch;
  margin-inline: auto;
}

.empty-state__text p {
  margin: 0;
}

/* ——— Testimonials ——— */
.testimonials-grid {
  display: grid;
  gap: 1.25rem;
}

.testimonial-card {
  margin: 0;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.testimonial-card__stars {
  margin: 0 0 0.75rem;
  color: #eab308;
  letter-spacing: 0.1em;
}

.testimonial-card__quote {
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.testimonial-card footer strong {
  display: block;
}

.testimonial-card footer span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.testimonial-card__note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

.faq--compact {
  max-width: 640px;
  margin-inline: auto;
}

.faq--compact .section__head {
  margin-bottom: 1.25rem;
}

/* ——— CTA band ——— */
.cta-band {
  padding: 1.35rem 0;
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.cta-band--alt {
  background: var(--bg-alt);
}

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
  text-align: center;
}

.cta-band__inner p {
  margin: 0;
  font-weight: 600;
  font-size: 1.02rem;
}

/* ——— CTA final ——— */
.section--cta {
  background: var(--ink);
  color: #ece6da;
  border-block: 2px solid var(--ink);
}

.cta-final {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.cta-final h2 {
  color: #fff;
}

.cta-final__lead {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  opacity: 0.95;
}

.cta-final__sub {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.8;
}

.cta-final p {
  opacity: 0.95;
}

.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.section--cta .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

/* ——— Contact map ——— */
.contact-map-wrap {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  background: var(--border);
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.form-legal {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ——— Footer ——— */
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 0.75rem;
  font-size: 0.88rem;
}

.footer__seo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.65rem;
  font-size: 0.78rem;
}

.footer__seo a {
  color: var(--text-muted);
}

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  font-size: 0.88rem;
}

.seo-links {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ——— Mobile bar ——— */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
}

.mobile-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-bar__btn--call {
  background: #fff;
  color: var(--text);
}

.mobile-bar__btn--cta {
  background: var(--ink);
  color: var(--surface);
}

body:has(.mobile-bar:not([hidden])) {
  padding-bottom: 52px;
}

/* ——— Cookie banner ——— */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.1);
  padding: 1rem 0;
}

.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  max-width: 52ch;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
}

.btn--sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.88rem;
}

/* ——— Legal pages ——— */
.page-legal .header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
}

@media (min-width: 720px) {
  .about-grid {
    grid-template-columns: 280px 1fr;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-bar {
    display: none;
  }

  body:has(.mobile-bar:not([hidden])) {
    padding-bottom: 0;
  }
}
