:root {
  --ink: #102038;
  --muted: #536177;
  --line: #d8e2ef;
  --paper: #f4f8fc;
  --white: #ffffff;
  --graphite: #132642;
  --brand-blue: #0b77b7;
  --brand-blue-dark: #284b8f;
  --brand-blue-soft: #e8f3fb;
  --brand-green: #3c9635;
  --brand-green-soft: #edf8ea;
  --accent-sky: #0096c7;
  --shadow: 0 18px 45px rgba(16, 32, 56, 0.12);
  --radius: 8px;
  --content: 1440px;
  --content-narrow: 860px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

img,
svg {
  display: block;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 0 5vw;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.04);
}

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

.brand img {
  width: min(220px, 38vw);
  height: 46px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #2d3746;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  padding: 18px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand-blue);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/gtpma-hero.png");
  background-position: center right;
  background-size: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 16, 23, 0.96) 0%, rgba(10, 16, 23, 0.82) 32%, rgba(10, 16, 23, 0.42) 66%, rgba(10, 16, 23, 0.18) 100%),
    linear-gradient(180deg, rgba(10, 16, 23, 0.18), rgba(10, 16, 23, 0.78));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(640px, 90vw);
  padding: 56px 5vw 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #45b5e5;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.15rem, 4.8vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 590px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

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

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

.button.outline {
  color: var(--brand-blue-dark);
  background: var(--white);
  border-color: #b8d5e8;
}

.button.outline:hover,
.button.outline:focus-visible {
  color: var(--white);
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(650px, 90vw);
  margin: 28px 0 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-metrics div {
  min-height: 74px;
  padding: 14px 16px;
  background: rgba(9, 16, 24, 0.52);
}

.hero-metrics dt {
  font-size: 0.98rem;
  font-weight: 850;
}

.hero-metrics dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.section {
  padding: 58px 5vw;
}

.intro {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.section-grid {
  display: grid;
  width: min(var(--content), 100%);
  margin: 0 auto;
  gap: 32px;
}

.section-grid.two {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.section h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section p,
.contact p {
  color: var(--muted);
  font-size: 1rem;
}

.intro p:last-child {
  margin: 6px 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.section-heading {
  width: min(var(--content-narrow), 100%);
  margin: 0 auto 28px;
  text-align: center;
}

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

.section-more {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  width: min(var(--content), 100%);
  margin: 28px auto 0;
}

.service-grid,
.sector-grid,
.process-steps {
  display: grid;
  width: min(var(--content), 100%);
  margin: 0 auto;
  gap: 18px;
}

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

.service-card,
.sector-grid article,
.process-steps article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(22, 32, 43, 0.04);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 0;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--brand-blue);
}

.service-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 14px;
}

.service-card h3,
.service-card .card-title,
.sector-grid h3,
.sector-grid .card-title,
.process-steps h3,
.software-list h3,
.software-list .card-title {
  margin: 0;
  color: var(--ink);
  font-size: 1.13rem;
  font-weight: 800;
  line-height: 1.2;
}

.service-card p:not(.card-title),
.sector-grid p:not(.card-title),
.process-steps p,
.software-list p:not(.card-title) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.accent-amber::before {
  background: var(--brand-green);
}

.accent-coral::before {
  background: var(--brand-blue-dark);
}

.accent-green::before {
  background: var(--accent-sky);
}

.software-band {
  color: var(--white);
  background: linear-gradient(135deg, #102038 0%, #173f70 54%, #0b77b7 100%);
}

.software-band .section-grid.two {
  grid-template-columns: minmax(300px, 0.48fr) minmax(0, 1.52fr);
  align-items: start;
  gap: 44px;
}

.software-band h2,
.software-band h3 {
  color: var(--white);
}

.software-band p {
  color: rgba(255, 255, 255, 0.74);
}

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

.software-list article {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
}

.software-list-image {
  width: 110px;
  height: 86px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.list-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #7bd4ff;
  background: rgba(123, 212, 255, 0.12);
  border: 1px solid rgba(123, 212, 255, 0.32);
  border-radius: var(--radius);
}

.list-icon svg {
  width: 23px;
  height: 23px;
}

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

.sector-grid article {
  min-height: 310px;
  padding: 0;
  overflow: hidden;
}

.sector-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sector-card-body {
  padding: 21px 22px 24px;
}

.sage {
  background: var(--white);
}

.sage-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.75fr);
  gap: 32px;
  width: min(var(--content), 100%);
  margin: 0 auto;
  padding: 32px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(40, 75, 143, 0.96), rgba(16, 32, 56, 0.98)),
    radial-gradient(circle at 82% 18%, rgba(60, 150, 53, 0.28), transparent 34%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sage-panel-copy {
  align-self: center;
}

.sage-panel-visual {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
}

.sage-panel-visual img {
  display: block;
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.sage-panel-visual span {
  margin-top: 8px;
  color: #435269;
  font-size: 0.76rem;
  font-weight: 750;
  text-align: center;
}

.sage-panel h2,
.sage-panel p,
.sage-panel .eyebrow {
  color: var(--white);
}

.check-list {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 10px;
  height: 6px;
  border-left: 2px solid #7bd4ff;
  border-bottom: 2px solid #7bd4ff;
  transform: rotate(-45deg);
}

.process {
  background: #eef3f5;
}

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

.process-steps article {
  position: relative;
  min-height: 340px;
  padding: 0;
  overflow: hidden;
}

.process-steps article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
}

.process-steps img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.process-card-body {
  padding: 21px 22px 24px;
}

.process-step {
  display: block;
  margin-bottom: 9px;
  color: var(--brand-blue);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: 48px;
  align-items: start;
  padding: 62px 5vw;
  color: var(--white);
  background: linear-gradient(135deg, #102038 0%, #132642 58%, #284b8f 100%);
}

.contact h2,
.contact .eyebrow {
  color: var(--white);
}

.contact p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-copy {
  width: min(680px, 100%);
  justify-self: end;
}

.contact-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-facts span {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.contact-form {
  display: grid;
  gap: 16px;
  width: min(520px, 100%);
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #f9fbfc;
  border: 1px solid #cfd8e2;
  border-radius: var(--radius);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(11, 119, 183, 0.18);
  border-color: var(--brand-blue);
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.form-status.is-success {
  color: var(--brand-green);
}

.form-status.is-error {
  color: #b42318;
}

.whatsapp-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 17px 0 14px;
  color: #fff;
  background: #168c4b;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(6, 48, 28, 0.24);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  color: #fff;
  background: #107a40;
  transform: translateY(-2px);
}

.whatsapp-button svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.whatsapp-button svg path:last-child {
  fill: currentColor;
  stroke: none;
}

.contact-preview {
  display: block;
  padding-top: 54px;
  padding-bottom: 54px;
}

.contact-preview-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.contact-preview .contact-copy {
  justify-self: auto;
}

.contact-preview-inner > .button {
  flex: 0 0 auto;
}

.site-footer {
  display: block;
  padding: 42px 5vw 26px;
  color: #dbe7f5;
  background: #102038;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(160px, 0.65fr));
  gap: 30px;
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 500;
}

.site-footer h2,
.site-footer h3,
.site-footer .footer-heading {
  margin: 0 0 12px;
  color: #ffffff;
}

.site-footer h2 {
  font-size: 1.08rem;
}

.site-footer h3,
.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-top: 18px;
}

.footer-social a {
  font-weight: 700;
}


.site-footer nav,
.footer-brand {
  display: grid;
  gap: 9px;
}

.footer-brand {
  max-width: 430px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #7bd4ff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  width: min(var(--content), 100%);
  padding-top: 24px;
  margin: 28px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom small {
  color: rgba(255, 255, 255, 0.58);
}

.site-nav .nav-current {
  color: var(--brand-blue);
}

.sector-page-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 430px;
  overflow: hidden;
  color: var(--white);
  background: #0d1a2c;
}

.sector-page-media,
.sector-page-overlay {
  position: absolute;
  inset: 0;
}

.sector-page-media {
  background-image: url("assets/gtpma-hero.png");
  background-position: center 44%;
  background-size: cover;
}

.sector-page-overlay {
  background:
    linear-gradient(90deg, rgba(9, 19, 34, 0.98) 0%, rgba(16, 42, 73, 0.9) 48%, rgba(11, 119, 183, 0.46) 100%),
    linear-gradient(180deg, rgba(9, 19, 34, 0.04), rgba(9, 19, 34, 0.62));
}

.sector-page-hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--content), 90%);
  padding: 52px 0;
  margin: 0 auto;
}

