:root{
  /* Midnight Aurora (unique premium theme) */
  --bg: #060913;
  --bg2:#070b18;

  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.09);

  --text: #f8fafc;
  --muted: rgba(248,250,252,0.72);
  --line: rgba(255,255,255,0.12);

  --primary: #22c55e;   /* emerald */
  --accent:  #38bdf8;   /* sky */
  --violet:  #a855f7;   /* violet */
  --warm:    #f59e0b;   /* amber */

  --radius: 16px;
  --radius2: 22px;
  --shadow: 0 18px 50px rgba(0,0,0,.45);

  --container: 1160px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 520px at 12% 8%, rgba(168,85,247,0.25), transparent 60%),
    radial-gradient(900px 520px at 88% 12%, rgba(56,189,248,0.22), transparent 60%),
    radial-gradient(900px 520px at 50% 95%, rgba(34,197,94,0.18), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

a{ color: inherit; text-decoration:none; }
.container{ width:min(var(--container), calc(100% - 40px)); margin:0 auto; }

.muted{ color: var(--muted); }
.fineprint{ font-size:.88rem; line-height:1.6; }

/* Topbar */
.topbar{
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  font-weight:700;
  color: rgba(248,250,252,0.82);
}
.topbar__link{
  padding:6px 12px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.topbar__link:hover{ border-color: rgba(56,189,248,0.45); }

/* Header */
.header{
  position: sticky;
  top:0;
  z-index:50;
  background: rgba(6,9,19,0.65);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand__logoImg{
  width:70px;
  border-radius: 12px;
  object-fit: cover;
  /*border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);*/
}
.brand__logoText{
  display:grid;
  place-items:center;
  width:36px;height:36px;
  border-radius: 12px;
  font-weight:900;
  background: linear-gradient(135deg, rgba(56,189,248,0.35), rgba(168,85,247,0.35));
  border:1px solid var(--line);
}
.brand__text strong{ display:block; line-height:1.05; font-size:1.02rem; }
.brand__text small{ display:block; opacity:.85; }

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  color: rgba(248,250,252,0.86);
  font-weight:800;
  font-size: .95rem;
}
.nav a:hover{ color: #fff; text-decoration: underline; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius: 12px;
  font-weight:900;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .15s ease, filter .2s ease, border-color .2s ease;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.06); }

.btn--small{ padding:10px 14px; border-radius: 10px; font-size:.92rem; }

.btn--blue{
  /* Now a premium aurora gradient */
  background: linear-gradient(135deg, rgba(56,189,248,0.95), rgba(168,85,247,0.92));
  color: #061015;
  box-shadow: var(--shadow);
}
.btn--yellow{
  /* Warm CTA */
  background: linear-gradient(135deg, rgba(245,158,11,0.98), rgba(34,197,94,0.85));
  color: #091016;
  box-shadow: var(--shadow);
}
.btn--outline{
  background: transparent;
  color: rgba(248,250,252,0.92);
  border-color: rgba(56,189,248,0.45);
}
.btn--outline:hover{
  background: rgba(56,189,248,0.08);
  border-color: rgba(168,85,247,0.45);
}

.w100{ width:100%; }

/* Mobile */
.mobileMenuBtn{
  display:none;
  width:44px;height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,0.04);
}
.mobileMenuBtn span{
  display:block;height:2px;width:20px;margin:5px auto;
  background: rgba(248,250,252,0.92);
  border-radius:2px;
}
.mobileNav{
  display:none;
  padding: 10px 0 16px;
  border-top: 1px solid var(--line);
}
.mobileNav a{
  display:block;
  padding:10px 27px;
  color: rgba(248,250,252,0.90);
  font-weight:900;
}
body.menuOpen .mobileNav{ display:block; }

/* Hero */
.hero{ padding: 26px 0 10px; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  align-items:stretch;
}


.hero__content, .heroCard{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: 0 22px 70px rgba(0,0,0,0.28);
  backdrop-filter: blur(14px);
}

.hero__content{ padding: 18px; }

.pill{
  display:inline-block;
  padding:8px 12px;
  border-radius: 999px;
  font-weight:900;
  color: rgba(248,250,252,0.92);
  border: 1px solid rgba(56,189,248,0.35);
  background: linear-gradient(135deg, rgba(56,189,248,0.12), rgba(168,85,247,0.10));
}

