@font-face {
  font-family: "Outfit";
  src: url("/fonts/outfit-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --navy: #082f58;
  --navy-deep: #052746;
  --blue: #075ba8;
  --blue-bright: #0b6fc5;
  --blue-soft: #eaf4fc;
  --ice: #f6faff;
  --white: #ffffff;
  --ink: #15324f;
  --muted: #526b82;
  --amber: #e66b00;
  --amber-hover: #c95b00;
  --green: #0b6b48;
  --green-line: #58ae8d;
  --line: #d8e5ef;
  --surface-hero: #f7fbff;
  --navy-mid: #0a3a6b;
  --blue-pale: #9dd5fa;
  --text-on-dark: #d4e5f1;
  --text-on-dark-strong: #d6e5f0;
  --line-on-dark: #dceefa;
  --focus-ring: #ff9d45;
  --shadow: 0 6px 8px rgba(8, 47, 88, 0.11);
  --radius: 14px;
  --container: min(1180px, calc(100% - 40px));
  --font: "Outfit", Arial, sans-serif;
  --duration-fast: 180ms;
  --duration-base: 320ms;
  --duration-slow: 650ms;
  --ease-enter: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-exit: cubic-bezier(0.4, 0, 1, 1);
  --distance-sm: 8px;
  --distance-md: 24px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  line-height: 1.45;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.08;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  min-height: 44px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
  transform: translateY(-150%);
}

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

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

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition:
    border-color var(--duration-fast) ease,
    box-shadow var(--duration-fast) ease,
    background-color var(--duration-base) ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.985);
  border-color: var(--line);
  box-shadow: 0 5px 18px rgba(8, 47, 88, 0.07);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  text-decoration: none;
}

.brand svg {
  width: 43px;
  height: 51px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
  transition: transform var(--duration-base) var(--ease-enter);
}

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

.brand .brand-accent {
  stroke: var(--amber);
}

.brand span {
  display: grid;
  line-height: 0.95;
}

.brand strong {
  font-family: Georgia, serif;
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.brand small {
  margin-top: 7px;
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.42em;
}

.main-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--blue);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
}

.header-contact svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-contact span {
  display: grid;
  line-height: 1.2;
}

.header-contact strong {
  font-size: 0.875rem;
}

.header-contact small {
  margin-top: 3px;
  font-size: 0.875rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--duration-fast) ease,
    box-shadow var(--duration-fast) ease,
    background-color var(--duration-fast) ease,
    border-color var(--duration-fast) ease;
}

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

.button:active {
  transform: translateY(0);
}

.button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform var(--duration-fast) ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  color: var(--navy-deep);
  background: var(--amber);
  box-shadow: 0 9px 22px rgba(230, 107, 0, 0.22);
}

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

.button-whatsapp {
  color: var(--green);
  background: var(--white);
  border-color: var(--green-line);
}

.button-whatsapp:hover {
  background: var(--white);
  box-shadow: 0 4px 8px rgba(20, 135, 93, 0.12);
}

.header-cta {
  min-height: 46px;
  padding-inline: 18px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  background: transparent;
  border: 0;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-overlay {
  position: fixed;
  z-index: -1;
  inset: 74px 0 0;
  display: none;
  width: 100%;
  height: calc(100vh - 74px);
  padding: 0;
  background: rgba(5, 39, 70, 0.4);
  border: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) ease;
}

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

.hero-media {
  position: absolute;
  inset: 0;
  background: var(--surface-hero);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 52%;
}

.hero-media::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--surface-hero) 0%,
    rgba(247, 251, 255, 0.98) 28%,
    rgba(247, 251, 255, 0.72) 48%,
    rgba(247, 251, 255, 0.08) 72%
  );
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 500px;
  align-items: center;
}

.hero-copy {
  width: min(690px, 62%);
  padding: 62px 0 58px;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 4.25vw, 4rem);
  letter-spacing: -0.035em;
}

.hero h1 span {
  color: var(--blue-bright);
}

