body[data-skin="home"]{
  background: #f3f4f6;
  color: #111827;
}

.homeHome{
  min-height: 100svh;
  background: #f3f4f6;
}

/* Header */
.homeHeader{
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.94));
  border-bottom: 1px solid rgba(17,24,39,.08);
  backdrop-filter: blur(10px);
}

.homeHeader__inner{
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.homeBrand{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #133b63;
}

.homeBrand__logo{
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.homeBrand__text{
  font-family: "Space Grotesk", system-ui;
  font-size: clamp(28px, 2.4vw, 44px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: .01em;
  color: #143d67;
}

.homeNav{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.homeNav a{
  text-decoration: none;
  color: #161616;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 14px;
}

.homeNav span{
  color: rgba(0,0,0,.35);
  font-weight: 600;
}

.homeNav a:hover{
  color: #1f5f95;
}

.homeHeader__right{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.homeLang{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #133b63;
  font-weight: 700;
  border: 1px solid rgba(19,59,99,.16);
  background: rgba(19,59,99,.04);
}

.homeLang:hover{
  background: rgba(19,59,99,.08);
}

/* Hero */
.heroShowcase{
  position: relative;
  min-height: min(980px, calc(100svh - 92px));
  overflow: hidden;
  display: grid;
  place-items: center;
}

.heroShowcase__bg{
  position: absolute;
  inset: 0;
  background:
    url("/ui/hero.jpg") center center / cover no-repeat;
  transform: scale(1.02);
}

.heroShowcase__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.12) 16%, rgba(0,0,0,.34) 58%, rgba(255,255,255,.42) 100%),
    linear-gradient(90deg, rgba(0,0,0,.14) 0%, rgba(0,0,0,.04) 40%, rgba(0,0,0,.18) 100%);
}

.heroShowcase__content{
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 40px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 0 140px;
}

.heroShowcase__eyebrow{
  margin: 0 0 18px;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-shadow: 0 3px 14px rgba(0,0,0,.42);
}

.heroShowcase__title{
  margin: 0;
  color: #fff;
  font-family: "Space Grotesk", system-ui;
  font-weight: 700;
  line-height: .96;
  letter-spacing: .01em;
  text-transform: uppercase;
  font-size: clamp(38px, 6vw, 98px);
  text-shadow:
    0 4px 18px rgba(0,0,0,.34),
    0 1px 0 rgba(0,0,0,.36);
}

.heroShowcase__subtitle{
  max-width: 1000px;
  margin: 18px auto 0;
  color: rgba(255,255,255,.96);
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 600;
  line-height: 1.35;
  text-shadow: 0 3px 14px rgba(0,0,0,.35);
}

.heroShowcase__actions{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.heroBtn{
  min-width: 240px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .04em;
  font-size: 15px;
  transition: transform 200ms cubic-bezier(.2,.8,.2,1), filter 200ms cubic-bezier(.2,.8,.2,1), box-shadow 200ms cubic-bezier(.2,.8,.2,1);
}

.heroBtn:hover{
  transform: translateY(-2px);
}

.heroBtn--primary{
  color: #fff;
  background: linear-gradient(180deg, #1e77bc, #165f98);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}

.heroBtn--ghost{
  color: #1b5c8f;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(244,247,250,.96));
  border: 2px solid rgba(28,102,156,.42);
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}

.heroShowcase__trust{
  margin: 46px 0 0;
  color: rgba(255,255,255,.95);
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 500;
  text-shadow: 0 3px 14px rgba(0,0,0,.35);
}

.heroLogos{
  width: 100%;
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: end;
}

.heroLogos span{
  display: block;
  text-align: center;
  color: rgba(0,0,0,.85);
  font-family: "Space Grotesk", system-ui;
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 38px);
  line-height: 1.02;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(255,255,255,.55);
}

/* Quick cards under hero */
.homeQuick{
  position: relative;
  margin-top: -56px;
  z-index: 2;
  padding: 0 0 28px;
}

.homeQuick__grid{
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.homeCard{
  display: block;
  text-decoration: none;
  color: #0f172a;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.10);
  backdrop-filter: blur(10px);
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), box-shadow 220ms cubic-bezier(.2,.8,.2,1);
}

.homeCard:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,.14);
}

.homeCard__kicker{
  display: block;
  margin-bottom: 10px;
  color: #1c6aa5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.homeCard__title{
  display: block;
  font-family: "Space Grotesk", system-ui;
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 10px;
}

.homeCard__text{
  margin: 0;
  color: rgba(15,23,42,.72);
  line-height: 1.55;
  font-size: 15px;
}

/* Drawer button on home */
body[data-skin="home"] .navBtn{
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 80;
  display: none;
}

/* WhatsApp */
.waFloat{
  position: fixed;
  z-index: 80;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.96);
  background: linear-gradient(180deg, rgba(34,197,94,.94), rgba(34,197,94,.72));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), filter 220ms cubic-bezier(.2,.8,.2,1);
}

