*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

/* =========================
   BLUE COLOR PALETTE
========================= */

:root{

  --primary:#276CF5;

  --primary-dark:#114FC7;
  --primary-light:#4D88FF;
  --primary-soft:#DCE8FF;
  --primary-hover:#1F5FE0;

  --bg:#f4f7fb;
  --card:#ffffff;

  --text:#111827;
  --text-light:#5B6475;

  --border:
  rgba(0,0,0,0.06);

  --shadow:
  0 10px 35px rgba(0,0,0,0.08);

}

body{
  font-family:'Poppins',sans-serif;
  overflow-x:hidden;
  background:var(--bg);
  color:var(--text);
  transition:
  background 0.4s ease,
  color 0.4s ease;
}

/* =========================
   SKIP LINK
========================= */

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
  z-index:10001;
  padding:12px 20px;
  background:var(--primary);
  color:#fff;
  text-decoration:none;
  font-weight:600;
  border-radius:0 0 8px 0;
}

.skip-link:focus{
  left:0;
  top:0;
  width:auto;
  height:auto;
  overflow:visible;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* =========================
   TOP MARQUEE
========================= */

.top-marquee{

  width:100%;

  background:var(--primary);

  color:#fff;

  padding:5px 0;

  overflow:hidden;

}

.top-marquee__inner{
  overflow:hidden;
  white-space:nowrap;
}

.top-marquee__track{
  display:inline-flex;
  gap:4rem;
  padding-left:100%;
  animation:marquee-scroll 25s linear infinite;
}

.top-marquee__track span{
  font-size:12px;
  font-weight:500;
  letter-spacing:0.5px;
  flex-shrink:0;
}

@keyframes marquee-scroll{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-100%);
  }
}

@media(prefers-reduced-motion:reduce){
  .top-marquee__track{
    animation:none;
    padding-left:0;
    justify-content:center;
    width:100%;
  }

  .top-marquee__track span:last-child{
    display:none;
  }
}

/* =========================
   HEADER
========================= */

.header-wrapper{

  width:100%;

  background:var(--card);

  box-shadow:var(--shadow);

  position:sticky;
  top:0;

  z-index:9999;

  transition:0.4s ease;

}

/* NAVBAR */

.navbar{

  width:100%;

  padding:12px 6%;

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

}

/* LOGO */

.logo{

  display:flex;
  align-items:center;

}

.logo img{

  width:90px;
  height:auto;

  display:block;

}

/* MENU */

.nav-menu{

  display:flex;
  align-items:center;
  gap:35px;

}

.nav-item{

  position:relative;

}

.nav-link{

  color:var(--text);

  text-decoration:none;

  font-size:15px;
  font-weight:500;

  transition:0.35s ease;

  padding:10px 0;

  display:flex;
  align-items:center;
  gap:5px;

  position:relative;

}

/* UNDERLINE EFFECT */

.nav-link::after{

  content:"";

  position:absolute;

  left:0;
  bottom:-4px;

  width:0%;
  height:2px;

  background:var(--primary);

  transition:0.35s ease;

}

.nav-link:hover::after{

  width:100%;

}

.nav-link:hover{

  color:var(--primary);

}

/* ACTIVE */

.nav-link.active{

  color:var(--primary);

}

.nav-link.active::after{

  width:100%;

}

/* DROPDOWN ICON */

.dropdown-icon{

  font-size:15px;

  transition:0.3s ease;

}

.nav-item:hover .dropdown-icon{

  transform:rotate(180deg);

}

/* DROPDOWN */

.dropdown{

  position:absolute;

  top:120%;
  left:0;

  min-width:240px;

  background:var(--card);

  border-radius:16px;

  padding:14px 0;

  opacity:0;
  visibility:hidden;

  transform:translateY(15px);

  transition:0.35s ease;

  box-shadow:var(--shadow);

  border:
  1px solid var(--border);
  z-index: 9;

}

.nav-item:hover .dropdown{

  opacity:1;
  visibility:visible;

  transform:translateY(0);

}

.dropdown a{

  display:block;

  padding:13px 24px;

  color:var(--text);

  text-decoration:none;

  font-size:14px;

  transition:0.3s ease;

}

.dropdown a:hover{

  background:var(--primary-soft);

  color:var(--primary);

}

/* RIGHT */

.nav-right{

  display:flex;
  align-items:center;
  gap:14px;

}

/* HAMBURGER */

.hamburger{

  display:none;

  flex-direction:column;

  align-items:center;

  justify-content:center;

  gap:5px;

  cursor:pointer;

  border:none;

  background:transparent;

  width:44px;

  height:44px;

  border-radius:12px;

  transition:
  background 0.3s ease,
  transform 0.2s ease;

  z-index:10002;

}

.hamburger:hover{

  background:var(--primary-soft);

}

.hamburger-line{

  display:block;

  width:22px;
  height:2px;

  background:var(--text);

  border-radius:4px;

  transition:
  transform 0.35s cubic-bezier(0.4,0,0.2,1),
  opacity 0.25s ease,
  width 0.3s ease;

}

.hamburger.active{

  background:var(--primary-soft);

}

.hamburger.active .hamburger-line:nth-child(1){

  transform:translateY(7px) rotate(45deg);

}

