/*
 * ASTAXI / ASTAES - sistema de secciones
 * Derivado del bloque ya existente en la landing de Financiacion (post 28)
 * para mantener identica identidad visual en todas las paginas nuevas.
 */

.axi {
  --axi-black: #000000;
  --axi-red: #D60000;
  --axi-red-dark: #b90000;
  --axi-white: #ffffff;
  --axi-soft: #f7f7f7;
  --axi-border: #e8e8e8;
  --axi-text: #1f1f1f;
  --axi-muted: #666666;

  font-family: inherit;
  color: var(--axi-text);
  background: var(--axi-white);
  overflow: hidden;
}

.axi * { box-sizing: border-box; }

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

/* ---------- HERO ---------- */

.axi__hero {
  position: relative;
  padding: 90px 0;
  background:
    radial-gradient(circle at top right, rgba(214, 0, 0, 0.18), transparent 32%),
    linear-gradient(135deg, #000000 0%, #171717 58%, #2a0000 100%);
  color: var(--axi-white);
}

.axi__hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: center;
}

.axi__hero-grid--single { grid-template-columns: minmax(0, 1fr); }

.axi__brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.axi__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--axi-white);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.axi__logo { max-width: 100%; height: auto; display: block; width: 150px; }

.axi__parent {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

a.axi__parent:hover { background: var(--axi-white); color: var(--axi-black); }

.axi__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--axi-red);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.axi__eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--axi-red);
}

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

.axi__h1 {
  margin: 0 0 22px;
  color: var(--axi-white);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 900;
  max-width: 850px;
}

.axi__lead {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.axi__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.axi__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.axi__btn--primary {
  background: var(--axi-red);
  color: var(--axi-white);
  box-shadow: 0 14px 36px rgba(214, 0, 0, 0.32);
}

.axi__btn--primary:hover { background: var(--axi-red-dark); color: var(--axi-white); }

.axi__btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--axi-white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.axi__btn--secondary:hover { background: var(--axi-white); color: var(--axi-black); }

.axi__btn--ghost {
  background: transparent;
  color: var(--axi-black);
  border: 1px solid var(--axi-border);
}

.axi__btn--ghost:hover { background: var(--axi-black); color: var(--axi-white); }

.axi__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.axi__trust span {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 700;
}

.axi__hero-card {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.axi__hero-card h2 {
  margin: 0 0 20px;
  color: var(--axi-white);
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
}

.axi__hero-card ul,
.axi__checklist ul { margin: 0; padding: 0; list-style: none; }

.axi__hero-card li {
  position: relative;
  padding: 15px 0 15px 34px;
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.axi__hero-card li:last-child { border-bottom: 0; }

.axi__hero-card li::before,
.axi__checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 15px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--axi-red);
  color: var(--axi-white);
  font-size: 13px;
  font-weight: 900;
}

/* ---------- SECCIONES ---------- */

.axi__section { padding: 90px 0; background: var(--axi-white); }
.axi__section--dark { background: var(--axi-black); color: var(--axi-white); }
.axi__section--soft { background: var(--axi-soft); }

.axi__intro { max-width: 820px; margin-bottom: 42px; }
.axi__intro--center { margin-left: auto; margin-right: auto; text-align: center; }
.axi__intro--center .axi__eyebrow { justify-content: center; }

.axi__intro h2,
.axi__split h2,
.axi__form-content h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 900;
  color: inherit;
}

.axi__intro p,
.axi__split p,
.axi__form-content p {
  margin: 0 0 14px;
  color: var(--axi-muted);
  font-size: 17px;
  line-height: 1.7;
}

.axi__section--dark .axi__intro p,
.axi__section--dark .axi__split p { color: rgba(255, 255, 255, 0.72); }

/* ---------- TARJETAS ---------- */

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

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

.axi__card {
  display: block;
  padding: 32px;
  border-radius: 24px;
  background: var(--axi-white);
  border: 1px solid var(--axi-border);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

a.axi__card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 0, 0, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.axi__card > span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--axi-red);
  font-size: 14px;
  font-weight: 900;
}

.axi__card h3 {
  margin: 0 0 12px;
  color: var(--axi-black);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
}

.axi__card p { margin: 0; color: var(--axi-muted); font-size: 16px; line-height: 1.6; }

.axi__card-more {
  display: inline-flex;
  margin-top: 18px;
  color: var(--axi-red);
  font-size: 14px;
  font-weight: 900;
}

