/* =========================================================
   SPAIN LANDING
   Current file: landing-es-skeleton.css
   Scope: .es2-lp
   ========================================================= */

.es2-lp {
  --es2-bg: #020d13;
  --es2-bg-soft: #061720;

  --es2-white: #ffffff;
  --es2-muted: #c8ccd4;

  --es2-red: #f20b16;
  --es2-orange: #ff6900;
  --es2-yellow: #ffc51c;

  --es2-border: rgba(244, 40, 33, 0.62);
  --es2-line: rgba(255, 255, 255, 0.18);

  --es2-max: 980px;

  min-height: 100vh;
  overflow-x: hidden;

  background: var(--es2-bg);
  color: var(--es2-white);

  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif !important;
}

.es2-lp *,
.es2-lp *::before,
.es2-lp *::after {
  box-sizing: border-box;
}

.es2-lp a {
  text-decoration: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.es2-container {
  position: relative;
  z-index: 2;

  width: min(var(--es2-max), calc(100% - 32px));

  margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.es2-hero {
  position: relative;

  min-height: 700px;

  padding: 40px 0 16px;

  overflow: hidden;

  text-align: center;
}

.es2-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 0;

  background:
    linear-gradient(
      180deg,
      rgba(1, 7, 12, 0.24) 0%,
      rgba(1, 7, 12, 0.32) 34%,
      rgba(1, 7, 12, 0.48) 70%,
      rgba(1, 7, 12, 0.92) 100%
    ),
    linear-gradient(
      90deg,
      rgba(1, 7, 12, 0.16) 0%,
      rgba(1, 7, 12, 0.24) 50%,
      rgba(1, 7, 12, 0.34) 100%
    ),
    url("https://maztool.com/wp-content/uploads/2026/09/lps-es-2-bg.webp");

  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}


/* =========================================================
   PILL
   ========================================================= */

.es2-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  margin-bottom: 20px;

  padding: 9px 21px;

  border: 1px solid rgba(255, 197, 28, 0.85);
  border-radius: 999px;

  background: rgba(11, 16, 18, 0.73);

  color: #ffe18a;

  font-size: 13px;
  font-weight: 800;

  letter-spacing: 0.07em;

  text-transform: uppercase;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.es2-pill-icon {
  color: var(--es2-yellow);

  font-size: 19px;
  line-height: 1;
}


/* =========================================================
   HEADING
   ========================================================= */

.es2-h1 {
  max-width: 880px;

  margin: 0 auto;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif !important;

  font-size: clamp(44px, 4.4vw, 65px);
  font-weight: 800;
  line-height: 0.98;

  letter-spacing: -0.045em;

  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.65);
}

.es2-h1 span {
  color: #ffd17b;
}


/* =========================================================
   SUBTITLE
   ========================================================= */

.es2-sub {
  max-width: 720px;

  margin: 16px auto 20px;

  color: rgba(255, 255, 255, 0.77);

  font-size: 18px;
  line-height: 1.45;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.72);
}


/* =========================================================
   CARDS
   ========================================================= */

.es2-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 13px;

  width: min(820px, 100%);

  margin: 0 auto 13px;
}

.es2-card {
  display: flex;
  flex-direction: column;

  min-height: 180px;

  padding: 17px;

  border: 1px solid var(--es2-border);
  border-radius: 12px;

  background:
    linear-gradient(
      145deg,
      rgba(70, 15, 18, 0.72),
      rgba(4, 15, 20, 0.92)
    );

  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);

  text-align: left;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.es2-card-icon {
  display: grid;
  place-items: center;

  width: 48px;
  height: 48px;

  margin-bottom: 9px;

  border: 1px solid rgba(255, 48, 34, 0.82);
  border-radius: 13px;

  background: rgba(77, 16, 18, 0.63);
}

.es2-card-icon svg {
  display: block;

  width: 25px;
  height: 25px;

  fill: var(--es2-yellow);
}

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

  color: #ffffff;

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

