:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #eef4fb;
  --surface-dark: #102232;
  --surface-dark-soft: #173246;
  --line: #d7e2ee;
  --line-soft: rgba(215, 226, 238, 0.45);
  --text: #334155;
  --text-soft: #64748b;
  --text-inverse: #f8fbff;
  --blue: #4f67ad;
  --blue-strong: #2e6481;
  --blue-soft: #8ea0c8;
  --blue-accent: #abdeff;
  --shadow-lg: 0 22px 52px rgba(18, 36, 52, 0.18);
  --shadow-md: 0 14px 34px rgba(79, 103, 173, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(171, 222, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #f7f9fc 100%);
  overflow-x: hidden;
}

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

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

.site-topbar {
  background: #0c1221;
  color: var(--text-inverse);
  font-size: 14px;
}

.site-topbar__inner,
.site-header__inner,
.site-main,
.site-footer__inner,
.site-footer__bottom-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-topbar__inner {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  padding: 10px 0;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: rgba(248, 250, 252, 0.78);
  border-bottom: 1px solid rgba(215, 226, 238, 0.72);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 0;
}

.site-header__logo img {
  width: 250px;
}

.site-header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(79, 103, 173, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(79, 103, 173, 0.12);
  cursor: pointer;
}

.site-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.site-header__toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-header__toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  flex-wrap: wrap;
}

.site-nav > a,
.site-nav__trigger {
  position: relative;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--blue);
}

.site-nav > a::after,
.site-nav__trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--blue-strong), transparent);
  transition: transform 0.22s ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav__dropdown:hover .site-nav__trigger::after,
.site-nav__dropdown:focus-within .site-nav__trigger::after {
  transform: scaleX(1);
}

.site-nav__dropdown {
  position: relative;
}

.site-nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-nav__trigger::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
}

.site-nav__menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  min-width: 270px;
  margin: 0;
  padding: 16px 0 10px;
  list-style: none;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.site-nav__dropdown:hover .site-nav__menu,
.site-nav__dropdown:focus-within .site-nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.site-nav__menu a {
  display: block;
  padding: 12px 20px;
  color: var(--blue);
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.site-nav__menu a:hover,
.site-nav__menu a:focus-visible {
  background: var(--surface-soft);
}

.site-main {
  padding: 0 0 96px;
}

.home-hero {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  border-radius: 40px;
  background:
    linear-gradient(125deg, rgba(16, 34, 50, 0.96), rgba(16, 34, 50, 0.86)),
    url("/assets/portadav2/node-5.png") center/cover no-repeat;
  box-shadow: var(--shadow-lg);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(171, 222, 255, 0.18), transparent 28%),
    linear-gradient(180deg, transparent 0%, rgba(16, 34, 50, 0.28) 100%);
}

.home-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 36px;
  align-items: center;
  padding: 88px 56px;
}

.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(46, 100, 129, 0.85);
  color: var(--text-inverse);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-hero__title {
  margin: 24px 0 0;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(3.2rem, 6vw, 5.3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--text-inverse);
}

.home-hero__title span {
  color: var(--blue-accent);
}

.home-hero__text {
  max-width: 580px;
  margin: 28px 0 0;
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(233, 241, 248, 0.85);
}

.home-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.site-button,
.site-button--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.site-button {
  color: var(--surface-dark);
  background: var(--blue-accent);
  box-shadow: 0 18px 32px rgba(171, 222, 255, 0.22);
}

.site-button--ghost {
  color: var(--text-inverse);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.home-hero__visual {
  position: relative;
}

.home-hero__frame {
  overflow: hidden;
  padding: 16px;
  border-radius: 32px;
  background: rgba(248, 250, 252, 0.88);
  box-shadow: var(--shadow-lg);
}

.home-hero__frame img {
  width: 100%;
  border-radius: 22px;
}

.section {
  padding: 88px 0 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  border-radius: 36px;
  background:
    linear-gradient(125deg, rgba(16, 34, 50, 0.95), rgba(16, 34, 50, 0.82)),
    var(--page-hero-image, linear-gradient(135deg, #173246, #102232)) center/cover no-repeat;
  box-shadow: var(--shadow-lg);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(171, 222, 255, 0.18), transparent 24%),
    linear-gradient(180deg, transparent 0%, rgba(16, 34, 50, 0.28) 100%);
}

.page-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 36px;
  align-items: center;
  padding: 72px 52px;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(46, 100, 129, 0.82);
  color: var(--text-inverse);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.page-hero__title {
  margin: 22px 0 0;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--text-inverse);
}

.page-hero__title span {
  color: var(--blue-accent);
}

.page-hero__text {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(233, 241, 248, 0.84);
  font-size: 1.08rem;
  line-height: 1.8;
}

.page-hero__visual {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(248, 250, 252, 0.92);
  box-shadow: var(--shadow-lg);
}

.page-hero__visual img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.page-hero__visual--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
}