.sector-page-hero h1 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.sector-page-hero-content > p:not(.eyebrow) {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.04rem;
}

.page-back {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 700;
}

.page-back:hover,
.page-back:focus-visible {
  color: var(--white);
}

.page-back svg {
  width: 17px;
}

.industry-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.75fr);
  gap: 56px;
  align-items: end;
  padding: 54px max(5vw, calc((100vw - var(--content)) / 2));
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.industry-intro h2 {
  max-width: 590px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.industry-intro > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.industry-section {
  padding: 54px 5vw 62px;
}

.industry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.industry-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  min-height: 310px;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(16, 32, 56, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.industry-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-dark));
}

.industry-card:nth-child(even)::before {
  background: linear-gradient(90deg, var(--brand-green), var(--brand-blue));
}

.industry-card:hover {
  border-color: #b7d8ec;
  box-shadow: 0 18px 38px rgba(16, 32, 56, 0.11);
  transform: translateY(-3px);
}

.industry-card:nth-child(even) .industry-image {
  order: 2;
}

.industry-card:nth-child(even) .industry-body {
  order: 1;
}

.industry-image {
  position: relative;
  min-height: 310px;
  overflow: hidden;
}

.industry-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(8, 25, 44, 0.62));
  pointer-events: none;
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.industry-card:hover .industry-image img {
  transform: scale(1.035);
}

.industry-tag {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 16px;
  left: 16px;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.industry-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 38px;
}

.industry-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.12;
}

.industry-body > p {
  max-width: 520px;
  margin: 13px 0 22px;
  color: var(--muted);
}

.industry-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  padding: 19px 0 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.industry-card li {
  position: relative;
  padding-left: 19px;
  color: #34445b;
  font-size: 0.9rem;
}

.industry-card li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--brand-green);
  border-radius: 50%;
}

.industry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 22px;
}

.sector-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px max(5vw, calc((100vw - var(--content)) / 2));
  color: var(--white);
  background: linear-gradient(110deg, #102038 0%, #173f70 62%, #0b77b7 100%);
}

