:root {
  --ivory: #f5f1e9;
  --paper: #fbf9f4;
  --greige: #e5ded2;
  --ink: #171717;
  --muted: #625f59;
  --blue: #0d365e;
  --blue-deep: #071b31;
  --sand: #c4a56f;
  --gold: #e0c08a;
  --whatsapp: #1fbc5a;
  --line: rgba(23, 23, 23, 0.16);
  --line-light: rgba(245, 241, 233, 0.18);
  --shadow: 0 18px 60px rgba(23, 23, 23, 0.08);
  --radius: 18px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--sand);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--blue);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(23, 23, 23, 0.11);
  background: rgba(245, 241, 233, 0.94);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 205px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 26px);
  font-size: 0.91rem;
  font-weight: 600;
}

.desktop-nav > a {
  flex: 0 0 auto;
}

.desktop-nav > a:not(.button) {
  position: relative;
  text-decoration: none;
}

.desktop-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav > a:not(.button):hover::after,
.desktop-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-phone {
  color: var(--blue);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.mobile-menu {
  display: none;
}

.mobile-menu summary {
  display: grid;
  width: 46px;
  height: 46px;
  cursor: pointer;
  list-style: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 19px;
  height: 1.5px;
  background: var(--ink);
  content: "";
}

.menu-icon {
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -6px;
}

.menu-icon::after {
  position: absolute;
  top: 6px;
}

.mobile-menu-panel {
  position: fixed;
  inset: 78px 0 auto;
  display: grid;
  padding: 28px 24px 32px;
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
  box-shadow: var(--shadow);
  gap: 2px;
}

.mobile-menu-panel a {
  padding: 13px 4px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.1);
  font-size: 1.08rem;
  font-weight: 620;
  text-decoration: none;
}

.mobile-menu-panel .button {
  margin-top: 16px;
  border-bottom: 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 170ms ease, background-color 170ms ease, color 170ms ease, border-color 170ms ease;
}

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

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

.button-primary:hover {
  background: var(--blue-deep);
}

.button-secondary {
  color: var(--blue);
  border-color: rgba(14, 49, 85, 0.4);
  background: transparent;
}

.button-secondary:hover {
  color: white;
  background: var(--blue);
}

.button-whatsapp {
  color: #08230f;
  background: var(--whatsapp);
}

.button-whatsapp:hover {
  background: #20c964;
}

.button-dark {
  color: white;
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  background: var(--sand);
  content: "";
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 10vw, 138px) 0 clamp(74px, 9vw, 122px);
  color: white;
  background:
    radial-gradient(circle at 82% 18%, rgba(35, 93, 139, 0.34), transparent 32%),
    linear-gradient(118deg, #06182b 0%, var(--blue-deep) 58%, #0d3458 100%);
}

.hero::after {
  position: absolute;
  z-index: 0;
  top: 18%;
  right: max(5vw, 26px);
  width: clamp(150px, 20vw, 290px);
  height: clamp(330px, 46vw, 580px);
  border-top: 1px solid rgba(224, 192, 138, 0.72);
  border-right: 1px solid rgba(224, 192, 138, 0.72);
  content: "";
  opacity: 0.72;
}

.hero::before {
  position: absolute;
  z-index: 0;
  top: calc(18% - 5px);
  right: calc(max(5vw, 26px) - 5px);
  width: 11px;
  height: 11px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--blue-deep);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--gold);
}

.hero .eyebrow::before,
.page-hero .eyebrow::before {
  background: var(--gold);
}

.hero h1,
.page-hero h1 {
  max-width: 1120px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.05rem, 7vw, 6.7rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero-lead {
  max-width: 730px;
  margin: 30px 0 0;
  color: rgba(255,255,255,0.78);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
  margin-top: 38px;
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
}

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.04em;
}

.hero-meta .separator {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.25);
}

.hero h1 {
  color: #fffaf0;
}

.hero .button-secondary,
.page-hero .button-secondary {
  color: white;
  border-color: rgba(255,255,255,0.42);
}

