/* ═══════════════════════════════════════════════════════════
   MaclinSecurity Landing — main.css
   Colores controlados por variables CSS inyectadas en wp_head
   desde functions.php usando los valores del Customizer.
═══════════════════════════════════════════════════════════ */

/* ── Variables base (sobreescritas por Customizer) ─────── */
:root {
  --brand-navy:    #0d2146;
  --brand-navy-d:  #07132b;
  --brand-navy-l:  #d6e3f5;
  --brand-gold:    #e8b800;
  --brand-gold-d:  #c49d00;
  --brand-gold-l:  #fff8d6;
  --brand-dark:    #0d2146;
  --brand-mid:     #1a3a6e;
  --brand-gray:    #5b6576;
  --brand-light:   #f3f6fb;
  --brand-white:   #ffffff;
  --brand-border:  #d8e2ef;
  --success:       #25D366;
  --ff-head: 'Barlow Condensed', sans-serif;
  --ff-body: 'Barlow', sans-serif;
  --max-w:   1140px;
  --radius:  10px;
  --radius-lg: 18px;
  --shadow:    0 8px 32px rgba(13,33,70,.10);
  --shadow-lg: 0 16px 50px rgba(13,33,70,.18);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  color: var(--brand-dark);
  background: #fff;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--ff-body); }

/* ── Layout ────────────────────────────────────────────── */
.container { width: min(100%, var(--max-w)); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-sm { padding: 40px 0; }

/* ── Typography helpers ────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(232,184,0,.12);
  color: var(--brand-gold);
  border: 1px solid rgba(232,184,0,.35);
  margin-bottom: 16px;
}
.kicker {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--brand-mid);
  margin-bottom: 12px;
}
.title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.03;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--brand-dark);
}
.title span { color: var(--brand-gold); }
.text {
  font-size: 17px;
  color: var(--brand-gray);
  max-width: 700px;
  line-height: 1.65;
}

/* ── TOPBAR ────────────────────────────────────────────── */
.topbar {
  background: var(--brand-gold);
  color: var(--brand-navy);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 16px;
  letter-spacing: .02em;
}

/* ── HEADER ────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--brand-border);
}
.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { height: 48px; width: auto; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.phone {
  font-weight: 800;
  font-size: 15px;
  color: var(--brand-dark);
  white-space: nowrap;
  transition: color .2s;
}
.phone:hover { color: var(--brand-gold-d); }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn, .btn-outline, .btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 22px;
  border-radius: var(--radius);
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: .2s ease;
  text-align: center;
  white-space: nowrap;
}
.btn {
  background: var(--brand-gold);
  color: var(--brand-navy);
  font-family: var(--ff-head);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-2px); background: var(--brand-gold-d); }
.btn:active { transform: translateY(0); }
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.35);
  color: #fff;
  font-family: var(--ff-head);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn-wa {
  background: var(--success);
  color: #fff;
  font-size: 14px;
  padding: 13px 16px;
}
.btn-wa:hover { filter: brightness(.92); }
.btn-loading { display: none; }
.btn.loading .btn-label { display: none; }
.btn.loading .btn-loading { display: inline; }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #07132b 0%, #0d2146 58%, #1a3a6e 100%);
  color: #fff;
  padding: 50px 0 42px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(232,184,0,.15), transparent 30%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 34px;
  align-items: start;
}
.hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.5rem, 5.4vw, 4.5rem);
  line-height: .98;
  text-transform: uppercase;
  font-weight: 900;
  margin: 18px 0 16px;
  color: #fff;
}
.hero h1 span { color: var(--brand-gold); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.82);
  max-width: 640px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.proof-pill {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.hero-points {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}
.hero-points li {
  display: flex;
  gap: 10px;
  font-size: 16px;
  color: rgba(255,255,255,.94);
  align-items: flex-start;
}
.check {
  width: 22px; height: 22px; flex: 0 0 22px;
  border-radius: 50%; background: var(--brand-gold);
  position: relative; margin-top: 1px;
}
.check::after {
  content: "";
  position: absolute;
  left: 6px; top: 5px;
  width: 8px; height: 5px;
  border-left: 2px solid var(--brand-navy);
  border-bottom: 2px solid var(--brand-navy);
  transform: rotate(-45deg);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}

/* ── FORM CARD ─────────────────────────────────────────── */
.form-card {
  background: #fff;
  color: var(--brand-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--brand-gold);
}
.form-card h2 {
  font-family: var(--ff-head);
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--brand-dark);
}
.form-card > p {
  font-size: 14px;
  color: var(--brand-gray);
  margin-bottom: 16px;
}
.mini-alert {
  background: var(--brand-gold-l);
  border: 1px solid #f0d56f;
  color: var(--brand-navy);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}
.form-grid { display: grid; gap: 12px; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--brand-gray);
  margin-bottom: 5px;
}
label span { color: var(--brand-gold-d); }
input, select, textarea {
  width: 100%;
  border: 1.5px solid var(--brand-border);
  border-radius: 10px;
  padding: 14px;
  font: inherit;
  font-size: 15px;
  color: var(--brand-dark);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(232,184,0,.12);
}
input.invalid, select.invalid, textarea.invalid {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,.12);
}
textarea { min-height: 96px; resize: vertical; }
.privacy {
  font-size: 11px;
  color: var(--brand-gray);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}