.es2-card p {
  margin: 0;

  color: rgba(255, 255, 255, 0.71);

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


/* =========================================================
   CTA
   ========================================================= */

.es2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 18px;

  min-width: 315px;

  padding: 13px 26px;

  border: 1px solid #ffd42c;
  border-radius: 12px;

  background:
    linear-gradient(
      100deg,
      #ef0015 0%,
      #ff1714 32%,
      #ff6c05 68%,
      #ffc31c 100%
    );

  color: #ffffff !important;

  font-size: 20px;
  font-weight: 900;

  box-shadow:
    0 0 11px rgba(255, 36, 23, 0.55),
    0 0 25px rgba(255, 116, 7, 0.38);

  transition:
    transform 0.18s ease,
    filter 0.18s ease;
}

.es2-btn:hover {
  color: #ffffff !important;

  transform: translateY(-1px);

  filter: brightness(1.08);
}

.es2-btn span {
  font-size: 25px;
  line-height: 1;
}

.es2-btn-mobile {
  display: none;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.es2-benefits {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 0;

  margin: 11px auto 8px;
}

.es2-benefits > div {
  display: flex;
  align-items: center;

  gap: 8px;

  padding: 0 20px;

  border-right: 1px solid rgba(255, 255, 255, 0.35);

  color: rgba(255, 255, 255, 0.92);

  font-size: 13px;
}

.es2-benefits > div:last-child {
  border-right: 0;
}

.es2-benefits i,
.es2-mobile-benefits i {
  display: grid;
  place-items: center;

  width: 21px;
  height: 21px;

  flex: 0 0 21px;

  border-radius: 50%;

  background: var(--es2-yellow);

  color: #17200d;

  font-style: normal;
  font-weight: 900;
}


/* =========================================================
   TRUST
   ========================================================= */

.es2-trust,
.es2-mobile-trust,
.es2-step-trust {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 8px 17px;

  border: 1px solid rgba(255, 197, 0, 0.85);
  border-radius: 999px;

  background: rgba(3, 13, 17, 0.82);

  color: #ffffff;

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

.es2-trust span,
.es2-mobile-trust span,
.es2-step-trust span {
  color: var(--es2-yellow);

  font-size: 18px;
}

.es2-mobile-benefits,
.es2-mobile-trust {
  display: none;
}


/* =========================================================
   RISK
   ========================================================= */

.es2-risk {
  margin: 6px auto 0;

  color: rgba(255, 255, 255, 0.64);

  font-size: 10px;
}


/* =========================================================
   STEPS
   ========================================================= */

.es2-steps {
  position: relative;

  padding: 20px 0 28px;

  border-top: 1px solid rgba(255, 184, 28, 0.3);

  background:
    radial-gradient(
      circle at 50% 0,
      rgba(20, 53, 70, 0.28),
      transparent 55%
    ),
    linear-gradient(
      180deg,
      #071722,
      #020d13
    );
}

.es2-steps h2 {
  margin: 0 0 17px;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif !important;

  font-size: 35px;
  font-weight: 800;

  text-align: center;
}

.es2-steps h2 span {
  color: #ffd17b;
}

.es2-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 28px;

  margin-bottom: 15px;
}

.es2-step {
  position: relative;

  display: grid;
  grid-template-columns: 48px 1fr;

  gap: 15px;

  align-items: start;
}

.es2-step:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 23px;
  right: -20px;

  width: 38px;
  height: 1px;

  background: rgba(255, 255, 255, 0.25);
}

