@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --green: #08714f;
  --dark: #004f3a;
  --deep: #003d2e;
  --mint: #eaf7f1;
  --pale: #f5faf7;
  --ink: #101413;
  --muted: #59635f;
  --line: #ccdad4;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "Manrope", sans-serif; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }

.site-header,
.site-header * {
  box-sizing: border-box;
}
.FAQ span{
    display: block;
}
.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;

    width: 100%;
    height: 96px;
    min-height: 0;

    display: flex;
    grid-template-columns: none;
    align-items: center;

    padding: 0 clamp(28px, 6vw, 90px);

    color: #ffffff;
    background: linear-gradient(
        180deg,
        rgba(5, 39, 30, 0.62),
        rgba(5, 39, 30, 0)
    );
    border: 0;
    box-shadow: none;
    backdrop-filter: none;

    transition:
        height 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    height: 96px;
    min-height: 0;

    color: #ffffff;
    background: rgba(0, 73, 52, 0.96);

    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.15);
    backdrop-filter: none;
}

.brand {
     position: relative;
    z-index: auto;

    width: 172px;
    height: 100%;
    flex: 0 0 172px;

    overflow: visible;
}

.brand img,
.site-header.is-scrolled .brand img {
  position: absolute;
    top: 50%;
    left: 0;

    display: block;

    width: clamp(260px, 18vw, 380px);
    height: auto;
    max-width: none;
    max-height: none;

    object-fit: contain;
    object-position: left center;

    filter: brightness(0) invert(1);

    transform: translateY(-50%);
}


.site-header .main-nav {
  position: static;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;

  width: auto;
  margin-left: auto;
  gap: clamp(20px, 1vw, 56px);
  padding: 0;

  color: var(--white);
  background: transparent;
  border: 0;
  box-shadow: none;

  font-size: 16px;
  font-weight: 700;
}

.site-header .main-nav a,
.site-header.is-scrolled .main-nav a,
.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a.active {
  position: relative;

  width: auto;
  padding: 0;

  color: var(--white);

  font-size: 16px;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
}

.site-header .main-nav a::after {
  content: "";

  position: absolute;
  right: auto;
  bottom: -14px;
  left: 50%;

  display: block;

  width: 0;
  height: 3px;

  border-radius: 3px;
  background: var(--white);

  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.site-header .main-nav a:hover::after,
.site-header .main-nav a.active::after {
  right: auto;
  left: 50%;
  width: 24px;
}

.site-header .header-cta {
  display: none;
}

.menu-toggle {
  display: none;

  margin-left: auto;
  padding: 8px;

  background: transparent;
  border: 0;

  cursor: pointer;
}
.site-header .menu-toggle > span:not(.sr-only),
.site-header.is-scrolled .menu-toggle > span:not(.sr-only) {
  display: block;

  width: 26px;
  height: 2px;
  margin: 5px;

  background: var(--white);
}



.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; }
.brand-logo { display: block; width: min(230px, 100%); height: auto; }
.main-nav { justify-self: end; display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); font-size: .89rem; font-weight: 700; }
.main-nav a { position: relative; padding: 10px 0; }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: 4px; left: 0; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; }