.hamburger.active .hamburger-line:nth-child(2){

  opacity:0;

  transform:scaleX(0);

}

.hamburger.active .hamburger-line:nth-child(3){

  transform:translateY(-7px) rotate(-45deg);

}

.mobile-nav-header,
.nav-overlay{
  display:none;
}

body.nav-open{
  overflow:hidden;
}

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

.hero-slider{

  width:100%;

  position:relative;

  overflow:hidden;

  background:#000;

  height:clamp(150px,calc(100vw / 3.5),380px);

}

/* SLIDES */

.slides{

  display:flex;

  width:100%;

  height:100%;

  transition:transform 0.7s ease;

}

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

  .slides,
  .product-track{
    transition:none;
  }

}

/* SLIDE */

.slide{

  flex:0 0 100%;

  min-width:100%;

  width:100%;

  position:relative;

  height:100%;

  overflow:hidden;

}

.slide img{

  position:absolute;

  inset:0;

  width:100%;
  height:100%;

  display:block;

  object-fit:cover;

  object-position:center center;

}

@media(max-width:992px){

  .hero-slider{

    height:220px;

    background:none;

  }

  .slide{

    width:100%;

    height:100%;

    overflow:hidden;

  }

  .slide img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

  }

}

/* OVERLAY */

.slide::before{

  content:"";

  position:absolute;
  inset:0;

  background:
  linear-gradient(
  rgba(0,0,0,0.05),
  rgba(0,0,0,0.12)
  );

  z-index:1;

}

/* SLIDER BUTTONS */

.nav-slider-btn{

  position:absolute;

  top:50%;

  transform:translateY(-50%);

  z-index:5;

  width:50px;
  height:50px;

  border:none;

  border-radius:50%;

  background:
  rgba(255,255,255,0.18);

  backdrop-filter:blur(10px);

  color:#fff;

  font-size:22px;

  cursor:pointer;

  transition:0.35s ease;

}

.nav-slider-btn:hover{

  background:var(--primary);

}

.prev{

  left:25px;

}

.next{

  right:25px;

}

/* DOTS */

.dots{

  position:absolute;

  bottom:25px;
  left:50%;

  transform:translateX(-50%);

  display:flex;

  gap:10px;

  z-index:5;

}

.dot{

  width:11px;
  height:11px;

  border-radius:50%;

  background:
  rgba(255,255,255,0.45);

  cursor:pointer;

  transition:0.35s ease;

  border:none;
  padding:0;

}

.dot.active{

  background:var(--primary);

  transform:scale(1.2);

  box-shadow:
  0 0 15px rgba(39,108,245,0.45);

}

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

@media(max-width:992px){

  .top-marquee{

    display:none;

  }

  .hamburger{
    display:flex;
  }

  .logo img{

    width:70px;

  }

  .nav-overlay{

    display:block;

    position:fixed;

    inset:0;

    background:rgba(17,24,39,0.55);

    backdrop-filter:blur(4px);

    opacity:0;

    visibility:hidden;

    z-index:9998;

    transition:
    opacity 0.35s ease,
    visibility 0.35s ease;

  }

  .nav-overlay.active{

    opacity:1;

    visibility:visible;

  }

  .nav-menu{

    position:fixed;

    top:0;
    right:0;

    width:min(300px,88vw);

    height:100vh;
    height:100dvh;

    background:var(--card);

    flex-direction:column;

    align-items:stretch;

    padding:0;

    gap:0;

    z-index:10000;

    border-left:1px solid var(--border);

    box-shadow:-8px 0 40px rgba(0,0,0,0.12);

    transform:translateX(100%);

    transition:transform 0.4s cubic-bezier(0.4,0,0.2,1);

    overflow-y:auto;

    overscroll-behavior:contain;

  }

  .nav-menu.active{

    transform:translateX(0);

  }

  .navbar{

    position:relative;

    z-index:10001;

  }

  .mobile-nav-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:18px 22px;

    border-bottom:1px solid var(--border);

    background:linear-gradient(
    135deg,
    var(--primary-soft) 0%,
    var(--card) 100%
    );

    position:sticky;

    top:0;

    z-index:2;

  }

  .mobile-nav-title{

    font-size:18px;

    font-weight:600;

    color:var(--primary);

    letter-spacing:0.3px;

  }

  .mobile-nav-close{

    width:40px;

    height:40px;

    border:none;

    border-radius:10px;

    background:var(--card);

    color:var(--text);

    font-size:22px;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease;

    box-shadow:0 2px 8px rgba(0,0,0,0.06);

  }

  .mobile-nav-close:hover{

    background:var(--primary);

    color:#fff;

  }

  .mobile-nav-close:active{

    transform:scale(0.94);

  }

  .nav-menu > .nav-item{

    width:100%;

    border-bottom:1px solid var(--border);

  }

  .nav-menu > .nav-item:last-child{

    border-bottom:none;

  }

  .nav-link{

    font-size:15px;

    font-weight:500;

    padding:16px 22px;

    width:100%;

    justify-content:space-between;

  }

  .nav-link::after{

    display:none;

  }

  .nav-link.active{

    background:var(--primary-soft);

    color:var(--primary);

  }

  .nav-item.active > .nav-link{

    color:var(--primary);

    background:rgba(39,108,245,0.06);

  }

  .nav-item.active .dropdown-icon{

    transform:rotate(180deg);

    color:var(--primary);

  }

  .dropdown{

    position:relative;

    top:0;

    left:0;

    opacity:1;

    visibility:visible;

    transform:none;

    display:block;

    max-height:0;

    overflow:hidden;

    transition:max-height 0.35s cubic-bezier(0.4,0,0.2,1);

    box-shadow:none;

    border:none;

    border-radius:0;

    padding:0;

    min-width:0;

    background:var(--primary-soft);

  }

  .nav-item.active .dropdown{

    max-height:220px;

  }

  .dropdown a{

    padding:12px 22px 12px 34px;

    font-size:14px;

    border-top:1px solid rgba(39,108,245,0.12);

  }

  .dropdown a:first-child{

    border-top:none;

  }

  .dropdown a:hover{

    background:rgba(39,108,245,0.15);

  }

}