.sector-cta h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.sector-cta p:not(.eyebrow) {
  max-width: 650px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.sector-cta .button {
  flex: 0 0 auto;
}

.sage-page-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 470px;
  overflow: hidden;
  color: var(--white);
  background: #0b1728;
}

.sage-page-media,
.sage-page-overlay {
  position: absolute;
  inset: 0;
}

.sage-page-media {
  background-image: url("assets/sage50-official-hero.jpg");
  background-position: center;
  background-size: cover;
}

.sage-hero-product {
  position: absolute;
  right: max(3vw, calc((100vw - 1320px) / 2));
  bottom: -30px;
  z-index: 1;
  width: min(45vw, 620px);
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.32));
}

.sage-page-overlay {
  background:
    linear-gradient(90deg, rgba(8, 20, 36, 0.98) 0%, rgba(17, 46, 79, 0.92) 52%, rgba(8, 20, 36, 0.28) 100%),
    linear-gradient(180deg, rgba(8, 20, 36, 0.08), rgba(8, 20, 36, 0.7));
}

.sage-page-hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--content), 90%);
  padding: 58px 0 72px;
  margin: 0 auto;
}

.sage-page-hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.sage-page-hero-content > p:not(.eyebrow) {
  max-width: 570px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.sage-specialties {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--content), 90%);
  padding: 0;
  margin: -32px auto 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sage-specialties div {
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.sage-specialties div:last-child {
  border-right: 0;
}

.sage-specialties dt {
  color: var(--brand-blue-dark);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sage-specialties dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 700;
}

.sage-services {
  padding: 72px 5vw 62px;
}

.sage-services-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 56px;
  align-items: end;
  width: min(var(--content), 100%);
  margin: 0 auto 32px;
}

.sage-services-heading h2,
.sage-operations h2,
.sage-page-cta h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.08;
}

.sage-services-heading > p {
  margin: 0;
  color: var(--muted);
}

.sage-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.sage-service-grid article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) 1fr;
  min-height: 220px;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(16, 32, 56, 0.05);
}

.sage-service-grid article > img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  background: #edf4f8;
}

.sage-service-grid article > img.sage-image-contain {
  padding: 14px;
  object-fit: contain;
}

.sage-service-card-content {
  align-self: center;
  padding: 28px;
}

.sage-service-grid article::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--brand-blue);
}

.sage-service-grid article:nth-child(even)::after {
  background: var(--brand-green);
}

.sage-service-label {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--brand-blue-dark);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sage-service-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.22rem;
}

.sage-service-grid p {
  max-width: 470px;
  margin: 11px 0 0;
  color: var(--muted);
}

.sage-operations {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(38px, 6vw, 82px);
  padding: 62px max(5vw, calc((100vw - var(--content)) / 2));
  color: var(--white);
  background: linear-gradient(118deg, #102038 0%, #173c6a 62%, #0b77b7 100%);
}

.sage-operations .eyebrow,
.sage-page-cta .eyebrow {
  color: #7bd4ff;
}

.sage-cases ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  padding: 24px 0 0;
  margin: 24px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.sage-cases li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
}

.sage-cases li::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 7px;
  height: 7px;
  background: #6ac25e;
  border-radius: 50%;
}

.sage-method {
  align-self: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.sage-method h2 {
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.sage-method-list {
  display: grid;
  gap: 0;
  margin-top: 22px;
}

.sage-method-list article {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.sage-method-list strong {
  color: #7bd4ff;
}

.sage-method-list span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.91rem;
}

.sage-assurance {
  padding: 58px 5vw 64px;
  background: var(--white);
}

.sage-assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--content), 100%);
  margin: 0 auto;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sage-assurance-grid article {
  min-height: 310px;
  padding: 0;
  background: var(--paper);
}

.sage-assurance-grid article > img {
  display: block;
  width: 100%;
  height: 155px;
  object-fit: cover;
  background: #e8f0f5;
}

.sage-assurance-grid article > img.sage-image-contain {
  padding: 12px;
  object-fit: contain;
}

.sage-assurance-grid article > div {
  padding: 24px 26px 28px;
}

.sage-assurance-grid span {
  color: var(--brand-green);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sage-assurance-grid h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 1.12rem;
}

.sage-trademark-note {
  padding: 18px max(5vw, calc((100vw - var(--content)) / 2));
  margin: 0;
  color: #647187;
  background: #f4f7fa;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
}

.sage-assurance-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.sage-page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px max(5vw, calc((100vw - var(--content)) / 2));
  color: var(--white);
  background: #102038;
}

.sage-page-cta p:not(.eyebrow) {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.sage-page-cta .button {
  flex: 0 0 auto;
}

.footer-copy {
  text-align: right;
}

.footer-copy small {
  display: block;
  margin-top: 3px;
  color: #768296;
  font-size: 0.72rem;
}

.services-page-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 460px;
  overflow: hidden;
  color: var(--white);
  background: #0a1626;
}

.services-page-media,
.services-page-overlay {
  position: absolute;
  inset: 0;
}

.services-page-media {
  background-image: url("assets/gtpma-hero.png");
  background-position: center 42%;
  background-size: cover;
}

.service-support .services-page-media {
  background-image: url("assets/sector-empresas.jpg");
}

