:root {
  --ink: #102027;
  --ink-soft: #4b5a62;
  --muted: #6a7880;
  --line: #d9e3e8;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --soft-2: #eef6f4;
  --teal: #087a73;
  --teal-dark: #075b55;
  --coral: #ff6848;
  --gold: #f7bd3b;
  --blue: #2674d8;
  --shadow: 0 20px 45px rgba(16, 32, 39, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.is-loading {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

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

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

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

.topbar {
  background: var(--ink);
  color: #ffffff;
  font-size: 0.9rem;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 227, 232, 0.8);
  backdrop-filter: blur(14px);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(8, 122, 115, 0.18);
}

.brand__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand__text {
  display: grid;
  line-height: 1.05;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.nav a {
  padding: 10px 12px;
  color: var(--ink-soft);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 750;
}

.nav a:hover,
.nav a.is-active {
  color: var(--teal-dark);
  background: var(--soft-2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.15rem;
  color: #ffffff;
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 8px;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(8, 122, 115, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--teal-dark);
  box-shadow: 0 18px 34px rgba(8, 122, 115, 0.24);
}

.btn--light {
  color: var(--ink);
  background: #ffffff;
  border-color: #ffffff;
}

.btn--outline {
  color: var(--teal-dark);
  background: transparent;
  border-color: var(--teal);
  box-shadow: none;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  gap: 18px;
  align-content: center;
  background:
    linear-gradient(135deg, rgba(245, 248, 251, 0.96), rgba(238, 246, 244, 0.96)),
    #ffffff;
  transition: opacity 360ms ease, visibility 360ms ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__mark {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  animation: preloaderPulse 1200ms ease-in-out infinite;
}

.preloader__mark img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.preloader__bar {
  width: min(220px, 62vw);
  height: 6px;
  overflow: hidden;
  background: rgba(8, 122, 115, 0.14);
  border-radius: 999px;
}

.preloader__bar span {
  width: 45%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral));
  border-radius: inherit;
  animation: preloaderBar 1100ms ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-4px) scale(1.03);
  }
}

@keyframes preloaderBar {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(240%);
  }
}

.hero {
  position: relative;
  min-height: 66vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--ink);
}

.hero--home {
  min-height: 76vh;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 32, 39, 0.86), rgba(16, 32, 39, 0.56), rgba(16, 32, 39, 0.22)),
    linear-gradient(180deg, rgba(16, 32, 39, 0.08), rgba(16, 32, 39, 0.62));
  content: "";
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: 96px 0;
}

.hero__eyebrow,
.section-kicker {
  margin-bottom: 14px;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__content h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2.45rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__content p {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.section {
  padding: 88px 0;
}

.section--soft {
  background: var(--soft);
}

.section--teal {
  color: #ffffff;
  background: var(--teal-dark);
}

.section--teal p,
.section--teal .section-title,
.section--teal .section-copy {
  color: #ffffff;
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 36px;
}

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

.section-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.section-copy {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 52px;
}

.split--reverse {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
}

.split--reverse .split__media {
  order: -1;
}

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-panel::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  height: 10px;
  background: linear-gradient(90deg, var(--gold), var(--coral));
  content: "";
}

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

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

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

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

.card,
.service-card,
.price-card,
.feature-card,
.work-card,
.testimonial,
.form-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card,
.feature-card,
.testimonial {
  padding: 26px;
}

.service-card {
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(16, 32, 39, 0.08);
}

.service-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card__body {
  padding: 24px;
}

.service-card h3,
.feature-card h3,
.work-card h3,
.price-card h3,
.testimonial h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.service-card p,
.feature-card p,
.work-card p,
.testimonial p {
  margin-bottom: 18px;
}

.text-link {
  color: var(--teal-dark);
  font-weight: 850;
}

.text-link:hover {
  color: var(--coral);
}

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

.mini-card {
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mini-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.metric-strip {
  position: relative;
  z-index: 2;
  margin-top: -42px;
}

.metric-strip__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.metric {
  padding: 26px;
  background: #ffffff;
}

.metric strong {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-dark);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1;
}

.metric span {
  color: var(--ink-soft);
  font-weight: 750;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.24rem;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.72rem;
  content: "";
}

.check-list li::after {
  position: absolute;
  left: 6px;
  top: 0.45rem;
  width: 6px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

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

.process-step {
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-top: 6px solid var(--teal);
  border-radius: 8px;
}

.process-step:nth-child(2) {
  border-top-color: var(--coral);
}

.process-step:nth-child(3) {
  border-top-color: var(--gold);
}

.process-step span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 900;
}

.process-step h3 {
  margin: 0 0 10px;
}

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

.matrix-item {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 16px;
  color: #ffffff;
  background: var(--ink);
  border-radius: 8px;
  text-align: center;
  font-weight: 900;
}

.matrix-item:nth-child(2n) {
  background: var(--teal);
}

.matrix-item:nth-child(3n) {
  background: var(--coral);
}

.matrix-item:nth-child(5n) {
  color: var(--ink);
  background: var(--gold);
}

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

.work-card {
  overflow: hidden;
}

.work-card img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.work-card__body {
  padding: 22px;
}

.work-card__number {
  color: var(--coral);
  font-weight: 950;
}

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

.price-card {
  position: relative;
  padding: 32px;
  box-shadow: 0 20px 42px rgba(16, 32, 39, 0.08);
}

.price-card--featured {
  border-color: var(--teal);
  box-shadow: 0 24px 56px rgba(8, 122, 115, 0.16);
}

.badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 0.32rem 0.65rem;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price {
  margin: 10px 0 20px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  font-weight: 950;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 850;
}

.faq details p {
  padding: 0 20px 20px;
}

.cta {
  padding: 46px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(8, 122, 115, 0.96), rgba(38, 116, 216, 0.92)),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1400&q=80");
  background-position: center;
  background-size: cover;
  border-radius: 8px;
}