.hero h1{
  margin: 12px 0 0;
  font-size: clamp(2rem, 4vw, 3.15rem);
  letter-spacing: -0.6px;
  line-height: 1.06;
}
.accent{
  background: linear-gradient(90deg, var(--accent), var(--violet), var(--primary));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

.hero__cta{
  margin-top: 16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Trust row */
.trustRow{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.trustCard{
  border:1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 12px;
}
.trustCard strong{ display:block; }
.trustCard span{
  display:block;
  margin-top:6px;
  color: var(--muted);
  font-weight:700;
  font-size:.92rem;
}

/* Hero right */
.hero__right{ display:flex; }
.heroCard{
  width:100%;
  padding: 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.heroBadgeRow{ display:flex; gap:8px; flex-wrap:wrap; }
.badge{
  font-weight:900;
  font-size:.78rem;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,0.05);
}
.badge--soft{
  border-color: rgba(34,197,94,0.35);
  background: rgba(34,197,94,0.10);
}

.heroImg{
  width:100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,0.04);
}

.heroCardText strong{ display:block; font-size:1.05rem; }
.heroCardText span{ display:block; margin-top:4px; color: var(--muted); font-weight:700; }

/* Sections */
.section{ padding: 34px 0; }
.section--alt{
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sectionHead{ max-width: 860px; }
.sectionHead h2{ margin:0 0 8px; font-size:1.85rem; }
.sectionHead p{ margin:0; color: var(--muted); font-weight:700; line-height:1.7; }

/* Products */
.productGrid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.productCard{
  background: linear-gradient(45deg, #f0e20e80, #fff, #9eff86);
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding: 12px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.22);
  display:flex;
  flex-direction:column;
  min-height: 320px;
  transition: transform .15s ease, border-color .2s ease;
}
.productCard:hover{
  transform: translateY(-2px);
  border-color: rgba(56,189,248,0.35);
}
.productImg{
  width:100%;
  /*height: 150px;*/
  object-fit: cover;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,0.04);
}
.productMeta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:10px;
}
.tag{
  border-radius:999px;
  padding:6px 10px;
  font-weight:900;
  font-size:.78rem;
  color: rgba(248,250,252,0.92);
  border: 1px solid rgba(56,189,248,0.35);
  background: linear-gradient(135deg, rgba(56,189,248,0.10), rgba(168,85,247,0.10));
}
.sku{ color: rgba(248,250,252,0.55); font-weight:900; font-size:.80rem; }
.productCard h3{ margin:10px 0 6px; font-size:1.06rem; }
.productCard p{ margin:0; color: var(--muted); font-weight:700; line-height:1.55; }

.productBottom{
  margin-top:auto;
  padding-top:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.price small{ display:block; color: rgba(248,250,252,0.55); font-weight:800; }
.price strong{ display:block; font-size:1.08rem; }

.noteBox{
  margin-top: 14px;
  background: rgba(255,255,255,0.05);
  border:1px dashed rgba(245,158,11,0.40);
  border-radius: var(--radius2);
  padding: 12px 14px;
  color: rgba(248,250,252,0.78);
  font-weight:700;
  line-height:1.7;
}

/* Info grids */
.grid3{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.infoCard{
  background: linear-gradient(162deg, #0f0f0ef7, #51b239);
  border-radius: var(--radius2);
  border:1px solid var(--line);
  padding: 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
}
.infoCard--highlight{
  border-color: rgba(34,197,94,0.28);
}
.infoCard h3{ margin:0 0 8px; }
.infoCard p{ margin:0; line-height:1.7; font-weight:700; color: #fff; }

h3 i { font-size: 20px; margin-right: 8px; }


/* Why grid */
.grid4{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.feature{
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius2);
  border:1px solid var(--line);
  padding: 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
}
.icon{
  width:42px;height:42px;border-radius:14px;
  display:grid;place-items:center;
  color:#071015;
  font-weight:900;
  background: linear-gradient(135deg, rgba(34,197,94,0.95), rgba(56,189,248,0.90));
  border:1px solid rgba(255,255,255,0.12);
  margin-bottom: 10px;
}
.feature h3{ margin:0 0 6px; font-size:1.02rem; }
.feature p{ margin:0; color: var(--muted); font-weight:700; line-height:1.6; }

/* FAQ */
.faqGrid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.faqItem{
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius2);
  border:1px solid var(--line);
  padding: 12px 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
}
.faqItem summary{ cursor:pointer; font-weight:900; }
.faqItem p{ margin:10px 0 0; color: var(--muted); font-weight:700; line-height:1.7; }

/* Contact */
.contactGrid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap:12px;
}
.contactCard, .formCard{
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius2);
  border:1px solid var(--line);
  padding: 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
}
.contactInfo{ margin-top:10px; display:grid; gap:10px; font-weight:800; }
.miniNote{ color: var(--muted); font-weight:700; font-size:.92rem; }

.socialRow{ margin-top:12px; display:flex; gap:10px; flex-wrap:wrap; }
.socialRow a{
  background: rgba(56,189,248,0.10);
  border:1px solid rgba(56,189,248,0.25);
  color: rgba(248,250,252,0.92);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight:900;
}
.socialRow a:hover{ border-color: rgba(168,85,247,0.35); }

label{ display:block; font-weight:900; margin-bottom:10px; }
input, select, textarea{
  width:100%;
  margin-top:8px;
  padding: 12px 12px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.22);
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(56,189,248,0.45);
  box-shadow: 0 0 0 5px rgba(56,189,248,0.12);
}
.twoCol{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }

/* Footer */
.footer{
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.footerLinks{ display:flex; gap:14px; flex-wrap:wrap; }
.footerLinks a{ color: rgba(248,250,252,0.75); font-weight:900; }
.footerLinks a:hover{ color: #fff; text-decoration: underline; }

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns:1fr; }
  .trustRow{ grid-template-columns:1fr; }
  .productGrid{ grid-template-columns:repeat(2,1fr); }
  .grid3{ grid-template-columns:1fr; }
  .grid4{ grid-template-columns:repeat(2,1fr); }
  .faqGrid{ grid-template-columns:1fr; }
  .contactGrid{ grid-template-columns:1fr; }
}
@media (max-width: 720px){
  .nav{ display:none; }
  .mobileMenuBtn{ display:block; }
  .productGrid{ grid-template-columns:1fr; }
  .twoCol{ grid-template-columns:1fr; }
  .footer__inner{ flex-direction:column; }
}

/* ===== Hero Slider (Dots + Arrows) ===== */
.heroSlider{
  width:100%;
  height:240px;
  overflow:hidden;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,0.04);
  position:relative;
}

