:root{
  --bg:#073034;
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.75);
  --line:rgba(255,255,255,.14);
}

*{box-sizing:border-box;}
html,body{height:100%;}

body{
  margin:0;
  font-family:"Montserrat",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:#0b0f12;
  color:var(--text);
}

a{color:inherit;text-decoration:none;}


/* =========================
   LAYOUT / CONTAINER GLOBAL
   ========================= */

.container{
  max-width:none;
  width:75vw;
  margin:0 auto;
  padding:0;
}

@media (max-width:1200px){
  .container{width:86vw;}
}

@media (max-width:980px){
  .container{width:92vw;}
}

@media (max-width:640px){
  .container{width:92vw;}
}


/* =========================
   NAV
   ========================= */

.nav{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(7,48,52,.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}

.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:72px;
}

.brand a{display:flex;align-items:center;}

.brand img{
  height:28px;
  width:auto;
  display:block;
}

.nav__links{
  display:flex;
  align-items:center;
  gap:24px;
  font-size:14px;
  color:rgba(255,255,255,.85);
}

.nav__links a{padding:10px 6px;}
.nav__links a:hover{color:#fff;}


/* =========================
   HERO
   ========================= */

.hero{
  position:relative;
  background:var(--bg);
  overflow:hidden;
  padding:80px 0 56px;
  border-bottom:1px solid var(--line);

  /* mejora: evita “parpadeos” en overlays/video en algunos browsers */
  isolation:isolate;
}

.hero::before{
  content:"";
  position:absolute;
  inset:-140px -120px -160px -120px;
  background-image:url("./assets/hero-bg.svg");
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center;
  opacity:.55;
  transform:translateZ(0);
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(70% 70% at 50% 40%,rgba(0,0,0,.20),rgba(0,0,0,.55));
}

/* =========================
   HERO INNER
   ========================= */

.hero__inner{
  position:relative;
  z-index:1;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
}

.hero__eyebrow{
  margin:0;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  color:rgba(255,255,255,.80);
  font-size:14px;
  letter-spacing:.02em;
  background:rgba(255,255,255,.06);

  /* mejora: mejor blur si el navegador lo soporta */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero__title{
  margin:0;
  max-width:18ch;
  font-family:"Cormorant Garamond",Georgia,"Times New Roman",serif;
  font-weight:600;
  letter-spacing:.02em;
  font-size:clamp(40px,5vw,64px);
  line-height:1.05;
  text-transform:uppercase;

  /* mejora: legibilidad sobre video/imagen */
  text-wrap: balance;
}

.hero__subtitle{
  margin:0;
  max-width:68ch;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
}

.hero__actions{
  margin-top:10px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  justify-content:center;
}

/* =========================
   BUTTONS
   ========================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:10px;
  font-weight:600;
  border:1px solid transparent;
  transition:transform .08s ease,background .15s ease,border-color .15s ease, box-shadow .15s ease;
}

.btn:active{transform:translateY(1px);}

.btn--primary{
  background:#ffffff;
  color:#073034;
  border-color:rgba(255,255,255,.18);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.btn--primary:hover{background:rgba(255,255,255,.92);}

.btn--ghost{
  background:rgba(255,255,255,.06);
  color:#fff;
  border-color:rgba(255,255,255,.18);

  /* mejora: ghost más premium */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn--ghost:hover{background:rgba(255,255,255,.10);}

/* =========================
   DISCLAIMER
   ========================= */

.hero__disclaimer{
  margin:14px 0 0;
  font-size:13px;
  color:rgba(255,255,255,.70);
}

/* =========================
   HERO — VIDEO MODE (MP4)
   ========================= */

/* El hero con video conserva tu layout */
.hero.hero--video{
  background: transparent; /* el video será el fondo real */
}

/* Apaga el SVG de fondo cuando hay video */
.hero.hero--video::before{
  background-image: none;
  opacity: 0;
}

/* Overlay ajustado para video (mejor contraste) */
.hero.hero--video::after{
  background:
    radial-gradient(70% 70% at 50% 40%, rgba(0,0,0,.18), rgba(0,0,0,.62));
}

/* Video como fondo */
.hero.hero--video .hero__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;

  /* mejoras: rendimiento / suavidad */
  transform: scale(1.02);
  will-change: transform;
  backface-visibility: hidden;
}

/* Si existe overlay extra en HTML, no duplicar */
.hero.hero--video .hero__overlay{
  display: none;
}

/* Contenido encima del overlay */
.hero.hero--video .hero__inner{
  z-index: 2;
}

/* =========================
   ACCESIBILITY — Reduced Motion
   (sin versión móvil, pero sí respeta accesibilidad)
   ========================= */

@media (prefers-reduced-motion: reduce){
  .hero.hero--video .hero__bg{
    display:none;
  }
  /* Si no hay video, cae al diseño base (SVG + overlay) */
  .hero.hero--video::before{
    background-image:url("./assets/hero-bg.svg");
    opacity:.55;
  }
}

/* =========================
   FALLBACK: si el browser no soporta backdrop-filter
   ========================= */

@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))){
  .hero__eyebrow,
  .btn--ghost{
    background: rgba(255,255,255,.10);
  }
}
















