:root {
  --ink: #1f2937;
  --muted: #667085;
  --navy: #29335c;
  --navy-dark: #16213d;
  --accent: #d63a10;
  --accent-dark: #bb3210;
  --gold: #b49149;
  --paper: #ffffff;
  --soft: #f5f3ee;
  --line: #e6e1d8;
  --shadow: 0 16px 40px rgba(22, 33, 61, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Proxima-Nova", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(230, 225, 216, 0.9);
  box-shadow: 0 8px 22px rgba(22, 33, 61, 0.06);
}

.header-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 245px;
}

.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

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

.brand-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.1;
}

.brand-note {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
  color: #414141;
  font-size: 16px;
}

.site-nav a,
.nav-link {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a[aria-current="page"],
.nav-item[data-active="true"] > .nav-link,
.site-nav a:hover {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 20;
  width: min(780px, calc(100vw - 36px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.submenu:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.submenu a {
  display: block;
  min-height: 44px;
  padding: 10px 12px;
  border-bottom: 0;
  border-radius: 6px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}

.submenu a:hover,
.submenu a[aria-current="page"] {
  color: var(--navy);
  background: var(--soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  color: var(--navy);
  font-weight: 700;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 5px;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.button:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }

.button.secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.button.secondary:hover {
  background: var(--navy);
  color: #fff;
}

.hero .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .76);
  background: rgba(255, 255, 255, .1);
}

.hero .button.secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .2);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(18, 30, 55, .84) 0%, rgba(18, 30, 55, .56) 40%, rgba(18, 30, 55, .12) 72%),
    var(--hero-image);
  background-size: cover;
  background-position: center center;
}

.hero:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 76px;
  background: var(--paper);
  clip-path: polygon(0 58%, 12% 48%, 25% 62%, 40% 42%, 58% 56%, 74% 36%, 100% 52%, 100% 100%, 0 100%);
}

.hero-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 88px 0 128px;
}

.hero-copy {
  max-width: 570px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 16px;
  color: #f3d891;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: inherit;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  font-weight: 700;
}

.hero p {
  margin: 22px 0 0;
  max-width: 520px;
  font-size: 22px;
  line-height: 1.4;
}

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

.section {
  padding: 74px 0;
}

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

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin: 0 0 34px;
}

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

h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
}

h3 {
  margin: 0;
  color: var(--navy-dark);
  font-size: 23px;
  line-height: 1.25;
}

.section-head p,
.lead {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

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

.card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(22, 33, 61, 0.07);
}

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

.card-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 700;
}

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

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #ddd;
}

.image-panel img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(214, 58, 16, .12);
}

.location-band {
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}

.pin {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  color: #f3d891;
}

.location-band p {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(18, 30, 55, .86), rgba(18, 30, 55, .56)),
    var(--page-image);
  background-size: cover;
  background-position: center;
}

.page-hero .container {
  padding: 74px 0;
}

.page-hero p {
  margin: 20px 0 0;
  max-width: 720px;
  font-size: 21px;
}

.content-block {
  max-width: 860px;
}

.service-index {
  margin-top: 26px;
}

.service-index .card {
  display: flex;
  flex-direction: column;
}

.service-index .card-link {
  margin-top: auto;
  padding-top: 18px;
}

.contact-section {
  background: var(--navy-dark);
  color: #fff;
}

