:root {
  --max: 1120px;
  --ink: #111;
  --muted: #5f5f5f;
  --line: #e9e9e9;
  --surface: #fff;
  --surface-alt: #fafafa;
  --footer: #0f141a;
  --accent: #d7c3a1;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.project-gallery img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0.35rem;
}

.project-lightbox-enabled .case-study > img,
.project-lightbox-enabled .project-gallery img {
  cursor: zoom-in;
}

.project-lightbox {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px 76px;
  background: rgba(0, 0, 0, 0.94);
}

.project-lightbox[hidden] { display: none; }
.project-lightbox__figure { margin: 0; max-width: min(1400px, 100%); text-align: center; }
.project-lightbox__image { display: block; max-width: 100%; max-height: calc(100vh - 120px); margin: auto; object-fit: contain; }
.project-lightbox__caption { margin-top: 12px; color: #fff; font-size: 14px; }
.project-lightbox__control {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}
.project-lightbox__control:hover,
.project-lightbox__control:focus-visible { background: #fff; color: #111; outline: none; }
.project-lightbox__close { top: 18px; right: 18px; font-size: 30px; }
.project-lightbox__prev { left: 16px; top: 50%; transform: translateY(-50%); }
.project-lightbox__next { right: 16px; top: 50%; transform: translateY(-50%); }
.project-lightbox-open { overflow: hidden; }

@media (max-width: 700px) {
  .project-lightbox { padding: 66px 12px 82px; }
  .project-lightbox__image { max-height: calc(100vh - 170px); }
  .project-lightbox__prev { left: calc(50% - 66px); top: auto; bottom: 16px; transform: none; }
  .project-lightbox__next { right: calc(50% - 66px); top: auto; bottom: 16px; transform: none; }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none;
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 26px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
  backdrop-filter: blur(8px);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  text-decoration: none;
  flex: 0 0 auto;
}

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

#navMenu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

#navMenu a {
  text-decoration: none;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 0;
}

#navMenu a:hover,
#navMenu a[aria-current="page"] {
  color: var(--ink);
}

.nav__hamburger {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav__hamburger span {
  width: 18px;
  height: 2px;
  background: #111;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav__hamburger--open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav__hamburger--open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger--open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.hero--contact {
  min-height: 360px;
}

.hero__media,
.hero__media_build {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(1) contrast(1.05);
  transform: scale(1.01);
}

.hero__media_build {
  background-image: url("assets/hero_build-1600.webp");
}

.hero__media--contact {
  background-image: url("assets/contact-1600.webp");
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(0, 0, 0, 0.38) 34%,
    rgba(255, 255, 255, 0.88) 100%
  );
}

