:root {
  --ice: #f6fafd;
  --white: #fff;
  --blue: #1259a7;
  --blue-dark: #0d4788;
  --blue-deep: #0a376b;
  --teal: #14b8a6;
  --teal-soft: #e8f8f6;
  --ink: #12243a;
  --copy: #63758a;
  --line: #d9e7f2;
  --navy: #081d35;
  --shadow: 0 18px 50px rgba(18, 89, 167, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
  top: 32px;
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

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

.skip-link:focus {
  z-index: 99999;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  color: #fff;
  background: var(--blue);
}

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

.topbar {
  height: 34px;
  color: #dceafa;
  background: var(--navy);
  font-size: 12px;
}

.topbar-inner,
.topbar-inner > div {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.topbar-inner > div {
  gap: 14px;
}

.topbar a {
  color: #fff;
  font-weight: 750;
}

.topbar-separator {
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, 0.25);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 82px;
  border-bottom: 1px solid rgba(217, 231, 242, 0.85);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  height: 100%;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.7px;
  line-height: 1;
  white-space: nowrap;
}

.brand strong {
  color: var(--blue);
}

.brand small {
  display: block;
  margin-top: 6px;
  color: var(--copy);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 37px;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.brand-mark span {
  border: 2px solid var(--blue);
}

.brand-mark span:first-child {
  grid-row: span 2;
  border-color: var(--teal);
}

.custom-logo-wrap img,
.custom-logo-link img {
  width: auto;
  max-width: 220px;
  height: 54px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-links ul {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.75vw, 29px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links li {
  position: relative;
  margin: 0;
}

.nav-links li > a {
  position: relative;
  display: block;
  padding: 29px 0;
  font-size: 13px;
  font-weight: 650;
}

.nav-links li > a::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease-out;
}

.nav-links li.current-menu-item > a,
.nav-links li > a:hover {
  color: var(--blue);
}

.nav-links li.current-menu-item > a::after,
.nav-links li > a:hover::after {
  transform: scaleX(1);
}

.nav-links .sub-menu {
  position: absolute;
  top: 72px;
  left: -20px;
  display: none;
  width: 220px;
  align-items: stretch;
  flex-direction: column;
  gap: 0;
  padding: 10px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.nav-links li:hover > .sub-menu,
.nav-links li:focus-within > .sub-menu {
  display: flex;
}

.nav-links .sub-menu a {
  padding: 11px 12px;
}

.nav-links .sub-menu a::after {
  display: none;
}

.nav-cta {
  margin-left: 25px;
}

.nav-mobile-cta,
.menu-button {
  display: none;
}

.menu-close-icon {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  transition: 180ms ease-out;
}

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

.button-primary:hover {
  color: #fff;
  background: var(--blue-dark);
  box-shadow: 0 8px 22px rgba(18, 89, 167, 0.18);
  transform: translateY(-2px);
}

.button-outline {
  border-color: var(--blue);
  color: var(--blue);
  background: #fff;
}

.button-outline:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ice);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(18, 89, 167, 0.12);
  content: "";
  pointer-events: none;
}

.hero::before {
  top: 38px;
  left: -50px;
  width: 240px;
  height: 134px;
}

.hero::after {
  bottom: 52px;
  left: 37%;
  width: 96px;
  height: 96px;
  border-top: 0;
  border-left: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 632px;
  grid-template-columns: 0.94fr 1.06fr;
}

.hero-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 80px 62px 74px 4px;
  animation: content-in 420ms ease-out both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.55px;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 3px;
  background: var(--teal);
  content: "";
}

.hero h1 {
  max-width: 650px;
  margin: 25px 0;
  color: var(--ink);
  font-size: clamp(46px, 4.35vw, 67px);
  font-weight: 800;
  letter-spacing: -2.6px;
  line-height: 1.04;
}

.hero h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-copy > p {
  max-width: 570px;
  margin: 0;
  color: var(--copy);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 27px;
  color: #53677d;
  font-size: 13px;
  font-weight: 650;
}

.hero-note > span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--teal-soft);
}

