/* =========================
   RESET
========================= */
*,
*::before,
*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:#060608;
  color:#fff;
  font-family:Inter,system-ui,sans-serif;
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.site-main{min-height:40vh}

.en9-wrap{
  width:min(100% - 32px,1200px);
  margin:auto;
}

/* =========================
   TOP BAR
========================= */
.en9-topbar{
  background:
    radial-gradient(circle at 78% 35%, rgba(255,0,60,.10), transparent 20%),
    linear-gradient(180deg,#020204,#06070a);
  border-bottom:1px solid rgba(255,255,255,.08);
  padding:14px 0 12px;
}

.en9-topbar__inner{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  align-items:center;
}

.en9-topbar__left{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  font-size:13px;
  color:#d7d7dd;
  align-content:flex-start;
}

.en9-dot{opacity:.45}

.en9-topbar__contact{
  width:100%;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
  margin-top:10px;
}

.en9-topbar__contact a{
  color:#ff6b86;
  font-weight:800;
}

.en9-topbar__alert{
  color:#dcbc7d;
  font-weight:800;
}

.en9-topbar__right{
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

.en9-topbar__logo{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  line-height:0;
  width:100%;
}

.en9-topbar__logo img{
  width:520px;
  max-width:100%;
  height:auto;
  object-fit:contain;
  filter:
    drop-shadow(0 0 25px rgba(255,255,255,.25))
    drop-shadow(0 0 60px rgba(255,0,0,.18));
}

/* =========================
   HEADER
========================= */
.en9-header{
  background:#0a0a0f;
  border-top:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.08);
  position:relative;
  z-index:50;
  box-shadow:0 16px 40px rgba(0,0,0,.22);
}

.en9-header__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:14px 0 10px;
}

.en9-header__socials{
  display:flex;
  gap:10px;
  flex-shrink:0;
}

.en9-social{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 22px rgba(0,0,0,.22);
  transition:.25s ease;
}

.en9-social:hover{
  transform:translateY(-3px) scale(1.08);
  box-shadow:0 0 20px rgba(255,255,255,.2);
}

.en9-social svg{
  width:20px;
  height:20px;
  fill:#fff;
}

.en9-social--facebook{background:#1877f2}
.en9-social--instagram{background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af)}
.en9-social--tiktok{background:#111}
.en9-social--youtube{background:#ff0000}

.en9-brand{
  text-align:right;
  min-width:0;
}

.en9-brand__title{
  font-size:32px;
  font-weight:900;
  line-height:1;
  color:#ff5d7d;
  text-shadow:0 0 18px rgba(255,93,125,.14);
}

.en9-brand__sub{
  display:block;
  margin-top:6px;
  font-size:12px;
  letter-spacing:.2em;
  color:#dcbc7d;
}

/* =========================
   MENU
========================= */
.en9-header__nav{
  padding-bottom:12px;
  overflow:hidden;
}

.en9-menu{
  list-style:none;
  display:flex;
  flex-wrap:nowrap;
  gap:18px;
  overflow-x:auto;
  overflow-y:hidden;
  white-space:nowrap;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  scroll-behavior:smooth;
  padding:0;
  margin:0;
  align-items:center;
}

.en9-menu::-webkit-scrollbar{display:none}

.en9-menu li{
  list-style:none;
  flex:0 0 auto;
}

.en9-menu a{
  font-size:15px;
  font-weight:700;
  color:#fff;
  white-space:nowrap;
  opacity:.9;
  transition:.2s;
}

.en9-menu a:hover{
  opacity:1;
  color:#ff5d7d;
}

/* =========================
   HERO
========================= */
.en9-hero{
  position:relative;
  min-height:84vh;
  overflow:hidden;
}

.en9-hero__slider,
.en9-slide,
.en9-slide img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.en9-slide{
  opacity:0;
  transition:opacity .9s ease;
}

.en9-slide.is-active{
  opacity:1;
}

.en9-slide img{
  object-fit:cover;
  filter:brightness(.78) contrast(1.05);
}

.en9-hero__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(0,0,0,.88) 0%,rgba(0,0,0,.70) 38%,rgba(0,0,0,.45) 100%),
    radial-gradient(circle at right top, rgba(255,0,0,.10), transparent 25%);
}

.en9-hero__content{
  position:relative;
  z-index:2;
  width:100%;
  display:grid;
  grid-template-columns:1.1fr .72fr;
  gap:34px;
  align-items:center;
  padding:110px 0 82px;
}