.security-hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  padding: 160px clamp(22px, 6vw, 90px) 100px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: clamp(50px, 7vw, 120px);
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(120deg, var(--deep) 0%, var(--dark) 52%, #0a7e5a 100%);
}
.security-hero::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 62px 62px; mask-image: linear-gradient(to right, #000, transparent 75%); }
.security-hero__glow { position: absolute; z-index: -1; right: -15%; bottom: -60%; width: 850px; height: 850px; border-radius: 50%; background: radial-gradient(circle, rgba(119,230,181,.22), transparent 65%); }
.security-hero__content { max-width: 720px; }
.eyebrow { margin: 0 0 18px; color: #89dbb9; font-size: .78rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.security-hero h1 { margin: 0; font-size: clamp(3rem, 5.8vw, 6.25rem); font-weight: 500; line-height: .97; letter-spacing: -.06em; }
.security-hero h1 strong { display: block; color: #9de9c8; font-weight: 800; }
.security-hero__description { max-width: 680px; margin: 30px 0 0; color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.45vw, 1.18rem); line-height: 1.75; }
.security-hero__actions { margin-top: 40px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.button { display: inline-flex; min-height: 54px; padding: 0 26px; align-items: center; justify-content: center; border-radius: 999px; font-size: .9rem; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease; }
.button--primary { color: var(--deep); background: var(--white); box-shadow: 0 12px 32px rgba(0,0,0,.14); }
.button:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(0,0,0,.18); }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 700; }
.text-link span { font-size: 1.2rem; }

.security-visual { position: relative; width: min(100%, 560px); aspect-ratio: 1; justify-self: center; display: grid; place-items: center; }
.security-visual__orbit { position: absolute; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.security-visual__orbit--one { inset: 7%; }
.security-visual__orbit--two { inset: 20%; border-style: dashed; animation: orbit-spin 24s linear infinite; }
.security-visual__shield { display: grid; width: 210px; height: 230px; place-items: center; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.3); border-radius: 44% 44% 48% 48%; box-shadow: inset 0 1px rgba(255,255,255,.25), 0 34px 70px rgba(0,38,28,.3); backdrop-filter: blur(16px); }
.security-visual__shield svg { width: 112px; fill: rgba(157,233,200,.14); stroke: #baf5dc; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.security-chip { position: absolute; display: flex; align-items: center; gap: 13px; min-width: 220px; padding: 15px 18px; color: var(--deep); background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.7); border-radius: 18px; box-shadow: 0 18px 45px rgba(0,38,28,.22); }
.security-chip svg { width: 30px; fill: none; stroke: var(--green); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.security-chip span { display: grid; gap: 4px; }
.security-chip strong { font-size: .82rem; }
.security-chip small { color: var(--muted); font-size: .68rem; }
.security-chip--top { top: 15%; right: -2%; }
.security-chip--bottom { bottom: 15%; left: -5%; }

.security-trust { position: relative; z-index: 3; width: min(calc(100% - 44px), 1180px); margin: -46px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); background: var(--white); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 24px 70px rgba(0,61,46,.12); }
.security-trust article { display: flex; align-items: center; gap: 16px; padding: 25px clamp(20px, 2.6vw, 34px); }
.security-trust article + article { border-left: 1px solid var(--line); }
.security-trust svg { width: 34px; flex: 0 0 auto; fill: none; stroke: var(--green); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.security-trust article div { display: grid; gap: 5px; }
.security-trust strong { color: var(--deep); font-size: .9rem; }
.security-trust span { color: var(--muted); font-size: .75rem; line-height: 1.4; }

.security-intro { padding: clamp(60px, 10vw, 70px) clamp(22px, 6vw, 90px) 80px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(300px, 1.1fr); align-items: end; gap: clamp(36px, 7vw, 110px); background: var(--pale); }
.security-intro .eyebrow { color: var(--green); }
.section-heading h2 { max-width: 650px; margin: 0; font-size: clamp(2.3rem, 4.5vw, 4.5rem); font-weight: 500; line-height: 1.04; letter-spacing: -.05em; }
.section-heading h2 strong { color: var(--green); font-weight: 800; }
.security-intro__lead { max-width: 650px; margin: 0; padding-left: 24px; color: var(--muted); border-left: 3px solid var(--green); font-size: clamp(1rem, 1.4vw, 1.16rem); line-height: 1.75; }

.security-pillars { padding: 0 clamp(22px, 6vw, 90px) clamp(70px, 4vw, 100px); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; background: var(--pale); }
.security-pillar { position: relative; min-height: 330px; padding: clamp(16px, 1.5vw, 28px); overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 10px 34px 10px 10px; box-shadow: 0 18px 48px rgba(0,61,46,.07); transition: transform .25s ease, box-shadow .25s ease; }
.security-pillar:hover { transform: translateY(-8px); box-shadow: 0 26px 56px rgba(0,61,46,.12); }
.security-pillar > svg { width: 44px; fill: none; stroke: var(--green); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.security-pillar h3 { margin: 0 0 14px; color: var(--deep); font-size: clamp(1.15rem, 1.6vw, 1.42rem); }
.security-pillar p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.72; }
.security-pillar--featured { color: var(--white); background: linear-gradient(150deg, var(--green), var(--deep)); border-color: transparent; }
.security-pillar--featured > svg { stroke: #baf5dc; }
.security-pillar--featured h3 { color: var(--white); }
.security-pillar--featured p { color: rgba(255,255,255,.75); }

.verification-path .eyebrow,
.official-channels .eyebrow,
.security-faq .eyebrow {
  color: var(--green);
}

.verification-path h2,
.official-channels h2,
.security-faq h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.5vw, 4.7rem);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -.055em;
}

.verification-path h2 strong,
.official-channels h2 strong,
.security-faq h2 strong {
  color: var(--green);
  font-weight: 800;
}

.verification-path {
  padding: clamp(90px, 10vw, 150px) clamp(22px, 6vw, 90px);
  background: var(--mint);
}

.verification-path__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .75fr);
  align-items: end;
  gap: clamp(35px, 8vw, 120px);
}

.verification-path__header > p {
  max-width: 540px;
  margin: 0 0 8px;
  padding-left: 24px;
  color: var(--muted);
  border-left: 3px solid var(--green);
  line-height: 1.75;
}