@media(max-width:992px) and (prefers-reduced-motion:reduce){

  .nav-menu,
  .nav-overlay,
  .hamburger-line,
  .dropdown{
    transition:none;
  }

}

@media(max-width:992px){

  .nav-slider-btn{

    width:40px;
    height:40px;

    font-size:18px;

  }

}

/* =========================
   HOMEPAGE SECTIONS
========================= */

.leader-section{

  padding:90px 6%;

}

/* ----- ABOUT ----- */

.about-section{

  padding:10px 6%;

  background:var(--bg);

  position:relative;

  overflow:hidden;

}

.about-container{

  display:grid;

  grid-template-columns:0.75fr 1.1fr;

  gap:50px;

  align-items:center;

  max-width:1180px;

  margin:0 auto;

}

.about-visual{

  position:relative;

}

.about-blob{

  position:absolute;

  width:85%;

  height:85%;

  top:8%;

  left:5%;

  background:var(--primary-soft);

  border-radius:40% 60% 55% 45% / 48% 42% 58% 52%;

  z-index:0;

}

.about-image-wrap{

  position:relative;

  z-index:1;

  border-radius:24px;

  overflow:hidden;

  box-shadow:0 20px 50px rgba(39,108,245,0.18);

  border:4px solid #fff;

}

.about-image-wrap{

  max-width:760px;

  margin:auto;

}

.about-image-wrap img{

  width:100%;

  height:520px;

  display:block;

  object-fit:cover;

  object-position:center;

}

.about-stat-card{

  position:absolute;

  z-index:2;

  background:#fff;

  padding:14px 18px;

  border-radius:14px;

  box-shadow:0 10px 30px rgba(0,0,0,0.1);

  border:1px solid var(--border);

  text-align:center;

  min-width:120px;

}

.about-stat-card strong{

  display:block;

  font-size:22px;

  font-weight:700;

  color:var(--primary);

  line-height:1.2;

}

.about-stat-card span{

  font-size:11px;

  color:var(--text-light);

  font-weight:500;

  text-transform:uppercase;

  letter-spacing:0.4px;

}

.about-stat-card--1{

  bottom:12%;
  left:-6%;

}

.about-stat-card--2{

  top:10%;
  right:-4%;

}

.about-content h2{

  font-size:38px;

  line-height:1.25;

  margin-bottom:18px;

  color:var(--text);

}

.about-lead{

  color:var(--text-light);

  font-size:16px;

  line-height:1.8;

  margin-bottom:22px;

}

.about-highlights{

  list-style:none;

  margin:0 0 28px;

  padding:0;

  display:flex;

  flex-direction:column;

  gap:10px;

}

.about-highlights li{

  display:flex;

  align-items:flex-start;

  gap:10px;

  font-size:14px;

  color:var(--text);

  line-height:1.5;

}

.about-highlights i{

  color:var(--primary);

  font-size:18px;

  flex-shrink:0;

  margin-top:1px;

}

.about-features{

  display:flex;

  flex-direction:column;

  gap:14px;

  margin-bottom:28px;

}

.about-feature-item{

  display:flex;

  align-items:flex-start;

  gap:14px;

  padding:16px 18px;

  background:#fff;

  border:1px solid var(--border);

  border-radius:16px;

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

}

.about-feature-item:hover{

  border-color:rgba(39,108,245,0.3);

  box-shadow:0 8px 24px rgba(39,108,245,0.1);

  transform:translateX(6px);

}

.about-feature-icon{

  width:44px;
  height:44px;

  flex-shrink:0;

  display:flex;

  align-items:center;

  justify-content:center;

  background:var(--primary-soft);

  color:var(--primary);

  border-radius:12px;

  font-size:22px;

}

.about-feature-item h4{

  font-size:15px;

  font-weight:600;

  margin:0 0 4px;

  color:var(--text);

}

.about-feature-item p{

  font-size:13px;

  color:var(--text-light);

  margin:0;

  line-height:1.5;

}

.about-cta{

  display:inline-flex;

  align-items:center;

  gap:8px;

  padding:14px 28px;

  background:var(--primary);

  color:#fff;

  text-decoration:none;

  font-size:14px;

  font-weight:600;

  border-radius:12px;

  transition:
  background 0.3s ease,
  gap 0.3s ease,
  transform 0.2s ease;

}

