/* ═══════════════════════════════
   TOKENS — paleta real del diseño
═══════════════════════════════ */
:root {
  /* ── HERO ──
     El azul real = fondo sólido ~#18529A
     + foto del obrero al 35% opacity
     = efecto de azul medio con textura                 */
  --hero-bg:        #18529A;
  --hero-photo-op:  1;          /* foto limpia, sin tinte adicional */
  --hero-grad:      transparent; /* sin overlay de color */

  /* ── BLUES ── */
  --blue:           #1460a0;   /* CTA buttons, dots, checks */
  --blue-hover:     #0d4a80;
  --blue-icon:      #0d5c93;   /* SVG icons — fijo del archivo */
  --blue-form-title:#0f3a6e;   /* "Ver para creer" dentro del form */
  --blue-pain:      #d4e8f8;   /* fondo sección pain points */

  /* ── TEXTOS ── */
  --text-dark:      #18243a;
  --text-mid:       #4a5568;
  --text-light:     rgba(255,255,255,0.78);
  --text-lighter:   rgba(255,255,255,0.68);

  /* ── FORM / INPUTS ── */
  --input-bg:       #F8FAFC;
  --input-border:   #CBD5E1;
  --input-text:     #334155;
  --form-shadow:    0 12px 40px rgba(10,20,50,0.22), 0 2px 8px rgba(10,20,50,0.10);

  /* ── NEUTROS ── */
  --white:          #FFFFFF;
  --gray-bg:        #F5F7FA;   /* FAQ fondo */
  --gray-light:     #E8EDF4;
  --gray-mid:       #CBD5E1;
  --gray-text:      #4a5568;
  --dark:           #18243a;

  /* ── SOMBRAS ── */
  --sh:    0 2px 16px rgba(10,20,50,0.09);
  --sh-lg: 0 8px 40px rgba(10,20,50,0.16);

  /* ── ESTRUCTURA ── */
  --navy:  #0f3a6e;   /* footer, navbar */
  --font:  'Inter', system-ui, -apple-system, sans-serif;
  --r:     10px;
  --r-lg:  14px;
  --ease:  .22s ease;
  --w:     1200px;
  --px:    clamp(16px, 5vw, 64px);
}

/* ═══════════════════════════════
   RESET
═══════════════════════════════ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html {scroll-behavior:smooth}
body {font-family:var(--font);color:var(--dark);background:var(--white);line-height:1.6;-webkit-font-smoothing:antialiased}
img  {max-width:100%;height:auto;display:block}
a    {color:inherit;text-decoration:none}
ul   {list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}

.container{width:100%;max-width:var(--w);margin-inline:auto;padding-inline:var(--px)}

/* ═══════════════════════════════
   NAVBAR
═══════════════════════════════ */
.navbar{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:transparent;           /* misma transparencia que el hero */
  transition:background var(--ease),box-shadow var(--ease);
}
.navbar.scrolled{
  background:var(--navy);
  backdrop-filter:blur(10px);
  box-shadow:0 2px 20px rgba(10,20,50,.30);
}
.navbar__inner{
  display:flex;align-items:center;justify-content:space-between;
  height:90px;
}
.navbar__logo-kong  img{height:80px;width:auto}
.navbar__logo-kairo img{height:66px;width:auto}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero{
  position:relative;
  min-height:100svh;
  padding-top:70px;
  background:var(--hero-bg);
  overflow:visible;
  display:flex;
  flex-direction:column;
}

/* foto del obrero — ocupa todo, más visible en la derecha */
.hero__bg{
  position:absolute;inset:0;z-index:0;
}
.hero__bg img{
  width:100%;height:100%;
  object-fit:cover;
  object-position:65% center;
  opacity:var(--hero-photo-op);
}

/* overlay: desactivado — foto limpia */
.hero__overlay{display:none}

/* decorativos — capas de profundidad */
.hero__dec--glow-r{
  position:absolute;
  right:60px;top:50%;
  transform:translateY(-50%);
  width:380px;height:380px;
  border-radius:50%;
  background:rgba(255,255,255,.06);
  filter:blur(60px);
  z-index:1;pointer-events:none;
}
.hero__dec--glow-l{
  position:absolute;
  left:-80px;top:40%;
  width:300px;height:300px;
  border-radius:50%;
  background:rgba(255,255,255,.04);
  filter:blur(70px);
  z-index:1;pointer-events:none;
}