.hero .button-secondary:hover,
.page-hero .button-secondary:hover {
  color: var(--blue-deep);
  background: white;
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

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

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

.section-dark {
  color: white;
  background: var(--blue-deep);
}

.section-dark .eyebrow,
.section-dark .section-lead {
  color: rgba(255,255,255,0.72);
}

.section-dark .eyebrow::before {
  background: var(--sand);
}

.section-contact-tags {
  background:
    radial-gradient(circle at 14% 20%, rgba(43, 114, 181, 0.34), transparent 34%),
    linear-gradient(132deg, #06182b 0%, #0b3155 58%, #0e4678 100%);
}

.section-contact-tags .feature-media {
  min-height: 0;
  align-self: center;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 26px 70px rgba(0,0,0,0.28);
}

.section-contact-tags .feature-media img {
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 38px;
  margin-bottom: 44px;
}

.section-title {
  max-width: 790px;
  margin: 0;
  font-size: clamp(2.25rem, 4.5vw, 4.4rem);
  font-weight: 630;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.section-lead {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-deep);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.service-card > a {
  position: absolute;
  z-index: 3;
  inset: 0;
  color: white;
  text-decoration: none;
}

.service-card img {
  width: 100%;
  height: 100%;
}

.service-card img {
  object-fit: cover;
  transition: transform 520ms cubic-bezier(.2,.7,.2,1), filter 300ms ease;
}

.service-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,20,35,0.02) 25%, rgba(5,20,35,0.86) 100%);
  content: "";
}

.service-card:hover img {
  filter: saturate(1.06);
  transform: scale(1.035);
}

.service-card-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
  color: white;
  text-shadow: 0 2px 20px rgba(0,0,0,0.48);
}

.service-index {
  display: block;
  margin-bottom: 10px;
  color: #e6d3b4;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-card h3 {
  margin: 0;
  color: white;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 640;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.service-card p {
  max-width: 550px;
  margin: 12px 0 0;
  color: rgba(255,255,255,0.94);
  line-height: 1.5;
}

.section-digital-showcase {
  color: white;
  background: var(--blue-deep);
}

.section-digital-showcase .section-title {
  color: white;
}

.section-digital-showcase .section-lead {
  color: rgba(255,255,255,0.74);
}

.section-digital-showcase .eyebrow {
  color: #e6d3b4;
}

.digital-showcase-grid {
  display: grid;
  min-height: 610px;
  grid-template-columns: minmax(0, 1.58fr) minmax(310px, 0.92fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.digital-shot {
  position: relative;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  background: #06192a;
}

.digital-shot-main {
  grid-row: 1 / -1;
}

.digital-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.digital-shot:hover img {
  transform: scale(1.02);
}

.digital-shot::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(3,13,23,0.9));
  content: "";
  pointer-events: none;
}

.digital-shot figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: white;
  font-size: 0.92rem;
  font-weight: 700;
}

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

.section-digital-showcase .button-primary {
  color: var(--blue-deep);
  background: white;
}

.card-arrow {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  pointer-events: none;
}

.steps {
  display: grid;
  counter-reset: work-step;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.step {
  position: relative;
  padding: 34px clamp(22px, 3vw, 38px) 12px 0;
  counter-increment: work-step;
}

.step:not(:last-child) {
  border-right: 1px solid var(--line);
}

.step:not(:first-child) {
  padding-left: clamp(22px, 3vw, 38px);
}

.step::before {
  display: block;
  margin-bottom: 46px;
  color: var(--blue);
  content: "0" counter(work-step);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.step h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  line-height: 1.25;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.split-feature,
.case-study {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  align-items: stretch;
  gap: clamp(32px, 6vw, 76px);
}

.split-feature.reverse,
.case-study.reverse {
  grid-template-columns: minmax(330px, 0.88fr) minmax(0, 1.12fr);
}

.split-feature.reverse .feature-media,
.case-study.reverse .case-media {
  order: 2;
}

.feature-media,
.case-media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d5cfc5;
}

.feature-media img,
.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy,
.case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 28px;
}