.about-cta:hover{

  background:var(--primary-hover);

  gap:12px;

}

.about-cta i{

  font-size:18px;

}

  /* =========================
   CATEGORY THUMBNAIL SECTION
========================= */

.category-thumb-section{

  padding:90px 6%;

  background:#fff;

}

.category-thumb-grid{

  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(220px,220px));

  justify-content:center;

  gap:28px;

  margin-top:50px;

}

.category-thumb-card{

  position:relative;

  height:350px;

  border-radius:24px;

  overflow:hidden;

  text-decoration:none;

  box-shadow:0 10px 35px rgba(0,0,0,0.08);

  transition:
  transform 0.4s ease,
  box-shadow 0.4s ease;

}

.category-thumb-card:hover{

  transform:translateY(-10px);

  box-shadow:0 22px 45px rgba(39,108,245,0.18);

}

.category-thumb-image{

  width:100%;
  height:100%;

}

.category-thumb-image img{

  width:100%;
  height:100%;

  object-fit:cover;

  transition:transform 0.6s ease;

}

.category-thumb-card:hover .category-thumb-image img{

  transform:scale(1.08);

}

.category-thumb-overlay{

  position:absolute;

  inset:0;

  background:
  linear-gradient(
  180deg,
  rgba(0,0,0,0.05) 0%,
  rgba(0,0,0,0.75) 100%
  );

}

.category-thumb-content{

  position:absolute;

  left:18px;
  right:18px;
  bottom:20px;

  z-index:2;

  color:#fff;

}

.category-thumb-tag{

  display:inline-block;

  padding:6px 14px;

  border-radius:30px;

  background:rgba(255,255,255,0.16);

  backdrop-filter:blur(10px);

  font-size:10px;

  font-weight:600;

  margin-bottom:12px;

  letter-spacing:0.4px;

  text-transform:uppercase;

}

.category-thumb-content h3{

  font-size:22px;

  font-weight:700;

  margin-bottom:8px;

  line-height:1.2;

}

.category-thumb-content p{

  font-size:12px;

  line-height:1.6;

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

  margin-bottom:16px;

}

.category-thumb-btn{

  display:inline-flex;

  align-items:center;

  gap:8px;

  font-size:13px;

  font-weight:600;

  color:#fff;

}

.category-thumb-btn i{

  font-size:18px;

  transition:transform 0.3s ease;

}

.category-thumb-card:hover .category-thumb-btn i{

  transform:translateX(5px);

}

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

@media(max-width:992px){

  .category-thumb-grid{

    grid-template-columns:repeat(3,1fr);

    gap:20px;

  }

  .category-thumb-card{

    height:300px;

  }

}

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

@media(max-width:768px){

  .category-thumb-section{

    padding:60px 5%;

  }

  .category-thumb-grid{

    grid-template-columns:repeat(2,1fr);

    gap:16px;

  }

  .category-thumb-card{

    height:260px;

    border-radius:18px;

  }

  .category-thumb-content{

    left:14px;
    right:14px;
    bottom:16px;

  }

  .category-thumb-content h3{

    font-size:18px;

  }

  .category-thumb-content p{

    font-size:11px;

    margin-bottom:12px;

  }

  .category-thumb-btn{

    font-size:12px;

  }

}

/* ----- BRANDS / PRODUCT CATEGORIES ----- */

.brands-section{

  padding:70px 6% 80px;

  background:#fff;

}

.brands-inner{

  max-width:1200px;

  margin:0 auto;

  text-align:center;

}

.brands-section h2{

  font-size:32px;

  font-weight:700;

  color:var(--text);

  margin-bottom:50px;

  line-height:1.3;

}

.brands-row{

  display:flex;

  flex-wrap:wrap;

  align-items:flex-start;

  justify-content:center;

  gap:36px 28px;

}

.brand-card{

  flex:0 0 calc(16.666% - 24px);

  min-width:130px;

  max-width:160px;

  text-decoration:none;

  color:var(--text);

  transition:transform 0.35s ease;

}

.brand-card:hover{

  transform:translateY(-6px);

}

.brand-circle{

  width:150px;
  height:150px;

  margin:0 auto 18px;

  border-radius:50%;

  background:#ececec;

  display:flex;

  align-items:center;

  justify-content:center;

  padding:22px;

  transition:
  background 0.35s ease,
  box-shadow 0.35s ease;

}

.brand-card:hover .brand-circle{

  background:#e4e9f2;

  box-shadow:0 12px 28px rgba(39,108,245,0.12);

}

.brand-logo{

  width:100%;

  height:100%;

  object-fit:contain;

  display:block;

}

.brand-label{

  display:block;

  font-size:15px;

  font-weight:700;

  text-transform:uppercase;

  letter-spacing:0.5px;

  color:var(--text);

  line-height:1.3;

}

/* ----- WHY CHOOSE US ----- */