.en9-kicker{
  display:inline-block;
  margin-bottom:14px;
  font-size:12px;
  letter-spacing:.24em;
  font-weight:800;
  text-transform:uppercase;
  color:#dcbc7d;
}

.en9-hero__copy h1{
  margin:0 0 18px;
  max-width:760px;
  font-size:clamp(46px,7vw,86px);
  line-height:.94;
  letter-spacing:-.05em;
  text-shadow:0 10px 30px rgba(0,0,0,.35);
}

.en9-hero__copy p{
  margin:0;
  max-width:680px;
  color:rgba(255,255,255,.84);
  font-size:20px;
}

.en9-hero__actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.en9-urgency{
  margin-top:18px;
  color:#ff7a7a;
  font-weight:800;
}

.en9-proof{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}

.en9-proof span{
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,0,0,.08);
  border:1px solid rgba(255,0,0,.18);
  font-size:14px;
  font-weight:700;
}

.en9-hero__panel{
  display:grid;
  gap:16px;
}

.en9-panel__box{
  padding:24px;
  border-radius:24px;
  background:rgba(10,10,15,.82);
  border:1px solid rgba(255,0,0,.14);
  box-shadow:0 20px 50px rgba(0,0,0,.45);
  backdrop-filter:blur(10px);
}

.en9-panel__box strong{
  display:block;
  margin-bottom:10px;
  font-size:18px;
}

.en9-panel__box p{
  margin:0;
  color:rgba(255,255,255,.80);
}

.en9-panel__box a{
  display:block;
  color:#ff6b86;
  font-weight:800;
  margin-bottom:8px;
}

/* =========================
   TRUST
========================= */
.en9-trust{
  background:#09090d;
  border-top:1px solid rgba(255,0,0,.1);
  border-bottom:1px solid rgba(255,0,0,.1);
}

.en9-trust__inner{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  justify-content:center;
  padding:15px 0;
  font-weight:700;
}

/* =========================
   SECTIONS
========================= */
.en9-section{
  padding:90px 0;
}

.en9-section--dark{
  background:#0d0d12;
}

.en9-section__head{
  max-width:720px;
  margin-bottom:34px;
}

.en9-section__head.center{
  text-align:center;
  margin-inline:auto;
}

.en9-section__head h2{
  margin:0 0 12px;
  font-size:clamp(34px,4vw,56px);
  line-height:1.02;
}

.en9-section__head p{
  margin:0;
  color:rgba(255,255,255,.80);
  font-size:18px;
}

/* =========================
   CARDS
========================= */
.en9-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.en9-card{
  background:#111;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.06);
  transition:transform .25s ease, box-shadow .25s ease;
}

.en9-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,.28);
}

.en9-card img{
  height:240px;
  width:100%;
  object-fit:cover;
}

.en9-card__body{
  padding:20px;
}

.en9-card__body h3{
  margin-bottom:10px;
  font-size:24px;
}

.en9-card__body p{
  color:rgba(255,255,255,.78);
}

/* =========================
   FEATURE GRID
========================= */
.en9-feature-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:28px;
  align-items:start;
}

.en9-feature-copy h2{
  margin:0 0 14px;
  font-size:clamp(34px,4vw,54px);
  line-height:1.02;
}

.en9-feature-copy p{
  margin:0 0 18px;
  color:rgba(255,255,255,.78);
  font-size:18px;
}

.en9-checks{
  margin:0 0 24px;
  padding:0;
  list-style:none;
  display:grid;
  gap:12px;
}

.en9-checks li{
  padding-left:28px;
  position:relative;
}

.en9-checks li:before{
  content:'✓';
  position:absolute;
  left:0;
  top:0;
  color:#ff5d7d;
  font-weight:900;
}