.hero-copy > p:not(.trust-note) {
  max-width: 55ch;
  margin-bottom: 26px;
  color: #344f68;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

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

.trust-note {
  display: flex;
  margin: 19px 0 0;
  align-items: center;
  gap: 8px;
  color: #3e5870;
  font-size: 0.78rem;
}

.trust-note svg {
  width: 20px;
  flex: 0 0 20px;
  fill: var(--green);
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.benefits {
  position: relative;
  z-index: 3;
  margin-top: -2px;
  padding: 0 0 28px;
  background: var(--white);
}

.benefit-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px 18px;
  background: var(--white);
  border: 1px solid rgba(8, 47, 88, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.benefit-grid article {
  display: grid;
  min-width: 0;
  padding: 8px 22px;
  grid-template-columns: 50px 1fr;
  align-items: start;
  gap: 14px;
  border-right: 1px solid var(--line);
}

.benefit-grid article:last-child {
  border-right: 0;
}

.line-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
}

.line-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.benefit-grid h2 {
  margin: 2px 0 7px;
  font-size: 1rem;
}

.benefit-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.section {
  padding: clamp(64px, 8vw, 100px) 0;
}

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

.eyebrow {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-note {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 600;
}

.section-title-row {
  display: flex;
  margin-bottom: 30px;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.section-title-row h2,
.compact-heading h2,
.specialist h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.1vw, 2.8rem);
  letter-spacing: -0.025em;
}

.section-support {
  max-width: 49ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.text-link span,
.product-copy a span {
  margin-left: 7px;
  font-size: 1.2em;
}

.product-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 8px rgba(8, 47, 88, 0.14);
}

.product-visual {
  position: relative;
  height: 210px;
  overflow: hidden;
  background-image: url("./assets/corporate-products.jpg");
  background-repeat: no-repeat;
  background-size: 400% auto;
  transition:
    transform var(--duration-slow) var(--ease-enter),
    filter var(--duration-slow) var(--ease-enter);
}

.product-card:hover .product-visual {
  transform: scale(1.04);
  filter: contrast(1.05);
}

.product-visual-guarantee {
  background-position: 0 28%;
}

.product-visual-rc {
  background-position: 33.333% 27%;
}

.product-visual-business {
  background-position: 66.666% 50%;
}

.product-visual-cyber {
  background-position: 100% 30%;
}

.product-visual-life {
  background-position: 33.333% 27%;
}

.product-visual-transport {
  background-position: 66.666% 50%;
}

.product-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(8, 47, 88, 0.12);
}

.product-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.product-copy {
  padding: 20px 20px 18px;
}

.product-copy h3 {
  min-height: 2.15em;
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.product-copy p {
  min-height: 3.9em;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.875rem;
}

.product-copy a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover,
.product-copy a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.specialized-solutions {
  display: grid;
  grid-auto-flow: dense;
  margin-top: 24px;
  padding: 24px;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: center;
  gap: 0;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.specialized-solutions > div {
  padding-right: 28px;
}

.specialized-solutions > div h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.specialized-solutions article {
  display: grid;
  min-height: 100%;
  padding: 10px 24px;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
}

.specialized-solutions article:last-child {
  border-right: 0;
}

.specialized-solutions h4 {
  margin: 0 0 5px;
  color: var(--navy);
  font-size: 0.95rem;
}

.specialized-solutions article p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.segments {
  background:
    radial-gradient(circle at 88% 10%, rgba(11, 111, 197, 0.08), transparent 30%),
    var(--ice);
}

.segment-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.segment-card {
  position: relative;
  display: flex;
  min-height: 165px;
  padding: 25px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition:
    transform var(--duration-base) var(--ease-enter),
    border-color var(--duration-base) ease,
    background-color var(--duration-base) ease;
}

.segment-card:hover {
  transform: translateY(-3px);
  background: #fbfdff;
  border-color: #9ec7e4;
}

.segment-featured {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  background: var(--navy);
  border-color: var(--navy);
}

.segment-featured:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
}

.segment-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
  transition:
    color var(--duration-fast) ease,
    background-color var(--duration-fast) ease,
    transform var(--duration-base) var(--ease-enter);
}

.segment-card:hover .segment-icon {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-2px);
}

.segment-icon svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.segment-card h3 {
  margin: 20px 0 0;
  font-size: 1.02rem;
}

.segment-featured h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.25rem;
}

.segment-featured p {
  max-width: 48ch;
  margin: 0;
  color: #d8e8f4;
  font-size: 0.875rem;
}

.segment-featured .segment-icon {
  color: var(--navy);
  background: var(--white);
}

.process {
  background: var(--ice);
}

.compact-heading {
  margin-bottom: 40px;
}

.process-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
}

.process-grid li {
  position: relative;
  display: grid;
  padding-right: 32px;
  grid-template-columns: 54px 25px 1fr;
  align-items: start;
  gap: 12px;
}

.process-grid li:not(:last-child)::after {
  position: absolute;
  top: 29px;
  right: 7px;
  width: 26px;
  border-top: 2px dotted #9ebbd2;
  content: "";
}

.step-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--blue);
  background: #e6f1fa;
  border-radius: 50%;
}

.step-icon svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.process-grid li > span {
  display: grid;
  width: 24px;
  height: 24px;
  margin-top: 3px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
}