.why-section{

  padding:90px 6%;

  background:
  linear-gradient(180deg,#fff 0%,var(--primary-soft) 100%);

  position:relative;

  overflow:hidden;

}

.why-inner{

  max-width:1280px;

  margin:0 auto;

}

.why-section .section-heading{

  margin-bottom:50px;

}

.why-intro{

  max-width:620px;

  margin:16px auto 0;

  color:var(--text-light);

  font-size:16px;

  line-height:1.75;

}

.section-tag{

  display:inline-block;

  background:var(--primary-soft);

  color:var(--primary);

  padding:10px 20px;

  border-radius:30px;

  font-size:14px;

  font-weight:600;

  margin-bottom:20px;

}

.section-heading h2{

  font-size:38px;

  line-height:1.25;

  margin-bottom:0;

  color:var(--text);

}

.section-heading{

  text-align:center;

  margin-bottom:60px;

}

.why-grid{

  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:24px;

}

.why-card{

  position:relative;

  background:#fff;

  border:1px solid var(--border);

  border-radius:20px;

  padding:28px 22px 26px;

  text-align:left;

  overflow:hidden;

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

}

.why-card::before{

  content:"";

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:4px;

  background:linear-gradient(90deg,var(--primary),var(--primary-light));

  transform:scaleX(0);

  transform-origin:left;

  transition:transform 0.35s ease;

}

.why-card:hover{

  transform:translateY(-8px);

  box-shadow:0 18px 40px rgba(39,108,245,0.14);

  border-color:rgba(39,108,245,0.2);

}

.why-card:hover::before{

  transform:scaleX(1);

}

.why-card-num{

  position:absolute;

  top:16px;
  right:18px;

  font-size:32px;

  font-weight:700;

  color:rgba(39,108,245,0.08);

  line-height:1;

}

.why-card-icon{

  width:52px;
  height:52px;

  display:flex;

  align-items:center;

  justify-content:center;

  background:var(--primary-soft);

  color:var(--primary);

  border-radius:14px;

  font-size:26px;

  margin-bottom:18px;

  transition:
  background 0.3s ease,
  color 0.3s ease;

}

.why-card:hover .why-card-icon{

  background:var(--primary);

  color:#fff;

}

.why-card h3{

  font-size:17px;

  font-weight:600;

  margin:0 0 10px;

  color:var(--text);

}

.why-card p{

  font-size:14px;

  color:var(--text-light);

  line-height:1.65;

  margin:0;

}

.leader-card{

  background:#fff;

  border:1px solid rgba(0,0,0,0.05);

  border-radius:20px;

  padding:30px;

  box-shadow:var(--shadow);

  text-align:center;

}

.leader-grid{

  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:30px;

  max-width:1100px;

  margin:0 auto;

}

.products-section{

  padding:48px 6% 56px;

  background:#f8f9fc;

}

.products-section + .products-section{

  padding-top:32px;

}

.products-section .section-heading{

  margin-bottom:32px;

}

.products-section .section-tag{

  margin-bottom:14px;

}

.products-section .section-subtitle{

  margin-top:10px;

}

.products-section__footer{

  display:flex;

  justify-content:center;

  margin-top:20px;

}

.products-all-btn,
.products-section .btn.btn-primary{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  gap:8px;

  padding:14px 28px;

  border:none;

  border-radius:12px;

  background:var(--primary);

  color:#fff;

  font-family:inherit;

  font-size:14px;

  font-weight:600;

  line-height:1.2;

  text-decoration:none;

  cursor:pointer;

  box-shadow:0 10px 24px rgba(39,108,245,0.28);

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

}

.products-all-btn:hover,
.products-section .btn.btn-primary:hover{

  background:var(--primary-hover);

  color:#fff;

  text-decoration:none;

  transform:translateY(-2px);

  box-shadow:0 14px 32px rgba(39,108,245,0.35);

}

.products-all-btn:focus-visible,
.products-section .btn.btn-primary:focus-visible{

  outline:2px solid var(--primary-dark);

  outline-offset:3px;

}

.products-all-btn:active,
.products-section .btn.btn-primary:active{

  transform:translateY(0);

}

.products-all-btn i,
.products-section .btn.btn-primary i{

  font-size:18px;

  transition:transform 0.25s ease;

}

.products-all-btn:hover i,
.products-section .btn.btn-primary:hover i{

  transform:translateX(3px);

}

.section-subtitle{

  color:var(--text-light);

  margin-top:15px;

  font-size:16px;

}

.product-slider-wrapper{

  position:relative;

  padding:0 8px;

}

.product-slider{

  overflow:hidden;

  width:100%;

  touch-action:pan-y;

  --product-gap:22px;

  --product-visible:6;

}

.product-track{

  display:flex;

  gap:var(--product-gap);

  transition:transform 0.5s cubic-bezier(0.4,0,0.2,1);

  padding:12px 4px 20px;

}

.product-card{

  min-width:calc(
  (100% - (var(--product-visible) - 1) * var(--product-gap))
  / var(--product-visible)
  );

  width:calc(
  (100% - (var(--product-visible) - 1) * var(--product-gap))
  / var(--product-visible)
  );

  height:430px;

  flex-shrink:0;

  display:flex;

  flex-direction:column;

  background:var(--card);

  border-radius:20px;

  border:1px solid var(--border);

  overflow:hidden;

  box-shadow:0 4px 20px rgba(17,24,39,0.06);

  transition:
  transform 0.35s cubic-bezier(0.4,0,0.2,1),
  box-shadow 0.35s ease,
  border-color 0.35s ease;

}

.product-card:hover{

  transform:translateY(-8px);

  border-color:rgba(39,108,245,0.25);

  box-shadow:0 16px 40px rgba(39,108,245,0.15);

}

.product-image{

  position:relative;

  width:100%;

  height:240px;

  flex-shrink:0;

  background:linear-gradient(180deg,#f8fafc 0%,#eef2f8 100%);

  overflow:hidden;

}

.product-badge{

  position:absolute;

  top:12px;
  left:12px;

  z-index:2;

  padding:6px 12px;

  font-size:10px;

  font-weight:600;

  letter-spacing:0.6px;

  text-transform:uppercase;

  color:var(--primary);

  background:rgba(255,255,255,0.95);

  border-radius:30px;

  box-shadow:0 2px 10px rgba(0,0,0,0.08);

}

.product-image img{

  width:100%;
  height:100%;

  object-fit:cover;

  transition:transform 0.5s cubic-bezier(0.4,0,0.2,1);

}

.product-card:hover .product-image img{

  transform:scale(1.06);

}

.product-card-body{

  display:flex;

  flex-direction:column;

  flex:1;

  min-height:0;

  padding:16px 16px 18px;

  text-align:left;

}

.product-title{

  font-size:15px;

  font-weight:600;

  line-height:1.45;

  color:var(--text);

  margin:0 0 10px;

  display:-webkit-box;

  -webkit-line-clamp:2;

  -webkit-box-orient:vertical;

  overflow:hidden;

  min-height:2.9em;

}

.product-price-row{

  display:flex;

  align-items:center;

  gap:8px;

  margin-bottom:14px;

}

.product-price{

  font-size:20px;

  font-weight:700;

  color:var(--primary);

  margin:0;

  line-height:1;

}

.product-cta{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  gap:6px;

  margin-top:auto;

  padding:11px 16px;

  font-size:13px;

  font-weight:600;

  color:var(--primary);

  text-decoration:none;

  background:var(--primary-soft);

  border-radius:12px;

  transition:
  background 0.3s ease,
  color 0.3s ease,
  gap 0.3s ease;

}

.product-cta:hover{

  background:var(--primary);

  color:#fff;

  gap:10px;

}

.product-cta i{

  font-size:16px;

  transition:transform 0.3s ease;

}

.product-cta:hover i{

  transform:translateX(3px);

}

.product-btn{

  display:flex;

  align-items:center;

  justify-content:center;

  position:absolute;

  top:40%;

  transform:translateY(-50%);

  width:55px;
  height:55px;

  border:none;

  border-radius:50%;

  background:#fff;

  box-shadow:var(--shadow);

  z-index:5;

  cursor:pointer;

  font-size:26px;

  transition:0.35s ease;

}

.product-btn:hover{

  background:var(--primary);

  color:#fff;

}

.product-prev{

  left:-20px;

}

.product-next{

  right:-20px;

}

/* =========================
   PROMO BANNER (after products)
========================= */

.promo-banner{

  width:100%;

  display:block;

  overflow:hidden;

  background:#000;

  line-height:0;

  height:clamp(150px,calc(100vw / 3.5),380px);

}

.promo-banner img{

  width:100%;
  height:100%;

  display:block;

  object-fit:cover;

  object-position:center center;

}

@media(max-width:992px){

  .promo-banner{

    height:auto;

    background:none;

  }

  .promo-banner img{

    width:100%;

    height:auto;

    display:block;

    object-fit:cover;

    object-position:center;

  }

}

/* =========================
   VIDEO BANNER (after promo)
========================= */

.video-banner{

  width:100%;

  display:block;

  overflow:hidden;

  background:#000;

  line-height:0;

  position:relative;

  height:420px;

}

.video-banner__media{

  width:100%;
  height:100%;

  display:block;

  object-fit:cover;

  object-position:center center;

  pointer-events:none;

  outline:none;

}

.video-banner__media::-webkit-media-controls,
.video-banner__media::-webkit-media-controls-enclosure{
  display:none !important;
}

@media(max-width:992px){

  .video-banner{

    height:200px;

    aspect-ratio:auto;

    overflow:hidden;

  }

  .video-banner__media{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

  }

}

.achievement-section{

  position:relative;

  background:
  linear-gradient(
  135deg,
  var(--primary-dark) 0%,
  #0a2463 50%,
  #061a42 100%
  );

  padding:90px 6%;

}

.achievement-overlay{

  position:absolute;
  inset:0;

  background:rgba(0,0,0,0.75);

}

.achievement-container{

  position:relative;

  z-index:2;

  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:30px;

}

.achievement-box{

  text-align:center;

  color:#fff;

}

.achievement-box h2{

  font-size:52px;

  margin-bottom:10px;

}

.leader-card img{

  width:120px;
  height:120px;

  border-radius:50%;

  object-fit:cover;

  margin-bottom:20px;

}

.leader-card span{

  color:var(--primary);

  font-weight:600;

}

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

.footer-section{

  position:relative;

  width:100%;

  background:
  linear-gradient(
  135deg,
  #070f1c 0%,
  #0d1b2a 35%,
  #122a4d 70%,
  #0a1628 100%
  );

  background-size:220% 220%;

  animation:footerGradientShift 14s ease infinite;

  padding:70px 6% 28px;

  overflow:hidden;

}

@keyframes footerGradientShift{

  0%,
  100%{
    background-position:0% 50%;
  }

  50%{
    background-position:100% 50%;
  }

}

.footer-bg{

  position:absolute;
  inset:0;

  z-index:0;

  pointer-events:none;

  overflow:hidden;

}

.footer-orb{

  position:absolute;

  border-radius:50%;

  filter:blur(70px);

  opacity:0.45;

}

.footer-orb--1{

  width:320px;
  height:320px;

  background:var(--primary);

  top:-80px;
  left:-60px;

  animation:footerOrb1 10s ease-in-out infinite;

}

.footer-orb--2{

  width:280px;
  height:280px;

  background:var(--primary-light);

  bottom:-100px;
  right:10%;

  animation:footerOrb2 12s ease-in-out infinite;

}

.footer-orb--3{

  width:200px;
  height:200px;

  background:#3b82f6;

  top:40%;
  right:-40px;

  animation:footerOrb3 9s ease-in-out infinite;

}

@keyframes footerOrb1{

  0%,
  100%{
    transform:translate(0,0) scale(1);
  }

  50%{
    transform:translate(40px,30px) scale(1.1);
  }

}

@keyframes footerOrb2{

  0%,
  100%{
    transform:translate(0,0) scale(1);
  }

  50%{
    transform:translate(-50px,-25px) scale(1.08);
  }

}

@keyframes footerOrb3{

  0%,
  100%{
    transform:translate(0,0);
  }

  50%{
    transform:translate(-35px,20px);
  }

}

.footer-grid-pattern{

  position:absolute;
  inset:0;

  background-image:
  linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px),
  linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px);

  background-size:40px 40px;

  mask-image:linear-gradient(180deg,rgba(0,0,0,0.5),transparent);

  opacity:0.6;

}