.cta h2 {
  max-width: 760px;
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.02;
}

.cta p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
}

.form-card {
  padding: 30px;
  box-shadow: var(--shadow);
}

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

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

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

.field label {
  color: var(--ink);
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--teal-dark);
  font-weight: 800;
}

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

.contact-item {
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
}

.map-panel {
  min-height: 360px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 24px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(16, 32, 39, 0.08), rgba(16, 32, 39, 0.88)),
    url("https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?auto=format&fit=crop&w=1200&q=80");
  background-position: center;
  background-size: cover;
  border-radius: 8px;
}

.map-panel p {
  color: rgba(255, 255, 255, 0.88);
}

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

.logo-tile {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: var(--ink-soft);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

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

.testimonial__meta {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--ink);
}

.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 16px 0 13px;
  color: #ffffff;
  background: #18a558;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(24, 165, 88, 0.34);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.whatsapp-widget:hover {
  transform: translateY(-3px);
  background: #128c4b;
  box-shadow: 0 22px 42px rgba(24, 165, 88, 0.42);
}

.whatsapp-widget svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  flex: 0 0 auto;
}

.chatbot {
  position: fixed;
  left: 22px;
  bottom: 92px;
  z-index: 90;
  font-size: 0.95rem;
}

.chatbot__launcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px 0 10px;
  color: #ffffff;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(16, 32, 39, 0.24);
}

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

.chatbot__launcher-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #ffffff;
  border-radius: 50%;
  font-weight: 950;
}

.chatbot__launcher-text {
  font-weight: 900;
}

.chatbot__pulse {
  position: absolute;
  left: 36px;
  top: 8px;
  width: 10px;
  height: 10px;
  background: #21d07a;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.chatbot__panel {
  position: absolute;
  left: 0;
  bottom: 70px;
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(16, 32, 39, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transform-origin: bottom left;
  transition: opacity 180ms ease, transform 180ms ease;
}

.chatbot.is-open .chatbot__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chatbot__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal-dark), var(--blue));
}

.chatbot__avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border-radius: 8px;
}

.chatbot__avatar img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.chatbot__header strong,
.chatbot__header span {
  display: block;
}

.chatbot__header span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
}

.chatbot__close {
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.chatbot__messages {
  max-height: 310px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(238, 246, 244, 0.65), rgba(255, 255, 255, 0.94)),
    #ffffff;
}

.chatbot__message {
  max-width: 86%;
  padding: 11px 13px;
  border-radius: 8px;
  line-height: 1.45;
  box-shadow: 0 8px 18px rgba(16, 32, 39, 0.06);
}

.chatbot__message a {
  color: inherit;
  font-weight: 900;
  text-decoration: underline;
}

.chatbot__message--bot {
  align-self: flex-start;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
}

.chatbot__message--user {
  align-self: flex-end;
  color: #ffffff;
  background: var(--teal);
}

.chatbot__chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 16px 14px;
  background: #ffffff;
}

.chatbot__chips button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 10px;
  color: var(--teal-dark);
  background: var(--soft-2);
  border: 1px solid rgba(8, 122, 115, 0.18);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 850;
}

.chatbot__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px 16px 16px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.chatbot__form input {
  min-height: 42px;
  min-width: 0;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.chatbot__form button {
  min-height: 42px;
  padding: 0 14px;
  color: #ffffff;
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr 1fr;
  gap: 36px;
  padding: 64px 0;
}

.footer-main h3,
.footer-main h4 {
  margin: 0 0 16px;
  color: #ffffff;
}

.footer-main p {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-copy h2 {
  margin-top: 0;
}

.legal-copy h3 {
  margin: 34px 0 8px;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink-soft);
}

.legal-copy ul {
  display: grid;
  gap: 10px;
  padding-left: 1.2rem;
  list-style: disc;
}

@media (max-width: 1060px) {
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 880px) {
  .topbar__inner {
    align-items: flex-start;
    padding: 10px 0;
    flex-direction: column;
  }

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

  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .nav a {
    padding: 12px 14px;
  }

  .hero,
  .hero--home {
    min-height: auto;
  }

  .hero__content {
    padding: 86px 0;
  }

  .section {
    padding: 66px 0;
  }

  .split,
  .split--reverse {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__media {
    order: 0;
  }

  .grid--3,
  .work-grid,
  .process,
  .testimonial-grid,
  .pricing,
  .metric-strip__inner {
    grid-template-columns: 1fr;
  }

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

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

  .navbar {
    min-height: 68px;
  }

  .brand__text small {
    display: none;
  }

  .hero__content h1 {
    font-size: clamp(2.2rem, 13vw, 3.5rem);
  }

  .metric-strip {
    margin-top: 0;
  }

  .grid--2,
  .grid--4,
  .mini-grid,
  .form-grid,
  .service-matrix,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .cta,
  .form-card,
  .price-card {
    padding: 24px;
  }

  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
    width: 54px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-widget span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .chatbot {
    left: 14px;
    bottom: 78px;
  }

  .chatbot__launcher {
    width: 54px;
    min-height: 54px;
    padding: 0;
    justify-content: center;
  }

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

  .chatbot__launcher-icon {
    width: 42px;
    height: 42px;
  }

  .chatbot__pulse {
    left: 36px;
    top: 7px;
  }

  .chatbot__panel {
    left: 0;
    bottom: 66px;
    width: calc(100vw - 28px);
  }

  .chatbot__messages {
    max-height: 46vh;
    min-height: 230px;
  }

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