.hero-visual {
  position: relative;
  min-height: 632px;
  overflow: hidden;
  background: #dce8f1;
  animation: visual-in 520ms ease-out both;
}

.hero-visual::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 70px;
  height: 100%;
  background: linear-gradient(90deg, rgba(246, 250, 253, 0.9), transparent);
  content: "";
}

.hero-visual::after {
  position: absolute;
  right: 34px;
  bottom: 29px;
  width: 90px;
  height: 54px;
  border-right: 1px solid rgba(20, 184, 166, 0.9);
  border-bottom: 1px solid rgba(20, 184, 166, 0.9);
  content: "";
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 632px;
  object-fit: cover;
  object-position: 51% center;
}

.technical-tag {
  position: absolute;
  z-index: 4;
  display: flex;
  min-width: 168px;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 8px 30px rgba(18, 36, 58, 0.1);
  backdrop-filter: blur(9px);
}

.technical-tag small {
  display: block;
  color: var(--copy);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.technical-tag strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 13px;
}

.tag-top {
  top: 42px;
  right: 34px;
}

.tag-bottom {
  right: 34px;
  bottom: 47px;
}

.pulse {
  width: 15px;
  height: 15px;
  border: 4px solid var(--teal-soft);
  border-radius: 50%;
  background: var(--teal);
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-grid {
  display: grid;
  min-height: 132px;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-right: 1px solid var(--line);
  color: var(--teal);
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid small,
.trust-grid strong {
  display: block;
}

.trust-grid small {
  margin-bottom: 6px;
  color: var(--copy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.trust-grid strong {
  color: var(--ink);
  font-size: 17px;
}

.section {
  padding: 104px 0;
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  margin-bottom: 50px;
}

.section-heading.compact-heading {
  grid-template-columns: 1fr auto;
}

.section h2,
.entry-content h2 {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 3.3vw, 49px);
  font-weight: 800;
  letter-spacing: -1.7px;
  line-height: 1.12;
}

.section-heading > p,
.process-intro > p,
.quote-copy > p {
  margin: 0;
  color: var(--copy);
  font-size: 16px;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 326px;
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: 180ms ease-out;
}

.service-card:hover {
  z-index: 2;
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-index {
  position: absolute;
  top: 24px;
  right: 27px;
  color: #b5c7d7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.service-icon,
.service-row-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--blue);
  background: var(--teal-soft);
}

.service-card h2,
.service-card h3 {
  margin: 25px 0 12px;
  font-size: 20px;
  letter-spacing: -0.4px;
}

.service-card p {
  margin: 0;
  color: var(--copy);
  font-size: 14px;
  line-height: 1.75;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 23px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
}

.process-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.process-section::after {
  position: absolute;
  top: -140px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 64px rgba(20, 184, 166, 0.025), 0 0 0 128px rgba(20, 184, 166, 0.02);
  content: "";
}

.process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.eyebrow-light {
  color: #8cdad2;
}

.process-intro h2,
.center-cta h2 {
  color: #fff;
}

.process-intro > p {
  margin-top: 25px;
  color: #aec0d2;
}

.button-light {
  margin-top: 30px;
  color: var(--navy);
  background: #fff;
}

.button-light:hover {
  color: #fff;
  background: var(--blue);
  transform: translateY(-2px);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.process-step {
  display: flex;
  min-height: 190px;
  gap: 19px;
  padding: 31px;
  background: #0d2743;
}

.process-step > span {
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(20, 184, 166, 0.56);
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
}

.process-step h3 {
  margin: 6px 0 11px;
  font-size: 17px;
}

.process-step p {
  margin: 0;
  color: #9eb3c6;
  font-size: 13px;
  line-height: 1.65;
}

.brands-section {
  background: var(--ice);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.brand-card {
  display: flex;
  min-height: 132px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

.brand-card img {
  width: auto;
  max-width: 160px;
  max-height: 64px;
  object-fit: contain;
  filter: grayscale(1);
  transition: 180ms ease-out;
}

.brand-card:hover img {
  filter: grayscale(0);
}

.brand-card strong {
  color: #48647e;
  font-size: 15px;
}

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

.brand-grid-large .brand-card {
  min-height: 220px;
}

.brand-description {
  margin-top: 18px;
  color: var(--copy);
  font-size: 13px;
  line-height: 1.65;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.post-card {
  border: 1px solid var(--line);
  background: #fff;
  transition: 180ms ease-out;
}

.post-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.post-image {
  display: grid;
  aspect-ratio: 16/9;
  overflow: hidden;
  place-items: center;
  color: var(--blue);
  background:
    linear-gradient(rgba(18, 89, 167, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 89, 167, 0.08) 1px, transparent 1px),
    var(--ice);
  background-size: 28px 28px;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-image span {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  background: #fff;
}

.post-content {
  padding: 25px;
}

.post-content small {
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.post-content h2,
.post-content h3 {
  margin: 12px 0;
  font-size: 20px;
  line-height: 1.35;
}

.post-content p {
  margin: 0;
  color: var(--copy);
  font-size: 13px;
  line-height: 1.7;
}

.quote-preview,
.quote-page {
  background: var(--ice);
}

.quote-shell {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.quote-copy {
  padding: 55px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(rgba(18, 89, 167, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 89, 167, 0.05) 1px, transparent 1px),
    #fff;
  background-size: 34px 34px;
}

.quote-copy h2 {
  margin: 20px 0 0;
  font-size: 36px;
  letter-spacing: -1.2px;
  line-height: 1.18;
}

.quote-copy > p {
  margin-top: 20px;
}

.quote-phone {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
}

.quote-phone > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--blue);
  background: var(--teal-soft);
}

.quote-phone small,
.quote-phone a {
  display: block;
}

.quote-phone small {
  color: var(--copy);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.quote-phone a {
  margin-top: 4px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 54px;
}

.quote-form label {
  display: block;
}

.quote-form label > span:first-child {
  display: block;
  margin-bottom: 8px;
  color: #445d73;
  font-size: 11px;
  font-weight: 750;
}

.quote-form input:not([type="checkbox"]),
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  background: #fff;
}

.quote-form textarea {
  padding-top: 13px;
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #9aaabc;
}

.form-wide {
  grid-column: 1/-1;
}

.form-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
  color: var(--copy);
  font-size: 11px;
  line-height: 1.5;
}

.form-consent input {
  margin-top: 2px;
  accent-color: var(--blue);
}

.quote-form .button {
  width: 100%;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 54px;
  padding: 28px;
  border: 1px solid #a9ddd6;
  background: var(--teal-soft);
}

.form-success > span {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
}

.form-success strong {
  font-size: 18px;
}

.form-success p {
  margin: 6px 0 0;
  color: var(--copy);
  font-size: 13px;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4d657b;
  font-size: 13px;
  line-height: 1.6;
}

.check-list svg {
  flex: 0 0 auto;
  color: var(--teal);
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--ice);
}

.page-hero-inner {
  position: relative;
  display: flex;
  min-height: 385px;
  align-items: center;
  justify-content: space-between;
}

.page-hero h1 {
  max-width: 820px;
  margin: 24px 0 18px;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -2.5px;
  line-height: 1.04;
}

.page-hero p {
  max-width: 690px;
  margin: 0;
  color: var(--copy);
  font-size: 17px;
  line-height: 1.7;
}

.page-hero-drawing {
  position: absolute;
  right: 0;
  width: 250px;
  height: 230px;
  border: 1px solid rgba(18, 89, 167, 0.12);
}

.page-hero-drawing::before,
.page-hero-drawing::after,
.page-hero-drawing span {
  position: absolute;
  border: 1px solid rgba(20, 184, 166, 0.35);
  content: "";
}

.page-hero-drawing::before {
  top: 34px;
  left: 31px;
  width: 98px;
  height: 150px;
}

.page-hero-drawing::after {
  right: 26px;
  bottom: 27px;
  width: 75px;
  height: 75px;
}

.page-hero-drawing span:first-child {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  border: 0;
  background: rgba(18, 89, 167, 0.12);
}

.page-hero-drawing span:nth-child(2) {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  border: 0;
  background: rgba(18, 89, 167, 0.12);
}

.content-layout,
.article-shell {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 90px;
}

.article-shell {
  max-width: 1120px;
}

.entry-content {
  color: #4e6479;
  font-size: 16px;
  line-height: 1.85;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2 {
  margin-top: 48px;
  font-size: 32px;
  letter-spacing: -1px;
}

.entry-content h3 {
  margin-top: 32px;
  color: var(--ink);
  font-size: 23px;
}

.entry-content ul,
.entry-content ol {
  padding-left: 22px;
}

.entry-content li {
  margin-bottom: 8px;
}

.article-featured {
  margin-bottom: 35px;
}

.article-meta {
  margin-bottom: 24px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.contact-aside {
  position: sticky;
  top: 112px;
  padding: 34px;
  border-top: 4px solid var(--teal);
  background: var(--ice);
}

.contact-aside h2 {
  margin: 22px 0 13px;
  font-size: 26px;
  letter-spacing: -0.8px;
}

.contact-aside p {
  color: var(--copy);
  font-size: 14px;
  line-height: 1.7;
}

.contact-aside .button {
  width: 100%;
  margin-top: 15px;
}

.aside-phone {
  display: block;
  margin-top: 20px;
  color: var(--blue);
  text-align: center;
  font-size: 18px;
  font-weight: 800;
}

.service-guarantees {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 45px;
  background: var(--line);
}

.service-guarantees > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 23px;
  color: var(--teal);
  background: var(--ice);
}

.service-guarantees strong,
.service-guarantees small {
  display: block;
}

.service-guarantees strong {
  color: var(--ink);
  font-size: 14px;
}

.service-guarantees small {
  margin-top: 4px;
  color: var(--copy);
  font-size: 11px;
}

.services-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  min-height: 160px;
  align-items: center;
  grid-template-columns: 70px 70px 1fr auto;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.service-row-number {
  color: #9db0c1;
  font-size: 13px;
  font-weight: 800;
}

.service-row h2 {
  margin: 0 0 9px;
  font-size: 24px;
  letter-spacing: -0.7px;
}

.service-row p {
  max-width: 700px;
  margin: 0;
  color: var(--copy);
  font-size: 13px;
  line-height: 1.65;
}

.center-cta {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 820px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.center-cta p {
  max-width: 660px;
  color: #a9bdcf;
  line-height: 1.75;
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-visual > div {
  position: absolute;
  right: -24px;
  bottom: -24px;
  padding: 24px 30px;
  color: #fff;
  background: var(--blue);
}

.about-visual strong,
.about-visual span {
  display: block;
}

.about-visual strong {
  font-size: 27px;
}

.about-visual span {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.values-section {
  background: var(--ice);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.values-grid > div {
  padding: 40px;
  background: #fff;
}

.values-grid h2 {
  margin: 24px 0 12px;
  font-size: 23px;
  letter-spacing: -0.6px;
}

.values-grid p {
  margin: 0;
  color: var(--copy);
  font-size: 13px;
  line-height: 1.7;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.certificate-card {
  border: 1px solid var(--line);
  background: #fff;
}

.certificate-image {
  display: grid;
  min-height: 300px;
  place-items: center;
  color: var(--blue);
  background: var(--ice);
}

.certificate-image img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

.certificate-card > div:last-child {
  padding: 24px;
}

.certificate-card h2 {
  margin: 0 0 10px;
  font-size: 19px;
}

.certificate-card p {
  margin: 0;
  color: var(--copy);
  font-size: 13px;
  line-height: 1.65;
}

.empty-state {
  grid-column: 1/-1;
  padding: 70px 30px;
  border: 1px dashed #afc9df;
  color: var(--blue);
  background: var(--ice);
  text-align: center;
}

.empty-state h2 {
  margin: 20px 0 10px;
  font-size: 27px;
}

.empty-state p {
  max-width: 570px;
  margin: 0 auto;
  color: var(--copy);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 45px;
}

.contact-cards {
  display: grid;
  align-content: start;
  gap: 14px;
}

.contact-cards > * {
  display: block;
  padding: 25px;
  border: 1px solid var(--line);
  background: #fff;
  transition: 180ms ease-out;
}

.contact-cards > a:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.contact-cards .service-icon {
  margin-bottom: 20px;
}

.contact-cards small,
.contact-cards strong {
  display: block;
}

.contact-cards small {
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.contact-cards strong {
  margin-top: 7px;
  font-size: 18px;
}

.contact-cards p {
  margin: 7px 0 0;
  color: var(--copy);
  font-size: 12px;
}

.contact-form-panel {
  border: 1px solid var(--line);
  background: var(--ice);
}

.contact-form-panel > .eyebrow,
.contact-form-panel > h2 {
  margin-left: 54px;
}

.contact-form-panel > .eyebrow {
  margin-top: 46px;
}

.contact-form-panel > h2 {
  max-width: 600px;
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 34px;
  letter-spacing: -1.1px;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.pagination {
  margin-top: 42px;
}

.nav-links .nav-links {
  display: inline-flex;
  gap: 7px;
}

.page-numbers {
  display: inline-grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
}

.page-numbers.current,
.page-numbers:hover {
  color: #fff;
  background: var(--blue);
}

.site-footer {
  padding: 78px 0 26px;
  color: #aec0d2;
  background: #06172a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
  gap: 65px;
}

.brand-light,
.brand-light strong,
.brand-light small {
  color: #fff;
}

.brand-light .brand-mark span {
  border-color: #fff;
}

.brand-light .brand-mark span:first-child {
  border-color: var(--teal);
}

.footer-intro {
  max-width: 320px;
  margin: 25px 0 0;
  color: #8fa5b9;
  font-size: 13px;
  line-height: 1.8;
}

.footer-grid h3 {
  margin: 4px 0 23px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.footer-grid > div > a:not(.brand),
.footer-grid > div > p:not(.footer-intro) {
  display: block;
  margin: 0 0 12px;
  color: #8fa5b9;
  font-size: 12px;
}

.footer-grid > div > a:hover {
  color: var(--teal);
}

.footer-quote {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin-top: 8px !important;
  color: #fff !important;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #658097;
  font-size: 10px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 24px;
  color: #fff;
  background: #138f81;
  box-shadow: 0 10px 30px rgba(13, 71, 136, 0.25);
  font-size: 12px;
  font-weight: 800;
}

@keyframes content-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
}

@keyframes visual-in {
  from {
    opacity: 0;
  }
}

@media (max-width: 1180px) {
  .container {
    width: min(calc(100% - 64px), 1116px);
  }
  .nav-links ul {
    gap: 16px;
  }
  .nav-links li > a {
    font-size: 11px;
  }
  .nav-cta {
    margin-left: 16px;
    padding-inline: 17px;
  }
  .hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 980px) {
  body.admin-bar .site-header {
    top: 46px;
  }
  .topbar {
    display: none;
  }
  .container {
    width: min(calc(100% - 44px), 936px);
  }
  .site-header {
    height: 74px;
  }
  .menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: auto;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 3px;
    color: var(--blue);
    background: #fff;
  }
  .menu-button.is-open .menu-open-icon {
    display: none;
  }
  .menu-button.is-open .menu-close-icon {
    display: inline-flex;
  }
  .nav-cta {
    display: none;
  }
  .nav-links {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 18px 22px 26px;
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 22px 45px rgba(18, 36, 58, 0.12);
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }
  .nav-links li > a {
    padding: 14px 4px;
    border-bottom: 1px solid #edf3f7;
    font-size: 14px;
  }
  .nav-links li > a::after {
    display: none;
  }
  .nav-mobile-cta {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    border-radius: 4px;
    color: #fff;
    background: var(--blue);
    font-size: 14px;
    font-weight: 750;
  }
  .nav-links .sub-menu {
    position: static;
    display: flex;
    width: auto;
    padding: 0 0 0 15px;
    border: 0;
    box-shadow: none;
  }
  .hero-grid,
  .quote-shell,
  .process-grid,
  .contact-grid,
  .about-grid,
  .content-layout,
  .article-shell {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 76px 0 65px;
  }
  .hero-copy > p {
    max-width: 650px;
  }
  .hero-visual,
  .hero-visual > img {
    min-height: 500px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .section-heading.compact-heading {
    align-items: start;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    gap: 55px;
  }
  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .quote-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
  .page-hero-drawing {
    opacity: 0.35;
  }
  .contact-aside {
    position: static;
  }
  .about-grid {
    gap: 60px;
  }
  .about-visual {
    max-width: 650px;
  }
}

@media (max-width: 700px) {
  body.admin-bar .site-header {
    top: 0;
  }
  .container {
    width: min(calc(100% - 32px), 668px);
  }
  .brand {
    font-size: 18px;
  }
  .brand-mark {
    width: 27px;
    height: 32px;
  }
  .brand small {
    font-size: 7px;
  }
  .custom-logo-wrap img,
  .custom-logo-link img {
    max-width: 180px;
    height: 47px;
  }
  .hero h1 {
    margin-top: 21px;
    font-size: 40px;
    letter-spacing: -1.6px;
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }
  .hero-visual,
  .hero-visual > img {
    min-height: 380px;
  }
  .technical-tag {
    min-width: auto;
  }
  .tag-top {
    top: 18px;
    right: 18px;
  }
  .tag-bottom {
    right: 18px;
    bottom: 24px;
  }
  .trust-grid {
    padding: 18px 0;
    grid-template-columns: 1fr;
  }
  .trust-grid > div {
    justify-content: flex-start;
    min-height: 82px;
    padding: 0 15px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-grid > div:last-child {
    border-bottom: 0;
  }
  .section {
    padding: 76px 0;
  }
  .section-heading {
    margin-bottom: 36px;
  }
  .services-grid,
  .process-steps,
  .quote-form,
  .posts-grid,
  .certificate-grid,
  .values-grid,
  .brand-grid,
  .brand-grid-large {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: auto;
  }
  .process-step {
    min-height: 166px;
  }
  .quote-copy,
  .quote-form {
    padding: 34px 25px;
  }
  .quote-copy h2 {
    font-size: 31px;
  }
  .form-wide {
    grid-column: auto;
  }
  .page-hero-inner {
    min-height: 340px;
  }
  .page-hero h1 {
    font-size: 42px;
    letter-spacing: -1.5px;
  }
  .page-hero-drawing {
    right: -130px;
  }
  .service-row {
    grid-template-columns: 45px 58px 1fr;
    gap: 15px;
    padding: 25px 0;
  }
  .service-row .button {
    grid-column: 3;
    justify-self: start;
  }
  .service-row h2 {
    font-size: 20px;
  }
  .about-visual > div {
    right: 12px;
    bottom: 12px;
  }
  .service-guarantees {
    grid-template-columns: 1fr;
  }
  .contact-form-panel > .eyebrow,
  .contact-form-panel > h2 {
    margin-left: 25px;
  }
  .contact-form-panel > .eyebrow {
    margin-top: 34px;
  }
  .contact-form-panel > h2 {
    font-size: 29px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 28px;
  }
  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
  .floating-whatsapp {
    width: 48px;
    padding: 0;
  }
  .floating-whatsapp span {
    display: none;
  }
}

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

/* Mobile experience — version 1.1 */
.nav-overlay,
.mobile-action-bar {
  display: none;
}

@media (max-width: 980px) {
  body.menu-active {
    overflow: hidden;
    touch-action: none;
  }

  .site-header {
    z-index: 100;
    box-shadow: 0 1px 0 rgba(18, 89, 167, 0.08);
  }

  .menu-button {
    position: relative;
    z-index: 103;
    min-width: 46px;
    min-height: 46px;
    cursor: pointer;
  }

  .nav-overlay {
    position: fixed;
    z-index: 97;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    visibility: hidden;
    opacity: 0;
    background: rgba(6, 23, 42, 0.58);
    backdrop-filter: blur(2px);
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  body.menu-active .nav-overlay {
    visibility: visible;
    opacity: 1;
  }

  .nav-links {
    position: fixed;
    z-index: 102;
    top: 74px;
    right: 0;
    bottom: 0;
    left: auto;
    display: flex;
    width: min(88vw, 390px);
    height: calc(100dvh - 74px);
    align-items: stretch;
    flex-direction: column;
    overflow-y: auto;
    padding: 18px 22px calc(34px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: -24px 0 55px rgba(6, 23, 42, 0.16);
    overscroll-behavior: contain;
    transform: translateX(102%);
    visibility: hidden;
    transition: transform 240ms ease-out, visibility 240ms ease-out;
  }

  .nav-links.is-open {
    display: flex;
    visibility: visible;
    transform: translateX(0);
  }

  .nav-links ul {
    width: 100%;
  }

  .nav-links li > a {
    display: flex;
    min-height: 52px;
    align-items: center;
    padding: 12px 5px;
    font-size: 15px;
  }

  .nav-mobile-cta {
    min-height: 54px;
    margin-top: 20px;
  }

  .hero-grid {
    width: 100%;
  }

  .hero-copy {
    width: min(calc(100% - 44px), 936px);
    margin-inline: auto;
    padding: 64px 0 56px;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-actions .button {
    min-height: 54px;
  }

  .quote-form input:not([type="checkbox"]),
  .quote-form select,
  .quote-form textarea {
    min-height: 54px;
    font-size: 16px;
  }

  .button {
    min-height: 52px;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  .site-header {
    height: 68px;
  }

  .nav-links {
    top: 68px;
    height: calc(100dvh - 68px);
  }

  .brand {
    max-width: calc(100% - 62px);
  }

  .brand > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .custom-logo-wrap img,
  .custom-logo-link img {
    max-width: 165px;
    height: 44px;
  }

  .hero-copy {
    width: min(calc(100% - 32px), 668px);
    padding: 48px 0 42px;
  }

  .eyebrow {
    gap: 9px;
    font-size: 10px;
    letter-spacing: 1.15px;
    line-height: 1.45;
  }

  .eyebrow::before {
    width: 28px;
    height: 2px;
  }

  .hero h1 {
    margin: 19px 0 19px;
    font-size: clamp(34px, 10vw, 42px);
    letter-spacing: -1.45px;
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .hero-copy > p {
    font-size: 15px;
    line-height: 1.68;
  }

  .hero-actions {
    display: grid;
    gap: 11px;
    margin-top: 25px;
  }

  .hero-note {
    align-items: flex-start;
    margin-top: 20px;
    font-size: 11px;
    line-height: 1.55;
  }

  .hero-visual,
  .hero-visual > img {
    min-height: 340px;
  }

  .hero-visual > img {
    object-position: 56% center;
  }

  .tag-top {
    display: none;
  }

  .tag-bottom {
    right: 14px;
    bottom: 18px;
    padding: 10px 12px;
  }

  .hero-visual::after {
    right: 14px;
    bottom: 14px;
  }

  .trust-grid {
    padding: 9px 0;
  }

  .trust-grid > div {
    min-height: 74px;
    padding-inline: 5px;
  }

  .trust-grid svg {
    width: 34px;
    height: 34px;
  }

  .trust-grid strong {
    font-size: 15px;
  }

  .section {
    padding: 64px 0;
  }

  .section h2,
  .entry-content h2 {
    font-size: clamp(29px, 8.3vw, 37px);
    letter-spacing: -1.1px;
    line-height: 1.14;
  }

  .section-heading {
    gap: 16px;
    margin-bottom: 30px;
  }

  .section-heading > p,
  .process-intro > p,
  .quote-copy > p {
    font-size: 14px;
  }

  .service-card {
    padding: 29px 24px;
  }

  .service-icon,
  .service-row-icon {
    width: 52px;
    height: 52px;
  }

  .service-card h2,
  .service-card h3 {
    margin-top: 20px;
  }

  .process-grid {
    gap: 38px;
  }

  .process-step {
    min-height: 142px;
    padding: 25px 22px;
  }

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

  .brand-card,
  .brand-grid-large .brand-card {
    min-height: 124px;
    padding: 18px 12px;
  }

  .brand-card strong {
    font-size: 12px;
  }

  .brand-card img {
    max-width: 118px;
    max-height: 52px;
  }

  .post-content {
    padding: 22px;
  }

  .quote-shell {
    box-shadow: 0 10px 34px rgba(18, 89, 167, 0.09);
  }

  .quote-copy,
  .quote-form {
    padding: 30px 20px;
  }

  .quote-form {
    gap: 15px;
  }

  .quote-form label > span:first-child {
    font-size: 12px;
  }

  .quote-form .button {
    min-height: 56px;
  }

  .form-consent {
    font-size: 11px;
  }

  .form-consent input {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
  }

  .page-hero-inner {
    min-height: 288px;
    padding-block: 44px;
  }

  .page-hero h1 {
    margin: 18px 0 14px;
    font-size: clamp(35px, 10vw, 44px);
    letter-spacing: -1.45px;
    overflow-wrap: anywhere;
  }

  .page-hero p {
    font-size: 14px;
    line-height: 1.65;
  }

  .page-hero-drawing {
    opacity: 0.22;
  }

  .content-layout,
  .article-shell,
  .about-grid,
  .contact-grid {
    gap: 48px;
  }

  .entry-content {
    font-size: 15px;
    line-height: 1.8;
  }

  .service-row {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .service-row-number {
    display: none;
  }

  .service-row > div:nth-child(3) {
    min-width: 0;
  }

  .service-row .button {
    grid-column: 2;
    width: 100%;
  }

  .about-visual > div {
    padding: 18px 21px;
  }

  .certificate-image,
  .certificate-image img {
    min-height: 240px;
    height: 240px;
  }

  .contact-form-panel > .eyebrow,
  .contact-form-panel > h2 {
    margin-right: 20px;
    margin-left: 20px;
  }

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

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .site-footer {
    padding: 62px 0 30px;
  }

  .footer-bottom {
    margin-top: 42px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 95;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: calc(64px + env(safe-area-inset-bottom));
    grid-template-columns: 0.75fr 1fr 1.15fr;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -10px 30px rgba(18, 36, 58, 0.1);
    backdrop-filter: blur(12px);
  }

  .mobile-action-bar a {
    display: flex;
    min-width: 0;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-right: 1px solid var(--line);
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
  }

  .mobile-action-bar a:last-child {
    border-right: 0;
  }

  .mobile-action-bar .mobile-action-primary {
    color: #fff;
    background: var(--blue);
  }
}

@media (max-width: 390px) {
  .container,
  .hero-copy {
    width: calc(100% - 26px);
  }

  .brand {
    font-size: 16px;
  }

  .brand small {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero h1 {
    font-size: 33px;
  }

  .brand-grid,
  .brand-grid-large {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-action-bar a {
    font-size: 9px;
  }
}