.footer-overlay{

  position:absolute;
  inset:0;

  z-index:1;

  background:
  linear-gradient(
  180deg,
  rgba(7,15,28,0.75) 0%,
  rgba(10,22,40,0.88) 100%
  );

}

.footer-container{

  position:relative;
  z-index:2;

}

.footer-grid{

  display:grid;

  grid-template-columns:
  repeat(5,1fr);

  gap:36px;

}

.footer-column h3{

  color:#fff;

  font-size:15px;

  margin-bottom:16px;

  font-weight:600;

  letter-spacing:0.8px;

  text-transform:uppercase;

}

.footer-brand{

  font-size:18px;

  font-weight:700;

  text-transform:none;

  letter-spacing:0;

  color:#fff;

  margin-bottom:14px;

}

.footer-column a{

  display:block;

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

  text-decoration:none;

  margin-bottom:10px;

  font-size:13px;

  line-height:1.5;

  transition:color 0.3s ease,transform 0.3s ease;

}

.footer-column a:hover{

  color:var(--primary-light);

  transform:translateX(4px);

}

.footer-contact p{

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

  line-height:1.7;

  margin-bottom:10px;

  font-size:13px;

}

.footer-contact strong{

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

  font-weight:600;

  font-size:12px;

}

.footer-contact a{

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

  text-decoration:none;

  transition:color 0.3s ease;

}