.feature-copy h2,
.case-copy h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 4rem);
  font-weight: 630;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.feature-copy p,
.case-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .feature-copy p,
.section-dark .case-copy p {
  color: rgba(255,255,255,0.75);
}

.section-dark .trust-note p {
  color: var(--muted);
}

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

.proof-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.proof-card-media {
  height: 300px;
  overflow: hidden;
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
}

.proof-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.proof-card:hover img {
  transform: scale(1.025);
}

.proof-card-body {
  padding: 24px;
}

.proof-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.reviews-summary {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 48px;
}

.rating-big {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 1;
}

.rating-big small {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
}

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

.review-card {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  padding: 22px;
  border-top: 1px solid var(--blue);
  background: rgba(255,255,255,0.45);
}

.review-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.review-card .review-text {
  margin: 14px 0 24px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.62;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-author strong,
.review-author small {
  display: block;
}

.review-author strong {
  color: var(--ink);
  font-weight: 750;
}

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

.review-source {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 8vw, 106px) 0;
  color: white;
  background: var(--blue);
}

.cta-band::after {
  position: absolute;
  top: -190px;
  right: -130px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 50%;
  content: "";
}

.cta-band h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 4.9rem);
  font-weight: 630;
  letter-spacing: -0.05em;
  line-height: 1;
}

.cta-band p {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 1.05rem;
}

.page-hero {
  padding: clamp(68px, 9vw, 116px) 0 clamp(56px, 7vw, 90px);
  color: white;
  border-bottom: 1px solid rgba(224, 192, 138, 0.2);
  background:
    linear-gradient(90deg, rgba(224, 192, 138, 0.15) 0 2px, transparent 2px) max(20px, calc((100vw - var(--container)) / 2)) 0 / 1px 100% no-repeat,
    radial-gradient(circle at 86% 20%, rgba(39, 102, 151, 0.28), transparent 28%),
    var(--blue-deep);
}

.page-hero h1 {
  max-width: 1020px;
  color: #fffaf0;
  font-size: clamp(2.8rem, 6vw, 6rem);
}

.page-hero p {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255,255,255,0.74);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.breadcrumbs {
  margin-bottom: 28px;
  color: rgba(255,255,255,0.58);
  font-size: 0.82rem;
}

.breadcrumbs a {
  color: white;
}

.section-coverage,
.section-partners {
  color: white;
  background:
    radial-gradient(circle at 88% 10%, rgba(48, 114, 166, 0.24), transparent 34%),
    var(--blue-deep);
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

.section-coverage .eyebrow,
.section-partners .eyebrow,
.section-coverage .section-lead,
.section-partners .section-lead {
  color: rgba(255,255,255,0.75);
}

.section-coverage .section-title,
.section-partners .section-title {
  color: white;
}

.section-coverage .area-chip {
  color: #fff8ea;
  border-color: rgba(224,192,138,0.36);
  background: rgba(255,255,255,0.07);
}

.coverage-link {
  margin: 24px 0 0;
}

.coverage-link a {
  color: var(--gold);
  font-weight: 750;
}

.section-partners .option-card {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}

.section-partners .option-card h3 {
  color: white;
}

.section-partners .option-card p {
  color: rgba(255,255,255,0.7);
}

.section-partners .option-kicker {
  color: var(--gold);
}

.section-hardware {
  box-shadow: inset 0 4px 0 var(--blue);
  background: linear-gradient(180deg, rgba(13,54,94,0.07), transparent 48%), var(--ivory);
}

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

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

.option-card,
.info-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.38);
}

.option-card h3,
.info-card h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}

.option-card p,
.info-card p {
  margin: 0;
  color: var(--muted);
}

.option-card a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--blue);
  font-weight: 700;
}

.option-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.process-card {
  min-height: 280px;
  padding: 30px 28px 24px 0;
}

.process-card + .process-card {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.process-card > span {
  display: block;
  margin-bottom: 54px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.process-card h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}

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

.brand-list,
.service-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.brand-list span,
.service-scope span {
  padding: 8px 13px;
  border: 1px solid rgba(14,49,85,0.22);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255,255,255,0.52);
  font-size: 0.88rem;
  font-weight: 750;
}

