/* ==========================================================================
   Edgar Orozco Consulting Firm — styles.css
   Hoja única para index.html y thankyoupage.html.

   Origen de cada regla:
     · Secciones 1 a 4: los bloques <style> que vivían dentro de <helmet> en
       cada HTML. Valores idénticos al original.
     · Sección 6: cada atributo style="" del HTML convertido en clase. Las
       declaraciones se copiaron tal cual, sin reordenar ni redondear.

   Ámbito por página, con la clase puesta en <html>:
     index.html        -> <html class="eo-landing">
     thankyoupage.html -> <html class="eo-gracias">
   El scope usa :where() para no sumar especificidad: así las clases de la
   sección 6 mandan sobre las reglas de elemento, igual que hacían los
   estilos inline que sustituyen.

   ÍNDICE
     1. Base y reset
     2. Ámbito por página
     3. Animaciones @keyframes
     4. Utilidades
     5. Estados y responsive heredados del original
     6. Clases generadas desde los estilos inline
   ========================================================================== */


/* ==========================================================================
   1. BASE Y RESET (compartido por las dos páginas)
   ========================================================================== */

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Nunito Sans', 'Avenir Next', system-ui, sans-serif;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: #06DF85; color: #040305; }

:focus-visible { outline: 2px solid #06DF85; outline-offset: 3px; }


/* ==========================================================================
   2. ÁMBITO POR PÁGINA
   ========================================================================== */

/* --- index.html ---------------------------------------------------------- */
:where(.eo-landing) body { background: #FFFFFF; color: #101828; }
.eo-landing { scroll-behavior: smooth; overflow-x: hidden; }
.eo-landing, :where(.eo-landing) body { max-width: 100%; overflow-x: hidden; }

:where(.eo-landing) a { color: #0B7FAE; text-decoration: none; }
:where(.eo-landing) a:hover { color: #04A863; }

:where(.eo-landing) button,
:where(.eo-landing) input,
:where(.eo-landing) select,
:where(.eo-landing) textarea { font-family: inherit; }

:where(.eo-landing) summary { list-style: none; cursor: pointer; }
:where(.eo-landing) summary::-webkit-details-marker { display: none; }

/* --- thankyoupage.html --------------------------------------------------- */
:where(.eo-gracias) body { background: #01043A; color: #fff; }
:where(.eo-gracias) a { color: #8CF4C4; text-decoration: none; }
:where(.eo-gracias) a:hover { color: #03BFF8; }


/* ==========================================================================
   3. ANIMACIONES @keyframes
   eoBlobA estaba duplicado en los dos archivos con los mismos valores;
   aquí se declara una sola vez.
   ========================================================================== */

@keyframes eoBlobA {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(-7%,6%,0) scale(1.18); }
  100% { transform: translate3d(0,0,0) scale(1); }
}

@keyframes eoBlobB {
  0%   { transform: translate3d(0,0,0) scale(1.1); }
  50%  { transform: translate3d(8%,-5%,0) scale(1); }
  100% { transform: translate3d(0,0,0) scale(1.1); }
}

@keyframes eoSpin { to { transform: rotate(360deg); } }

@keyframes eoPulse { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

@keyframes eoUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}


/* ==========================================================================
   4. UTILIDADES
   .eo-hidden sustituye a los bloques <sc-if> del original: el CTA flotante,
   el modal del one-pager y los mensajes de error nacen ocultos y el
   JavaScript de index.html los muestra cuando corresponde. Lleva !important
   porque varias de esas clases traen su propio display.
   ========================================================================== */

.eo-hidden { display: none !important; }


/* ==========================================================================
   5. ESTADOS Y RESPONSIVE HEREDADOS DEL ORIGINAL
   Mismos breakpoints, mismos selectores por atributo, mismos !important.
   ========================================================================== */

:where(.eo-landing) details[open] [data-mark] { transform: rotate(45deg); }

[data-hoverlift]:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px -24px rgba(16,24,40,.28);
  border-color: #CBD8E6 !important;
}

@media (max-width: 1000px) {
  [data-g2] { grid-template-columns: 1fr !important; }
  [data-g3] { grid-template-columns: 1fr !important; }
  [data-g4] { grid-template-columns: 1fr 1fr !important; }
  [data-ctag] { grid-template-columns: 1fr !important; }
  [data-hidesm] { display: none !important; }
  [data-divl] { border-left: 0 !important; padding-left: 0 !important; border-top: 1px solid rgba(225,233,244,.14); padding-top: 28px; }
}

@media (max-width: 1000px) {
  [data-stat3] { border-left: 0 !important; border-top: 1px solid rgba(225,233,244,.12) !important; padding-left: 20px !important; padding-top: 24px !important; }
}

@media (max-width: 640px) {
  [data-pillfull] { display: none !important; }
  [data-pillshort] { display: inline !important; }
}

@media (max-width: 620px) {
  [data-g4] { grid-template-columns: 1fr !important; }
  [data-stat2], [data-stat3], [data-stat4] { border-left: 0 !important; border-top: 1px solid rgba(225,233,244,.12) !important; padding-left: 0 !important; padding-top: 24px !important; }
}

@media (max-width: 480px) {
  [data-hdrbar] { padding: 0 16px !important; gap: 10px !important; }
  [data-hdrbtn] { padding: 10px 14px !important; font-size: 12.5px !important; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  :where(.eo-landing) * { transition: none !important; }
  .eo-landing { scroll-behavior: auto; }
}


/* ==========================================================================
   6. CLASES GENERADAS DESDE LOS ESTILOS INLINE
   Una clase por bloque de declaraciones único: los bloques repetidos
   (tarjetas, badges numerados, campos del formulario) comparten clase.
   El nombre indica la etiqueta de origen, por ejemplo .eo-section-3.

   Nota sobre :hover en enlaces: un <a> con color inline no cambiaba de
   color al pasar el cursor, porque el inline ganaba a la regla `a:hover`.
   Para conservarlo, esas clases declaran el mismo color también en :hover.
   ========================================================================== */

.eo-div-1 {
  overflow-x: hidden;
}

.eo-header-1 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  padding: 14px 0;
  background: rgba(1,4,58,0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(225,233,244,0.1);
}

.eo-div-2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.eo-a-1,
.eo-a-1:hover {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  min-width: 0;
}

.eo-img-1 {
  width: clamp(120px, 34vw, 176px);
  height: auto;
  object-fit: contain;
  flex: none;
}

.eo-nav-1 {
  display: flex;
  align-items: center;
  flex: none;
}

.eo-a-2,
.eo-a-2:hover {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(96deg, #03BFF8, #06DF85);
  color: #04223A;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 999px;
  white-space: nowrap;
}

.eo-section-1 {
  position: relative;
  overflow: hidden;
  background: #01043A;
  color: #fff;
  padding: clamp(120px, 32vw, 150px) 0 clamp(64px, 10vw, 96px);
}

.eo-div-3 {
  position: absolute;
  inset: 0;
  background: linear-gradient(128deg, #040305 0%, #01065A 42%, #012C74 70%, #014E63 100%);
}

.eo-div-4 {
  position: absolute;
  width: 900px;
  height: 900px;
  right: -220px;
  top: -320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,223,133,.5), rgba(6,223,133,0) 62%);
  filter: blur(30px);
  animation: eoBlobA 18s ease-in-out infinite;
}

.eo-div-5 {
  position: absolute;
  width: 820px;
  height: 820px;
  left: -280px;
  bottom: -380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3,191,248,.45), rgba(3,191,248,0) 62%);
  filter: blur(30px);
  animation: eoBlobB 22s ease-in-out infinite;
}

.eo-div-6 {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(225,233,244,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(225,233,244,.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 40%, #000, transparent 72%);
}

.eo-div-7 {
  position: absolute;
  width: 640px;
  height: 640px;
  right: 6%;
  top: 8%;
  border-radius: 50%;
  border: 1px solid rgba(3,191,248,.2);
  border-top-color: rgba(6,223,133,.55);
  animation: eoSpin 34s linear infinite;
}

.eo-div-8 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 26px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
}

.eo-div-9 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px 9px 14px;
  border: 1px solid rgba(6,223,133,.4);
  background: rgba(6,223,133,.08);
  border-radius: 24px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8CF4C4;
}

.eo-span-1 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #06DF85;
  animation: eoPulse 1.8s infinite;
  flex: none;
}

.eo-span-2 {
  display: none;
}

.eo-h1-1 {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4.9vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 24px 0 0;
}

.eo-span-3 {
  background: linear-gradient(96deg, #03BFF8, #06DF85);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eo-p-1 {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: clamp(17px, 2vw, 21px);
  color: #8CF4C4;
  margin: 18px 0 0;
}

.eo-p-2 {
  color: #BFD0E2;
  font-size: 17.5px;
  max-width: 34em;
  margin: 18px 0 0;
}

.eo-div-10 {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.eo-a-3,
.eo-a-3:hover {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(96deg, #03BFF8, #06DF85);
  color: #04223A;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 17px 28px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -18px rgba(6,223,133,.7);
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.eo-p-3 {
  margin: 14px 0 0;
  font-size: 13.5px;
  color: #9FB2C6;
  max-width: 36em;
}

.eo-div-11 {
  position: relative;
  padding: 0 14px;
}

.eo-div-12 {
  position: absolute;
  left: -6px;
  bottom: -20px;
  width: calc(100% - 14px);
  height: 100%;
  border-radius: 26px;
  background: linear-gradient(150deg, #03BFF8, #06DF85);
}

.eo-div-13 {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #01065A;
  box-shadow: 0 50px 90px -40px rgba(0,0,0,.7);
}

.eo-img-2 {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 30%;
}

.eo-div-14 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 24px;
  background: linear-gradient(0deg, rgba(4,3,5,.88), rgba(4,3,5,0));
}

.eo-div-15 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}

.eo-div-16 {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6EE7B0;
  margin-top: 4px;
}

.eo-section-2 {
  background: #040305;
  color: #fff;
  padding: 0;
}

.eo-div-17 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 26px;
}

.eo-div-18 {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid rgba(225,233,244,.12);
}

.eo-p-4 {
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: clamp(21px, 2.9vw, 32px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 18em;
}

.eo-p-5 {
  margin: 14px 0 0;
  font-size: 16px;
  color: #9FB2C6;
  max-width: 40em;
}

.eo-div-19 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.eo-div-20 {
  padding: 32px 20px 32px 0;
}

.eo-b-1 {
  display: block;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1;
  background: linear-gradient(96deg, #03BFF8, #06DF85);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eo-span-4 {
  display: block;
  margin-top: 8px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8FA3B8;
}

.eo-div-21 {
  padding: 32px 20px;
  border-left: 1px solid rgba(225,233,244,.12);
}

.eo-div-22 {
  padding: 32px 0 32px 20px;
  border-left: 1px solid rgba(225,233,244,.12);
}

.eo-section-3 {
  background: #FFFFFF;
  padding: clamp(64px, 8vw, 104px) 0;
}

.eo-p-6 {
  margin: 0 0 14px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0B7FAE;
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}

.eo-span-5 {
  width: 22px;
  height: 2px;
  background: linear-gradient(96deg, #03BFF8, #06DF85);
  flex: none;
}

.eo-h2-1 {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: clamp(27px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 18em;
}

.eo-div-23 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.eo-div-24 {
  border: 1px solid #E4EAF1;
  border-radius: 20px;
  padding: 30px 28px;
  background: #F8FAFC;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eo-p-7 {
  margin: 0;
  font-size: 17.5px;
  line-height: 1.55;
  color: #24313F;
  font-weight: 500;
}

.eo-div-25 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #E4EAF1;
}

.eo-span-6 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #E4EAF1;
  flex: none;
}

.eo-div-26 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: #101828;
}

.eo-div-27 {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5A6B7D;
  font-weight: 700;
  margin-top: 3px;
}

.eo-span-7 {
  color: #0B7FAE;
}

.eo-div-28 {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
  align-items: center;
  margin-top: 40px;
}

.eo-p-8 {
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #101828;
}

.eo-span-8 {
  background: linear-gradient(96deg, #0B7FAE, #04A863);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eo-a-4,
.eo-a-4:hover {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  color: #0B7FAE;
  border-bottom: 2px solid #06DF85;
  padding-bottom: 4px;
  max-width: 100%;
  box-sizing: border-box;
}

.eo-section-4 {
  position: relative;
  overflow: hidden;
  background: #040305;
  color: #fff;
  padding: clamp(70px, 9vw, 116px) 0;
}

.eo-img-3 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: grayscale(1);
}

.eo-div-29 {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(4,3,5,.94) 30%, rgba(1,6,90,.82) 100%);
}

.eo-div-30 {
  position: absolute;
  width: 760px;
  height: 760px;
  right: -240px;
  top: -280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3,191,248,.32), rgba(3,191,248,0) 64%);
  filter: blur(30px);
  animation: eoBlobB 24s ease-in-out infinite;
}

.eo-div-31 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 26px;
}

.eo-p-9 {
  margin: 0 0 14px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8CF4C4;
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}

.eo-h2-2 {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: clamp(27px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 16em;
}

.eo-div-32 {
  border: 1px solid rgba(225,233,244,.16);
  border-radius: 20px;
  padding: 30px 28px;
  background: rgba(255,255,255,.04);
}

.eo-span-9 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(6,223,133,.12);
  border: 1px solid rgba(6,223,133,.3);
  margin-bottom: 18px;
}

.eo-p-10 {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: #D7E1EE;
}

.eo-p-11 {
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
}

.eo-div-33 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-self: start;
  max-width: 100%;
}

.eo-a-5,
.eo-a-5:hover {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(96deg, #03BFF8, #06DF85);
  color: #04223A;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px 26px;
  border-radius: 999px;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.eo-a-6,
.eo-a-6:hover {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: #8CF4C4;
}

.eo-div-34 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 64px;
  align-items: end;
}

.eo-h2-3 {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: clamp(27px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.eo-p-12 {
  margin: 0;
  font-size: 17px;
  color: #46586B;
}

.eo-div-35 {
  border: 1px solid #E4EAF1;
  border-radius: 22px;
  padding: 32px 28px;
  background: #fff;
  box-shadow: 0 24px 50px -38px rgba(16,24,40,.45);
}

.eo-div-36 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eo-span-10 {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 15px;
  background: linear-gradient(96deg, #03BFF8, #06DF85);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eo-span-11 {
  flex: 1;
  height: 1px;
  background: #E4EAF1;
}

.eo-h3-1 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 16px 0 10px;
}

.eo-p-13 {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #46586B;
}

.eo-div-37 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 44px;
}

.eo-div-38 {
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, #F2F8FC, #EFFCF5);
  border: 1px solid #DCEAF2;
}

.eo-img-4 {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.eo-div-39 {
  padding: 28px 30px 32px;
}

.eo-h3-2 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 12px;
}

.eo-p-14 {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: #35485B;
}

.eo-div-40 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid #E4EAF1;
}

.eo-p-15 {
  display: flex;
  gap: 14px;
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #46586B;
  max-width: 72ch;
}

.eo-span-12 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #06DF85;
  margin-top: 10px;
  flex: none;
}

.eo-a-7,
.eo-a-7:hover {
  align-self: start;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #101828;
  color: #fff;
  border-radius: 999px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px 26px;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.eo-a-7:hover {
  background: #0B7FAE;
  color: #fff;
}

.eo-section-5 {
  background: #F7F9FC;
  padding: clamp(64px, 8vw, 104px) 0;
}

.eo-div-41 {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  background: #fff;
  border: 1px solid #E4EAF1;
  border-radius: 26px;
  padding: clamp(28px, 4vw, 46px);
  box-shadow: 0 30px 60px -46px rgba(16,24,40,.5);
}

.eo-div-42 {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(96deg, #03BFF8, #06DF85);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eo-div-43 {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0B7FAE;
  font-weight: 700;
}

.eo-p-16 {
  margin: 0;
  font-size: 17.5px;
  line-height: 1.65;
  color: #35485B;
}

.eo-div-44 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.eo-span-13 {
  border: 1px solid #DCE6EF;
  background: #F8FAFC;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: #46586B;
}

.eo-a-8,
.eo-a-8:hover {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  color: #0B7FAE;
  border-bottom: 2px solid #06DF85;
  padding-bottom: 4px;
}

.eo-p-17 {
  margin: 0 0 22px;
  font-size: 17px;
  color: #46586B;
}

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

.eo-div-46 {
  background: #F8FAFC;
  border: 1px solid #E4EAF1;
  border-radius: 20px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.eo-div-47 {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eo-img-5 {
  max-height: 40px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.eo-span-14 {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5A6B7D;
  font-weight: 700;
}

.eo-div-48 {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
  margin-top: 64px;
}

.eo-div-49 {
  position: relative;
}

.eo-div-50 {
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(150deg, #03BFF8, #06DF85);
}

.eo-img-6 {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
}

.eo-p-18 {
  margin: 0 0 14px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0B7FAE;
  font-weight: 700;
}

.eo-h2-4 {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3.1vw, 38px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.eo-p-19 {
  margin: 0 0 18px;
  font-size: 16.5px;
  line-height: 1.7;
  color: #46586B;
}

.eo-div-51 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.eo-span-15 {
  border: 1px solid #DCE6EF;
  background: #F8FAFC;
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #46586B;
}

.eo-p-20 {
  margin: 0 0 12px;
  font-size: 16.5px;
  line-height: 1.7;
  color: #46586B;
}

.eo-p-21 {
  margin: 0 0 22px;
  font-size: 16.5px;
  line-height: 1.7;
  color: #46586B;
}

.eo-a-9,
.eo-a-9:hover {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  color: #0B7FAE;
  border-bottom: 2px solid #06DF85;
  padding-bottom: 4px;
}

.eo-div-52 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 64px;
}

.eo-div-53 {
  background: #F8FAFC;
  border: 1px solid #E4EAF1;
  border-radius: 20px;
  padding: 28px;
}

.eo-div-54 {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0B7FAE;
  padding-bottom: 14px;
  border-bottom: 2px solid #E4EAF1;
}

.eo-div-55 {
  margin-top: 16px;
  font-size: 15px;
  line-height: 2;
  color: #46586B;
}

.eo-div-56 {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #04A863;
  padding-bottom: 14px;
  border-bottom: 2px solid #E4EAF1;
}

.eo-h3-3 {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 32px);
  letter-spacing: -0.02em;
  margin: 64px 0 26px;
}

.eo-div-57 {
  background: #F8FAFC;
  border: 1px solid #E4EAF1;
  border-radius: 20px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.eo-div-58 {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #101828;
}

.eo-p-22 {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: #46586B;
}

.eo-div-59 {
  margin-top: auto;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5A6B7D;
  font-weight: 700;
}

.eo-p-23 {
  margin: 22px 0 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: #5A6B7D;
  max-width: 70ch;
}

.eo-section-6 {
  background: #FFFFFF;
  padding: clamp(48px, 6vw, 80px) 0;
}

.eo-div-60 {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, #F2F8FC, #EFFCF5);
  border: 1px solid #DCEAF2;
  border-radius: 24px;
  padding: clamp(28px, 3.5vw, 44px);
}

.eo-p-24 {
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: #101828;
}

.eo-a-10,
.eo-a-10:hover {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #101828;
  color: #fff;
  border-radius: 999px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 26px;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.eo-a-10:hover {
  background: #0B7FAE;
  color: #fff;
}

.eo-svg-1 {
  flex: none;
}

.eo-section-7 {
  position: relative;
  overflow: hidden;
  background: #01043A;
  color: #fff;
  padding: clamp(64px, 8vw, 108px) 0;
}

.eo-div-61 {
  position: absolute;
  inset: 0;
  background: linear-gradient(128deg, #040305 0%, #01065A 45%, #012C74 100%);
}

.eo-div-62 {
  position: absolute;
  width: 780px;
  height: 780px;
  left: -260px;
  bottom: -320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,223,133,.3), rgba(6,223,133,0) 62%);
  filter: blur(30px);
  animation: eoBlobA 20s ease-in-out infinite;
}

.eo-div-63 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.eo-p-25 {
  color: #BFD0E2;
  font-size: 17px;
  margin: 18px 0 32px;
  max-width: 30em;
}

.eo-div-64 {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eo-div-65 {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.eo-span-16 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(6,223,133,.14);
  border: 1px solid rgba(6,223,133,.4);
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #8CF4C4;
  flex: none;
}

.eo-span-17 {
  font-size: 16px;
  color: #D7E1EE;
}

.eo-p-26 {
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(225,233,244,.14);
  font-size: 13.5px;
  color: #9FB2C6;
  max-width: 34em;
}

.eo-div-66 {
  border-radius: 26px;
  background: #FFFFFF;
  padding: clamp(26px, 3vw, 38px);
  box-shadow: 0 50px 90px -40px rgba(0,0,0,.85);
}

.eo-div-67 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eo-label-1 {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.eo-span-18 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5A6B7D;
}

.eo-input-1 {
  background: #F8FAFC;
  border: 1px solid #DCE6EF;
  border-radius: 12px;
  color: #101828;
  font-size: 16px;
  padding: 14px 16px;
  min-height: 50px;
}

.eo-input-1:focus {
  border-color: #04A863;
}

.eo-span-19 {
  font-size: 12.5px;
  color: #C0392B;
}

.eo-textarea-1 {
  background: #F8FAFC;
  border: 1px solid #DCE6EF;
  border-radius: 12px;
  color: #101828;
  font-size: 16px;
  padding: 14px 16px;
  resize: vertical;
}

.eo-textarea-1:focus {
  border-color: #04A863;
}

.eo-input-2 {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.eo-button-1 {
  margin-top: 6px;
  background: linear-gradient(96deg, #03BFF8, #06DF85);
  color: #04223A;
  border: 0;
  border-radius: 999px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  padding: 18px;
  min-height: 56px;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 18px 40px -22px rgba(6,223,133,.9);
}

.eo-p-27 {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #C0392B;
}

.eo-p-28 {
  margin: 0;
  font-size: 12.5px;
  color: #5A6B7D;
}

.eo-a-11,
.eo-a-11:hover {
  color: #0B7FAE;
  text-decoration: underline;
}

.eo-div-68 {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 26px;
}

.eo-h2-5 {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: clamp(27px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 36px;
}

.eo-details-1 {
  border: 1px solid #E4EAF1;
  border-radius: 18px;
  padding: 4px 24px;
  margin-bottom: 12px;
  background: #fff;
}

.eo-summary-1 {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
}

.eo-span-20 {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #04A863;
  transition: transform 0.25s;
  flex: none;
}

.eo-span-21 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: #101828;
}

.eo-p-29 {
  margin: 0 0 20px;
  padding-left: 34px;
  font-size: 16px;
  line-height: 1.7;
  color: #46586B;
}

.eo-details-2 {
  border: 1px solid #E4EAF1;
  border-radius: 18px;
  padding: 4px 24px;
  background: #fff;
}

.eo-p-30 {
  margin: 32px 0 0;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: #101828;
}

.eo-a-12,
.eo-a-12:hover {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #101828;
  color: #fff;
  border-radius: 999px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  padding: 16px 28px;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.eo-a-12:hover {
  background: #0B7FAE;
  color: #fff;
}

.eo-footer-1 {
  background: #040305;
  color: #fff;
  padding: 62px 0 34px;
}

.eo-img-7 {
  width: 194px;
  height: 42px;
  object-fit: contain;
  flex: none;
}

.eo-span-22 {
  display: none;
  flex-direction: column;
  gap: 5px;
  line-height: 1.2;
}

.eo-span-23 {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: #fff;
  white-space: nowrap;
}

.eo-span-24 {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: #9FB3C6;
  white-space: nowrap;
}

.eo-div-69 {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(225,233,244,.14);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.eo-div-70 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 14px;
  color: #9FB2C6;
}

.eo-a-13,
.eo-a-13:hover {
  color: #8CF4C4;
}

.eo-a-14,
.eo-a-14:hover {
  color: #9FB2C6;
}

.eo-p-31 {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: #7F94AD;
  max-width: 70ch;
}

.eo-p-32 {
  margin: 0;
  font-size: 12.5px;
  color: #7F94AD;
}

.eo-a-15,
.eo-a-15:hover {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(96deg, #03BFF8, #06DF85);
  color: #04223A;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  padding: 15px 24px;
  border-radius: 999px;
  box-shadow: 0 20px 44px -18px rgba(6,223,133,.75);
  animation: eoUp .3s ease-out;
}

.eo-div-71 {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(4,3,5,.78);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.eo-div-72 {
  width: 100%;
  max-width: 470px;
  border-radius: 24px;
  background: #fff;
  padding: clamp(26px, 4vw, 38px);
  box-shadow: 0 50px 90px -40px rgba(0,0,0,.6);
  animation: eoUp .25s ease-out;
}

.eo-div-73 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.eo-div-74 {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: clamp(21px, 3vw, 26px);
  letter-spacing: -0.02em;
  color: #101828;
}

.eo-p-33 {
  margin: 8px 0 0;
  font-size: 15px;
  color: #5A6B7D;
}

.eo-button-2 {
  background: none;
  border: 0;
  color: #5A6B7D;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}

.eo-div-75 {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

.eo-input-3 {
  border: 1px solid #DCE6EF;
  border-radius: 12px;
  background: #F8FAFC;
  color: #101828;
  font-size: 16px;
  padding: 14px 16px;
  min-height: 50px;
}

.eo-input-3:focus {
  border-color: #04A863;
}

.eo-span-25 {
  font-size: 13px;
  color: #C0392B;
}

.eo-span-26 {
  font-size: 13px;
  line-height: 1.6;
  color: #04A863;
}

.eo-button-3 {
  background: linear-gradient(96deg, #03BFF8, #06DF85);
  color: #04223A;
  border: 0;
  border-radius: 999px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
  min-height: 54px;
  cursor: pointer;
}

.eo-div-76 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.eo-div-77 {
  position: absolute;
  inset: 0;
  background: linear-gradient(128deg, #040305 0%, #01065A 45%, #012C74 78%, #014E63 100%);
}

.eo-div-78 {
  position: absolute;
  width: 860px;
  height: 860px;
  right: -260px;
  top: -340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,223,133,.4), rgba(6,223,133,0) 62%);
  filter: blur(30px);
  animation: eoBlobA 20s ease-in-out infinite;
}

.eo-div-79 {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(225,233,244,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(225,233,244,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 30%, #000, transparent 72%);
}

.eo-header-2 {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid rgba(225,233,244,.12);
}

.eo-div-80 {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.eo-a-16,
.eo-a-16:hover {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.eo-img-8 {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex: none;
}

.eo-span-27 {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.eo-span-28 {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.24em;
  color: #fff;
}

.eo-span-29 {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 8.5px;
  letter-spacing: 0.18em;
  color: #9FB3C6;
  margin-top: 3px;
}

.eo-a-17,
.eo-a-17:hover {
  font-size: 14px;
  font-weight: 600;
  color: #D7E1EE;
}

.eo-main-1 {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: start;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 68px) 26px clamp(48px, 6vw, 76px);
}

.eo-div-81 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border: 1px solid rgba(6,223,133,.4);
  background: rgba(6,223,133,.08);
  border-radius: 24px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8CF4C4;
}

.eo-h1-2 {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 22px 0 0;
}

.eo-div-82 {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid rgba(225,233,244,.14);
}

.eo-p-34 {
  margin: 0 0 18px;
  font-size: 16px;
  color: #BFD0E2;
  max-width: 30em;
}

.eo-a-18,
.eo-a-18:hover {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(225,233,244,.32);
  color: #fff;
  border-radius: 999px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
}

.eo-a-18:hover {
  border-color: #06DF85;
  color: #8CF4C4;
}

.eo-p-35 {
  margin: 22px 0 0;
  font-size: 13.5px;
  color: #9FB2C6;
  max-width: 34em;
}

.eo-div-83 {
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(225,233,244,.18);
  box-shadow: 0 50px 90px -50px rgba(0,0,0,.85);
  display: flex;
  flex-direction: column;
  min-height: 730px;
}

.eo-div-84 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(225,233,244,.16);
}

.eo-span-30 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9FB2C6;
}

.eo-span-31 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8CF4C4;
}

.eo-iframe-1 {
  flex: 1;
  width: 100%;
  min-height: 680px;
  border: 0;
  background: #fff;
}

.eo-footer-2 {
  position: relative;
  border-top: 1px solid rgba(225,233,244,.12);
  padding: 24px 0 30px;
}

.eo-div-85 {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: space-between;
  align-items: baseline;
}

.eo-span-32 {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7F94AD;
}

.eo-span-33 {
  font-size: 12.5px;
  color: #64788E;
}