/* =========================
   BASE SECTIONS
   ========================= */

.section{padding:96px 0;}
.section-about{background:#fff;}

.two-col{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:56px;
  align-items:center;
}

.kicker{
  font-family:"Montserrat",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-size:14px;
  line-height:20px;
  font-weight:600;
  letter-spacing:0.02em;
  color:#285E63;
  margin:0 0 10px;
}

.section-about h2{
  font-family:"Montserrat",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-size:44px;
  line-height:52px;
  font-weight:700;
  color:#101828;
  margin:0 0 18px;
}

.section-about p{
  font-family:"Montserrat",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-size:16px;
  line-height:26px;
  font-weight:400;
  color:#475467;
  margin:0 0 16px;
  max-width:560px;
}

.row-actions{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  margin-top:22px;
}

.row-actions .link{
  font-family:"Montserrat",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-size:14px;
  line-height:20px;
  font-weight:600;
  color:#0E2A2C;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  opacity:0.92;
}

.row-actions .link:hover{
  opacity:1;
  text-decoration:underline;
  text-underline-offset:3px;
}

.row-actions .link::after{
  content:"â†—";
  font-size:14px;
  line-height:1;
  opacity:0.9;
  transform:translateY(-1px);
}

.btn--outline{
  background:#fff;
  border:1px solid #285E63;
  color:#0E2A2C;
  box-shadow:0px 1px 2px rgba(16,24,40,0.05);
  border-radius:12px;
  padding:12px 18px;
  font-weight:600;
}

.btn--outline:hover{
  box-shadow:0px 1px 2px rgba(16,24,40,0.08),0px 0px 0px 4px rgba(7,48,52,0.18);
}

.media-card{
  border-radius:22px;
  overflow:hidden;
  background:#F2F4F7;
  box-shadow:0px 18px 40px rgba(16,24,40,0.12);
  min-height:360px;
}

.media-placeholder{
  width:100%;
  height:100%;
  min-height:360px;
  display:grid;
  place-items:center;
  color:#98A2B3;
  font-weight:600;
  letter-spacing:0.08em;
}

.media-img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}


/* =========================
   QI100
   ========================= */

#qi100{background:#ffffff;}

/* MantÃ©n el layout del sitio (usa tu .two-col), pero re-ordena SOLO aquÃ­ */
#qi100 .two-col{
  display:grid;
  grid-template-columns:minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap:64px;
  align-items:center;
}

/* ðŸ‘‡ Como tu HTML tiene texto primero y metrics despuÃ©s,
   aquÃ­ invertimos visualmente: metrics izquierda, texto derecha */
#qi100 .two-col > .metrics{order:1;}
#qi100 .two-col > div:not(.metrics){order:2;}

/* Metrics */
#qi100 .metrics{
  width:100%;
  max-width:588px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
}

#qi100 .metric-card{
  padding:24px;
  min-height:172px;
  border-radius:24px;
  background:#ffffff;
  border:1px solid rgba(16,24,40,0.04);
  box-shadow:0px 8px 24px rgba(16,24,40,0.06);
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  gap:12px;
}

#qi100 .metric-card--dark{
  background:linear-gradient(111.66deg,#073034 1.79%,#0A4B50 50%);
  border:none;
  box-shadow:none;
}

/* Text side */
#qi100 .kicker{
  margin:0 0 10px;
  font-family:"Montserrat",sans-serif;
  font-weight:500;
  font-size:16px;
  line-height:24px;
  color:#0E5C63;
}

#qi100 h2{
  margin:0 0 14px;
  font-family:"Montserrat",sans-serif;
  font-weight:700;
  font-size:44px;
  line-height:52px;
  letter-spacing:-0.02em;
  color:#101828;
}