.waFloat:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.waFloat__icon{
  width: 22px;
  height: 22px;
  display: block;
}

.waFloat__txt{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
}

/* Footer */
.footer{
  width: 100%;
  margin: 10px 0 0;
  padding: 28px 0 18px;
  border-top: 1px solid rgba(15,23,42,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.68));
}

.footer__inner{
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
}

.footer__grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.footer__name{
  margin: 0;
  font-family: "Space Grotesk", system-ui;
  font-weight: 700;
  letter-spacing: .02em;
  color: #0f172a;
}

.footer__desc{
  margin: 6px 0 0;
  color: rgba(15,23,42,.70);
  font-size: 14px;
  line-height: 1.5;
}

.footer__h{
  margin: 0 0 8px;
  font-size: 12px;
  color: rgba(15,23,42,.62);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer__list{
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: rgba(15,23,42,.76);
}

.footer a{
  color: #0f172a;
  text-decoration: none;
}

.footer a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__bottom{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(15,23,42,.08);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  color: rgba(15,23,42,.54);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 1180px){
  .heroLogos{
    grid-template-columns: repeat(2, 1fr);
  }

  .homeQuick__grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px){
  .homeHeader__inner{
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 84px;
  }

  .homeNav--desktop{
    display: none;
  }

  .homeHeader__right{
    margin-right: 60px;
  }

  body[data-skin="home"] .navBtn{
    display: inline-flex;
  }

  .heroShowcase{
    min-height: auto;
  }

  .heroShowcase__content{
    padding: 78px 0 110px;
  }

  .heroShowcase__title{
    line-height: 1.02;
  }

  .heroShowcase__subtitle{
    max-width: 720px;
  }

  .heroLogos span{
    font-size: clamp(18px, 4.8vw, 30px);
  }

  .footer__grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .homeHeader__inner{
    width: min(100% - 24px, 100%);
    min-height: 78px;
  }

  .homeBrand{
    gap: 10px;
  }

  .homeBrand__logo{
    width: 48px;
    height: 48px;
  }

  .homeBrand__text{
    font-size: 28px;
  }

  .homeHeader__right{
    margin-right: 56px;
  }

  .homeLang{
    min-width: 42px;
    height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .heroShowcase__content{
    width: min(100% - 24px, 100%);
    padding: 62px 0 94px;
  }

  .heroShowcase__eyebrow{
    font-size: 11px;
    letter-spacing: .18em;
    margin-bottom: 14px;
  }

  .heroShowcase__title{
    font-size: clamp(30px, 10vw, 52px);
  }

  .heroShowcase__subtitle{
    font-size: 15px;
    line-height: 1.42;
    margin-top: 14px;
  }

  .heroShowcase__actions{
    width: 100%;
    gap: 10px;
    margin-top: 22px;
  }

  .heroBtn{
    width: 100%;
    min-width: 0;
    min-height: 54px;
    font-size: 14px;
  }

  .heroShowcase__trust{
    margin-top: 28px;
    font-size: 15px;
    line-height: 1.35;
  }

  .heroLogos{
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }

  .heroLogos span{
    font-size: 22px;
  }

  .homeQuick{
    margin-top: -34px;
  }

  .homeQuick__grid{
    width: min(100% - 24px, 100%);
    gap: 14px;
  }

  .homeCard{
    padding: 20px;
    border-radius: 18px;
  }

  .homeCard__title{
    font-size: 24px;
  }

  .waFloat__txt{
    display: none;
  }

  .waFloat{
    padding: 12px;
  }

  .footer__inner{
    width: min(100% - 24px, 100%);
  }
}