.heroTrack{
  height:100%;
  display:flex;
  transform: translateX(0%);
  transition: transform 450ms ease;
  will-change: transform;
}

.heroSlide{
  flex: 0 0 100%;
  height:100%;
}

.heroSlide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Arrows */
.heroArrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(0,0,0,0.35);
  color: rgba(248,250,252,0.95);
  font-size:28px;
  line-height:40px;
  display:grid;
  place-items:center;
  cursor:pointer;
  transition: filter .2s ease, transform .15s ease, background .2s ease;
  user-select:none;
  z-index:2;
}

.heroArrow:hover{
  filter: brightness(1.12);
  background: rgba(0,0,0,0.48);
}

.heroArrow--prev{ left:10px; }
.heroArrow--next{ right:10px; }

/* Dots */
.heroDots{
  position:absolute;
  left:50%;
  bottom:10px;
  transform: translateX(-50%);
  display:flex;
  gap:8px;
  padding: 6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(10px);
  z-index:2;
}

.heroDot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.25);
  cursor:pointer;
  padding:0;
}

.heroDot.is-active{
  background: linear-gradient(135deg, rgba(56,189,248,0.95), rgba(168,85,247,0.90));
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 0 0 4px rgba(56,189,248,0.12);
}

/* Optional: hide arrows on very small screens */
@media (max-width: 420px){
  .heroArrow{ display:none; }
}

.backToTop{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(135deg, rgba(56,189,248,0.95), rgba(168,85,247,0.90));
  color: #061015;
  font-weight: 900;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  display: grid;
  place-items: center;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .2s ease;
  z-index: 99999; /* very high so it never hides */
}

.backToTop.show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