.es2-number {
  display: grid;
  place-items: center;

  width: 46px;
  height: 46px;

  border: 1px solid rgba(255, 29, 29, 0.85);
  border-radius: 50%;

  background: rgba(65, 15, 18, 0.43);

  color: #ffffff;

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

.es2-step h3 {
  margin: 1px 0 4px;

  color: #ffffff;

  font-size: 15px;
  font-weight: 800;
}

.es2-step p {
  margin: 0;

  color: rgba(255, 255, 255, 0.65);

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

.es2-create-btn {
  display: flex;

  width: fit-content;

  margin: 0 auto 10px;
}

.es2-step-trust {
  display: none;
}

.es2-step-risk {
  display: none;
}


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

.es2-footer {
  padding: 32px 0 38px;

  background: #020d13;
}

.es2-footer .es2-container {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.es2-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 20px 34px;

  padding: 25px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.es2-footer-links a {
  color: rgba(255, 255, 255, 0.82);

  font-size: 14px;
  line-height: 1.4;

  text-decoration: none;
}

.es2-footer-links a:hover {
  color: #ffffff;
}

.es2-company {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 18px 45px;

  width: min(820px, 100%);

  margin: 0 auto;

  padding: 30px 0;
}

.es2-company-row {
  display: flex;
  align-items: center;

  gap: 13px;

  min-width: 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 14px;
  line-height: 1.45;
}

.es2-company-row a {
  min-width: 0;

  color: rgba(255, 255, 255, 0.72);

  overflow-wrap: anywhere;

  text-decoration: none;
}

.es2-company-row a:hover {
  color: #ffffff;
}

.es2-company-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  min-width: 28px;
  max-width: 28px;

  flex: 0 0 28px;
}

.es2-company-icon svg {
  display: block !important;

  width: 23px !important;
  height: 23px !important;

  min-width: 23px !important;
  max-width: 23px !important;

  fill: #bac1ce;
}

.es2-copyright {
  display: block;

  padding-top: 28px;

  border-top: 1px solid rgba(255, 255, 255, 0.16);

  color: rgba(255, 255, 255, 0.7);

  font-size: 14px;
  line-height: 1.55;

  text-align: center;
}


/* =========================================================
   LARGE DESKTOP
   Client request: bigger desktop layout
   ========================================================= */

@media (min-width: 1200px) {

  .es2-hero {
    min-height: 790px;

    padding-top: 48px;
    padding-bottom: 20px;
  }

  .es2-hero .es2-container {
    width: min(1180px, calc(100% - 48px));
  }


  /* Pill */

  .es2-pill {
    gap: 11px;

    margin-bottom: 24px;

    padding: 11px 25px;

    font-size: 15px;
  }

  .es2-pill-icon {
    font-size: 21px;
  }


  /* Main heading */

  .es2-h1 {
    max-width: 1040px;

    font-size: clamp(68px, 4.5vw, 78px);
    line-height: 0.99;
  }


  /* Subtitle */

  .es2-sub {
    max-width: 840px;

    margin-top: 21px;
    margin-bottom: 27px;

    font-size: 20px;
    line-height: 1.5;
  }


  /* Cards */

  .es2-cards {
    width: min(1000px, 100%);

    gap: 17px;

    margin-bottom: 18px;
  }

  .es2-card {
    min-height: 210px;

    padding: 22px 22px 21px;

    border-radius: 15px;
  }

  .es2-card-icon {
    width: 57px;
    height: 57px;

    margin-bottom: 14px;

    border-radius: 14px;
  }

  .es2-card-icon svg {
    width: 30px;
    height: 30px;
  }

  .es2-card h3 {
    margin-bottom: 8px;

    font-size: 18px;
    line-height: 1.32;
  }

  .es2-card p {
    font-size: 15px;
    line-height: 1.55;
  }


  /* CTA */

  .es2-btn {
    min-width: 380px;

    padding: 16px 32px;

    border-radius: 13px;

    font-size: 22px;
  }

  .es2-btn span {
    font-size: 27px;
  }


  /* Benefits */

  .es2-benefits {
    margin-top: 15px;
    margin-bottom: 11px;
  }

  .es2-benefits > div {
    gap: 9px;

    padding-left: 25px;
    padding-right: 25px;

    font-size: 14px;
  }

  .es2-benefits i {
    width: 24px;
    height: 24px;

    flex-basis: 24px;
  }


  /* Trust */

  .es2-trust {
    padding: 9px 21px;

    font-size: 13px;
  }

  .es2-trust span {
    font-size: 20px;
  }


  /* Risk */

  .es2-risk {
    margin-top: 9px;

    font-size: 11px;
  }


  /* Steps */

  .es2-steps {
    padding-top: 27px;
    padding-bottom: 34px;
  }

  .es2-steps .es2-container {
    width: min(1100px, calc(100% - 48px));
  }

  .es2-steps h2 {
    margin-bottom: 24px;

    font-size: 42px;
  }

  .es2-steps-grid {
    gap: 40px;

    margin-bottom: 22px;
  }

  .es2-step {
    grid-template-columns: 58px 1fr;

    gap: 18px;
  }

  .es2-step:not(:last-child)::after {
    top: 28px;
    right: -27px;

    width: 50px;
  }

  .es2-number {
    width: 55px;
    height: 55px;

    font-size: 22px;
  }

  .es2-step h3 {
    font-size: 17px;
  }

  .es2-step p {
    font-size: 14px;
  }

  .es2-create-btn {
    min-width: 340px;

    margin-bottom: 12px;
  }

}


/* =========================================================
   EXTRA LARGE DESKTOP
   ========================================================= */

@media (min-width: 1600px) {

  .es2-hero {
    min-height: 820px;
  }

  .es2-h1 {
    font-size: 80px;
  }

  .es2-sub {
    font-size: 21px;
  }

  .es2-cards {
    width: 1040px;
  }

  .es2-card {
    min-height: 218px;
  }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .es2-company {
    gap: 18px 24px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .es2-desktop-only {
    display: none;
  }

  .es2-container {
    width: calc(100% - 36px);
  }


  /* Hero */

  .es2-hero {
    min-height: auto;

    padding: 325px 0 0;

    padding-top: 70px;

    text-align: left;
  }

  .es2-hero::before {
    height: 610px;

    background:
      linear-gradient(
        180deg,
        rgba(1, 7, 12, 0.16) 0%,
        rgba(1, 7, 12, 0.22) 42%,
        rgba(1, 7, 12, 0.82) 78%,
        #020d13 100%
      ),
      linear-gradient(
        90deg,
        rgba(1, 7, 12, 0.18),
        rgba(1, 7, 12, 0.26)
      ),
      url("https://maztool.com/wp-content/uploads/2026/09/lps-es-2-bg.webp");

    background-position: 28% top;
    background-repeat: no-repeat;
    background-size: auto 610px;
  }


  /* Pill */

  .es2-pill {
    display: flex;

    width: fit-content;

    margin: -35px auto 42px;

    padding: 10px 17px;

    font-size: 12px;
  }


  /* Heading */

  .es2-h1 {
    margin: 0;

    font-family:
      ui-sans-serif,
      system-ui,
      -apple-system,
      "Segoe UI",
      Roboto,
      Arial,
      sans-serif !important;

    font-size: 43px;
    font-weight: 900;
    line-height: 1.03;

    letter-spacing: -0.045em;

    text-align: left;
  }

  .es2-h1 br {
    display: none;
  }


  /* Subtitle */

  .es2-sub {
    margin: 26px 0 25px;

    color: rgba(255, 255, 255, 0.84);

    font-size: 18px;
    line-height: 1.55;

    text-align: center;
  }


  /* Mobile CTA */

  .es2-btn-mobile {
    display: flex;

    width: 100%;

    margin-bottom: 20px;

    font-size: 21px;
  }

  .es2-btn-desktop {
    display: none;
  }


  /* Mobile benefits */

  .es2-mobile-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 0;

    margin-bottom: 20px;
  }

  .es2-mobile-benefits > div {
    display: flex;
    align-items: flex-start;

    gap: 8px;

    padding: 0 9px;

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

    color: #ffffff;

    font-size: 12px;
    line-height: 1.2;
  }

  .es2-mobile-benefits > div:first-child {
    padding-left: 0;
  }

  .es2-mobile-benefits > div:last-child {
    padding-right: 0;

    border-right: 0;
  }

  .es2-mobile-trust {
    display: flex;

    width: fit-content;

    margin: 0 auto 25px;

    font-size: 12px;
  }


  /* Cards */

  .es2-cards {
    grid-template-columns: 1fr;

    gap: 0;

    width: 100%;

    margin-bottom: 0;

    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .es2-card {
    position: relative;

    display: grid;
    grid-template-columns: 76px 1fr;

    gap: 16px;

    min-height: 120px;

    padding: 20px 5px;

    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;

    background: transparent;

    box-shadow: none;

    align-items: center;
  }

  .es2-card::after {
    content: "›";

    position: absolute;
    top: 50%;
    right: 0;

    color: #a4abb8;

    font-size: 40px;
    font-weight: 300;

    transform: translateY(-54%);
  }

  .es2-card-icon {
    width: 70px;
    height: 70px;

    margin: 0;

    border-radius: 14px;

    background:
      linear-gradient(
        145deg,
        rgba(93, 20, 20, 0.8),
        rgba(29, 16, 18, 0.9)
      );
  }

  .es2-card-icon svg {
    width: 34px;
    height: 34px;
  }

  .es2-card-copy {
    padding-right: 20px;
  }

  .es2-card h3 {
    margin-bottom: 5px;

    font-size: 17px;
  }

  .es2-card p {
    font-size: 15px;
    line-height: 1.4;
  }

  .es2-benefits,
  .es2-trust,
  .es2-risk {
    display: none;
  }


  /* Second CTA after cards */

  .es2-cards + .es2-btn-desktop {
    display: flex;

    width: 100%;

    margin-top: 28px;
    margin-bottom: 28px;

    font-size: 21px;
  }


  /* Steps */

  .es2-steps {
    padding: 65px 0 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .es2-steps h2 {
    max-width: 350px;

    margin: 0 0 37px;

    font-family:
      ui-sans-serif,
      system-ui,
      -apple-system,
      "Segoe UI",
      Roboto,
      Arial,
      sans-serif !important;

    font-size: 39px;
    line-height: 1.05;

    text-align: left;
  }

  .es2-steps-grid {
    grid-template-columns: 1fr;

    gap: 0;

    margin-bottom: 36px;
  }

  .es2-step {
    grid-template-columns: 68px 1fr;

    gap: 20px;

    padding: 0 0 28px;

    margin-bottom: 28px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .es2-step:last-child {
    margin-bottom: 0;
  }

  .es2-step:not(:last-child)::after {
    display: none;
  }

  .es2-number {
    width: 58px;
    height: 58px;

    font-size: 23px;
  }

  .es2-step h3 {
    font-size: 20px;
  }

  .es2-step p {
    font-size: 17px;
    line-height: 1.45;
  }

  .es2-create-btn {
    width: 100%;

    margin-bottom: 19px;

    font-size: 21px;
  }

  .es2-step-trust {
    display: flex;

    width: fit-content;

    margin: 0 auto 23px;

    font-size: 13px;
  }

  .es2-step-risk {
    display: block;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.67);

    font-size: 15px;
    line-height: 1.45;

    text-align: center;
  }


  /* Footer */

  .es2-footer {
    padding: 23px 0 42px;

    background: #020d13;
  }

  .es2-footer .es2-container {
    border-top: 0;
  }

  .es2-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 22px 32px;

    padding: 31px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.19);
    border-bottom: 1px solid rgba(255, 255, 255, 0.19);
  }

  .es2-footer-links a {
    color: rgba(255, 255, 255, 0.82);

    font-size: 14px;
  }

  .es2-company {
    display: flex;
    flex-direction: column;

    width: 100%;

    gap: 20px;

    padding: 30px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.19);
  }

  .es2-company-row {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);

    gap: 15px;

    align-items: center;

    color: rgba(255, 255, 255, 0.73);

    font-size: 15px;
  }

  .es2-company-row a {
    color: rgba(255, 255, 255, 0.73);
  }

  .es2-company-icon {
    display: grid;
    place-items: center;

    width: 30px;
    height: 30px;

    min-width: 30px;
    max-width: 30px;

    flex: 0 0 30px;
  }

  .es2-company-icon svg {
    display: block !important;

    width: 25px !important;
    height: 25px !important;

    min-width: 25px !important;
    max-width: 25px !important;

    fill: #bac1ce;
  }

  .es2-copyright {
    display: block;

    padding-top: 34px;

    border-top: 0;

    color: rgba(255, 255, 255, 0.71);

    font-size: 14px;
    line-height: 1.55;

    text-align: center;
  }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 390px) {

  .es2-container {
    width: calc(100% - 28px);
  }

  .es2-h1 {
    font-size: 37px;
  }

  .es2-sub {
    font-size: 16px;
  }

  .es2-pill {
    font-size: 10px;
  }

  .es2-steps h2 {
    font-size: 34px;
  }

  .es2-mobile-benefits > div {
    padding-left: 6px;
    padding-right: 6px;

    font-size: 11px;
  }

  .es2-footer-links {
    gap: 18px 22px;
  }

  .es2-company-row {
    font-size: 14px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .es2-btn {
    transition: none;
  }

}