.footer-contact a:hover{

  color:var(--primary-light);

}

.footer-socials{

  display:flex;

  gap:10px;

  margin-top:18px;

}

.footer-socials a{

  width:36px;
  height:36px;

  border-radius:10px;

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

  display:flex;
  align-items:center;

  justify-content:center;

  color:#fff;

  font-size:15px;

  background:rgba(255,255,255,0.06);

  transition:
  background 0.3s ease,
  border-color 0.3s ease,
  transform 0.3s ease,
  color 0.3s ease;

}

.footer-socials a:hover{

  background:var(--primary);

  border-color:var(--primary);

  transform:translateY(-3px);

}

.footer-bottom{

  margin-top:48px;

  padding-top:22px;

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

  text-align:center;

}

.footer-bottom p{

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

  margin-bottom:6px;

  font-size:12px;

  line-height:1.6;

}

.footer-bottom strong{

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

  font-weight:600;

}

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

  .footer-section{
    animation:none;
    background-size:auto;
  }

  .footer-orb{
    animation:none;
  }

}

@media(max-width:1200px){

  .why-grid,
  .leader-grid,
  .achievement-container{

    grid-template-columns:repeat(2,1fr);

  }

  .about-container{

    grid-template-columns:1fr;

  }

  .about-content h2,
  .section-heading h2{

    font-size:32px;

  }

  .about-stat-card--1{
    left:0;
  }

  .about-stat-card--2{
    right:0;
  }

  .brand-card{
    flex:0 0 calc(33.333% - 20px);
  }

  .brand-circle{
    width:130px;
    height:130px;
  }

  .brands-section h2{
    font-size:28px;
    margin-bottom:40px;
  }

  .footer-grid{

    grid-template-columns:
    repeat(2,1fr);

  }

}

@media(max-width:992px){

  .product-slider{

    --product-visible:4;

  }

  .product-card{

    height:415px;

  }

  .product-image{

    height:220px;

  }

}