#qi100 p{
  margin:0 0 22px;
  font-family:"Montserrat",sans-serif;
  font-weight:400;
  font-size:16px;
  line-height:26px;
  color:#475467;
  max-width:64ch;
}

/* Metric typography */
#qi100 .metric-value{
  font-family:"Montserrat",sans-serif;
  font-weight:700;
  font-size:36px;
  line-height:48px;
  letter-spacing:-0.02em;
  color:#101828;
}

#qi100 .metric-label{
  font-family:"Montserrat",sans-serif;
  font-weight:500;
  font-size:16px;
  line-height:24px;
  color:#667085;
}

#qi100 .metric-card--dark .metric-value{color:#ffffff;}
#qi100 .metric-card--dark .metric-label{color:rgba(255,255,255,0.78);}

/* âœ… BotÃ³n igual al mock (outline), sin tocar el hero */
#qi100 .btn.btn--primary{
  background:#ffffff;
  color:#0E2A2C;
  border:1px solid #285E63;
  border-radius:12px;
  padding:12px 18px;
  font-size:14px;
  line-height:20px;
  font-weight:600;
  box-shadow:0px 1px 2px rgba(16,24,40,0.05);
}

#qi100 .btn.btn--primary:hover{
  background:#ffffff;
  box-shadow:0px 1px 2px rgba(16,24,40,0.10),0px 0px 0px 4px rgba(14,92,99,0.18);
}

/* Responsive */
@media (max-width:980px){
  #qi100 .two-col{
    grid-template-columns:1fr;
    gap:32px;
  }

  /* En mobile: primero texto y luego mÃ©tricas (como la mayorÃ­a de landings) */
  #qi100 .two-col > div:not(.metrics){order:1;}
  #qi100 .two-col > .metrics{order:2;}

  #qi100 .metrics{
    max-width:none;
    grid-template-columns:1fr;
  }
}






/* =========================
   INSIGHTS
   ========================= */

#insights{background:#ffffff;}

#insights .section-head{margin-bottom:40px;}

#insights .section-head p{
  margin:0 0 10px;
  font-size:18px;
  line-height:28px;
  color:#0E5C63;
  font-weight:500;
}

#insights .section-head h2{
  margin:0;
  font-size:44px;
  line-height:52px;
  letter-spacing:-0.02em;
  color:#101828;
  font-weight:700;
}

#insights .cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
  margin-top:18px;
}

#insights .card{
  background:#F9FAFB;
  border-radius:22px;
  padding:26px 28px;
  box-shadow:0px 8px 24px rgba(16,24,40,0.06);
  border:1px solid rgba(16,24,40,0.04);
  min-height:280px;
}

#insights .card-meta{
  font-size:16px;
  line-height:24px;
  color:#0E5C63;
  font-weight:500;
  margin-bottom:14px;
}

#insights .card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:30px;
  color:#101828;
  font-weight:700;
}

#insights .card p{
  margin:0;
  font-size:16px;
  line-height:26px;
  color:#475467;
}

#insights .academy{
  margin-top:48px;
  padding-top:36px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

#insights .academy h3{
  margin:0 0 8px;
  font-size:44px;
  line-height:52px;
  letter-spacing:-0.02em;
  color:#101828;
  font-weight:700;
}

#insights .academy p{
  margin:0;
  font-size:18px;
  line-height:28px;
  color:#667085;
}

#insights .academy .link{
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:12px;
  border:1px solid #0E5C63;
  color:#0E2A2C;
  font-weight:600;
  background:#ffffff;
  box-shadow:0px 1px 2px rgba(16,24,40,0.05);
  white-space:nowrap;
}

#insights .academy .link:hover{
  box-shadow:0px 1px 2px rgba(16,24,40,0.10),0px 0px 0px 4px rgba(14,92,99,0.18);
}

@media (max-width:980px){
  #insights .cards{grid-template-columns:1fr;gap:18px;}
  #insights .academy{flex-direction:column;align-items:flex-start;}
}


/* =========================
   GOVERNANCE
   ========================= */

#governance{background:#F9FAFB;}

#governance .two-col{display:block;}

#governance h2{
  margin:0 0 16px;
  font-size:56px;
  line-height:64px;
  font-weight:700;
  letter-spacing:-0.02em;
  color:#101828;
}

#governance h2::before{
  content:"Governance & Documents";
  display:block;
  margin-bottom:12px;
  font-size:18px;
  line-height:28px;
  font-weight:500;
  color:#0E5C63;
}