.axi__split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.axi__split--media { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }

.axi__figure { margin: 0; }

.axi__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid var(--axi-border);
}

.axi__section--dark .axi__figure img { border-color: rgba(255, 255, 255, 0.14); }

.axi__figure figcaption {
  margin-top: 12px;
  color: var(--axi-muted);
  font-size: 13px;
  line-height: 1.5;
}

.axi__section--dark .axi__figure figcaption { color: rgba(255, 255, 255, 0.6); }

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

.axi__benefit {
  padding: 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.axi__benefit strong {
  display: block;
  margin-bottom: 8px;
  color: var(--axi-white);
  font-size: 18px;
  font-weight: 900;
}

.axi__benefit span { display: block; color: rgba(255, 255, 255, 0.7); line-height: 1.55; }

.axi__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.axi__step {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--axi-border);
  background: var(--axi-white);
}

.axi__step > div {
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--axi-black);
  color: var(--axi-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.axi__step h3 {
  margin: 0 0 10px;
  color: var(--axi-black);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.axi__step p { margin: 0; color: var(--axi-muted); font-size: 15px; line-height: 1.6; }

.axi__checklist {
  padding: 34px;
  border-radius: 28px;
  background: var(--axi-white);
  border: 1px solid var(--axi-border);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.axi__checklist li {
  position: relative;
  padding: 12px 0 12px 34px;
  color: var(--axi-text);
  font-weight: 700;
  border-bottom: 1px solid var(--axi-border);
}

.axi__checklist li:last-child { border-bottom: 0; }
.axi__checklist li::before { top: 12px; }

/* ---------- ACCESOS RAPIDOS ---------- */

.axi__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.axi__quick a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--axi-white);
  border: 1px solid var(--axi-border);
  color: var(--axi-text);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.axi__quick a::after { content: "\2192"; color: var(--axi-red); font-weight: 900; }

.axi__quick a:hover {
  border-color: var(--axi-red);
  color: var(--axi-black);
  transform: translateY(-2px);
}

/* ---------- EQUIPO ---------- */

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

.axi__member {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.axi__member strong {
  display: block;
  margin-bottom: 8px;
  color: var(--axi-white);
  font-size: 20px;
  font-weight: 900;
}

.axi__member span { display: block; color: rgba(255, 255, 255, 0.7); line-height: 1.6; font-size: 15px; }

/* ---------- OFICINAS ---------- */

.axi__offices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.axi__office {
  padding: 32px;
  border-radius: 24px;
  background: var(--axi-white);
  border: 1px solid var(--axi-border);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.axi__office h3 {
  margin: 0 0 14px;
  color: var(--axi-black);
  font-size: 24px;
  font-weight: 900;
}

.axi__office address {
  margin: 0 0 14px;
  font-style: normal;
  color: var(--axi-text);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.axi__office p { margin: 0 0 10px; color: var(--axi-muted); font-size: 15px; line-height: 1.6; }
.axi__office p:last-child { margin-bottom: 0; }

/* ---------- FORMULARIO ---------- */

.axi__form-box {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 34px;
  align-items: stretch;
  padding: 44px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(214, 0, 0, 0.28), transparent 34%),
    var(--axi-black);
  color: var(--axi-white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
}

.axi__form-content p { color: rgba(255, 255, 255, 0.72); }

.axi__form-points { display: grid; gap: 14px; margin-top: 28px; }

.axi__form-points div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.axi__form-points strong {
  display: block;
  margin-bottom: 6px;
  color: var(--axi-white);
  font-size: 16px;
  font-weight: 900;
}

.axi__form-points span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
  font-size: 14px;
}

.axi__form {
  padding: 32px;
  border-radius: 28px;
  background: var(--axi-white);
  color: var(--axi-text);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.axi__form-head { margin-bottom: 24px; }

.axi__form-head h3 {
  margin: 0 0 8px;
  color: var(--axi-black);
  font-size: 30px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.axi__form-head p { margin: 0; color: var(--axi-muted); line-height: 1.6; font-size: 15px; }

.axi__form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.axi__field { display: flex; flex-direction: column; gap: 8px; }
.axi__field--full { grid-column: 1 / -1; }

.axi__field label { color: var(--axi-black); font-size: 13px; font-weight: 900; }

.axi__field input,
.axi__field select,
.axi__field textarea {
  width: 100%;
  border: 1px solid #dddddd;
  border-radius: 14px;
  background: #fafafa;
  color: var(--axi-black);
  font-size: 15px;
  line-height: 1.3;
  padding: 14px 15px;
  outline: none;
  font-family: inherit;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.axi__field textarea { resize: vertical; min-height: 110px; }

.axi__field input:focus,
.axi__field select:focus,
.axi__field textarea:focus {
  border-color: var(--axi-red);
  background: var(--axi-white);
  box-shadow: 0 0 0 4px rgba(214, 0, 0, 0.1);
}

.axi__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.axi__privacy { margin-top: 4px; }

.axi__privacy label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }

.axi__privacy input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--axi-red);
  flex: 0 0 auto;
}

.axi__privacy span { color: var(--axi-muted); font-size: 13px; line-height: 1.5; }
.axi__privacy a { color: var(--axi-red); }

.axi__submit {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--axi-red);
  color: var(--axi-white);
  font-size: 16px;
  font-weight: 900;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(214, 0, 0, 0.28);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.axi__submit:hover {
  transform: translateY(-2px);
  background: var(--axi-red-dark);
  box-shadow: 0 18px 44px rgba(214, 0, 0, 0.34);
}

.axi__form-legal { margin: 18px 0 0; color: #777777; font-size: 12px; line-height: 1.55; }

.axi__alert {
  margin: 0 0 20px;
  padding: 16px 18px;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}

.axi__alert--ok { background: rgba(0, 140, 60, 0.12); border: 1px solid rgba(0, 140, 60, 0.35); color: #0a6b34; }
.axi__alert--ko { background: rgba(214, 0, 0, 0.1); border: 1px solid rgba(214, 0, 0, 0.35); color: #a00000; }

/* ---------- FAQ ---------- */

.axi__faq { display: grid; gap: 14px; }

.axi__faq details {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.axi__faq summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--axi-white);
  font-size: 17px;
  font-weight: 900;
  list-style: none;
}

.axi__faq summary::-webkit-details-marker { display: none; }

.axi__faq summary::after {
  content: "+";
  float: right;
  color: var(--axi-red);
  font-size: 24px;
  line-height: 18px;
  font-weight: 900;
}

.axi__faq details[open] summary::after { content: "\2013"; }

.axi__faq p { margin: 0; padding: 0 24px 22px; color: rgba(255, 255, 255, 0.72); line-height: 1.65; }

/* FAQ sobre fondo claro */
.axi__faq--light details { background: var(--axi-white); border-color: var(--axi-border); }
.axi__faq--light summary { color: var(--axi-black); }
.axi__faq--light p { color: var(--axi-muted); }

.axi__legal { padding: 26px 0; background: #111111; }
.axi__legal p { margin: 0; color: rgba(255, 255, 255, 0.58); font-size: 12px; line-height: 1.6; }

/* ---------- CTA FINAL ---------- */

.axi__cta {
  padding: 54px 44px;
  border-radius: 32px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(214, 0, 0, 0.28), transparent 40%),
    var(--axi-black);
  color: var(--axi-white);
}

.axi__cta h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.axi__cta p { margin: 0 auto 28px; max-width: 640px; color: rgba(255, 255, 255, 0.74); font-size: 17px; line-height: 1.65; }

.axi__cta .axi__actions { justify-content: center; margin-top: 0; }

/* ---------- TEXTO LARGO (paginas legales) ---------- */

.axi__prose { max-width: 860px; }
.axi__prose h2 { margin: 38px 0 14px; font-size: clamp(24px, 2.6vw, 32px); font-weight: 900; letter-spacing: -0.03em; color: var(--axi-black); }
.axi__prose h2:first-child { margin-top: 0; }
.axi__prose h3 { margin: 26px 0 10px; font-size: 20px; font-weight: 900; color: var(--axi-black); }
.axi__prose p { margin: 0 0 14px; color: var(--axi-muted); font-size: 16px; line-height: 1.75; }
.axi__prose ul { margin: 0 0 18px; padding-left: 20px; color: var(--axi-muted); font-size: 16px; line-height: 1.75; }
.axi__prose li { margin-bottom: 6px; }
.axi__prose a { color: var(--axi-red); }
.axi__prose table { width: 100%; border-collapse: collapse; margin: 0 0 20px; font-size: 15px; }
.axi__prose th,
.axi__prose td { border: 1px solid var(--axi-border); padding: 12px 14px; text-align: left; color: var(--axi-muted); }
.axi__prose th { background: var(--axi-soft); color: var(--axi-black); font-weight: 900; }

.axi__table-wrap { overflow-x: auto; }

/* ---------- BOLSA DE LICENCIAS: FILTRO ---------- */

.astaes-bolsa__license-card[hidden] { display: none !important; }

.astaes-bolsa__sin-resultados {
  margin: 24px 0 0;
  padding: 22px 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px dashed #d8d8d8;
  color: #666666;
  font-size: 16px;
  line-height: 1.6;
}

/* ---------- ENTRADAS DE NOTICIAS ----------
 * La entrada individual usa la plantilla del tema. Se le da la medida de
 * lectura, la jerarquia y los espaciados del resto del sitio, y se empuja el
 * pie al fondo cuando el articulo es corto.
 */

body.single-post {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.single-post > .elementor-location-footer,
body.single-post > footer {
  margin-top: auto;
}

body.single-post > main.site-main {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 80px;
}

body.single-post .entry-title {
  margin: 0 0 26px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 900;
  color: #111111;
}

body.single-post .entry-content p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.8;
  color: #444444;
}

body.single-post .entry-content h2 {
  margin: 34px 0 14px;
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111111;
}

body.single-post .entry-content a { color: #D60000; }

body.single-post .entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

@media (max-width: 767px) {
  body.single-post > main.site-main {
    width: calc(100% - 28px);
    padding: 40px 0 56px;
  }
}

/* ---------- CABECERA EN MOVIL ----------
 * El desplegable del menu hereda el ancho del contenedor del widget, que en
 * movil solo ocupa la franja del boton. Se ancla al contenedor de la cabecera
 * para que ocupe todo el ancho de la pantalla.
 */

@media (max-width: 767px) {
  .elementor-location-header > .elementor-element.e-con {
    position: relative;
  }

  .elementor-location-header .e-child,
  .elementor-location-header .e-con-inner,
  .elementor-location-header .elementor-widget-nav-menu,
  .elementor-location-header .elementor-widget-nav-menu > .elementor-widget-container {
    position: static;
  }

  .elementor-location-header .elementor-nav-menu--dropdown.elementor-nav-menu__container {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    max-width: 100%;
    z-index: 999;
  }

  .elementor-location-header .elementor-nav-menu--dropdown a.elementor-item,
  .elementor-location-header .elementor-nav-menu--dropdown a.elementor-sub-item {
    padding-left: 20px;
    padding-right: 20px;
    white-space: normal;
  }
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
  .axi__hero-grid,
  .axi__split,
  .axi__split--media,
  .axi__form-box { grid-template-columns: 1fr; }

  .axi__cards,
  .axi__cards--4,
  .axi__steps,
  .axi__team { grid-template-columns: repeat(2, 1fr); }

  .axi__hero { padding: 70px 0; }
  .axi__section { padding: 70px 0; }
}

@media (max-width: 767px) {
  .axi__container { width: min(100% - 28px, 1180px); }

  .axi__hero { padding: 54px 0; }
  .axi__brand-row { gap: 10px; }
  .axi__logo-wrap { width: 100%; }
  .axi__logo { width: 140px; }

  .axi__h1 { font-size: 38px; }
  .axi__lead { font-size: 17px; }

  .axi__actions { flex-direction: column; }
  .axi__btn { width: 100%; }

  .axi__trust { gap: 8px; }
  .axi__trust span { width: 100%; justify-content: center; }

  .axi__hero-card,
  .axi__card,
  .axi__checklist,
  .axi__form,
  .axi__office,
  .axi__member { padding: 24px; border-radius: 22px; }

  .axi__section { padding: 58px 0; }

  .axi__cards,
  .axi__cards--2,
  .axi__cards--4,
  .axi__steps,
  .axi__benefits,
  .axi__team,
  .axi__offices,
  .axi__form-grid { grid-template-columns: 1fr; }

  .axi__form-box { padding: 24px; border-radius: 26px; }

  .axi__quick a { width: 100%; justify-content: space-between; }

  .axi__intro { margin-bottom: 30px; }

  .axi__intro h2,
  .axi__split h2,
  .axi__form-content h2 { font-size: 32px; }

  .axi__form-head h3 { font-size: 26px; }

  .axi__cta { padding: 34px 22px; border-radius: 26px; }
}