.service-cabling .services-page-media {
  background-image: url("assets/servicio-cableado.jpg");
}

.service-web .services-page-media,
.service-recovery .services-page-media {
  background-image: url("assets/servicio-software.jpg");
}

.service-implementation .services-page-media {
  background-image: url("assets/servicio-implementacion.jpg");
}

.services-page-overlay {
  background:
    linear-gradient(90deg, rgba(7, 18, 31, 0.98) 0%, rgba(14, 43, 73, 0.92) 50%, rgba(11, 119, 183, 0.38) 100%),
    linear-gradient(180deg, rgba(7, 18, 31, 0.05), rgba(7, 18, 31, 0.72));
}

.services-page-hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--content), 90%);
  padding: 58px 0 72px;
  margin: 0 auto;
}

.services-page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.services-page-hero-content > p:not(.eyebrow) {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.services-specialties {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--content), 90%);
  padding: 0;
  margin: -32px auto 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.services-specialties div {
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.services-specialties div:last-child {
  border-right: 0;
}

.services-specialties dt {
  color: var(--brand-blue-dark);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.services-specialties dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 700;
}

.services-detail-section {
  padding: 72px 5vw 64px;
}

.services-detail-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 56px;
  align-items: end;
  width: min(var(--content), 100%);
  margin: 0 auto 32px;
}

.services-detail-heading h2,
.services-coverage h2,
.services-page-cta h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.08;
}

.services-detail-heading > p {
  margin: 0;
  color: var(--muted);
}

.services-detail-list {
  display: grid;
  gap: 16px;
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.services-detail-list > article {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  min-height: 310px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(16, 32, 56, 0.05);
}

.services-detail-title {
  position: relative;
  min-height: 310px;
  overflow: hidden;
}

.services-detail-title::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 25, 44, 0.02) 35%, rgba(8, 25, 44, 0.9) 100%);
  pointer-events: none;
}

.services-detail-title img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.services-detail-list > article:hover .services-detail-title img {
  transform: scale(1.03);
}

.services-detail-list > article:nth-child(even) .services-detail-title {
  order: 2;
}

.services-detail-list > article:nth-child(even) .services-detail-content {
  order: 1;
}

.services-detail-caption {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 28px;
  left: 30px;
}

.services-detail-caption span {
  color: #7bd4ff;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.services-detail-caption h2 {
  max-width: 320px;
  margin: 16px 0 0;
  color: var(--white);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.12;
}

.services-detail-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 38px;
}

.services-detail-content > p {
  max-width: 700px;
  margin: 0 0 20px;
  color: var(--muted);
}

.services-detail-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 24px;
  padding: 20px 0 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.services-detail-content li {
  position: relative;
  padding-left: 18px;
  color: #34445b;
  font-size: 0.91rem;
}

.services-detail-content li::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--brand-green);
  border-radius: 50%;
}

.services-coverage {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
  padding: 62px max(5vw, calc((100vw - var(--content)) / 2));
  color: var(--white);
  background: linear-gradient(118deg, #102038 0%, #173c6a 62%, #0b77b7 100%);
}

.services-coverage .eyebrow,
.services-page-cta .eyebrow {
  color: #7bd4ff;
}

.services-coverage-heading > p:not(.eyebrow) {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.services-coverage-grid article {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(16, 32, 56, 0.05);
}

.services-coverage-grid article > img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.services-coverage-grid article > div {
  padding: 24px 24px 28px;
}

.services-coverage-grid span {
  color: var(--brand-blue);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.services-coverage-grid h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.services-coverage-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.services-coverage .services-coverage-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.services-coverage .services-coverage-grid span {
  color: #74d0fb;
}

.services-coverage .services-coverage-grid h3 {
  color: var(--white);
}

.services-coverage .services-coverage-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.services-standards {
  padding: 58px 5vw 64px;
  background: var(--white);
}

.services-standards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.services-standards-grid article {
  min-height: 190px;
  padding: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.services-standards-grid article > img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.services-standards-grid article > div {
  padding: 24px 26px 28px;
}

.services-standards-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
}

.services-standards-grid p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.services-page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px max(5vw, calc((100vw - var(--content)) / 2));
  color: var(--white);
  background: #102038;
}

.services-page-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.services-page-cta .button {
  flex: 0 0 auto;
}

.contact-page-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 450px;
  overflow: hidden;
  color: var(--white);
  background: #0a1626;
}

.contact-page-media,
.contact-page-overlay {
  position: absolute;
  inset: 0;
}

.contact-page-media {
  background-image: url("assets/sector-empresas.jpg");
  background-position: center 46%;
  background-size: cover;
}

.contact-page-overlay {
  background:
    linear-gradient(90deg, rgba(7, 18, 31, 0.98) 0%, rgba(14, 43, 73, 0.91) 50%, rgba(11, 119, 183, 0.4) 100%),
    linear-gradient(180deg, rgba(7, 18, 31, 0.04), rgba(7, 18, 31, 0.72));
}

.contact-page-hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--content), 90%);
  padding: 58px 0 72px;
  margin: 0 auto;
}