.page-hero__visual--logo img {
  width: min(100%, 420px);
  min-height: 0;
  object-fit: contain;
}

.page-hero__visual--corretaje-clean::before,
.page-hero__visual--corretaje-clean::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.page-hero__visual--corretaje-clean::before {
  top: 0;
  width: 72%;
  height: 84px;
  background: linear-gradient(90deg, rgba(185, 187, 184, 0.98) 0%, rgba(188, 190, 187, 0.94) 76%, rgba(188, 190, 187, 0) 100%);
}

.page-hero__visual--corretaje-clean::after {
  left: 18px;
  bottom: 16px;
  width: 62%;
  height: 74px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(111, 118, 123, 0.9) 0%, rgba(124, 131, 136, 0.86) 72%, rgba(124, 131, 136, 0) 100%);
}

.page-hero__visual--corretaje-clean img {
  object-position: center;
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section__title {
  margin: 0;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: #162839;
  letter-spacing: -0.04em;
}

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

.section__text {
  max-width: 480px;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(79, 103, 173, 0.18);
}

.service-card__media {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
}

.service-card__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(79, 103, 173, 0.09);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card__title {
  margin: 0;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  line-height: 1.1;
  color: #162839;
}

.service-card__copy {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.service-card__link {
  margin-top: auto;
  color: var(--blue-strong);
  font-weight: 700;
}

.content-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #f8faff, #eef3ff);
  box-shadow: var(--shadow-md);
  padding: 32px;
}

.content-panel--plain {
  background: var(--surface);
}

.content-panel__title {
  margin: 0 0 14px;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
  color: var(--blue);
  text-align: center;
}

.content-panel__intro {
  max-width: 860px;
  margin: 0 auto;
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.8;
  text-align: center;
}

.content-panel__intro + .content-panel__intro {
  margin-top: 12px;
}

.content-panel__subtitle {
  margin: 28px 0 0;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.1;
  color: var(--blue);
  text-align: center;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

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

.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  padding: 24px;
}

.content-card__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.content-card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  flex: 0 0 54px;
  background: var(--surface-soft);
  color: var(--blue);
  font-size: 1.35rem;
}

.content-card__icon img {
  width: 24px;
  height: 24px;
}

.content-card h3 {
  margin: 0;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.28rem;
  line-height: 1.12;
  color: var(--blue);
}

.content-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
}

.content-card--center {
  text-align: center;
}

.content-card__media {
  width: 104px;
  height: 104px;
  margin: 0 auto 18px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(171, 222, 255, 0.38);
  box-shadow: var(--shadow-md);
}

.content-card__meta {
  display: block;
  margin: 10px 0 12px;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.content-stack {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

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

.step-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  padding: 24px;
  text-align: center;
}

.step-card__number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--blue);
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.step-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--text);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #f8faff, #eef3ff);
  box-shadow: var(--shadow-md);
  padding: 32px;
}

.contact-panel--plain {
  background: var(--surface);
}

.contact-panel__title {
  margin: 0 0 12px;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1;
  color: var(--blue);
}

.contact-panel__text {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
}

.contact-panel__text + .contact-panel__text {
  margin-top: 12px;
}

.contact-meta {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-meta__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
}

.contact-meta__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  flex: 0 0 46px;
  background: var(--surface-soft);
  color: var(--blue);
  font-size: 1.05rem;
  font-weight: 700;
}

.contact-meta__item strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  color: var(--blue);
}

.contact-meta__item p,
.contact-meta__item a {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.site-form {
  display: grid;
  gap: 18px;
}

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

.site-field {
  display: grid;
  gap: 8px;
}

.site-field label {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--blue);
}

.site-input,
.site-textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  box-shadow: var(--shadow-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-input {
  min-height: 56px;
  padding: 0 18px;
}

.site-textarea {
  min-height: 180px;
  padding: 16px 18px;
  resize: vertical;
}

.site-input:focus,
.site-textarea:focus {
  outline: none;
  border-color: rgba(79, 103, 173, 0.55);
  box-shadow: 0 0 0 4px rgba(171, 222, 255, 0.28);
}

.site-form__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-form__status {
  font-size: 0.95rem;
  color: #2c8c4d;
}

.expertise {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 30px;
  align-items: stretch;
}

.expertise__list {
  display: grid;
  gap: 18px;
}

.feature-card,
.stats-card,
.method-step,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.feature-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
}