.en9-feature-gallery{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

.en9-feature-gallery img,
.en9-gallery-grid img{
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  width:100%;
  object-fit:cover;
  transition:transform .25s ease, box-shadow .25s ease;
}

.en9-feature-gallery img:hover,
.en9-gallery-grid img:hover{
  transform:scale(1.02);
  box-shadow:0 20px 40px rgba(0,0,0,.28);
}

.en9-feature-gallery img{
  aspect-ratio:4/3;
}

.en9-gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.en9-gallery-grid img{
  aspect-ratio:1/1.08;
}

/* =========================
   CTA BAND
========================= */
.en9-cta-band{
  padding:80px 0;
  background:
    radial-gradient(circle at center, rgba(255,0,0,.16), transparent 36%),
    linear-gradient(180deg,#0b0b10,#050507);
}

.en9-cta-band__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  padding:34px;
  border-radius:28px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
}

.en9-cta-band__inner h2{
  margin:0 0 8px;
  font-size:clamp(32px,4vw,50px);
}

.en9-cta-band__inner p{
  margin:0;
  color:rgba(255,255,255,.78);
}

.en9-cta-band__actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* =========================
   BUTTONS
========================= */
.en9-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  font-weight:800;
  transition:.25s ease;
}

.en9-btn--primary{
  background:linear-gradient(180deg,#d3182d,#930c17);
  color:#fff;
  box-shadow:0 0 30px rgba(255,0,25,.25),0 14px 34px rgba(211,24,45,.24);
}

.en9-btn--primary:hover{
  transform:translateY(-2px);
  box-shadow:0 0 40px rgba(255,0,25,.35), 0 18px 40px rgba(211,24,45,.35);
}

.en9-btn--ghost{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.05);
  color:#fff;
}

/* =========================
   REMOVE ICON NAV / BLUE BAR
========================= */
.bdtn-iconnav,
.bdtn-iconnav-wrapper,
.elementor-widget-bdtn-iconnav,
[class*="bdtn-iconnav"],
[class*="iconnav"]{
  display:none;
  visibility:hidden;
  opacity:0;
  pointer-events:none;
  width:0;
  height:0;
  overflow:hidden;
}

body::before{display:none}

body,
html{
  margin-left:0;
  padding-left:0;
}

.elementor-section,
.en9-wrap{
  margin-left:auto;
  margin-right:auto;
}

.entry-content{
  margin:0;
  padding:0;
}

/* =========================
   MOBILE
========================= */
@media (max-width:767px){
  .en9-topbar{
    padding:10px 0;
  }

  .en9-topbar__inner{
    display:grid;
    grid-template-columns:1fr auto;
    gap:12px;
    align-items:start;
  }

  .en9-topbar__left{
    display:flex;
    flex-direction:column;
    gap:6px;
    font-size:13px;
    line-height:1.4;
  }

  .en9-dot{
    display:none;
  }

  .en9-topbar__contact{
    display:flex;
    flex-direction:column;
    gap:6px;
    align-items:flex-start;
    min-width:0;
    width:100%;
    margin-top:8px;
  }

  .en9-topbar__right{
    display:flex;
    justify-content:flex-end;
    align-items:flex-start;
    width:100%;
  }

  .en9-topbar__logo{
    width:auto;
    display:flex;
    justify-content:flex-end;
    margin-top:0;
    padding:0;
    line-height:0;
  }

  .en9-topbar__logo img{
    width:180px;
    max-width:180px;
    height:auto;
    display:block;
  }

  .en9-header__top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:14px 0 10px;
  }

  .en9-social{
    width:42px;
    height:42px;
  }

  .en9-brand{
    display:block;
    flex:1;
    text-align:right;
  }

  .en9-brand__title{
    font-size:18px;
    line-height:1.05;
  }

  .en9-brand__sub{
    font-size:10px;
    letter-spacing:.18em;
  }

  .en9-header__nav{
    padding-bottom:10px;
  }

  .en9-menu{
    gap:18px;
    padding-bottom:4px;
  }

  .en9-menu a{
    font-size:14px;
    line-height:1.2;
  }

  .en9-hero{
    min-height:auto;
  }

  .en9-hero__content{
    padding-top:72px;
    padding-bottom:56px;
    grid-template-columns:1fr;
    text-align:left;
  }

  .en9-hero__copy h1{
    font-size:42px;
    line-height:.98;
  }

  .en9-hero__copy p{
    font-size:19px;
    line-height:1.45;
  }

  .en9-hero__actions{
    display:flex;
    flex-direction:column;
    gap:12px;
  }

  .en9-btn{
    width:100%;
    justify-content:center;
  }

  .en9-proof span{
    width:100%;
    justify-content:center;
  }

  .en9-cards,
  .en9-gallery-grid,
  .en9-feature-gallery,
  .en9-feature-grid{
    grid-template-columns:1fr;
  }

  .en9-section{
    padding:64px 0;
  }

  .en9-cta-band__inner{
    flex-direction:column;
    align-items:flex-start;
  }
}