.contact-page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.contact-page-hero-content > p:not(.eyebrow) {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.contact-specialties {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--content), 90%);
  padding: 0;
  margin: -32px auto 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-specialties div {
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.contact-specialties div:last-child {
  border-right: 0;
}

.contact-specialties dt {
  color: var(--brand-blue-dark);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-specialties dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 700;
}

.contact-page-main {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 0.8fr);
  gap: clamp(42px, 6vw, 84px);
  align-items: start;
  padding: 72px max(5vw, calc((100vw - var(--content)) / 2));
}

.contact-page-info {
  max-width: 760px;
}

.contact-page-info h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.08;
}

.contact-page-info > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
}

.contact-scope {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.contact-scope article {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.contact-scope article > img {
  width: 112px;
  height: 78px;
  object-fit: cover;
  border-radius: var(--radius);
}

.contact-scope span {
  color: var(--brand-blue-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-scope p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-page-form {
  width: 100%;
  max-width: none;
  padding: 32px;
  border: 1px solid var(--line);
}

.phone-combo {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(180px, 1fr);
  gap: 12px;
}

.phone-combo select,
.phone-combo input {
  min-width: 0;
}

.phone-combo select {
  cursor: pointer;
}

.country-picker {
  position: relative;
  min-width: 0;
}

.country-results {
  position: absolute;
  right: 0;
  left: 0;
  top: calc(100% + 6px);
  z-index: 12;
  max-height: 240px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid #b8d5e8;
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(16, 32, 56, 0.14);
}

.country-option {
  display: block;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-bottom: 1px solid var(--line);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.country-option:hover,
.country-option:focus-visible {
  color: var(--brand-blue-dark);
  background: var(--brand-blue-soft);
  outline: 0;
}

.country-empty {
  padding: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.phone-field {
  max-width: 100%;
}

.phone-field-message,
.field-error {
  min-height: 18px;
  font-size: 0.78rem;
  font-weight: 550;
  line-height: 1.35;
}

.phone-field-message {
  color: var(--muted);
}

.phone-field-message.is-error,
.field-error {
  color: #b42318;
}

.contact-form input[aria-invalid="true"],
.contact-form select[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.1);
}

.contact-form input[aria-invalid="true"]:focus,
.contact-form select[aria-invalid="true"]:focus,
.contact-form textarea[aria-invalid="true"]:focus {
  outline-color: rgba(180, 35, 24, 0.12);
}

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

.contact-form-row.single {
  grid-template-columns: 1fr;
}

.contact-process {
  padding: 58px 5vw 64px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.contact-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--content), 100%);
  margin: 0 auto;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-process-grid article {
  min-height: 190px;
  padding: 0;
  background: var(--paper);
}

.contact-process-grid article > img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.contact-process-grid article > div {
  padding: 24px 26px 28px;
}

.software-page-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 460px;
  overflow: hidden;
  color: var(--white);
  background: #0b1b2f;
}

.software-page-media,
.software-page-overlay {
  position: absolute;
  inset: 0;
}

.software-page-media {
  background: url("assets/servicio-software.jpg") center 42% / cover no-repeat;
}

.software-page-overlay {
  background: linear-gradient(90deg, rgba(7, 20, 36, 0.97) 0%, rgba(13, 47, 80, 0.86) 52%, rgba(10, 67, 104, 0.35) 100%);
}

.software-page-hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--content), 90%);
  padding: 58px 0 68px;
  margin: 0 auto;
}

.software-page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.software-page-hero-content > p:not(.eyebrow) {
  max-width: 670px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.software-specialties {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--content), 90%);
  margin: -28px auto 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.software-specialties div {
  min-width: 0;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.software-specialties div:last-child {
  border-right: 0;
}

.software-specialties dt {
  color: var(--brand-blue);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.software-specialties dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 750;
}

.software-catalog {
  padding: 76px 5vw 82px;
  background: var(--paper);
}

.software-catalog > .section-heading {
  width: min(var(--content), 100%);
  margin: 0 auto 34px;
}

.software-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  width: min(var(--content), 100%);
  min-height: 430px;
  margin: 0 auto 28px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(12, 42, 75, 0.08);
}

.software-feature-image {
  min-height: 100%;
  background-position: center;
  background-size: cover;
}

.helpdesk-image {
  background-image: linear-gradient(0deg, rgba(7, 34, 61, 0.16), rgba(7, 34, 61, 0.04)), url("assets/servicio-software.jpg");
}

.software-feature-content {
  align-self: center;
  padding: 42px 48px;
}

.software-feature-content h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.software-feature-content > p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
}

.software-feature-content > .software-product-name {
  margin: 0 0 10px;
  color: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.software-capabilities {
  display: grid;
  gap: 10px;
  padding: 20px 0 22px;
  margin: 22px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.software-capabilities li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
}

.software-capabilities li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--brand-green);
  border-radius: 50%;
}

.software-solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.sage-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 18px;
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.sage-plan-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(16, 32, 56, 0.05);
}

.sage-plan-card strong {
  color: var(--brand-blue);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sage-plan-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.35rem;
}

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

.sage-plan-card ul {
  display: grid;
  gap: 9px;
  padding: 16px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.sage-plan-card li {
  color: #34445b;
  font-size: 0.92rem;
}

.software-solutions-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.software-solutions-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.software-solutions-grid article > div {
  padding: 24px;
}

.software-solutions-grid h3 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 1.35rem;
}

.software-solutions-grid article p:not(.software-label) {
  min-height: 78px;
  margin: 12px 0 18px;
  color: var(--muted);
}