.form-error {
  background: #fff5f5;
  border: 1px solid #fed7d7;
  color: #c53030;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 10px;
}

/* ── LOGOS BAR ─────────────────────────────────────────── */
.logos-bar { background: #fff; border-bottom: 1px solid var(--brand-border); }
.logos-wrap { display: grid; gap: 18px; padding: 26px 0; }
.logos-title {
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-gray);
}
.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 36px;
}
.logos-grid img {
  max-height: 38px;
  width: auto;
  filter: grayscale(100%);
  opacity: .7;
  transition: opacity .2s, filter .2s;
}
.logos-grid img:hover { opacity: 1; filter: grayscale(0%); }

/* ── CARDS ─────────────────────────────────────────────── */
.section-grid-3, .section-grid-4, .section-grid-5 {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}
.section-grid-3 { grid-template-columns: repeat(3, 1fr); }
.section-grid-4 { grid-template-columns: repeat(4, 1fr); }
.section-grid-5 { grid-template-columns: repeat(5, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 3px 12px rgba(13,33,70,.04);
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.card:hover {
  box-shadow: var(--shadow);
  border-color: var(--brand-gold);
  transform: translateY(-2px);
}
.card h3 {
  font-family: var(--ff-head);
  text-transform: uppercase;
  font-size: 23px;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--brand-dark);
}
.card p { font-size: 14px; color: var(--brand-gray); line-height: 1.55; }
.icon { font-size: 28px; margin-bottom: 12px; }

/* ── DARK SECTION ──────────────────────────────────────── */
.dark-section { background: var(--brand-dark); color: #fff; }
.dark-section .kicker { color: var(--brand-gold); }
.dark-section .title { color: #fff; }
.dark-section .text { color: rgba(255,255,255,.72); }
.dark-section .card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
  box-shadow: none;
}
.dark-section .card:hover {
  background: rgba(232,184,0,.08);
  border-color: rgba(232,184,0,.3);
}
.dark-section .card h3 { color: #fff; }
.dark-section .card p { color: rgba(255,255,255,.65); }

/* ── SPLIT LAYOUT ──────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

/* ── STEPS ─────────────────────────────────────────────── */
.steps { display: grid; gap: 16px; margin-top: 22px; }
.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 14px;
  padding: 16px;
}
.step-n {
  width: 36px; height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  background: var(--brand-gold);
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 900;
  font-size: 18px;
}
.step h4 { font-size: 16px; margin-bottom: 4px; color: var(--brand-dark); }
.step p { font-size: 14px; color: var(--brand-gray); }

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testimonial {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-left: 4px solid var(--brand-gold);
  border-radius: 16px;
  padding: 24px;
}
.stars { color: var(--brand-gold); font-size: 15px; margin-bottom: 10px; }
.testimonial p { font-size: 15px; color: var(--brand-dark); margin-bottom: 16px; font-style: italic; }
.author { font-size: 14px; font-weight: 800; color: var(--brand-dark); }
.role { font-size: 12px; color: var(--brand-gray); margin-top: 2px; }

/* ── CTA BAND ──────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #0d2146 0%, #102a57 100%);
  color: #fff;
  text-align: center;
}
.cta-band .kicker { color: var(--brand-gold); }
.cta-band .title { color: #fff; }
.cta-band .text { color: rgba(255,255,255,.8); margin: 0 auto; }
.cta-band .actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ── FAQ ───────────────────────────────────────────────── */
.faq { display: grid; gap: 14px; margin-top: 30px; }
.faq-item {
  border: 1px solid var(--brand-border);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--brand-gold); }
.faq-item h3 { font-size: 17px; margin-bottom: 8px; color: var(--brand-dark); }
.faq-item p { font-size: 14px; color: var(--brand-gray); line-height: 1.6; }

/* ── FOOTER ────────────────────────────────────────────── */
.footer { background: #09162f; color: rgba(255,255,255,.72); padding: 28px 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer img { height: 36px; filter: brightness(10); opacity: .8; }
.footer p, .footer a { font-size: 13px; }
.footer a:hover { color: #fff; }

/* ── THANK YOU ─────────────────────────────────────────── */
.thankyou {
  display: none;
  min-height: 100vh;
  background: var(--brand-light);
  padding: 80px 20px;
}
.thankyou.active { display: block; }
.thankyou-card {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  border-top: 5px solid var(--brand-gold);
  box-shadow: var(--shadow-lg);
  padding: 34px;
  text-align: center;
}
.thankyou-icon {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: #dff6e8;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 38px;
  color: #22863a;
}
.thankyou h1 {
  font-family: var(--ff-head);
  text-transform: uppercase;
  font-size: clamp(2rem,4vw,3rem);
  line-height: 1;
  margin-bottom: 12px;
  color: var(--brand-dark);
}
.thankyou > p { font-size: 16px; color: var(--brand-gray); margin-bottom: 22px; }
.next-steps { text-align: left; display: grid; gap: 12px; margin: 24px 0; }
.next-step {
  display: flex; gap: 12px; padding: 14px;
  border-radius: 14px; background: var(--brand-light); border: 1px solid var(--brand-border);
  align-items: flex-start;
}
.next-step strong { display: block; margin-bottom: 3px; font-size: 15px; color: var(--brand-dark); }
.next-step span { font-size: 14px; color: var(--brand-gray); }
.mini {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--brand-navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; flex: 0 0 30px; font-size: 14px;
}
.return-link {
  margin-top: 10px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-mid);
}
.return-link:hover { text-decoration: underline; }

/* ── MODAL WHATSAPP ────────────────────────────────────── */
.wa-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wa-modal.open { display: flex; }
.wa-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,19,43,.7);
  cursor: pointer;
}
.wa-modal-box {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  max-width: 660px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--brand-gold);
  z-index: 1;
  max-height: 92vh;
  overflow-y: auto;
}
.wa-modal-icon { font-size: 36px; text-align: center; margin-bottom: 10px; }
.wa-modal-box h3 {
  font-family: var(--ff-head);
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--brand-dark);
  text-align: center;
}
.wa-modal-box p {
  font-size: 14px;
  color: var(--brand-gray);
  text-align: center;
  margin-bottom: 20px;
}
.wa-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--brand-gray);
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color .15s;
}
.wa-modal-close:hover { color: var(--brand-dark); }
.wa-submit-btn { width: 100%; margin-top: 14px; }
.wa-submit-btn svg { width: 20px; height: 20px; }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .section-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .section-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .section-grid-3 { grid-template-columns: 1fr; }
  .section-grid-3[style*="1fr 1fr"] { grid-template-columns: 1fr !important; }
  .hero-copy { order: 1; }
  .form-card { order: 2; }
}
@media (max-width: 720px) {
  .header-inner { min-height: 68px; }
  .phone { display: none; }
  .form-grid.two { grid-template-columns: 1fr; }
  .section-grid-5, .section-grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-actions, .cta-band .actions { flex-direction: column; align-items: stretch; }
  .btn, .btn-outline, .btn-wa { width: 100%; justify-content: center; }
  .form-card { padding: 22px; }
  .thankyou-card { padding: 22px; }
}
@media (max-width: 480px) {
  .section-grid-5, .section-grid-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
}