@media(max-width:768px){

  .products-section{

    padding:36px 5% 44px;

  }

  .products-section + .products-section{

    padding-top:24px;

  }

  .products-section .section-heading{

    margin-bottom:24px;

  }

  .product-btn{

    width:40px;
    height:40px;

    font-size:18px;

    display:flex;

  }

  .product-prev{

    left:-10px;

  }

  .product-next{

    right:-10px;

  }

  .product-slider{

    --product-visible:2;

  }

  .product-card{

    height:395px;

  }

  .product-image{

    height:200px;

  }

  .product-title{

    font-size:14px;

    min-height:2.8em;

  }

  .product-price{

    font-size:18px;

  }

  .product-cta{

    padding:10px 14px;

    font-size:12px;

  }

  

  .why-grid,
  .leader-grid,
  .achievement-container{

    grid-template-columns:1fr;

  }

  .about-section,
  .why-section{

    padding:60px 6%;

  }

  .about-container{

    gap:40px;

  }

  .about-stat-card{

    padding:10px 14px;

    min-width:100px;

  }

  .about-stat-card strong{

    font-size:18px;

  }

  .about-stat-card--1{

    bottom:8%;
    left:4%;

  }

  .about-stat-card--2{

    top:6%;
    right:4%;

  }

  .about-content h2,
  .section-heading h2{

    font-size:26px;

  }

  .brand-card{
    flex:0 0 calc(50% - 14px);
    min-width:140px;
  }

  .brand-circle{
    width:120px;
    height:120px;
    padding:18px;
  }

  .brand-label{
    font-size:13px;
  }

  .brands-section{
    padding:50px 6% 60px;
  }

  .brands-section h2{
    font-size:24px;
    margin-bottom:32px;
  }

  .footer-grid{

    grid-template-columns:repeat(2,1fr);

    gap:40px;

  }

  .footer-contact{

    grid-column:1 / -1;

    width:100%;

  }

  .footer-column h3{

    font-size:14px;

  }

  .footer-brand{

    font-size:17px;

  }

  .footer-section{

    padding:55px 6% 24px;

  }

}

@media(max-width:576px){

  .logo img{

    width:62px;

  }

  .nav-slider-btn{

    width:36px;
    height:36px;

    font-size:16px;

  }

}

/* =========================
   SITE WARNING (index.html)
========================= */

body.warning-page{
  overflow:hidden;
  min-height:100vh;
}

.site-warning{

  display:flex;

  align-items:center;

  justify-content:center;

  min-height:100vh;

  padding:24px;

  background:
  linear-gradient(
  135deg,
  rgba(7,15,28,0.97) 0%,
  rgba(15,39,68,0.98) 100%
  );

}

.site-warning__card{

  width:100%;

  max-width:560px;

  max-height:90vh;

  overflow-y:auto;

  background:#fff;

  border-radius:24px;

  padding:36px 32px 32px;

  text-align:center;

  box-shadow:0 25px 60px rgba(0,0,0,0.35);

  animation:warningCardIn 0.45s cubic-bezier(0.4,0,0.2,1);

}

@keyframes warningCardIn{

  from{
    opacity:0;
    transform:translateY(24px) scale(0.96);
  }

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

}

.site-warning__icon{

  width:64px;
  height:64px;

  margin:0 auto 16px;

  display:flex;

  align-items:center;

  justify-content:center;

  background:var(--primary-soft);

  color:var(--primary);

  border-radius:50%;

  font-size:32px;

}

.site-warning__tag{

  display:inline-block;

  padding:6px 14px;

  font-size:11px;

  font-weight:600;

  letter-spacing:0.8px;

  text-transform:uppercase;

  color:var(--primary);

  background:var(--primary-soft);

  border-radius:30px;

  margin-bottom:14px;

}

.site-warning__card h1{

  font-size:24px;

  font-weight:700;

  color:var(--text);

  margin-bottom:20px;

  line-height:1.35;

}

.site-warning__content{

  text-align:left;

  margin-bottom:28px;

}

.site-warning__content p{

  font-size:14px;

  line-height:1.75;

  color:var(--text-light);

  margin-bottom:12px;

}

.site-warning__content p:last-child{
  margin-bottom:0;
}

.site-warning__content strong{
  color:var(--text);
  font-weight:600;
}

.site-warning__btn{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  gap:8px;

  width:100%;

  padding:15px 28px;

  border:none;

  border-radius:12px;

  background:var(--primary);

  color:#fff;

  font-family:inherit;

  font-size:15px;

  font-weight:600;

  text-decoration:none;

  cursor:pointer;

  transition:
  background 0.3s ease,
  transform 0.2s ease,
  gap 0.3s ease;

}

.site-warning__btn:hover{

  background:var(--primary-hover);

  gap:12px;

}

.site-warning__btn:active{
  transform:scale(0.98);
}

.site-warning__btn i{
  font-size:18px;
}

@media(max-width:576px){

  .site-warning{
    padding:16px;
  }

  .site-warning__card{
    padding:28px 22px 24px;
    border-radius:20px;
  }

  .site-warning__card h1{
    font-size:20px;
  }

  .site-warning__content p{
    font-size:13px;
  }

}

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

  .site-warning__card{
    animation:none;
  }

}