.software-label {
  margin: 0;
  color: var(--brand-blue);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.software-page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 54px max(5vw, calc((100vw - var(--content)) / 2));
  color: var(--white);
  background: #122c4d;
}

.software-page-cta h2 {
  max-width: 700px;
  margin: 0;
  color: var(--white);
}

.software-page-cta p:not(.eyebrow) {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.remote-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 470px;
  overflow: hidden;
  color: var(--white);
  background: #0b1b2f;
}

.remote-hero-media,
.remote-hero-overlay {
  position: absolute;
  inset: 0;
}

.remote-hero-media {
  background-image: url("assets/servicio-software.jpg");
  background-position: center 45%;
  background-size: cover;
}

.remote-hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 17, 31, 0.98) 0%, rgba(12, 48, 82, 0.86) 54%, rgba(11, 119, 183, 0.28) 100%),
    linear-gradient(180deg, rgba(6, 17, 31, 0.04), rgba(6, 17, 31, 0.72));
}

.remote-hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--content), 90%);
  padding: 58px 0 72px;
  margin: 0 auto;
}

.remote-hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.remote-hero-content > p:not(.eyebrow) {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.remote-specialties {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--content), 90%);
  padding: 0;
  margin: -30px auto 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.remote-specialties div {
  padding: 21px 24px;
  border-right: 1px solid var(--line);
}

.remote-specialties div:last-child {
  border-right: 0;
}

.remote-specialties dt {
  color: var(--brand-blue);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.remote-specialties dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 750;
}

.remote-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.74fr);
  gap: 44px;
  align-items: center;
  padding: 76px max(5vw, calc((100vw - var(--content)) / 2)) 58px;
  background: var(--paper);
}

.remote-overview h2 {
  max-width: 640px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.08;
}

.remote-overview p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.remote-overview-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(16, 32, 56, 0.12);
}

.remote-overview-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.remote-modules {
  padding: 58px 5vw 72px;
  background: var(--white);
}

.remote-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.remote-module-grid article {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(16, 32, 56, 0.05);
}

.remote-module-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.remote-module-grid article > div {
  padding: 24px;
}

.remote-module-grid h3 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.14;
}

.remote-module-grid p:not(.software-label) {
  margin: 12px 0 0;
  color: var(--muted);
}

.remote-details {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding: 0 max(5vw, calc((100vw - var(--content)) / 2)) 72px;
  background: var(--white);
}

.remote-details-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.08;
}

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

.remote-details-grid article {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.remote-details-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
}

.remote-details-grid ul {
  display: grid;
  gap: 10px;
  padding: 18px 0 0;
  margin: 18px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.remote-details-grid li {
  position: relative;
  padding-left: 20px;
  color: #34445b;
  font-size: 0.94rem;
}

.remote-details-grid li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--brand-green);
  border-radius: 50%;
}

.remote-flow {
  padding: 0 5vw 72px;
  background: var(--white);
}

.remote-flow-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  width: min(var(--content), 100%);
  margin: 0 auto;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 32, 56, 0.98), rgba(40, 75, 143, 0.94)),
    url("assets/gtpma-hero.png") center / cover no-repeat;
  border-radius: var(--radius);
}

.remote-flow-panel h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.remote-flow-panel ol {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.remote-flow-panel li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 58px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
}

.remote-flow-panel span {
  color: #7bd4ff;
  font-size: 0.82rem;
  font-weight: 900;
}

.remote-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 54px max(5vw, calc((100vw - var(--content)) / 2));
  color: var(--white);
  background: linear-gradient(110deg, #102038 0%, #173f70 62%, #0b77b7 100%);
}

.remote-cta h2 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.08;
}

.remote-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.mobility-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 470px;
  overflow: hidden;
  color: var(--white);
  background: #0b1b2f;
}

.mobility-hero-media,
.mobility-hero-overlay {
  position: absolute;
  inset: 0;
}

.mobility-hero-media {
  background-image: url("assets/sector-turismo.jpg");
  background-position: center 48%;
  background-size: cover;
}

.mobility-hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 17, 31, 0.98) 0%, rgba(15, 54, 84, 0.88) 52%, rgba(11, 119, 183, 0.34) 100%),
    linear-gradient(180deg, rgba(6, 17, 31, 0.04), rgba(6, 17, 31, 0.72));
}

.mobility-hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--content), 90%);
  padding: 58px 0 72px;
  margin: 0 auto;
}

.mobility-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.mobility-hero-content > p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.mobility-specialties {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--content), 90%);
  padding: 0;
  margin: -30px auto 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobility-specialties div {
  padding: 21px 24px;
  border-right: 1px solid var(--line);
}

.mobility-specialties div:last-child {
  border-right: 0;
}

.mobility-specialties dt {
  color: var(--brand-blue);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mobility-specialties dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 750;
}

.mobility-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.74fr);
  gap: 44px;
  align-items: center;
  padding: 76px max(5vw, calc((100vw - var(--content)) / 2)) 58px;
  background: var(--paper);
}

.mobility-overview h2 {
  max-width: 660px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.08;
}

.mobility-overview p:not(.eyebrow) {
  max-width: 700px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.mobility-overview-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(16, 32, 56, 0.12);
}