.contact-section h2,
.contact-section h3 { color: #fff; }

.contact-section p { color: rgba(255, 255, 255, .76); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .7fr);
  gap: 46px;
  align-items: start;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-links a {
  color: #fff;
  font-weight: 700;
}

.lead-form {
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-title {
  margin: 0 0 18px;
  color: var(--navy-dark);
  font-size: 24px;
  font-weight: 700;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.field span {
  color: var(--navy-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #d8dce2;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

.plm-phone-control {
  display: grid;
  grid-template-columns: minmax(96px, 112px) minmax(0, 1fr);
  column-gap: 8px;
  row-gap: 8px;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
}

.field .plm-country-select {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  box-sizing: border-box;
  padding-right: 8px;
  color: var(--navy-dark);
  font-weight: 800;
  background: #f7f4ee;
}

.field .plm-phone-input {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  box-sizing: border-box;
}

.plm-field-hint {
  color: rgba(22, 33, 61, .68);
  font-size: 13px;
  line-height: 1.35;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid rgba(180, 145, 73, .35);
  border-color: var(--gold);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"],
.field.field-invalid input,
.field.field-invalid textarea,
.field.field-invalid select {
  border-color: #d63a10;
  box-shadow: 0 0 0 3px rgba(214, 58, 16, .14);
}

@media (max-width: 360px) {
  .plm-phone-control {
    grid-template-columns: minmax(0, 1fr);
  }
  .field .plm-country-select {
    grid-column: 1;
    grid-row: 1;
  }
  .field .plm-phone-input {
    grid-column: 1;
    grid-row: 2;
  }
}

@media (max-width: 430px) {
  .field .plm-country-select,
  .field .plm-phone-input {
    font-size: 16px;
  }
}

.field-error {
  min-height: 18px;
  color: #b43114;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.plm-form-disclaimer {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0;
}

.plm-form-disclaimer a {
  color: #f1d98b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-form .plm-form-disclaimer {
  color: #4f5b6b;
}

.lead-form .plm-form-disclaimer a {
  color: #9f3218;
}

.plm-map-placeholder {
  display: grid;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  align-content: center;
  min-height: 280px;
  padding: 32px;
  border: 1px solid rgba(22, 33, 61, 0.18);
  background: #f5f2ea;
  color: #16213d;
}

.plm-map-placeholder p {
  margin: 0 0 10px;
}

.plm-map-placeholder a {
  width: fit-content;
  margin-top: 10px;
  color: #b13315;
  font-weight: 700;
  text-decoration: none;
}

.fl-node-5ce60c64896f2.fl-animation,
.fl-node-5ce60c64896f2.fl-animation:not(.fl-animated) {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 767px) {
  .fl-map,
  .plm-map-placeholder {
    width: 100% !important;
    max-width: 100% !important;
    padding-bottom: 0 !important;
  }

  .plm-map-placeholder {
    min-height: 0;
    padding: 24px;
  }

  .fl-node-5ce60c6489604 > .fl-row-content-wrap {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  .fl-node-5ce60c64896b7,
  .fl-node-5ce60c64896b7 > .fl-col-content {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    display: block !important;
  }

  .fl-node-5ce60c64896f2,
  .fl-node-5ce60c64896f2.fl-animation,
  .fl-node-5ce60c64896f2.fl-animation:not(.fl-animated) {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    margin-top: 0 !important;
  }

  .fl-node-5ce60c64896f2 > .fl-module-content {
    margin: 12px 20px 16px !important;
    padding: 18px !important;
    border: 1px solid rgba(22,33,61,.1) !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: 0 12px 28px rgba(22,33,61,.06) !important;
  }

  .fl-node-5ce60c64896f2 .fl-rich-text,
  .fl-node-5ce60c64896f2 .fl-rich-text p {
    color: #16213d !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  .fl-node-5ce60c64896f2 .fl-rich-text p {
    margin: 0 0 10px !important;
  }

  .fl-node-5ce60c64896f2 .fl-rich-text p:last-child {
    margin-bottom: 0 !important;
  }

  .fl-node-5ce612b9a296d {
    margin-top: 0 !important;
  }

  .fl-node-5ce612b9a296d > .fl-module-content {
    margin-top: 12px !important;
    margin-bottom: 20px !important;
  }
}

.site-footer {
  background: #202946;
  color: rgba(255,255,255,.72);
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(160px, .45fr) minmax(320px, 1fr) minmax(220px, .6fr);
  gap: 36px;
  align-items: start;
}

.footer-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer-title {
  color: #fff;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-links.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  font-size: 14px;
}

.footer-links a,
.footer-contact a {
  color: #fff;
}

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

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 14px 22px;
    padding: 14px 0;
  }

  .brand { min-width: 0; flex: 1; }
  .site-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 2px;
  }
  .nav-item.has-submenu {
    flex-basis: 100%;
    display: grid;
    gap: 8px;
  }
  .submenu {
    position: static;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 12px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .submenu:before { display: none; }
  .header-actions { margin-left: auto; }

  .grid.three,
  .grid.two,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .image-panel img { height: 420px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }

  .header-inner {
    width: min(100% - 28px, 1180px);
    min-height: 82px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand-name { font-size: 14px; }
  .brand-note { font-size: 10px; }

  .phone-link { display: none; }
  .button { min-height: 42px; padding: 0 14px; font-size: 12px; }

  .site-nav {
    gap: 16px;
    font-size: 14px;
  }

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

  .submenu a {
    min-height: 40px;
    padding: 9px 10px;
  }

  .hero {
    min-height: 660px;
    align-items: flex-end;
    background-image:
      linear-gradient(180deg, rgba(18, 30, 55, .16) 0%, rgba(18, 30, 55, .38) 42%, rgba(18, 30, 55, .9) 100%),
      var(--hero-image);
    background-position: center top;
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
    padding: 300px 0 110px;
  }

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

  .hero p,
  .page-hero p {
    font-size: 18px;
  }

  .section { padding: 56px 0; }
  .container { width: min(100% - 28px, 1180px); }

  .location-band {
    align-items: flex-start;
    padding: 24px;
  }

  .location-band p { font-size: 18px; }
  .lead-form { padding: 22px; }
}

body.test-page {
  min-height: 100vh;
  color: var(--ink);
  background: #f7f5ef;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
}

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

.test-container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.test-site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(230,225,216,.95);
  backdrop-filter: blur(12px);
}

.test-header-inner {
  width: min(1180px, calc(100% - 36px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.test-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--navy-dark);
  font-size: 15px;
  font-weight: 700;
}

.test-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.test-nav a:hover,
.test-nav a:focus {
  color: var(--accent);
  border-bottom-color: var(--gold);
}

.whatsapp-pill,
.whatsapp-button,
.whatsapp-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: currentColor;
}

.whatsapp-pill {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #1fa855;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(31,168,85,.22);
}

.whatsapp-pill:hover,
.whatsapp-pill:focus {
  background: #168c45;
}

.test-main {
  min-height: 100vh;
}

.test-hero-block {
  padding: 42px 0 72px;
  background:
    linear-gradient(180deg, #fff 0%, #f7f5ef 58%, #fff 100%);
}

.test-brand-card {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  max-width: 100%;
  margin-bottom: 24px;
  padding: 14px 18px 14px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 36px rgba(22,33,61,.1);
}

.test-brand-emblem {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  border-radius: 50%;
  object-fit: contain;
  background: #061b32;
  box-shadow: 0 0 0 5px #fff, 0 8px 18px rgba(22,33,61,.18);
}

.test-brand-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.test-brand-name {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.08;
  font-weight: 800;
}

.test-brand-descriptor {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.test-hero-photo {
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  background: #17213b;
  box-shadow: 0 24px 62px rgba(22,33,61,.18);
}

.test-hero-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}

.test-hero-message {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .72fr);
  gap: 48px;
  align-items: start;
  padding-top: 38px;
}

.test-eyebrow,
.test-section-kicker {
  margin: 0 0 12px;
  color: #356c9f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.test-hero-message h1 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.test-hero-support p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.test-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.test-actions .button {
  min-height: 48px;
}

.whatsapp-button {
  border-color: #1fa855;
  background: #1fa855;
}

.whatsapp-button:hover,
.whatsapp-button:focus {
  border-color: #168c45;
  background: #168c45;
}

.test-status-note {
  margin-top: 16px !important;
  color: #8a6f32 !important;
  font-size: 14px !important;
  font-weight: 700;
}

.test-section {
  padding: 72px 0;
}

.test-section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.test-section-head h2,
.test-request-copy h2 {
  color: var(--navy-dark);
}

.test-proof {
  background: #fff;
}

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

.test-proof-grid article {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(22,33,61,.06);
}

.test-proof-grid h3 {
  font-size: 22px;
}

.test-proof-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.test-services {
  background: #f7f5ef;
}

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

.test-service-card {
  min-height: 100%;
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(22,33,61,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.test-service-card:hover,
.test-service-card:focus {
  transform: translateY(-2px);
  border-color: rgba(180,145,73,.7);
  box-shadow: 0 16px 34px rgba(22,33,61,.1);
}

.test-icon {
  width: 42px;
  height: 42px;
  color: var(--accent);
}

.test-service-title {
  color: #356c9f;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 800;
}

.test-service-copy {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.test-request {
  background: var(--navy-dark);
  color: #fff;
}

.test-request-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, .7fr);
  gap: 48px;
  align-items: start;
}

.test-request-copy h2,
.test-request-copy .test-section-kicker {
  color: #fff;
}

.test-request-copy p {
  max-width: 540px;
  color: rgba(255,255,255,.78);
  font-size: 19px;
}

.test-contact-stack {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.test-contact-stack a {
  color: #fff;
  font-weight: 800;
}

.whatsapp-text-link {
  justify-content: flex-start;
  color: #7ee0a6 !important;
}

.test-lead-form {
  width: 100%;
}

.test-lead-form .button {
  width: 100%;
  min-height: 48px;
}

.test-footer {
  padding: 28px 0;
  background: #202946;
  color: rgba(255,255,255,.74);
}

.test-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  font-size: 14px;
}

.test-footer a,
.test-footer span:first-child {
  color: #fff;
  font-weight: 800;
}

.plm-legal-footer {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.4;
}

.plm-legal-footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.plm-legal-footer a:hover,
.plm-legal-footer a:focus,
.test-footer a:hover,
.test-footer a:focus {
  color: #f4d27f;
}

.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #16213d;
  text-decoration: none;
}

.legal-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.legal-brand span {
  display: grid;
  gap: 3px;
}

.legal-brand strong {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1;
}

.legal-brand small {
  color: #a88a3a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-main {
  background: #f7f4ee;
  color: #16213d;
  padding: clamp(48px, 8vw, 96px) 24px;
}

.legal-article {
  max-width: 860px;
  margin: 0 auto;
}

.legal-article h1 {
  margin: 0 0 12px;
  color: #16213d;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 0.98;
}

.legal-date {
  margin: 0 0 32px;
  color: rgba(22, 33, 61, 0.68);
  font-weight: 700;
}

.legal-article h2 {
  margin: 34px 0 10px;
  color: #16213d;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.15;
}

.legal-article p {
  margin: 0 0 16px;
  color: rgba(22, 33, 61, 0.86);
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.7;
}

.legal-article a {
  color: #b13315;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .test-header-inner {
    flex-wrap: wrap;
    gap: 12px 18px;
    padding: 12px 0;
  }

  .test-nav {
    width: auto;
  }

  .test-hero-message,
  .test-proof-grid,
  .test-service-grid,
  .test-request-grid {
    grid-template-columns: 1fr;
  }

  .test-proof-grid,
  .test-service-grid {
    gap: 14px;
  }
}

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

  .test-nav {
    order: 2;
    width: 100%;
    gap: 16px;
    font-size: 14px;
  }

  .whatsapp-pill {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .test-hero-block {
    padding: 28px 0 54px;
  }

  .test-brand-card {
    width: 100%;
    gap: 13px;
    padding: 12px;
    border-radius: 14px;
  }

  .test-brand-emblem {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .test-brand-name {
    font-size: 18px;
  }

  .test-brand-descriptor {
    font-size: 10px;
    letter-spacing: .1em;
  }

  .test-hero-photo {
    border-radius: 8px;
  }

  .test-hero-photo img {
    aspect-ratio: 4 / 3;
    object-position: center center;
  }

  .test-hero-message {
    padding-top: 28px;
    gap: 22px;
  }

  .test-hero-message h1 {
    font-size: 38px;
  }

  .test-hero-support p {
    font-size: 18px;
  }

  .test-actions {
    display: grid;
  }

  .test-section {
    padding: 54px 0;
  }

  .test-proof-grid article,
  .test-service-card,
  .lead-form {
    padding: 22px;
  }

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

  .legal-brand img {
    width: 52px;
    height: 52px;
  }

  .legal-main {
    padding: 40px 20px;
  }
}