#governance p{
  margin:0;
  max-width:760px;
  font-size:18px;
  line-height:30px;
  color:#667085;
}

#governance .pill-grid{
  margin-top:48px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
  width:100%;
  margin-right:0;
}

#governance .pill{
  padding:28px;
  border-radius:24px;
  background:#FFFFFF;
  border:1px solid rgba(16,24,40,0.04);
  box-shadow:0px 8px 24px rgba(16,24,40,0.06);
  min-height:172px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:10px;
}

#governance .pill h3{
  margin:0;
  font-size:26px;
  line-height:34px;
  font-weight:700;
  color:#101828;
}

#governance .pill p{
  margin:0;
  font-size:16px;
  line-height:26px;
  color:#475467;
  max-width:none;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

#governance .pill:first-child{
  background:linear-gradient(111.66deg,#073034 1.79%,#0A4B50 50%);
  border:none;
  box-shadow:none;
}

#governance .pill:first-child h3{color:#ffffff;}
#governance .pill:first-child p{color:rgba(255,255,255,0.78);}

#governance .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:40px;
  padding:12px 22px;
  border-radius:10px;
  background:#ffffff;
  color:#0B3B40;
  border:1px solid #0B3B40;
  font-size:16px;
  font-weight:600;
  line-height:24px;
  text-decoration:none;
}

#governance .btn:hover{background:rgba(11,59,64,0.06);}
#governance .btn.btn--primary{box-shadow:none;}
#governance .media-card{display:none;}

@media (max-width:980px){
  #governance h2{font-size:40px;line-height:48px;}
  #governance .pill-grid{grid-template-columns:1fr;max-width:none;}
  #governance .pill{min-height:auto;}
  #governance .pill p{-webkit-line-clamp:unset;overflow:visible;display:block;}
}


/* =========================
   CONTACT
   ========================= */

#contact.section-contact{background:#F9FAFB;}

#contact .container.contact-grid{
  max-width:none;
  width:82vw;
  margin:0 auto;
  padding-left:4%;
  padding-right:4%;
  display:grid;
  grid-template-columns:42% 58%;
  column-gap:4%;
  align-items:start;
}

#contact .contact-left{
  padding-left:0;
  max-width:100%;
}

#contact form.contact-card{
  justify-self:end;
  width:70%;
  max-width:620px;
  margin-right:0;
  background:#FFFFFF;
  border-radius:24px;
  padding:28px;
  box-shadow:0px 24px 64px rgba(16,24,40,0.12);
}

#contact .contact-left .kicker{
  margin:0 0 14px;
  font-family:"Montserrat",sans-serif;
  font-weight:500;
  font-size:18px;
  line-height:28px;
  color:#0E5A61;
}

#contact .contact-left h2{
  margin:0 0 12px;
  font-family:"Montserrat",sans-serif;
  font-weight:700;
  font-size:clamp(38px,3.8vw,52px);
  line-height:1.15;
  letter-spacing:-0.02em;
  color:#101828;
}

#contact .contact-left .contact-lead{
  margin:0 0 44px;
  max-width:100%;
  font-family:"Montserrat",sans-serif;
  font-weight:400;
  font-size:18px;
  line-height:28px;
  color:#667085;
}

#contact .contact-left .contact-subhead{
  margin:0 0 16px;
  font-family:"Montserrat",sans-serif;
  font-weight:500;
  font-size:18px;
  line-height:28px;
  color:#667085;
}

#contact .office-cards{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:20px;
  max-width:100%;
}

#contact .office-card{
  background:#FFFFFF;
  border-radius:16px;
  padding:18px 18px;
  box-shadow:0px 16px 32px rgba(16,24,40,0.08);
}

#contact .office-card h4{
  margin:0 0 8px;
  font-family:"Montserrat",sans-serif;
  font-weight:700;
  font-size:20px;
  line-height:28px;
  color:#101828;
}

#contact .office-card p{
  margin:0;
  font-family:"Montserrat",sans-serif;
  font-weight:400;
  font-size:16px;
  line-height:24px;
  color:#667085;
}

#contact .grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:18px;
}

#contact .field{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:18px;
}

#contact .field > span{
  font-family:"Montserrat",sans-serif;
  font-weight:500;
  font-size:14px;
  line-height:20px;
  color:#344054;
}

#contact .field input,
#contact .field select,
#contact .field textarea{
  width:100%;
  border-radius:10px;
  border:1px solid #D0D5DD;
  background:#FFFFFF;
  padding:10px 14px;
  font-family:"Montserrat",sans-serif;
  font-weight:400;
  font-size:16px;
  line-height:24px;
  color:#101828;
  outline:none;
}