.process-grid h3 {
  margin: 3px 0 7px;
  font-size: 0.96rem;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

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

.reason-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
}

.reason-grid article {
  display: grid;
  padding: 10px 24px;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 14px;
  border-right: 1px solid var(--line);
}

.reason-grid article:first-child {
  padding-left: 0;
}

.reason-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.reason-grid h3 {
  margin: 3px 0 7px;
  font-size: 0.95rem;
}

.reason-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.specialist {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 30%, rgba(27, 111, 178, 0.42), transparent 28%),
    linear-gradient(120deg, var(--navy), #064878);
  background-color: var(--navy);
}

.specialist-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(54px, 9vw, 130px);
}

.specialist-symbol {
  display: grid;
  min-height: 300px;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.specialist-symbol svg {
  width: 155px;
  fill: none;
  stroke: var(--line-on-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 7;
}

.specialist .section-note {
  color: var(--blue-pale);
}

.specialist h2 {
  margin-bottom: 24px;
  color: var(--white);
}

.specialist-copy > p:not(.section-note) {
  max-width: 66ch;
  color: var(--text-on-dark);
}

.specialist-profile {
  display: grid;
  margin-top: 28px;
}

.specialist-profile strong {
  color: var(--white);
  font-size: 1.08rem;
}

.specialist-profile span {
  margin-top: 4px;
  color: var(--text-on-dark);
  font-size: 0.88rem;
}

.specialist-profile small {
  margin-top: 6px;
  color: var(--blue-pale);
  font-size: 0.875rem;
}

.specialist-areas {
  display: flex;
  margin: 24px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.specialist-areas li {
  padding: 7px 10px;
  color: var(--line-on-dark);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  font-size: 0.875rem;
}

.trust-section {
  padding: 30px 0;
  color: var(--white);
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-section #trust-title {
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid article {
  display: grid;
  padding: 5px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.trust-grid article:first-child {
  padding-left: 0;
}

.trust-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-grid strong {
  color: var(--white);
  font-size: 0.88rem;
}

.trust-grid span {
  margin-top: 6px;
  color: #b9cfde;
  font-size: 0.875rem;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

.faq-intro {
  position: sticky;
  top: 118px;
}

.faq-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.1vw, 2.8rem);
  letter-spacing: -0.025em;
}

.faq-intro > p:last-child {
  max-width: 44ch;
  color: var(--muted);
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 68px;
  padding: 20px 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--navy);
  background: transparent;
  border: 0;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform var(--duration-base) var(--ease-enter);
}

.faq-item button[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.faq-panel p {
  max-width: 67ch;
  margin: 0;
  padding: 0 44px 22px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.js .faq-panel[hidden] {
  display: none;
}

.action {
  padding-block: 48px;
  background: var(--white);
}

.action-panel {
  display: grid;
  padding: 28px 34px;
  grid-template-columns: 62px minmax(280px, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  background: var(--blue-soft);
  border-radius: 12px;
}

.action-icon {
  color: var(--blue);
}

.action-icon svg {
  width: 58px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.action-panel h2 {
  margin-bottom: 5px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.action-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-pending {
  display: block;
  margin-top: 8px;
  color: #3e5d74;
  font-size: 0.875rem;
}

.action-panel .button {
  white-space: nowrap;
}

.site-footer {
  padding: 62px 0 max(24px, env(safe-area-inset-bottom));
  color: var(--text-on-dark-strong);
  background: linear-gradient(120deg, var(--navy-deep), #073c68);
  background-color: var(--navy-deep);
}

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

.brand-light {
  color: var(--white);
}

.brand-light small {
  color: var(--blue-pale);
}

.footer-brand p {
  max-width: 31ch;
  margin: 18px 0 0;
  color: #b7ccdb;
  font-size: 0.875rem;
}

.footer-grid h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 0.9rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-grid > div:not(.footer-brand) a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--text-on-dark-strong);
  font-size: 0.875rem;
  text-decoration: none;
}

.footer-grid > div:not(.footer-brand) a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-line {
  display: flex;
  margin-top: 48px;
  padding-top: 20px;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.legal-line p {
  margin: 0;
  color: #a9c1d2;
  font-size: 0.875rem;
}

@media (max-width: 1100px) {
  .main-nav {
    position: fixed;
    z-index: 42;
    inset: 84px 0 auto;
    display: grid;
    padding: 18px 22px 26px;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-135%);
    transition: transform var(--duration-base) var(--ease-enter);
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 2px;
    border-bottom: 1px solid var(--line);
  }

  .menu-toggle {
    display: block;
  }

  .menu-overlay {
    display: block;
    inset: 84px 0 0;
    height: calc(100vh - 84px);
    height: calc(100dvh - 84px);
  }

  .menu-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-contact {
    margin-left: auto;
  }

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

  .benefit-grid article:nth-child(2),
  .reason-grid article:nth-child(2) {
    border-right: 0;
  }

  .benefit-grid article:nth-child(n + 3),
  .reason-grid article:nth-child(n + 3) {
    margin-top: 16px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
  }

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

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

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

  .process-grid li:nth-child(2)::after {
    display: none;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .trust-grid article:nth-child(2) {
    border-right: 0;
  }

  .trust-grid article:nth-child(3) {
    padding-left: 0;
  }

  .action-panel {
    grid-template-columns: 60px 1fr auto;
  }

  .action-panel .button-whatsapp {
    grid-column: 3;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 32px, 700px);
  }

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

  .header-contact,
  .header-cta {
    display: none;
  }

  .main-nav {
    inset: 74px 0 auto;
  }

  .menu-overlay {
    inset: 74px 0 0;
    height: calc(100vh - 74px);
    height: calc(100dvh - 74px);
  }

  .hero,
  .hero-inner {
    min-height: 700px;
  }

  .hero-media {
    background: var(--surface-hero);
  }

  .hero-media img {
    position: absolute;
    bottom: 0;
    height: 58%;
    object-position: 68% 100%;
  }

  .hero-media::before {
    background: linear-gradient(
      180deg,
      var(--surface-hero) 0%,
      rgba(247, 251, 255, 0.96) 45%,
      rgba(247, 251, 255, 0.08) 75%
    );
  }

  .hero-inner {
    align-items: start;
  }

  .hero-copy {
    width: 100%;
    padding-top: 54px;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(2.45rem, 8.7vw, 4.2rem);
  }

  .section-title-row {
    display: block;
  }

  .section-support {
    margin-top: 18px;
  }

  .section-title-row .text-link {
    display: inline-block;
    margin-top: 18px;
  }

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

  .process-grid li {
    padding-right: 0;
  }

  .process-grid li::after {
    display: none;
  }

  .specialist-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .specialist-symbol {
    min-height: 220px;
  }

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

  .specialized-solutions > div {
    grid-column: 1 / -1;
    padding: 0 0 22px;
  }

  .specialized-solutions article:first-of-type {
    padding-left: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-intro {
    position: static;
  }

  .action-panel {
    grid-template-columns: 58px 1fr;
  }

  .action-panel .button {
    grid-column: auto;
  }

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

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

@media (max-width: 560px) {
  :root {
    --container: calc(100% - 26px);
  }

  .brand strong {
    font-size: 1.5rem;
  }

  .brand svg {
    width: 36px;
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .hero-copy {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 11.3vw, 3.5rem);
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-media {
    background: var(--surface-hero);
  }

  .hero-media img {
    height: 48%;
    object-position: 69% 100%;
  }

  .hero-media::before {
    background: linear-gradient(
      180deg,
      var(--surface-hero) 0%,
      rgba(247, 251, 255, 0.98) 50%,
      rgba(247, 251, 255, 0.12) 79%
    );
  }

  .benefits {
    padding-top: 20px;
  }

  .benefit-grid,
  .product-grid,
  .reason-grid,
  .segment-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid article,
  .benefit-grid article:nth-child(n),
  .reason-grid article,
  .reason-grid article:nth-child(n) {
    margin: 0;
    padding: 18px 10px;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .benefit-grid article:first-child,
  .reason-grid article:first-child {
    border-top: 0;
  }

  .product-visual {
    height: 220px;
  }

  .product-copy h3,
  .product-copy p {
    min-height: 0;
  }

  .segment-featured {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .specialized-solutions {
    padding: 22px;
    grid-template-columns: 1fr;
  }

  .specialized-solutions > div,
  .specialized-solutions article,
  .specialized-solutions article:first-of-type {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .specialized-solutions > div {
    padding-top: 0;
  }

  .specialized-solutions article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .trust-grid {
    gap: 0;
  }

  .trust-grid article,
  .trust-grid article:nth-child(n) {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .process-grid li {
    grid-template-columns: 52px 26px 1fr;
  }

  .step-icon {
    width: 52px;
    height: 52px;
  }

  .action-panel {
    padding: 26px 22px;
    grid-template-columns: 1fr;
  }

  .action-icon {
    display: none;
  }

  .action-panel .button {
    width: 100%;
  }

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

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

  .legal-line {
    flex-direction: column;
  }
}

@media (hover: none) {
  .brand:hover svg,
  .button:hover,
  .product-card:hover,
  .product-card:hover .product-visual {
    transform: none;
  }

  .product-card:hover {
    box-shadow: none;
  }

  .product-card:hover .product-visual {
    filter: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