.mobility-overview-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.mobility-modules,
.mobility-roles {
  padding: 58px 5vw 72px;
  background: var(--white);
}

.mobility-module-grid,
.mobility-role-grid {
  display: grid;
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.mobility-module-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mobility-module-grid article,
.mobility-role-grid article {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(16, 32, 56, 0.05);
}

.mobility-module-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mobility-module-grid article > div {
  padding: 24px;
}

.mobility-module-grid h3,
.mobility-role-grid h3 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.14;
}

.mobility-module-grid p:not(.software-label),
.mobility-role-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.mobility-showcase {
  display: grid;
  grid-template-columns: minmax(340px, 0.84fr) minmax(0, 1fr);
  width: min(var(--content), 90%);
  margin: 0 auto 72px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(12, 42, 75, 0.08);
}

.mobility-showcase-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.mobility-showcase-content {
  align-self: center;
  padding: 42px 48px;
}

.mobility-showcase-content h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.mobility-showcase-content > p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
}

.mobility-showcase-content ul {
  display: grid;
  gap: 10px;
  padding: 20px 0 0;
  margin: 22px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.mobility-showcase-content li {
  position: relative;
  padding-left: 22px;
  color: #34445b;
}

.mobility-showcase-content li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--brand-green);
  border-radius: 50%;
}

.mobility-role-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mobility-role-grid article {
  padding: 24px;
}

.mobility-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 54px max(5vw, calc((100vw - var(--content)) / 2));
  color: var(--white);
  background: linear-gradient(110deg, #102038 0%, #173f70 62%, #0b77b7 100%);
}

.mobility-cta h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.08;
}

.mobility-cta p:not(.eyebrow) {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.contact-process-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
}