.verification-path__steps {
  position: relative;
  margin: clamp(58px, 7vw, 90px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  list-style: none;
}

.verification-path__steps::before {
  content: "";
  position: absolute;
  top: 42px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--green),
    rgba(8, 113, 79, .15)
  );
}

.verification-path__steps li {
  position: relative;
  z-index: 1;
  min-height: 300px;
  padding: 105px clamp(25px, 3vw, 42px) 38px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(8, 113, 79, .14);
  border-radius: 12px 34px 12px 12px;
}

.verification-path__steps li > span {
  position: absolute;
  top: 14px;
  left: 28px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border: 7px solid var(--mint);
  border-radius: 18px;
  font-size: .72rem;
  font-weight: 800;
}

.verification-path__steps svg {
  width: 42px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.verification-path__steps h3 {
  margin: 24px 0 12px;
  color: var(--deep);
  font-size: 1.35rem;
}

.verification-path__steps p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
}

.official-channels { display: grid; grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr); align-items: center; gap: clamp(60px, 10vw, 160px); overflow: hidden; background: var(--white); }
.official-channels__visual { position: relative; min-height: 620px; display: grid; place-items: center; background: radial-gradient(circle, rgba(8,113,79,.12), transparent 64%); }
.official-channels__visual::before, .official-channels__visual::after { content: ""; position: absolute; border: 1px solid var(--line); border-radius: 50%; }
.official-channels__visual::before { width: 520px; height: 520px; }
.official-channels__visual::after { width: 650px; height: 650px; opacity: .55; }
.channel-phone { position: relative; z-index: 1; width: 280px; height: 510px; padding: 70px 28px 35px; display: flex; align-items: center; flex-direction: column; color: var(--white); background: linear-gradient(160deg, var(--dark), var(--deep)); border: 9px solid #143e33; border-radius: 48px; box-shadow: 0 35px 85px rgba(0,61,46,.25); text-align: center; }
.channel-phone__speaker { position: absolute; top: 25px; width: 65px; height: 6px; background: rgba(255,255,255,.35); border-radius: 999px; }
.channel-phone > svg { width: 105px; margin-top: 70px; fill: rgba(157,233,200,.09); stroke: #baf5dc; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.channel-phone strong { margin-top: 38px; font-size: 1.1rem; }
.channel-phone small { margin-top: 10px; color: rgba(255,255,255,.6); }
.official-channels__copy > p:not(.eyebrow) { max-width: 650px; margin: 28px 0 0; color: var(--muted); line-height: 1.75; }
.channel-cards { margin-top: 42px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.channel-cards a { min-height: 110px; padding: 22px; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 15px; background: var(--pale); border: 1px solid var(--line); border-radius: 18px; transition: border-color .2s ease, transform .2s ease; }
.channel-cards a:hover { transform: translateY(-4px); border-color: var(--green); }
.channel-cards svg { width: 36px; fill: none; stroke: var(--green); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.channel-cards span { display: grid; gap: 6px; }
.channel-cards small { color: var(--muted); font-size: .7rem; }
.channel-cards strong { color: var(--deep); font-size: .86rem; }
.channel-cards b { color: var(--green); font-size: 1.1rem; }

.security-faq { padding: clamp(90px, 10vw, 150px) clamp(22px, 6vw, 90px); display: grid; grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr); gap: clamp(50px, 9vw, 140px); background: var(--pale); }
.security-faq__heading { align-self: start; position: sticky; top: 130px; }
.security-faq__heading > p:last-child { max-width: 440px; margin: 26px 0 0; color: var(--muted); line-height: 1.75; }
.security-faq__items { display: grid; align-content: start; }
.security-faq details { border-top: 1px solid var(--line); }
.security-faq details:last-child { border-bottom: 1px solid var(--line); }
.security-faq summary { padding: 25px 0; display: grid; grid-template-columns: 1fr 34px; align-items: center; gap: 20px; color: var(--deep); cursor: pointer; font-size: clamp(1rem, 1.5vw, 1.18rem); font-weight: 700; list-style: none; }
.security-faq summary::-webkit-details-marker { display: none; }
.security-faq summary span { display: grid; width: 32px; height: 32px; place-items: center; color: var(--green); background: var(--mint); border-radius: 50%; transition: transform .2s ease; }
.security-faq details[open] summary span { transform: rotate(45deg); }
.security-faq details p { margin: -5px 50px 25px 0; color: var(--muted); font-size: .92rem; line-height: 1.75; }


@keyframes orbit-spin { to { transform: rotate(360deg); } }

@media (max-width: 1000px) {
  .site-header { grid-template-columns: 1fr auto; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 2px; background: currentColor; }
  .main-nav { position: absolute; top: calc(100% + 1px); right: 20px; left: 20px; display: none; padding: 22px; align-items: stretch; flex-direction: column; gap: 4px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 22px 50px rgba(0,61,46,.16); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 11px 8px; }
  .security-hero { grid-template-columns: 1fr; padding-top: 150px; }
  .security-hero__content { max-width: 780px; }
  .security-visual { width: min(100%, 520px); }
  .security-pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .official-channels { grid-template-columns: 1fr; }
  .official-channels__visual { min-height: 540px; order: 2; }
  .security-faq { grid-template-columns: 1fr; }
  .security-faq__heading { position: static; }
}

@media (max-width: 720px) {
  .site-header { min-height: 78px; padding: 11px 20px; }
  .security-hero { min-height: auto; padding: 128px 22px 90px; gap: 55px; }
  .security-hero h1 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  .security-hero__actions { align-items: flex-start; flex-direction: column; }
  .security-visual { width: 100%; }
  .security-visual__shield { width: 155px; height: 175px; }
  .security-visual__shield svg { width: 82px; }
  .security-chip { min-width: 190px; padding: 12px 14px; }
  .security-chip--top { top: 7%; right: 0; }
  .security-chip--bottom { bottom: 7%; left: 0; }
  .security-trust { grid-template-columns: 1fr; margin-top: -30px; }
  .security-trust article + article { border-top: 1px solid var(--line); border-left: 0; }
  .security-intro { grid-template-columns: 1fr; padding: 92px 22px 62px; }
  .security-pillars { grid-template-columns: 1fr; padding-right: 22px; padding-left: 22px; }
  .security-pillar { min-height: 280px; }
  .verification-path, .official-channels, .security-faq { padding-right: 22px; padding-left: 22px; }
  .verification-path__header { grid-template-columns: 1fr; }
  .verification-path__steps { grid-template-columns: 1fr; }
  .verification-path__steps::before { top: 8%; bottom: 8%; left: 43px; width: 2px; height: auto; }
  .verification-path__steps li { padding-left: 105px; }
  .official-channels__visual { min-height: 490px; transform: scale(.85); margin-inline: -30px; }
  .channel-cards { grid-template-columns: 1fr; }
  .security-faq details p { margin-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (min-width: 2200px) {
     .site-header {
        height: 120px;
        padding-right: 5vw;
    }

    .site-header.is-scrolled {
        height: 145px;
    }

    .main-nav a,
    .site-header.is-scrolled .main-nav a {
        font-size: 20px;
    }
}

@media (max-width: 1200px) {
   .site-header,
    .site-header.is-scrolled {
        height: 98px;
        min-height: 0;

        padding: 0 20px;

        color: #ffffff;
        background: rgba(0, 73, 52, 0.92);
    }

    .brand img,
    .site-header.is-scrolled .brand img {
           width: clamp(210px, 24vw, 270px);
    height: auto;
    max-width: none;
    max-height: none;
    }

  .site-header .menu-toggle {
    display: block;
  }

  .site-header .main-nav {
    position: absolute;
    top: 100%;
    right: auto;
    left: 0;

    display: none;
    flex-direction: column;
    align-items: center;

    width: 100%;
    margin-left: 0;
    gap: 0;
    padding: 12px 20px;

    color: var(--white);
    background: #005a42;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
  }

  .site-header .main-nav.is-open {
    display: flex;
  }

  .site-header .main-nav a,
  .site-header.is-scrolled .main-nav a,
  .site-header.is-scrolled .main-nav a:hover,
  .site-header.is-scrolled .main-nav a.active {
    width: 100%;
    padding: 13px;

    color: var(--white);
    font-size: 16px;
    text-align: center;
  }

  .site-header .main-nav a::after {
    display: none;
  }
}



@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header * {
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  gap: 30px;

  margin-top: 14px;
  padding: 34px clamp(28px, 5vw, 80px);

  color: var(--white);
  background: linear-gradient(105deg, #003d2e, #00664a);
  border-radius: 34px 34px 0 0;
}

.footer-brand img {
  width: 210px;
  height: auto;
  max-height: 90px;
  padding: 0;

  background: transparent;
  border-radius: 0;

  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  margin: 12px 0 0;

  font-size: 13px;
  line-height: 1.55;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 1vw, 38px);

  font-size: 14px;
}

.legal-nav .legal-nav__new-row {
  text-align: center;
}

.legal-nav button {
  padding: 8px 0;

  color: var(--white);
  background: transparent;
  border: 0;

  cursor: pointer;
}

.legal-nav a:hover,
.legal-nav button:hover {
  text-decoration: underline;
}

.regulators {
  display: grid;
  grid-template-columns: repeat(3, 82px);
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.regulators .footer-socials {
  grid-column: 1 / -1;
  justify-self: end;
}

.regulators > a {
  display: grid;
  place-items: center;

  width: 82px;
  height: 56px;
  padding: 7px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;

  transition: transform 0.2s ease;
}

.regulators > a:hover {
  transform: translateY(-3px);
}

.regulators > a img {
  display: block;

  width: auto;
  max-width: 100%;
  height: 38px;
  max-height: 100%;

  object-fit: contain;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-socials__title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-socials__links {
    display: flex;
    gap: 10px;
}

.footer-socials__links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.footer-socials__links a:hover {
    color: #075747;
    background: #ffc653;
    border-color: #ffc653;
    transform: translateY(-3px);
}

.footer-socials__links svg {
    width: 21px;
    height: 21px;
}



/* =========================================================
   MODAL LEGAL
========================================================= */

body.modal-open {
  overflow: hidden;
}

.legal-modal {
  width: min(820px, calc(100% - 32px));
  max-height: 80vh;
  padding: 34px;

  border: 0;
  border-radius: 24px;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.legal-modal::backdrop {
  background: rgba(0, 30, 22, 0.68);
  backdrop-filter: blur(4px);
}

.modal-close {
  position: sticky;
  top: 0;

  float: right;

  width: 40px;
  height: 40px;

  color: var(--white);
  background: var(--green);
  border: 0;
  border-radius: 50%;

  font-size: 25px;

  cursor: pointer;
}

.legal-modal h2 {
  margin-top: 0;
  color: var(--green-dark);
}

.legal-modal p {
  color: var(--muted);
  line-height: 1.7;
}

.legal-modal b,
.legal-modal strong {
  color: #000000;
  font-weight: bolder;
}


/* =========================================================
   BOTÓN ACEPTAR DEL MODAL
========================================================= */

.legal-modal .close2 {
  display: flex;
  justify-content: flex-end;

  margin-top: 30px;
  padding-top: 22px;

  border-top: 1px solid rgba(8, 113, 79, 0.14);
}

.legal-modal .close2 .boxed-btn3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-width: 145px;
  min-height: 48px;
  padding: 0 28px;

  color: #ffffff;
  background: linear-gradient(135deg, #08714f, #004f3a);

  border: 1px solid #08714f;
  border-radius: 9px;

  box-shadow: 0 8px 20px rgba(0, 79, 58, 0.18);

  font-family: "Manrope", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.legal-modal .close2 .boxed-btn3:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #006247, #003d2e);
  border-color: #004f3a;

  box-shadow: 0 12px 25px rgba(0, 79, 58, 0.25);

  transform: translateY(-2px);
}

.legal-modal .close2 .boxed-btn3:hover::after {
  transform: translateX(3px);
}

.legal-modal .close2 .boxed-btn3:active {
  box-shadow: 0 5px 12px rgba(0, 79, 58, 0.2);
  transform: translateY(0);
}

.legal-modal .close2 .boxed-btn3:focus-visible {
  outline: 3px solid #f4be4a;
  outline-offset: 4px;
}


/* =========================================================
   RESPONSIVE DEL FOOTER Y LOS MODALES
========================================================= */

@media (max-width: 1100px) {
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .legal-nav {
    justify-content: flex-end;
  }

  .regulators {
    grid-column: 1 / -1;
    justify-content: center;
  }
  
  .regulators {
  grid-column: 1 / -1;
  justify-content: center;
}

.regulators .footer-socials {
  justify-self: center;
}
}

@media (max-width: 780px) {
  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand img {
    margin: auto;
    object-position: center;
  }

  .legal-nav {
    flex-direction: column;
    gap: 10px;
  }

  .regulators {
    grid-column: auto;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .legal-modal .close2 {
    justify-content: stretch;
  }

  .legal-modal .close2 .boxed-btn3 {
    width: 100%;
  }
}

/*BOTON AFILIATE*/ 
.site-header .main-nav a.main-nav__affiliate,
.site-header .main-nav a.main-nav__affiliate:hover,
.site-header .main-nav a.main-nav__affiliate:focus,
.site-header .main-nav a.main-nav__affiliate:focus-visible {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    min-width: 225px;
    min-height: 46px;

    margin-left: 12px;
    padding: 11px 22px !important;

    box-sizing: border-box;

    color: #08714f;
    background: #ffffff;

    border: 2px solid #ffffff;
    border-radius: 999px;

    box-shadow: 0 8px 20px rgba(0, 61, 46, 0.25);

    font-weight: 800;
    line-height: 1;
    white-space: nowrap;

    transform: none !important;
}

.site-header .main-nav a.main-nav__affiliate:hover,
.site-header .main-nav a.main-nav__affiliate:focus-visible {
    padding: 11px 22px !important;

    color: #004f3a;
    background: #eaf7f1;
    border-color: #ffffff;

    box-shadow:
        0 12px 26px rgba(0, 0, 0, 0.24),
        0 0 0 4px rgba(255, 255, 255, 0.16);
}

.site-header .main-nav a.main-nav__affiliate::before,
.site-header .main-nav a.main-nav__affiliate::after {
    display: none !important;
}

@media (max-width: 900px) {
    .site-header .main-nav a.main-nav__affiliate {
        width: 100%;
        min-width: 0;
        margin: 12px 0 0;
    }
}

/* =========================================================
   BOTONES FLOTANTES
========================================================= */
:root {
    --branches-green: #08714f;
    --branches-dark: #004f3a;
    --branches-deep: #003d2e;
    --branches-mint: #eaf7f1;
    --branches-line: #ccdad4;
    --branches-muted: #59635f;
    --branches-white: #ffffff;
}

.branches-float,
.security-floating-button{
    position: fixed;
    left: 5px;
    z-index: 50;

    width: 56px;
    height: 56px;
    padding: 0;

    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;

    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;

    color: var(--branches-white);
    background: linear-gradient(135deg, var(--branches-green), var(--branches-dark));

    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;

    box-shadow:
        0 12px 30px rgba(0, 61, 46, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);

    font-family: Manrope, sans-serif;
    text-decoration: none;

    cursor:pointer;

    transition: width 0.4s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;

}

.preregistro-float{
  position: fixed;
  left:auto;
  flex-direction: row-reverse;
    right: 5px;
    z-index: 50;

    width: 56px;
    height: 56px;
    padding: 0;

    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;

    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;

    color: var(--branches-white);
    background: linear-gradient(135deg, var(--branches-green), var(--branches-dark));

    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;

    box-shadow:
        0 12px 30px rgba(0, 61, 46, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);

    font-family: Manrope, sans-serif;
    text-decoration: none;

    cursor:pointer;

    transition: width 0.4s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;  
}
/* =========================================================
  BOTÓN FLOTANTE DE WHATSAPP
========================================================= */
.floating-button--whatsapp {
    background: #25d366;
}
.whatsapp-btn {
    position: fixed;
    z-index: 19;
    right: 5px;
    bottom: 50px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 9px 25px rgba(0, 0, 0, 0.28);
}

.whatsapp-btn img { width: 32px; height: 32px; }
/*---------FIN WHATSAPP---------------*/


/* =========================================================
  BOTÓN FLOTANTE DE PREREGISTRO
========================================================= */

.preregistro-float {
    bottom: 110px;
}

.preregistro-float svg {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    padding: 16px;

    fill: currentColor;
    box-sizing: border-box;
}

.preregistro-float span{
    flex: 0 0 112px;
    padding-right: 18px;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    opacity: 0;
    transform: translateX(-12);
    transition:
        opacity 0.25s ease 0.1s,
        transform 0.3s ease 0.1s;
}

.preregistro-float:hover,
.preregistro-float:focus-visible{
    width: 168px;
    transform: translateY(-3px);
    background: linear-gradient(
        135deg,
        #09966a,
        var(--branches-green)
        );
    box-shadow:
        0 16px 36px rgba(0, 61, 46, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.preregistro-float:hover span,
.preregistro-float:focus-visible span{
    opacity: 1;
    transform: translateX(0);
}

.preregistro-float:focus-visible{
    outline: 3px solid rgba(8, 113, 79, 0.3);
    outline-offset: 4px;
}



/* BOTÓN FLOTANTE SUCURSALES */

.branches-float {
    bottom: 50px;
}

.branches-float svg {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    padding: 16px;

    fill: currentColor;
    box-sizing: border-box;
}

.branches-float span{
    flex: 0 0 112px;
    padding-right: 18px;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    opacity: 0;
    transform: translateX(-12);
    transition:
        opacity 0.25s ease 0.1s,
        transform 0.3s ease 0.1s;
}

.branches-float:hover,
.branches-float:focus-visible{
    width: 168px;
    transform: translateY(-3px);
    background: linear-gradient(
        135deg,
        #09966a,
        var(--branches-green)
        );
    box-shadow:
        0 16px 36px rgba(0, 61, 46, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.branches-float:hover span,
.branches-float:focus-visible span{
    opacity: 1;
    transform: translateX(0);
}

.branches-float:focus-visible{
    outline: 3px solid rgba(8, 113, 79, 0.3);
    outline-offset: 4px;
}

/* BOTÓN FLOTANTE TIPS DE SEGURIDAD */

.security-floating-button {
    bottom: 110px;

    width: 66px;
    height: 66px;
    padding: 8px;

    gap: 12px;

    overflow: hidden;
    isolation: isolate;

    background: linear-gradient(
        135deg,
        #08714f 0%,
        #006047 55%,
        #176946 100%
    );

    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;

    box-shadow:
        0 16px 34px rgba(0, 61, 46, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}


.security-floating-button::before {
    content: "";

    position: absolute;
    top: -70px;
    right: 35px;
    z-index: 0;

    width: 130px;
    height: 130px;

    background: rgba(244, 190, 74, 0.12);
    border-radius: 50%;

    pointer-events: none;
}

.security-floating-button::after {
    content: "";

    position: absolute;
    right: -75px;
    bottom: -115px;
    z-index: 0;

    width: 200px;
    height: 200px;

    background: rgba(0, 44, 33, 0.17);
    border-radius: 50%;

    pointer-events: none;
}

.security-floating-button__icon {
    position: relative;
    z-index: 1;

    flex: 0 0 50px;

    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    color: var(--branches-dark);
    background: var(--branches-white);
    border-radius: 50%;

    box-shadow: 0 5px 15px rgba(0, 35, 26, 0.2);
}

.security-floating-button__icon::after {
    content: "";

    position: absolute;
    top: 4px;
    right: 4px;

    width: 9px;
    height: 9px;

    background: #f4be4a;
    border: 2px solid var(--branches-white);
    border-radius: 50%;
}

.security-floating-button__icon svg {
    width: 29px;
    height: 29px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.security-floating-button__content {
    position: relative;
    z-index: 1;

    flex: 0 0 205px;

    padding-right: 16px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    line-height: 1.08;

    opacity: 0;
    transform: translateX(-12px);

    transition:
        opacity 0.25s ease 0.12s,
        transform 0.3s ease 0.12s;
}

.security-floating-button__content small {
    color: rgba(255, 255, 255, 0.72);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.055em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

.security-floating-button__content strong {
    margin-top: 2px;

    color: var(--branches-white);

    font-size: 19px;
    font-weight: 800;
    line-height: 1.05;
    white-space: nowrap;
}

.security-floating-button:hover,
.security-floating-button:focus-visible {
    width: 292px;

    transform: translateY(-3px);

    background: linear-gradient(
        135deg,
        #08714f 0%,
        #006047 55%,
        #176946 100%
    );

    box-shadow:
        0 20px 42px rgba(0, 61, 46, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.security-floating-button:hover
.security-floating-button__content,
.security-floating-button:focus-visible
.security-floating-button__content {
    opacity: 1;
    transform: translateX(0);
}

.security-floating-button:focus-visible {
    outline: 3px solid rgba(244, 190, 74, 0.55);
    outline-offset: 4px;
}

/* MODAL */

.branches-modal {
    width: min(760px, calc(100% - 32px));
    max-height: 86vh;
    margin: auto;
    padding: 0;

    color: #101413;
    background: var(--branches-white);

    border: 0;
    border-radius: 20px;

    box-shadow: 0 28px 80px rgba(0, 38, 28, 0.3);
    overflow: hidden;

    font-family: Manrope, sans-serif;
}

.branches-modal::backdrop {
    background: rgba(0, 26, 19, 0.7);
    backdrop-filter: blur(3px);
}

.branches-modal[open] {
    animation: branchesModalShow 0.25s ease;
}

@keyframes branchesModalShow {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.branches-modal,
.branches-modal * {
    box-sizing: border-box;
}


/* ENCABEZADO DEL MODAL */

.branches-modal__header {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 96px;
    padding: 24px 70px;

    border-bottom: 1px solid #edf2ef;
}

.branches-modal__header h2 {
    margin: 0;

    color: var(--branches-deep);

    font-size: clamp(25px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.branches-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;

    display: grid;
    place-items: center;

    width: 44px;
    height: 44px;
    padding: 0;

    color: var(--branches-deep);
    background: var(--branches-white);

    border: 1px solid var(--branches-green);
    border-radius: 50%;

    font-size: 30px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.branches-modal__close:hover {
    color: var(--branches-white);
    background: var(--branches-green);
    transform: rotate(90deg);
}


/* CONTENIDO */

.branches-modal__body {
    max-height: calc(86vh - 96px);
    padding: 24px 28px 30px;
    overflow-y: auto;
}


/* BUSCADOR */

.branches-search {
    position: relative;
}

.branches-search svg {
    position: absolute;
    top: 50%;
    left: 17px;
    transform: translateY(-50%);

    width: 21px;
    height: 21px;

    fill: var(--branches-muted);
    pointer-events: none;
}

.branches-search input {
    width: 100%;
    height: 54px;
    padding: 0 18px 0 50px;

    color: #101413;
    background: var(--branches-white);

    border: 1px solid var(--branches-line);
    border-radius: 10px;
    outline: none;

    font: inherit;
    font-size: 15px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.branches-search input:focus {
    border-color: var(--branches-green);
    box-shadow: 0 0 0 4px rgba(8, 113, 79, 0.12);
}


/* FILTROS */

.branches-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;

    margin: 18px 0 24px;
}

.branches-filter {
    min-width: 130px;
    padding: 10px 20px;

    color: var(--branches-dark);
    background: var(--branches-mint);

    border: 1px solid transparent;
    border-radius: 999px;

    font: inherit;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.branches-filter:hover,
.branches-filter.is-active {
    color: var(--branches-white);
    background: var(--branches-green);
    border-color: var(--branches-green);
}


/* TARJETAS */

.branches-list {
    display: grid;
    gap: 16px;
}

.branch-card {
    display: grid;
    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(175px, 0.75fr)
        130px;

    align-items: center;
    gap: 20px;

    padding: 20px;

    background: var(--branches-white);
    border: 1px solid var(--branches-line);
    border-radius: 14px;

    box-shadow: 0 6px 18px rgba(0, 61, 46, 0.06);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.branch-card:hover {
    transform: translateY(-2px);
    border-color: rgba(8, 113, 79, 0.5);
    box-shadow: 0 10px 24px rgba(0, 61, 46, 0.1);
}

.branch-card__location {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
}

.branch-card__icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;

    width: 52px;
    height: 52px;

    color: var(--branches-green);
    background: var(--branches-mint);
    border-radius: 50%;
}

.branch-card__icon svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.branch-card h3 {
    margin: 0 0 6px;

    color: var(--branches-green);

    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
}

.branch-card p {
    margin: 0;

    color: var(--branches-muted);

    font-size: 13px;
    line-height: 1.55;
}

.branch-card__contact {
    padding-left: 20px;
    border-left: 1px solid var(--branches-line);
}

.branch-card__contact a {
    display: inline-block;
    margin-bottom: 8px;

    color: var(--branches-dark);

    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.branch-card__contact a:hover {
    color: var(--branches-green);
    text-decoration: underline;
}

.branch-card__actions {
    display: grid;
    gap: 9px;
}

.branch-card__button {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;
    padding: 9px 13px;

    border: 1px solid var(--branches-green);
    border-radius: 7px;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.branch-card__button--primary {
    color: var(--branches-white);
    background: var(--branches-green);
}

.branch-card__button--primary:hover {
    background: var(--branches-dark);
}

.branch-card__button--outline {
    color: var(--branches-green);
    background: var(--branches-white);
}

.branch-card__button--outline:hover {
    color: var(--branches-white);
    background: var(--branches-green);
}

.branches-empty {
    margin: 24px 0 0;
    padding: 18px;

    color: var(--branches-muted);
    background: var(--branches-mint);
    border-radius: 10px;

    text-align: center;
}

.branches-empty[hidden],
.branch-card[hidden] {
    display: none;
}


/* RESPONSIVE */

@media (max-width: 760px) {
 .branches-float {
        left: 16px;
        bottom: 16px;

        width: 52px;
        height: 52px;
        padding: 0;
    }

    .branches-float svg {
        flex-basis: 52px;

        width: 52px;
        height: 52px;
    }

    .branches-float:hover,
    .branches-float:focus-visible {
        width: 164px;
    }

    .security-floating-button {
        left: 16px;
        bottom: 80px;

        width: 58px;
        height: 58px;
        padding: 7px;

        gap: 11px;
    }

    .security-floating-button__icon {
        flex-basis: 44px;

        width: 44px;
        height: 44px;
    }

    .security-floating-button__icon svg {
        width: 25px;
        height: 25px;
    }

    .security-floating-button__content {
        flex-basis: 195px;
    }

    .security-floating-button__content small {
        font-size: 9px;
    }

    .security-floating-button__content strong {
        font-size: 17px;
    }

    .security-floating-button:hover,
    .security-floating-button:focus-visible {
        width: 270px;
    }

    
    
    .branches-modal__header {
        min-height: 82px;
        padding: 20px 60px 20px 20px;
        justify-content: flex-start;
    }

    .branches-modal__header h2 {
        font-size: 24px;
        text-align: left;
    }

    .branches-modal__close {
        top: 18px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .branches-modal__body {
        max-height: calc(92vh - 82px);
        padding: 20px 16px 24px;
    }

    .branches-filters {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .branches-filter {
        min-width: max-content;
    }

    .branch-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .branch-card__contact {
        padding: 14px 0 0;
        border-top: 1px solid var(--branches-line);
        border-left: 0;
    }

    .branch-card__actions {
        grid-template-columns: 1fr 1fr;
    }

    .branches-float {
        left: 16px;
        bottom: 16px;
        min-height: 50px;
        padding: 11px 18px;
    }
}

@media (max-width: 420px) {
    .branch-card__actions {
        grid-template-columns: 1fr;
    }
    .whatsapp-btn { right: 16px; bottom: 16px; }


}