/* texto hero — izquierda, bajado */
.hero__wrapper{
  position:relative;z-index:20;  /* encima del mockup siempre */
  display:flex;
  align-items:flex-end;
  padding-top:clamp(40px,6vw,64px);
  padding-bottom:clamp(80px,10vw,140px);
}
.hero__left{
  max-width:720px;
  text-align:left;
}

/* ── copy ── */
.hero__title{
  font-family:'Montserrat',sans-serif;
  font-size:clamp(2.6rem,4.2vw,3.8rem);
  font-weight:900;
  font-style:italic;
  color:#fff;
  line-height:1.08;
  margin-bottom:20px;
}

.hero__sub{
  font-family:'Montserrat',sans-serif;
  font-size:clamp(1rem,1.5vw,1.15rem);
  font-style:italic;
  font-weight:600;
  color:#fff;
  line-height:1.75;
  margin-bottom:12px;
}
.hero__sub strong{color:#fff;font-style:italic}

.hero__verifactu{
  font-family:'Montserrat',sans-serif;
  font-size:1rem;
  font-weight:600;
  font-style:italic;
  color:#fff;
  line-height:1.55;
  margin-bottom:26px;
}

/* ── form card (base — sobrescrita por el bloque del panel) ── */
.hero__form-box{
  background:var(--white);
  border-radius:var(--r-lg);
}

.hero__form-title{
  font-family:'Montserrat',sans-serif;
  font-size:1.8rem;
  font-weight:800;
  font-style:italic;
  color:var(--blue);
  margin-bottom:6px;
  text-align:center;
}
.hero__form-subtitle{
  font-size:1.05rem;
  font-style:italic;
  color:var(--text-mid);
  margin-bottom:20px;
  text-align:center;
}

.hf-group{margin-bottom:9px}
.hf-group input{
  width:100%;
  padding:10px 14px;
  border:1.5px solid var(--input-border);
  border-radius:7px;
  font-family:var(--font);
  font-size:.87rem;
  color:var(--input-text);
  background:var(--input-bg);
  outline:none;
  transition:border-color var(--ease),box-shadow var(--ease);
}
.hf-group input::placeholder{color:#94A3B8}
.hf-group input:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(20,96,160,.13);
  background:var(--white);
}
.hf-group input.invalid{border-color:#dc2626}
.hf-error{display:block;font-size:.7rem;color:#dc2626;min-height:12px;margin-top:2px}

.hf-check{
  display:flex;align-items:center;gap:8px;
  margin-bottom:13px;
}
.hf-check input[type="checkbox"]{
  width:14px;height:14px;flex-shrink:0;
  accent-color:var(--blue);cursor:pointer;
}
.hf-check label{font-size:.76rem;color:var(--text-mid);cursor:pointer}
.hf-check label a{color:var(--blue);text-decoration:underline}

.btn-cta-hero{
  width:100%;
  padding:12px;
  background:var(--blue);
  color:var(--white);
  font-family:var(--font);
  font-size:.85rem;font-weight:700;
  letter-spacing:.06em;
  border-radius:7px;
  box-shadow:0 4px 14px rgba(20,96,160,.38);
  transition:background var(--ease),transform var(--ease),box-shadow var(--ease);
}
.btn-cta-hero:hover{
  background:var(--blue-hover);
  transform:translateY(-1px);
  box-shadow:0 8px 22px rgba(13,74,128,.45);
}

.hf-success{
  margin-top:10px;padding:10px 14px;
  background:#f0fdf4;border:1.5px solid #86efac;
  border-radius:8px;font-size:.81rem;color:#15803d;
  font-weight:600;text-align:center;
}

.btn__spinner{
  display:inline-block;width:16px;height:16px;
  border:2px solid rgba(255,255,255,.4);
  border-top-color:var(--white);
  border-radius:50%;
  animation:spin .7s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}

/* ── panel: 20% en hero, 80% en no-altere ── */
.hero__panel{
  position:absolute;
  bottom:0;left:0;right:0;
  z-index:10;
  transform:translateY(80%);
}
.hero__panel-inner{
  display:flex;
  justify-content:center;
}

/* card: contenedor relativo, form ocupa todo el ancho */
.hero__panel-card{
  position:relative;
  width:600px;
  max-width:96vw;
}

/* form: ocupa toda la card */
.hero__form-box{
  width:100%;
  background:#F3F4F7;
  border:1px solid #F3F4F7;
  border-radius:var(--r-lg);
  padding:32px 36px 28px;
  box-shadow:0 8px 40px rgba(15,23,42,.14);
}

/* variante: card que envuelve el formulario embebido de Brevo
   (mismo gris que el fondo del propio formulario, sin marco azul, para que no se note el borde) */
.hero__form-box--brevo{
  background:#F3F4F7;
  border-color:#F3F4F7;
  padding:24px 20px 18px;
  overflow:hidden;
}

/* mockup: absoluto a panel-card, esquina sup-der, no depende del form-box */
.hero__mockup-wrap{
  position:absolute;
  top:0;
  right:-180px;
  transform:translateY(-72%);   /* sube 72% de la altura del mockup sobre el form */
  width:clamp(200px,32vw,420px);
  pointer-events:none;
  z-index:2;
}
.hero__mockup{
  width:100%;
  transform:rotate(5deg);
  filter:drop-shadow(0 20px 44px rgba(10,20,50,.36));
  animation:float 4.5s ease-in-out infinite;
}
@keyframes float{
  0%,100%{transform:rotate(5deg) translateY(0)}
  50%    {transform:rotate(5deg) translateY(-9px)}
}

/* ═══════════════════════════════
   NO ALTERE
═══════════════════════════════ */
.no-altere{
  background:var(--white);
  padding-top:var(--panel-offset, clamp(380px,38vw,460px));
  padding-bottom:clamp(48px,6vw,80px);
  text-align:center;
  border-bottom:1px solid var(--gray-light);
}
.no-altere__inner{max-width:860px;margin-inline:auto}

.no-altere__title{
  font-family:'Montserrat',sans-serif;
  font-size:clamp(1.55rem,2.6vw,2.1rem);
  font-weight:800;
  font-style:italic;
  color:var(--blue);
  margin-bottom:14px;
  line-height:1.2;
}
.no-altere__sub{
  font-size:clamp(.9rem,1.4vw,1rem);
  color:var(--gray-text);line-height:1.7;
  margin-bottom:4px;
}
.no-altere__sub:last-of-type{ margin-bottom:28px }
.no-altere__sub strong{color:var(--dark);font-weight:700}
.na-hl{
  color:var(--gray-text);
  font-weight:700;
  text-decoration:underline;
  text-decoration-color:var(--blue);
  text-decoration-thickness:6px;
  text-underline-offset:6px;
}

.no-altere__brand{
  display:flex;align-items:center;justify-content:center;
  gap:14px;flex-wrap:nowrap;
}
.na-kong-group{
  display:flex;align-items:center;gap:0;
}
.na-kairo{height:36px;width:auto;filter:brightness(0) saturate(0) opacity(0.45)}
.na-sep  {font-size:.85rem;color:var(--gray-text);white-space:nowrap}
.na-kong{
  height:36px;
  width:auto;
}
.na-brand-name{font-size:.95rem;font-weight:600;color:rgba(0,0,0,0.45);white-space:nowrap}
.na-br { display:none }

/* ═══════════════════════════════
   PAIN POINTS
═══════════════════════════════ */
.pain{
  background:linear-gradient(to bottom, var(--blue) 50%, var(--white) 50%);
  padding-top:clamp(52px,6vw,80px);
  padding-bottom:clamp(52px,6vw,80px);
}

.pain__title{
  font-size:clamp(1.4rem,2.4vw,2rem);
  font-weight:800;color:#fff;
  text-align:center;
  line-height:1.25;
  margin-bottom:clamp(32px,4vw,52px);
}
.pain__br{display:block}

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

.pain__card{
  background:#EBF5FF;
  border:1px solid #C3D9F5;
  border-radius:var(--r-lg);
  padding:30px 26px 56px;
  box-shadow:var(--sh-lg);
  text-align:center;
}

.pain__icon{width:64px;height:64px;margin-bottom:18px;margin-inline:auto}
.pain__icon img{width:100%;height:100%;object-fit:contain;mix-blend-mode:multiply}

.pain__card h3{
  font-size:.75rem;
  font-weight:800;
  letter-spacing:.06em;
  color:var(--blue-icon);
  margin-bottom:10px;
  line-height:1.35;
}
.pain__card p{font-size:.87rem;color:var(--gray-text);line-height:1.7}

/* ═══════════════════════════════
   SOLUCIÓN
═══════════════════════════════ */
.solution{
  background:var(--white);
  padding-block:clamp(52px,6vw,80px);
}

.solution__title{
  font-size:clamp(1.4rem,2.4vw,2rem);
  font-weight:800;color:var(--dark);
  text-align:center;
  line-height:1.25;
  margin-bottom:clamp(32px,4vw,52px);
}

.solution__grid{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:clamp(28px,4vw,60px);
  align-items:start;
  margin-bottom:36px;
}

.solution__img{border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--sh-lg)}
.solution__img img{width:100%;height:100%;object-fit:cover}

/* contenido derecha */
.solution__label{
  font-size:.73rem;font-weight:800;letter-spacing:.1em;
  color:var(--blue);margin-bottom:10px;
}
.solution__desc{
  font-size:.9rem;color:var(--gray-text);line-height:1.7;
  margin-bottom:18px;
}

.btn-dosier{
  display:inline-block;
  padding:10px 24px;
  border:2px solid var(--blue);
  border-radius:7px;
  font-size:.82rem;font-weight:700;
  letter-spacing:.06em;color:var(--blue);
  transition:background var(--ease),color var(--ease);
}
.btn-dosier:hover{background:var(--blue);color:var(--white)}

.solution__sep{
  border:none;border-top:1px solid var(--gray-light);
  margin-block:22px;
}
.solution__completa-label{
  font-size:.7rem;font-weight:800;letter-spacing:.12em;
  color:var(--gray-mid);margin-bottom:16px;
}

.solution__module{
  display:flex;gap:13px;align-items:flex-start;margin-bottom:18px;
}
.sm-dot{flex-shrink:0;width:12px;height:12px;border-radius:50%;margin-top:5px}
.sm-dot--blue {background:var(--blue)}
.sm-dot--green{background:#17a84a}

.solution__module strong{
  display:block;font-size:.83rem;font-weight:800;
  color:var(--dark);margin-bottom:3px;letter-spacing:.04em;
}
.solution__module a{ text-decoration:none }
.solution__module a:hover strong{ text-decoration:underline }
.solution__module p{font-size:.83rem;color:var(--gray-text);line-height:1.6}

/* brand CENTRADO debajo del grid */
.solution__brand{
  display:flex;align-items:center;justify-content:center;
  gap:12px;flex-wrap:wrap;
  padding-top:8px;
}
.sb-kairo     {height:32px;width:auto;filter:brightness(0) saturate(0) opacity(0.45)}
.sb-sep       {font-size:.85rem;color:var(--gray-text);white-space:nowrap}
.sb-kong      {height:32px;width:auto}
.sb-brand-name{font-size:.95rem;font-weight:600;color:rgba(0,0,0,0.45);white-space:nowrap}

/* ═══════════════════════════════
   TRUST / VERIFACTU
═══════════════════════════════ */
.trust{
  background:var(--blue);
  padding-block:clamp(52px,6vw,80px);
  overflow:hidden;
  position:relative;
}

.trust__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(28px,4vw,60px);
  align-items:center;
  position:relative;
}

/* imagen circular: absoluta para no afectar al grid */
.trust__img{
  position:absolute;
  right:-40px;
  top:50%;
  transform:translateY(-50%);
  border-radius:50%;
  overflow:hidden;
  width:clamp(280px,38vw,460px);
  aspect-ratio:1/1;
  box-shadow:0 8px 48px rgba(0,0,0,.35);
}
.trust__img img{width:100%;height:100%;object-fit:cover}

.trust__content{
  display:flex;flex-direction:column;gap:28px;
}

.trust__title{
  font-family:'Montserrat',sans-serif;
  font-size:clamp(1.4rem,2.4vw,2rem);
  font-weight:800;
  font-style:italic;
  color:#fff;
  line-height:1.2;
}

.trust__list{display:flex;flex-direction:column;gap:18px}

.trust__list li{
  display:flex;align-items:center;gap:16px;
  font-size:clamp(.85rem,1.2vw,.95rem);
  font-weight:700;letter-spacing:.05em;
  color:#fff;
}
.trust__check{
  flex-shrink:0;
  width:96px;height:96px;
  background:var(--blue);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  padding:18px;
}
.trust__check img{width:100%;height:100%;object-fit:contain}

.trust__list-last{ list-style:none }

.trust__last-row{
  display:flex;
  align-items:center;
  gap:20px;
}

.trust__last-item{
  display:flex;
  align-items:center;
  gap:16px;
  font-size:clamp(.85rem,1.2vw,.95rem);
  font-weight:700;
  letter-spacing:.05em;
  color:#fff;
}

.trust__verifactu{
  height:44px;width:auto;
  background:#fff;
  border-radius:8px;
  padding:6px 14px;
  object-fit:contain;
  flex-shrink:0;
}

/* ═══════════════════════════════
   FAQ
═══════════════════════════════ */
.faq{
  background:var(--gray-bg);
  padding-block:clamp(52px,6vw,80px);
}

.faq__header{
  text-align:center;
  max-width:700px;
  margin-inline:auto;
  margin-bottom:36px;
}
.faq__tag{
  font-size:.72rem;font-weight:800;letter-spacing:.16em;
  text-transform:uppercase;color:var(--blue);
  margin-bottom:12px;
}
.faq__title{
  font-size:clamp(1.3rem,2.2vw,1.85rem);
  font-weight:800;
  color:var(--blue);
  line-height:1.25;
}

.faq__list{
  max-width:800px;margin-inline:auto;
  display:flex;flex-direction:column;gap:8px;
}

.faq__item{
  background:var(--white);
  border:2.5px solid var(--blue);
  border-radius:var(--r);
  overflow:hidden;
  box-shadow:var(--sh);
  transition:border-color var(--ease),box-shadow var(--ease);
}
.faq__item--open,
.faq__item.open{
  border-color:var(--blue);
  box-shadow:0 4px 18px rgba(20,96,160,.12);
}

.faq__q{
  width:100%;display:flex;align-items:center;justify-content:space-between;
  gap:12px;padding:16px 22px;
  text-align:left;
  font-size:.88rem;font-weight:600;color:var(--dark);
  transition:color var(--ease);
}
.faq__q:hover{color:var(--blue)}
.faq__item--open .faq__q,
.faq__item.open .faq__q{color:var(--blue)}

.faq__icon{
  width:17px;height:17px;flex-shrink:0;
  color:var(--gray-mid);
  transition:transform var(--ease),color var(--ease);
}
.faq__item--open .faq__icon,
.faq__item.open .faq__icon{transform:rotate(180deg);color:var(--blue)}

.faq__a{
  max-height:0;overflow:hidden;
  transition:max-height .36s ease;
}
.faq__a--open,
.faq__a.open{max-height:500px}

.faq__a p{
  padding:0 22px 18px;
  font-size:.86rem;color:var(--gray-text);line-height:1.75;
}
.faq__a p a{color:var(--blue);font-weight:700;text-decoration:underline}

.faq__closing{
  text-align:center;
  margin-top:32px;
  font-size:.98rem;
  font-weight:600;
  color:var(--dark);
}
.faq__closing a{
  color:var(--blue);
  font-weight:800;
  text-decoration:underline;
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.footer{
  background:var(--navy);
  padding-block:clamp(36px,5vw,52px);
  border-top:1px solid rgba(255,255,255,.06);
}
.footer__inner{
  display:flex;flex-direction:column;align-items:center;gap:12px;
  text-align:center;
}
.footer__logo{height:24px;width:auto;opacity:.75}
.footer__tag{font-size:.82rem;color:rgba(255,255,255,.42)}
.footer__tag strong{color:rgba(255,255,255,.62)}
.footer__legal{font-size:.73rem;color:rgba(255,255,255,.26)}
.footer__legal a{color:rgba(255,255,255,.38);text-decoration:underline}
.footer__legal a:hover{color:rgba(255,255,255,.7)}

/* ═══════════════════════════════
   SCROLL REVEAL
═══════════════════════════════ */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .5s ease,transform .5s ease}
.reveal.visible{opacity:1;transform:none}
.reveal--d1{transition-delay:.1s}
.reveal--d2{transition-delay:.2s}

/* ═══════════════════════════════
   RESPONSIVE ≤ 1024px
═══════════════════════════════ */
@media(max-width:1024px){
  .solution__grid   { grid-template-columns:240px 1fr }
  .hero__panel-card { width:92vw }
  .hero__mockup-wrap{ width:clamp(160px,22vw,300px); right:-10px }
}

/* ═══════════════════════════════
   RESPONSIVE ≤ 768px
═══════════════════════════════ */
@media(max-width:768px){
  /* navbar */
  .navbar__inner          { height:64px }
  .navbar__logo-kong  img { height:48px }
  .navbar__logo-kairo img { height:38px }

  /* hero */
  .hero__wrapper    { padding-bottom:60px }
  .hero__title      { font-size:clamp(1.8rem,5vw,2.4rem) }
  .hero__sub        { font-size:.9rem }
  .hero__verifactu  { font-size:.82rem }
  .hero__panel-card { width:94vw }
  .hero__mockup-wrap{ width:140px; right:-8px; transform:translateY(-60%) }
  .hero__form-box   { padding:24px 20px 22px }

  /* no-altere */
  .no-altere        { padding-top:var(--panel-offset, 420px) }
  .no-altere__title { font-size:1.4rem }
  .no-altere__sub   { margin-bottom:8px; line-height:1.6; font-size:.75rem; text-align:center }
  .no-altere__sub:last-of-type { margin-top:0; font-size:.72rem; line-height:2.4 }
  .na-br { display:block }
  .no-altere__brand { flex-wrap:wrap; gap:8px; margin-top:18px }
  .na-kairo         { height:28px }
  .na-kong          { height:28px }
  .na-sep           { font-size:.78rem }
  .na-brand-name    { font-size:.85rem }

  /* pain */
  .pain             { background:var(--blue) }
  .pain__title      { font-size:1.2rem }
  .pain__grid       { grid-template-columns:1fr; gap:14px }
  .pain__br         { display:none }
  .pain__card       { padding:24px 20px 36px }

  /* solution */
  .solution__title  { font-size:1.3rem }
  .solution__grid   { grid-template-columns:1fr }
  .solution__img    { max-width:240px; margin-inline:auto }

  /* trust */
  .trust__title     { font-size:1.3rem }
  .trust__grid      { grid-template-columns:1fr }
  .trust__img{
    position:relative;right:auto;top:auto;
    transform:none;
    width:clamp(220px,65vw,340px);
    margin:24px auto 0;
  }
  .trust__last-row  { flex-direction:column; align-items:flex-start; gap:10px }
  .trust__verifactu { height:36px }

  /* faq */
  .faq__title       { font-size:1.1rem }
  .faq__q           { font-size:.82rem; padding:14px 16px }
  .faq__a p         { font-size:.82rem }

  /* footer */
  .footer__inner    { gap:8px }
}

/* ═══════════════════════════════
   RESPONSIVE ≤ 480px
═══════════════════════════════ */
@media(max-width:480px){
  /* hero */
  .hero__title      { font-size:1.55rem }
  .hero__panel-card { width:98vw }
  .hero__mockup-wrap{ width:120px; right:-4px; transform:translateY(-55%) }
  .hero__form-box   { padding:20px 14px 18px }
  .hero__form-title { font-size:1.3rem }

  /* no-altere */
  .no-altere__brand { flex-direction:column; align-items:center; gap:6px }
  .na-kong-group    { justify-content:center }

  /* solution */
  .solution__brand  { flex-direction:column; align-items:center; gap:6px }

  /* trust */
  .trust__list li   { font-size:.8rem }
  .trust__check     { width:56px; height:56px }
}