.feature-card__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: var(--surface-soft);
}

.feature-card__icon img {
  width: 28px;
  height: 28px;
}

.feature-card h3,
.method-step h3 {
  margin: 0;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: #162839;
}

.feature-card p,
.method-step p,
.stats-card p {
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.stats-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto;
  min-height: 100%;
  padding: 10px;
  gap: 18px;
}

.stats-card__image {
  min-height: 0;
  aspect-ratio: 16 / 8.4;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
}

.stats-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.stats-card__image video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #102232;
}

.stats-card__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  padding: 0;
}

.stats-card__badge {
  display: flex;
  align-items: center;
  min-height: 160px;
  padding: 28px 30px;
  border-radius: 22px;
  background: var(--surface-dark);
}

.stats-card__badge strong {
  display: block;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  color: var(--text-inverse);
}

.stats-card__badge span {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(233, 241, 248, 0.72);
}

.stats-card__quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 160px;
  padding: 28px 30px;
  border-radius: 22px;
  background: #f4f7fb;
}

.stats-card__quote strong {
  display: block;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  color: #162839;
}

.stats-card__quote span {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.method-step {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.method-step__number {
  margin-bottom: 22px;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(22, 40, 57, 0.12);
}

.method-step__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  margin-top: 88px;
  border-radius: 36px;
  background:
    linear-gradient(125deg, rgba(16, 34, 50, 0.95), rgba(16, 34, 50, 0.9)),
    url("/assets/portadav2/skyline-135.png") center/cover no-repeat;
  box-shadow: var(--shadow-lg);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom left, rgba(171, 222, 255, 0.12), transparent 25%);
  opacity: 0.85;
}

.cta-panel {
  position: relative;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 74px 48px;
  text-align: center;
}

.cta-panel h2 {
  max-width: 820px;
  margin: 0 auto;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--text-inverse);
}

.cta-panel p {
  max-width: 620px;
  margin: 22px auto 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(233, 241, 248, 0.78);
}

.site-footer {
  background: #0f172a;
  border-top: 1px solid #1e293b;
  color: rgba(226, 232, 240, 0.78);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) repeat(2, minmax(160px, 0.8fr)) minmax(220px, 0.95fr);
  gap: 24px;
  padding: 48px 0 34px;
}

.site-footer__brand img {
  width: 220px;
}

.site-footer__brand p {
  max-width: 320px;
  margin: 18px 0 0;
  line-height: 1.75;
}

.site-footer__title {
  margin: 0 0 14px;
  font-family: "Space Grotesk", "Inter", Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-inverse);
}

.site-footer__links {
  display: grid;
  gap: 10px;
}

.site-footer__links a {
  color: rgba(226, 232, 240, 0.78);
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--text-inverse);
}

.site-footer__contact {
  display: grid;
  gap: 10px;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer__social svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: currentColor;
}

.site-footer__bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.site-footer__bottom-inner {
  padding: 14px 0;
  font-size: 14px;
}