#contact .field input,
#contact .field select{height:44px;}

#contact .field textarea{
  min-height:170px;
  height:170px;
  resize:vertical;
}

#contact .field input:focus,
#contact .field select:focus,
#contact .field textarea:focus{
  border-color:#0E5A61;
  box-shadow:0 0 0 4px rgba(14,90,97,0.12);
}

#contact .contact-btn{
  width:100%;
  height:56px;
  border-radius:14px;
  border:1px solid #073034;
  background:#073034;
  color:#FFFFFF;
  font-family:"Montserrat",sans-serif;
  font-weight:600;
  font-size:16px;
  line-height:24px;
  cursor:pointer;
  margin-top:6px;
}

#contact .contact-btn:hover{filter:brightness(1.05);}

#contact .contact-legal{
  margin:14px 0 0;
  font-family:"Montserrat",sans-serif;
  font-weight:400;
  font-size:14px;
  line-height:20px;
  color:#667085;
}

#contact .contact-legal a{
  color:#0E5A61;
  text-decoration:underline;
}

@media (max-width:1024px){
  #contact .container.contact-grid{
    width:92vw;
    padding-left:4%;
    padding-right:4%;
    grid-template-columns:1fr;
    column-gap:0;
    row-gap:28px;
  }

  #contact form.contact-card{
    justify-self:start;
    width:100%;
    max-width:720px;
  }

  #contact .office-cards{grid-template-columns:1fr 1fr;}
}

@media (max-width:640px){
  #contact .grid-2{grid-template-columns:1fr;}
  #contact .office-cards{grid-template-columns:1fr;}
  #contact form.contact-card{padding:20px;}
}


/* =========================
   FOOTER
   ========================= */

.footer{
  background:#F9FAFB;
  width:100%;
  padding:32px 0;
}

.footer .container{
  max-width:none;
  width:100%;
  padding:0;
}

.footer__inner{
  width:99.5%;
  max-width:2200px;
  margin:0 auto;
  padding:80px clamp(24px,4vw,60px);
  border-radius:12px;
  background:linear-gradient(99.91deg,#073034 0%,#004A51 50%);
  box-sizing:border-box;
}

.footer__top{
  display:grid;
  grid-template-columns:2.2fr 1fr 1fr;
  gap:48px;
  max-width:1400px;
  margin:0 auto;
}

.footer__brand{max-width:520px;}

.footer__logo{
  display:block;
  height:32px;
  width:auto;
  object-fit:contain;
  margin:0 0 22px;
}

.footer__desc{
  margin:0;
  font-size:15px;
  line-height:1.65;
  color:rgba(255,255,255,.75);
  max-width:520px;
}

.footer__col h4{
  margin:0 0 18px;
  font-size:18px;
  font-weight:600;
  color:#ffffff;
}

.footer__col a{
  display:block;
  margin:0 0 14px;
  font-size:15px;
  line-height:1.5;
  text-decoration:none;
  color:rgba(255,255,255,.72);
  transition:color .2s ease,opacity .2s ease;
}

.footer__col a:hover{
  color:#ffffff;
  opacity:.95;
}

.footer__risk{
  margin-top:56px;
  max-width:1400px;
  margin-left:auto;
  margin-right:auto;
}

.footer__risk p{
  margin:0;
  font-size:14px;
  line-height:1.7;
  color:rgba(255,255,255,.70);
}

.footer__bottom{
  margin-top:48px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  font-size:14px;
  color:rgba(255,255,255,.70);
  max-width:1400px;
  margin-left:auto;
  margin-right:auto;
}

@media (max-width:1100px){
  .footer__inner{
    width:94%;
    max-width:1376px;
    padding:70px clamp(20px,4vw,48px);
  }

  .footer__top{
    grid-template-columns:1fr 1fr;
    gap:40px;
    max-width:none;
    margin:0;
  }

  .footer__brand{
    grid-column:1 / -1;
    max-width:680px;
  }

  .footer__risk,
  .footer__bottom{
    max-width:none;
    margin-left:0;
    margin-right:0;
  }
}

@media (max-width:640px){
  .footer__inner{
    width:96%;
    max-width:none;
    padding:56px 24px;
  }

  .footer__top{
    grid-template-columns:1fr;
    gap:32px;
  }

  .footer__bottom{
    flex-direction:column;
    text-align:center;
  }
}