/* ── SECTION VARIANTS ──────────────────────────────────── */
.section--light { background: var(--brand-light); }

/* ── CARD ACCENT TOP ───────────────────────────────────── */
.card--top-accent { border-top: 3px solid var(--brand-gold); }

/* ── SOLUTION CARDS (columna derecha) ─────────────────── */
.solution-cards {
  display: grid;
  gap: 16px;
}

/* ── TESTIMONIALS GRID ─────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── LOGOS GRID SPACED (dentro de sección de testimonios) */
.logos-grid--spaced {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--brand-border);
}

/* ── BTN-WA FULL WIDTH ─────────────────────────────────── */
.btn-wa--full {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 800;
  border-radius: var(--radius);
}

/* ── STEP h3 override (dentro de .step usa h3, no h4) ─── */
.step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--brand-dark);
  text-transform: none;
  font-family: var(--ff-body);
}
.step p { font-size: 14px; color: var(--brand-gray); line-height: 1.55; }

/* ── ACCESSIBILITY ─────────────────────────────────────── */
:focus-visible { outline: 3px solid var(--brand-gold); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ═══════════════════════════════════════════════
   VARIANTE B — Estilos específicos
   (las clases comunes ya están definidas arriba)
═══════════════════════════════════════════════ */

/* Stats en el hero de la variante B */
.b-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 1.75rem 0 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1rem 0;
}
.b-stat {
  flex: 1;
  text-align: center;
  padding: 0.25rem 1rem;
}
.b-stat strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-gold);
  line-height: 1;
  margin-bottom: 4px;
}
.b-stat span {
  font-size: 11px;
  color: rgba(255,255,255,.65);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.b-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* Alias para clases cortas usadas en page-landing-b.php
   (la plantilla usa .sec, .kicker, .ttl, .testi-g, etc.
    que son las mismas del elementor HTML pero el CSS del
    tema usa nombres distintos — resolvemos con alias) */
.sec { padding: 72px 0; }
.sec--light { background: var(--brand-light); }
.sec--cta {
  background: linear-gradient(135deg, #0d2146 0%, #102a57 100%);
  color: #fff;
}
.kicker {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--brand-mid);
  margin-bottom: 12px;
}
.ttl {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem,3.8vw,3.2rem);
  line-height: 1.03;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--brand-dark);
}
.testi-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.testi {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-left: 4px solid var(--brand-gold);
  border-radius: 16px;
  padding: 24px;
}
.testi .stars { color: var(--brand-gold); font-size: 15px; margin-bottom: 10px; }
.testi p { font-size: 15px; color: var(--brand-dark); margin-bottom: 14px; font-style: italic; line-height: 1.6; }
.testi .author { font-size: 14px; font-weight: 800; color: var(--brand-dark); }
.testi .role { font-size: 12px; color: var(--brand-gray); margin-top: 2px; }
.cta-acts { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.ftr { background: #09162f; color: rgba(255,255,255,.72); padding: 26px 0; }
.ftr-in { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.ftr-in img { height: 34px; filter: brightness(10); opacity: .8; }
.ftr-in p, .ftr-in a { font-size: 13px; }
.ftr-in a:hover { color: #fff; }
.logos-g {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px 34px;
}
.logos-g img {
  max-height: 38px;
  width: auto;
  filter: grayscale(100%);
  opacity: .7;
  transition: opacity .2s, filter .2s;
}
.logos-g img:hover { opacity: 1; filter: grayscale(0%); }
.btn-o {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 22px;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  background: transparent;
  border: 2px solid rgba(255,255,255,.35);
  color: #fff;
  font-family: var(--ff-head);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: .2s ease;
}
.btn-o:hover { border-color: #fff; background: rgba(255,255,255,.07); }

@media (max-width: 768px) {
  .testi-g { grid-template-columns: 1fr; }
  .b-stats { gap: 0; }
  .b-stat { min-width: 50%; }
  .b-stat-div { display: none; }
}
@media (max-width: 480px) {
  .b-stat { min-width: 100%; }
}