.section-dark .service-list {
  border-color: rgba(255,255,255,0.2);
}

.section-dark .service-list li {
  color: white;
  border-color: rgba(255,255,255,0.2);
}

.service-list {
  display: grid;
  margin: 32px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-list li {
  padding: 18px 20px 18px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.service-list li:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.trust-note {
  margin-top: 32px;
  padding: 24px 28px;
  border-left: 3px solid var(--sand);
  background: var(--greige);
}

.trust-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
}

.trust-note p {
  margin: 0;
}

.pc-request {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: start;
}

.request-form {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.field-group + .field-group {
  margin-top: 28px;
}

.field-label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.92rem;
  font-weight: 750;
}

.choice-list {
  display: grid;
  gap: 9px;
}

.choice {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}

.choice input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.request-preview {
  margin-top: 22px;
  padding: 18px;
  border-radius: 12px;
  color: #27342b;
  background: #e3f3e8;
  white-space: pre-line;
}

.legal-content,
.seo-content {
  max-width: 840px;
}

.legal-content h2,
.seo-content h2 {
  margin: 48px 0 14px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.legal-content h3,
.seo-content h3 {
  margin: 30px 0 10px;
  font-size: 1.2rem;
}

.legal-content p,
.seo-content p,
.seo-content li {
  color: #45423e;
}

.legal-content a,
.seo-content a {
  color: var(--blue);
}

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 15px;
  border: 1px solid rgba(14,49,85,0.25);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255,255,255,0.42);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

a.area-chip {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

a.area-chip:hover {
  color: white;
  border-color: var(--blue);
  background: var(--blue);
}

.section-coverage a.area-chip:hover {
  color: var(--blue-deep);
  border-color: var(--gold);
  background: var(--gold);
}

.local-priority-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1000px;
  margin: 0 0 56px;
}

.seo-content-wide {
  max-width: 1000px;
}

.local-priority-card {
  display: flex;
  min-height: 230px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(224, 192, 138, 0.28);
  border-radius: 18px;
  color: white !important;
  background:
    radial-gradient(circle at 90% 0, rgba(48, 114, 166, 0.34), transparent 42%),
    var(--blue-deep);
  flex-direction: column;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.local-priority-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.local-priority-card > span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.local-priority-card > strong {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.local-priority-card > p {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.76);
}

.local-priority-card > small {
  margin-top: auto;
  padding-top: 26px;
  color: white;
  font-size: 0.9rem;
  font-weight: 750;
}

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

.contact-card {
  display: flex;
  min-height: 146px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  text-decoration: none;
  transition: transform 170ms ease, border-color 170ms ease;
}

.contact-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
}

.contact-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-card strong {
  color: var(--blue);
  font-size: 1.2rem;
}

.site-footer {
  padding: 64px 0 94px;
  color: rgba(255,255,255,0.78);
  background: #081b2d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.75fr);
  gap: 44px;
}

.footer-brand img {
  width: 235px;
  height: auto;
}

.footer-brand p {
  max-width: 340px;
  margin: 20px 0 0;
  color: rgba(255,255,255,0.62);
}

.footer-col h2 {
  margin: 0 0 18px;
  color: white;
  font-size: 0.8rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 9px 0;
  color: rgba(255,255,255,0.76);
  text-decoration: none;
}

.footer-col a:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,0.52);
  font-size: 0.82rem;
}

.footer-legal {
  display: flex;
  gap: 18px;
}

.footer-legal a {
  color: inherit;
}