.hero__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 26px 44px;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero__title {
  max-width: 920px;
  margin: 0 0 14px;
  color: #fff;
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__sub {
  max-width: 760px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 16px;
}

.response-promise {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  letter-spacing: 0.03em;
}
.trust-strip {
  background: #111;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 0;
  background: rgba(255, 255, 255, 0.15);
}
.trust-strip__grid > div {
  padding: 22px 18px;
  background: #111;
}
.trust-strip strong,
.trust-strip span {
  display: block;
}
.trust-strip strong {
  font-size: 16px;
  margin-bottom: 6px;
}
.trust-strip span {
  color: #bbb;
  font-size: 12px;
  line-height: 1.4;
}

.hero__cta,
.cta__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.btn--dark {
  background: #111;
  border-color: #111;
  color: #fff;
}

.btn--ghost {
  background: #fff;
  color: #111;
}

.section {
  padding: 68px 0;
}

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

.section-kicker {
  margin: 0 0 12px;
  color: #6d5a3d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.page-hero {
  padding: 92px 0 76px;
  background: linear-gradient(135deg, #f7f4ef 0%, #fff 66%);
  border-bottom: 1px solid var(--line);
}

.page-hero__inner {
  max-width: 920px;
}

.page-hero h1,
.service-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.page-hero p:last-child,
.service-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.eyebrow--dark {
  color: #6d5a3d;
}

.service-hero {
  padding: 98px 0 84px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(15, 20, 26, 0.97), rgba(15, 20, 26, 0.73)),
    url("/assets/hero_build-1600.webp") center/cover;
}

.service-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.service-hero .hero__cta {
  margin-top: 30px;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: 64px;
  align-items: start;
}

.credential-panel {
  padding: 32px;
  border: 1px solid #ddd6ca;
  border-radius: 18px;
  background: #f7f4ef;
}

.credential-panel h2 {
  margin-top: 0;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 14px;
  height: 14px;
  border: 2px solid #6d5a3d;
  border-radius: 50%;
}

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

.case-list {
  display: grid;
  gap: 74px;
}

.case-study {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.case-study--reverse img {
  order: 2;
}

.case-study img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 14px;
  filter: grayscale(0.25);
}

.case-study h2 {
  margin: 0 0 14px;
  font-size: 34px;
}

.case-facts {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
}

.case-facts div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.case-facts dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.case-facts dd {
  margin: 0;
}

.proof-note {
  padding: 48px 0;
  color: #fff;
  background: var(--footer);
}

.proof-note .container {
  max-width: 900px;
}

.proof-note h2 {
  margin-top: 0;
}

.proof-note p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.simple-footer {
  padding: 28px 0 92px;
  color: #fff;
  background: var(--footer);
}

.simple-footer .container {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.simple-footer span,
.simple-footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.simple-footer a {
  margin-left: auto;
}

.simple-footer a + a {
  margin-left: 0;
}

.sticky-project-cta {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 44;
  transform: translateX(-50%);
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  background: #111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.readiness-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 32px;
  align-items: start;
}

.readiness-card,
.readiness-result {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(20, 20, 20, 0.07);
}

.readiness-result {
  background: #f7f4ef;
}

.readiness-result:focus {
  outline: none;
}

.readiness-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 13px;
}

.readiness-progress div {
  height: 5px;
  flex: 1;
  overflow: hidden;
  border-radius: 999px;
  background: #ececec;
}

.readiness-progress i {
  display: block;
  width: 16.66%;
  height: 100%;
  background: #111;
  transition: width 0.2s ease;
}

.readiness-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.readiness-step.is-active {
  display: grid;
  gap: 10px;
}

.readiness-step legend {
  margin-bottom: 18px;
  font-size: 26px;
  font-weight: 700;
}

.readiness-step label {
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.readiness-step label:has(input:checked) {
  border-color: #111;
  background: #fafafa;
}

.readiness-step input {
  margin-right: 10px;
}

.readiness-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.readiness-actions #readinessNext {
  margin-left: auto;
}

.text-button {
  margin-top: 22px;
  padding: 0;
  border: 0;
  background: none;
  text-decoration: underline;
  cursor: pointer;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
}

.section--center {
  text-align: center;
}

.thank-you {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.section__title {
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 1.1;
}

.section__title--small {
  font-size: 28px;
}

.section__lead {
  max-width: 840px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
}

.section__lead--small {
  max-width: 760px;
}

.divider {
  height: 1px;
  margin: 54px 0 0;
  background: var(--line);
}

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

.card {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.card h3,
.step__b h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card p,
.card ul,
.step__b p,
.project__desc {
  color: var(--muted);
  line-height: 1.6;
}

.card p {
  margin: 0 0 12px;
}

.card ul {
  margin: 0;
  padding-left: 18px;
}

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

.project {
  display: block;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.project__img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.05);
}

.project__meta {
  padding-top: 12px;
}

.project__kicker {
  margin-bottom: 6px;
  color: #9a9a9a;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.project__name {
  margin-bottom: 6px;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steps {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.step {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.step__n {
  width: 64px;
  flex: 0 0 64px;
  color: #9a9a9a;
  font-size: 12px;
  letter-spacing: 0.32em;
}

.cta {
  padding: 64px 0;
  background: var(--surface-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta__title {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.15;
}

.cta__text {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-grid {
  max-width: 880px;
  margin: 0 auto;
}

.contact-form {
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.contact-form__head {
  margin-bottom: 16px;
}

.contact-form__title {
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 600;
}

.contact-form__sub {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form__step[hidden] {
  display: none;
}
.form-progress {
  margin-top: 18px;
  color: #555;
  font-size: 12px;
  font-weight: 600;
}
.form-progress > div {
  height: 4px;
  margin-top: 8px;
  border-radius: 99px;
  background: #eee;
  overflow: hidden;
}
.form-progress i {
  display: block;
  width: 50%;
  height: 100%;
  background: #111;
  transition: width 0.2s ease;
}
.form-actions {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
}
.form-actions .contact-form__btn {
  width: 100%;
}
.readiness-result__note {
  padding: 12px 14px;
  background: #f2f2f2;
  border-radius: 8px;
  font-size: 13px;
}
.readiness-result .btn {
  display: block;
  margin-top: 10px;
  text-align: center;
}
.next-steps {
  max-width: 640px;
  margin: 30px auto;
  text-align: left;
  padding: 24px;
  background: #f4f4f4;
  border-radius: 12px;
}
.next-steps h2 {
  margin-top: 0;
}
.next-steps li {
  margin: 10px 0;
  line-height: 1.5;
}
.service-conversion-proof__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.mobile-conversion-bar {
  display: none;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 18px;
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
}
.breadcrumbs a {
  color: #333;
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.insight-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.insight-card img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.insight-card > div {
  padding: 24px;
}
.insight-card h2 {
  margin: 8px 0 12px;
  font-size: 25px;
  line-height: 1.2;
}
.insight-card h2 a {
  color: inherit;
  text-decoration: none;
}
.article-hero {
  padding: 72px 0 42px;
  background: #f1f1ef;
}
.article-container {
  max-width: 820px;
}
.article-hero h1 {
  margin: 12px 0 18px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.035em;
}
.article-lead {
  font-size: 20px;
  line-height: 1.6;
  color: #3e3e3e;
}
.article-byline {
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
}
.article-body {
  padding-top: 54px;
  padding-bottom: 72px;
  font-size: 17px;
  line-height: 1.75;
}
.article-body h2 {
  margin: 48px 0 14px;
  font-size: 30px;
  line-height: 1.2;
}
.article-body a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-checklist {
  padding: 24px 28px;
  background: #f4f4f2;
  border-radius: 12px;
}
.article-sources {
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.article-disclaimer {
  margin-top: 32px;
  padding: 18px;
  background: #f4f4f2;
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.honeypot {
  display: none !important;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 400;
  cursor: pointer;
}

.consent-checkbox {
  width: auto !important;
  margin-top: 0.2rem;
  flex: 0 0 auto;
}

.field label {
  color: #8a8a8a;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ededed;
  border-radius: 12px;
  background: #fff;
  color: #111;
  font: inherit;
}

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

.contact-form__btn {
  width: 100%;
  min-height: 52px;
  border: 1px solid #111;
  border-radius: 12px;
  background: #111;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-message {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
}

.form-message--success {
  background: #e6f4ea;
  color: #1e6b3a;
}

.form-message--error {
  background: #fdecea;
  color: #b71c1c;
}

.contact-details {
  margin-top: 32px;
}

.contact-details p {
  margin: 10px 0;
  color: var(--muted);
}

.footer {
  padding: 48px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 36px;
  text-align: left;
}

.footer__label,
.certifications__label {
  margin-bottom: 12px;
  color: #9a9a9a;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.footer__line,
.footer__link {
  color: var(--muted);
  line-height: 1.9;
}

.footer__link {
  display: block;
  text-decoration: none;
}

.contact-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.contact-social {
  width: 40px;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  min-height: 40px;
  max-height: 40px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  color: #4f4f4f;
  text-decoration: none;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease;
}

.contact-social > .contact-social__icon {
  display: block;
  width: 22px;
  min-width: 22px;
  max-width: 22px;
  height: 22px;
  min-height: 22px;
  max-height: 22px;
  flex: 0 0 22px;
  fill: currentColor;
}

.contact-social:hover {
  transform: translateY(-2px);
  background: #fff;
}

.contact-social--whatsapp:hover {
  color: #128c7e;
  border-color: #25d366;
}

.contact-social--instagram:hover {
  color: #e1306c;
  border-color: #e1306c;
}

.contact-social--facebook:hover {
  color: #1877f2;
  border-color: #1877f2;
}

.contact-social:focus-visible,
.whatsapp-float:focus-visible {
  outline: 3px solid #111;
  outline-offset: 3px;
}

.certifications {
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
}

.certifications__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.certifications__logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cert-logo {
  width: auto;
  height: 54px;
  object-fit: contain;
}

.cert-picture {
  display: inline-flex;
  align-items: center;
}

.cert-logo--BCITO {
  height: 68px;
}
.cert-logo--lbp {
  height: 68px;
}

.site-footer {
  margin-top: 0;
}

.footer-bar {
  background: var(--footer);
}

.footer-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bar__left {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  width: 56px;
  min-width: 56px;
  max-width: 56px;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  flex: 0 0 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  background: #1fbd5a;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

.whatsapp-float > .whatsapp-float__icon {
  display: block;
  width: 30px;
  min-width: 30px;
  max-width: 30px;
  height: 30px;
  min-height: 30px;
  max-height: 30px;
  flex: 0 0 30px;
  fill: currentColor;
}

.section,
.cta,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 700px;
}

@media (max-width: 900px) {
  .hero__title {
    font-size: 42px;
  }

  .section__title {
    font-size: 36px;
  }

  .grid,
  .projects,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .grid--three,
  .split-feature,
  .case-study,
  .readiness-layout {
    grid-template-columns: 1fr;
  }

  .case-study--reverse img {
    order: 0;
  }
}

@media (max-width: 760px) {
  .whatsapp-float {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }

  .hero__media_build {
    background-image: url("assets/hero_build-900.webp");
  }

  .hero__media--contact {
    background-image: url("assets/contact-900.webp");
  }

  .nav {
    padding: 14px 18px;
    flex-wrap: wrap;
  }

  .container {
    padding: 0 18px;
  }

  .hero__inner {
    padding: 56px 18px 40px;
  }

  .hero__title {
    font-size: 34px;
    letter-spacing: 0.06em;
  }

  .hero__sub {
    font-size: 15px;
  }

  .nav__hamburger {
    display: flex;
  }

  #navMenu {
    display: none;
    width: 100%;
    margin-left: 0;
    padding-top: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  #navMenu.nav--open {
    display: flex;
  }

  #navMenu a {
    width: 100%;
    padding: 12px 0;
  }

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

  .trust-strip__grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-strip__grid > div:last-child {
    grid-column: 1/-1;
  }
  .form-actions {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .step {
    flex-direction: column;
    gap: 8px;
  }

  .step__n {
    width: auto;
    flex: auto;
  }

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

  .page-hero,
  .service-hero {
    padding: 64px 0 56px;
  }

  .page-hero h1,
  .service-hero h1 {
    font-size: 40px;
  }

  .readiness-card,
  .readiness-result,
  .credential-panel {
    padding: 24px 20px;
  }

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

  .simple-footer a,
  .simple-footer a + a {
    margin-left: 0;
  }

  .sticky-project-cta,
  .whatsapp-float {
    display: none;
  }
  body {
    padding-bottom: 72px;
  }
  .mobile-conversion-bar {
    position: fixed;
    z-index: 1000;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 0.75fr 1fr 1.25fr;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: #111;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
  }
  .mobile-conversion-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 8px;
    color: #fff;
    border-right: 1px solid #444;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .mobile-conversion-bar a:last-child {
    border: 0;
    background: #fff;
    color: #111;
    border-radius: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