@media (max-width: 1180px) {
  .home-hero__inner,
  .expertise,
  .site-footer__inner,
  .page-hero__inner {
    grid-template-columns: 1fr;
  }

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

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

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

  .contact-shell,
  .site-form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  body.site-nav-open {
    overflow: hidden;
  }

  .site-topbar__inner,
  .site-footer__inner {
    justify-items: center;
    text-align: center;
  }

  .site-topbar__inner {
    justify-content: center;
    flex-wrap: wrap;
  }

  .site-header__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
  }

  .site-header__logo img {
    width: min(210px, 100%);
  }

  .site-header__toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    z-index: 70;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 148px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

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

  .site-nav > a,
  .site-nav__trigger {
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    text-align: left;
    border-bottom: 1px solid rgba(215, 226, 238, 0.8);
  }

  .site-nav > a::after,
  .site-nav__trigger::after {
    display: none;
  }

  .site-nav > a:last-of-type {
    border-bottom: 0;
  }

  .site-nav__dropdown {
    width: 100%;
    text-align: left;
  }

  .site-nav__trigger {
    justify-content: space-between;
    align-items: center;
  }

  .site-nav__trigger::before {
    order: 2;
    margin-top: -2px;
    transition: transform 0.22s ease;
  }

  .site-nav__dropdown.is-open .site-nav__trigger::before {
    transform: rotate(225deg);
  }

  .site-nav__menu {
    position: static;
    transform: none;
    margin-top: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    display: none;
    min-width: 100%;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: hidden;
  }

  .site-nav__dropdown.is-open .site-nav__menu {
    display: grid;
    gap: 2px;
    padding: 10px 0 8px;
  }

  .site-nav__menu a {
    padding: 12px 0 12px 12px;
    font-size: 14px;
    line-height: 1.45;
    border-radius: 14px;
    white-space: normal;
  }

  .site-nav__dropdown.is-open .site-nav__trigger {
    border-bottom-color: transparent;
  }

  .stats-card {
    gap: 14px;
    padding: 8px;
  }

  .stats-card__image {
    aspect-ratio: 16 / 9.5;
  }

  .stats-card__content {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .method-grid,
  .content-grid,
  .content-grid--three,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .home-hero__inner,
  .page-hero__inner,
  .cta-panel {
    padding: 40px 22px;
  }

  .home-hero__visual,
  .page-hero__visual,
  .stats-card__image {
    min-width: 0;
  }

  .page-hero__visual--logo {
    padding: 28px;
  }

  .home-hero__text,
  .page-hero__text,
  .section__text,
  .content-panel__intro,
  .contact-panel__text,
  .cta-panel p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .home-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .home-hero__actions .site-button,
  .home-hero__actions .site-button--ghost {
    width: 100%;
  }

  .feature-card {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .feature-card__icon {
    width: 56px;
    height: 56px;
  }

  .section__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .content-panel,
  .contact-panel {
    padding: 30px 22px;
  }

  .service-card__body,
  .method-step,
  .content-card,
  .step-card {
    padding: 22px 20px;
  }

  .service-card__media {
    min-height: 220px;
    object-fit: cover;
    object-position: center;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: stretch;
    text-align: left;
    gap: 28px;
  }

  .site-footer__brand img {
    width: 200px;
  }
}

@media (max-width: 640px) {
  .site-topbar__inner,
  .site-header__inner,
  .site-main,
  .site-footer__inner,
  .site-footer__bottom-inner {
    width: min(var(--max), calc(100% - 24px));
  }

  .home-hero {
    border-radius: 28px;
  }

  .home-hero__title {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .page-hero__title,
  .cta-panel h2 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
  }

  .site-topbar {
    font-size: 12px;
  }

  .site-topbar__inner {
    gap: 6px 12px;
    padding: 8px 0;
  }

  .site-header__inner {
    gap: 12px;
  }

  .site-header__logo img {
    width: min(178px, 100%);
  }

  .site-header__toggle {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .site-nav {
    padding: 12px 16px;
    border-radius: 22px;
    top: calc(100% + 12px);
    max-height: calc(100vh - 132px);
  }

  .section {
    padding-top: 64px;
  }

  .section__head {
    display: grid;
  }

  .cta-banner {
    margin-top: 64px;
    border-radius: 28px;
  }

  .home-hero__actions {
    gap: 12px;
  }

  .site-button,
  .site-button--ghost {
    min-height: 52px;
    padding: 0 22px;
    font-size: 13px;
  }

  .stats-card__image {
    aspect-ratio: 5 / 4.4;
  }

  .stats-card__badge,
  .stats-card__quote {
    padding: 24px 18px;
  }

  .stats-card__badge strong,
  .stats-card__quote strong {
    font-size: 2rem;
  }

  .method-step__number {
    font-size: 2.4rem;
    margin-bottom: 16px;
  }

  .site-footer__inner {
    padding: 38px 0 28px;
    gap: 24px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 414px) {
  .site-nav {
    padding: 10px 14px;
  }

  .site-nav > a,
  .site-nav__trigger {
    padding: 13px 0;
    font-size: 14px;
  }

  .site-nav__menu a {
    font-size: 13px;
    padding-left: 10px;
  }

  .home-hero__title,
  .page-hero__title,
  .section__title {
    word-break: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 360px) {
  .site-header__logo img {
    width: min(160px, 100%);
  }

  .site-header__toggle {
    width: 44px;
    height: 44px;
  }

  .site-topbar__inner {
    gap: 4px 10px;
    font-size: 11px;
  }

  .home-hero__inner,
  .page-hero__inner,
  .cta-panel,
  .content-panel,
  .contact-panel {
    padding-left: 18px;
    padding-right: 18px;
  }
}