.contact-process-grid p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    left: 5vw;
    right: 5vw;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 12px;
    border-radius: var(--radius);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--brand-blue-soft);
  }

  .nav-toggle {
    display: grid;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 54px;
  }

  .hero-metrics,
  .service-grid,
  .sector-grid,
  .process-steps,
  .section-grid.two,
  .sage-panel,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-card,
  .sector-grid article,
  .process-steps article {
    min-height: auto;
  }

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

  .software-band .section-grid.two,
  .software-list {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    justify-self: start;
  }

  .industry-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .industry-image {
    min-height: 280px;
  }

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

  .sage-specialties div:nth-child(2) {
    border-right: 0;
  }

  .sage-specialties div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .sage-services-heading,
  .sage-operations {
    grid-template-columns: 1fr;
  }

  .sage-assurance-grid {
    grid-template-columns: 1fr;
  }

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

  .services-specialties div:nth-child(2) {
    border-right: 0;
  }

  .services-specialties div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .services-detail-heading,
  .services-coverage {
    grid-template-columns: 1fr;
  }

  .contact-preview-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .contact-specialties div:nth-child(2) {
    border-right: 0;
  }

  .contact-specialties div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .contact-page-info {
    max-width: 700px;
  }

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

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

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

  .sage-hero-product {
    right: -5vw;
    width: min(58vw, 560px);
    opacity: 0.32;
  }

  .sage-page-hero h1,
  .sage-page-hero-content > p:not(.eyebrow) {
    max-width: 680px;
  }

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

  .software-specialties div:nth-child(2) {
    border-right: 0;
  }

  .software-specialties div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .software-feature {
    grid-template-columns: 1fr;
  }

  .software-feature-image {
    min-height: 340px;
  }

  .software-solutions-grid {
    grid-template-columns: 1fr;
  }

  .sage-plan-grid {
    grid-template-columns: 1fr;
  }

  .software-solutions-grid article {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  }

  .software-solutions-grid img {
    height: 100%;
    aspect-ratio: auto;
  }

  .software-page-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .remote-specialties div:nth-child(2) {
    border-right: 0;
  }

  .remote-specialties div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .remote-overview,
  .remote-details,
  .remote-flow-panel {
    grid-template-columns: 1fr;
  }

  .remote-module-grid {
    grid-template-columns: 1fr;
  }

  .remote-module-grid article {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  }

  .remote-module-grid img {
    height: 100%;
    aspect-ratio: auto;
  }

  .remote-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .mobility-specialties div:nth-child(2) {
    border-right: 0;
  }

  .mobility-specialties div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .mobility-overview,
  .mobility-showcase {
    grid-template-columns: 1fr;
  }

  .mobility-module-grid,
  .mobility-role-grid {
    grid-template-columns: 1fr;
  }

  .mobility-module-grid article {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  }

  .mobility-module-grid img {
    height: 100%;
    aspect-ratio: auto;
  }

  .mobility-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: min(176px, 52vw);
    height: 40px;
  }

  .whatsapp-button {
    right: 16px;
    bottom: 16px;
    width: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .whatsapp-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .hero-media {
    background-position: 60% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 16, 23, 0.97), rgba(10, 16, 23, 0.78)),
      linear-gradient(180deg, rgba(10, 16, 23, 0.2), rgba(10, 16, 23, 0.9));
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

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

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .sector-grid,
  .service-grid,
  .process-steps,
  .check-list {
    grid-template-columns: 1fr;
  }

  .sector-grid img,
  .process-steps img,
  .service-card > img {
    aspect-ratio: 16 / 9;
  }

  .sage-panel {
    padding: 24px;
  }

  .sage-panel-visual {
    padding: 12px;
  }

  .sage-hero-product {
    right: -28vw;
    bottom: -40px;
    width: 105vw;
    opacity: 0.18;
  }

  .sector-page-hero {
    min-height: 410px;
  }

  .sector-page-overlay {
    background: linear-gradient(90deg, rgba(9, 19, 34, 0.97), rgba(14, 39, 68, 0.82));
  }

  .sage-page-hero {
    min-height: 430px;
  }

  .sage-page-overlay {
    background: linear-gradient(90deg, rgba(8, 20, 36, 0.97), rgba(14, 42, 72, 0.82));
  }

  .sage-specialties,
  .sage-service-grid,
  .sage-cases ul {
    grid-template-columns: 1fr;
  }

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

  .sage-service-grid article > img {
    min-height: 0;
    height: 190px;
  }

  .sage-specialties div,
  .sage-specialties div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .sage-specialties div:last-child {
    border-bottom: 0;
  }

  .sage-method-list article {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .sage-page-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .services-page-hero {
    min-height: 430px;
  }

  .services-page-overlay {
    background: linear-gradient(90deg, rgba(7, 18, 31, 0.97), rgba(14, 43, 73, 0.82));
  }

  .services-specialties,
  .services-detail-list > article,
  .services-detail-content ul,
  .services-coverage-grid,
  .services-standards-grid {
    grid-template-columns: 1fr;
  }

  .services-specialties div,
  .services-specialties div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .services-specialties div:last-child {
    border-bottom: 0;
  }

  .services-detail-title {
    min-height: 230px;
  }

  .services-detail-list > article:nth-child(even) .services-detail-title,
  .services-detail-list > article:nth-child(even) .services-detail-content {
    order: initial;
  }

  .services-coverage-grid article {
    min-height: auto;
    border-right: 0;
  }

  .services-page-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .software-page-hero {
    min-height: 430px;
  }

  .software-page-overlay {
    background: linear-gradient(90deg, rgba(7, 20, 36, 0.97), rgba(13, 47, 80, 0.82));
  }

  .software-specialties,
  .software-solutions-grid article {
    grid-template-columns: 1fr;
  }

  .software-specialties div,
  .software-specialties div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .software-specialties div:last-child {
    border-bottom: 0;
  }

  .software-feature-image {
    min-height: 260px;
  }

  .software-feature-content {
    padding: 30px 24px;
  }

  .software-solutions-grid img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .software-solutions-grid article p:not(.software-label) {
    min-height: 0;
  }

  .remote-hero {
    min-height: 430px;
  }

  .remote-hero-overlay {
    background: linear-gradient(90deg, rgba(7, 20, 36, 0.97), rgba(13, 47, 80, 0.82));
  }

  .remote-specialties,
  .remote-module-grid article {
    grid-template-columns: 1fr;
  }

  .remote-specialties div,
  .remote-specialties div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .remote-specialties div:last-child {
    border-bottom: 0;
  }

  .remote-overview {
    padding-top: 58px;
  }

  .remote-overview-image img,
  .remote-module-grid img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .remote-flow-panel {
    padding: 24px;
  }

  .remote-flow-panel li {
    grid-template-columns: 38px 1fr;
  }

  .remote-details-grid {
    grid-template-columns: 1fr;
  }

  .mobility-hero {
    min-height: 430px;
  }

  .mobility-hero-overlay {
    background: linear-gradient(90deg, rgba(7, 20, 36, 0.97), rgba(13, 47, 80, 0.82));
  }

  .mobility-specialties,
  .mobility-module-grid article {
    grid-template-columns: 1fr;
  }

  .mobility-specialties div,
  .mobility-specialties div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mobility-specialties div:last-child {
    border-bottom: 0;
  }

  .mobility-overview {
    padding-top: 58px;
  }

  .mobility-overview-image img,
  .mobility-module-grid img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .mobility-showcase-image img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .mobility-showcase-content {
    padding: 30px 24px;
  }

  .contact-page-hero {
    min-height: 420px;
  }

  .contact-page-overlay {
    background: linear-gradient(90deg, rgba(7, 18, 31, 0.97), rgba(14, 43, 73, 0.82));
  }

  .contact-specialties,
  .contact-form-row,
  .contact-process-grid {
    grid-template-columns: 1fr;
  }

  .contact-specialties div,
  .contact-specialties div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-specialties div:last-child {
    border-bottom: 0;
  }

  .contact-scope article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-scope article > img {
    width: 100%;
    height: 150px;
    margin-bottom: 10px;
  }

  .contact-page-form {
    padding: 24px;
  }

  .phone-combo {
    grid-template-columns: 1fr;
  }

  .footer-copy {
    text-align: left;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .industry-grid,
  .industry-card,
  .industry-card ul {
    grid-template-columns: 1fr;
  }

  .industry-card {
    min-height: auto;
  }

  .industry-card:nth-child(even) .industry-image,
  .industry-card:nth-child(even) .industry-body {
    order: initial;
  }

  .industry-image {
    min-height: 220px;
  }

  .industry-body {
    padding: 24px;
  }

  .sector-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .section,
  .contact {
    padding: 48px 5vw;
  }

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

  .software-list-image {
    width: 100%;
    height: 150px;
  }

  .sage-panel,
  .contact-form {
    padding: 24px;
  }
}