.footer-cookie-button {
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.footer-cookie-button:hover {
  color: white;
  text-decoration: underline;
}

.mobile-cta-bar {
  display: none;
}

.cookie-banner {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: none;
  width: min(calc(100% - 40px), 760px);
  margin-left: auto;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  color: white;
  background: #0a2137;
  box-shadow: 0 22px 70px rgba(0,0,0,0.28);
}

.cookie-banner.is-visible {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-banner p strong {
  display: block;
  margin-bottom: 4px;
  color: white;
  font-size: 1rem;
}

.cookie-banner a {
  color: white;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  min-height: 42px;
  padding: 9px 14px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  color: white;
  background: transparent;
  font-weight: 700;
}

.cookie-actions button[data-consent="accept"] {
  color: #071f34;
  border-color: white;
  background: white;
}

@media (max-width: 1380px) {
  .desktop-nav .nav-phone {
    display: none;
  }

  .desktop-nav {
    gap: clamp(12px, 1.2vw, 18px);
    font-size: 0.87rem;
  }

  .brand img {
    width: 185px;
  }
}

@media (max-width: 1080px) {
  .desktop-nav .nav-phone {
    display: none;
  }

  .desktop-nav {
    gap: 14px;
    font-size: 0.86rem;
  }

  .brand img {
    width: 180px;
  }

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

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

  .process-card:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process-card:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .proof-card:last-child {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, 0.8fr);
  }

  .footer-col:last-child {
    grid-column: 2;
  }
}

@media (max-width: 1000px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .brand img {
    width: 190px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero::after,
  .hero::before {
    opacity: 0.38;
  }

  .section-header,
  .reviews-summary,
  .pc-request,
  .coverage-layout {
    grid-template-columns: 1fr;
  }

  .section-header {
    align-items: start;
    gap: 18px;
  }

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

  .local-priority-grid {
    grid-template-columns: 1fr;
  }

  .digital-showcase-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .digital-shot,
  .digital-shot-main {
    min-height: 390px;
    grid-row: auto;
  }

  .service-card {
    min-height: 400px;
  }

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

  .step,
  .step:not(:first-child) {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step::before {
    margin-bottom: 18px;
  }

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

  .split-feature.reverse .feature-media,
  .case-study.reverse .case-media {
    order: 0;
  }

  .feature-media,
  .case-media {
    min-height: 420px;
  }

  .option-grid.three,
  .info-grid.three {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-col:last-child {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: 66px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 170px;
  }

  .mobile-menu-panel {
    inset: 72px 0 auto;
  }

  .hero h1,
  .page-hero h1 {
    letter-spacing: -0.052em;
  }

  .hero-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero-meta .separator {
    display: none;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .service-card {
    min-height: 390px;
  }

  .digital-shot,
  .digital-shot-main {
    min-height: 300px;
  }

  .showcase-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .showcase-actions .button {
    width: 100%;
  }

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

  .process-card,
  .process-card + .process-card,
  .process-card:nth-child(3) {
    min-height: 0;
    padding: 26px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-card > span {
    margin-bottom: 18px;
  }

  .service-card-content {
    padding: 22px;
  }

  .service-card p {
    padding-right: 40px;
  }

  .proof-grid,
  .review-grid,
  .route-choices,
  .option-grid,
  .info-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .proof-card:last-child {
    grid-column: auto;
  }

  .proof-card-media {
    height: 280px;
  }

  .feature-media,
  .case-media {
    min-height: 330px;
  }

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

  .service-list li:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

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

  .footer-brand,
  .footer-col:last-child {
    grid-column: auto;
  }

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

  .footer-legal {
    flex-wrap: wrap;
  }

  .mobile-cta-bar {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 64px;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255,255,255,0.18);
    background: #081b2d;
  }

  .mobile-cta-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.95rem;
    font-weight: 750;
    text-decoration: none;
  }

  .mobile-cta-bar a + a {
    color: #061b0c;
    border-left: 1px solid rgba(255,255,255,0.22);
    background: var(--whatsapp);
  }

  .cookie-banner {
    right: 10px;
    bottom: 74px;
    left: 10px;
    width: calc(100% - 20px);
    padding: 18px;
  }

  .cookie-banner.is-visible {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

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

@media print {
  .site-header,
  .mobile-cta-bar,
  .cookie-banner,
  .cta-band {
    display: none !important;
  }

  body {
    padding: 0;
    background: white;
  }

  .section,
  .page-hero {
    padding: 28px 0;
  }
}
