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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#f4f8ff;
  color:#0f172a;
  overflow-x:hidden;
  min-height:100vh;
}

/* HEADER */

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:72px;
  padding:14px 6%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,0.12);
  z-index:999;
}

.logo{
  display:flex;
  align-items:center;
  gap:16px;
}

.logo img{
  width:46px;
  height:46px;
}

.logo-text{
  font-size:26px;
  font-weight:800;
  color:#fff;
  white-space:nowrap;
}

.nav{
  display:flex;
  align-items:center;
  gap:28px;
}

.nav a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  position:relative;
  transition:.3s;
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#60a5fa;
  transition:.3s;
}

.nav a:hover::after{
  width:100%;
}

.menu-btn{
  display:none;
  color:#fff;
  font-size:30px;
  cursor:pointer;
}

/* HERO */

.hero{
  width:100%;
  min-height:82vh;
  position:relative;

  background:
  linear-gradient(
  90deg,
  rgba(2,10,28,0.62),
  rgba(5,40,90,0.32)
  ),
  url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1800&q=90");

  background-size:cover;
  background-position:center;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;

  background:
  radial-gradient(circle at 72% 42%,rgba(29,155,240,0.18),transparent 35%),
  linear-gradient(120deg,rgba(29,155,240,0.08),transparent 50%);
}

.hero-container{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  width:100%;
  padding:140px 7% 90px;
}

.hero-content{
  position:relative;
  z-index:5;
  max-width:780px;
}

.small-title{
  color:#38bdf8;
  font-size:13px;
  font-weight:800;
  letter-spacing:2px;
  margin-bottom:22px;
}

.hero h1{
  font-size:clamp(42px,4.5vw,64px);
  line-height:1.05;
  color:#fff;
  margin-bottom:26px;
}

.hero-desc{
  max-width:650px;
  color:#f1f5f9;
  line-height:1.9;
  font-size:18px;
  margin-bottom:42px;
}

/* BUTTONS */

.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.reply-text{
  margin-top:22px;
  color:#dbeafe;
  font-size:15px;
  letter-spacing:0.5px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 38px;
  border-radius:50px;
  background:linear-gradient(135deg,#3b82f6,#2563eb);
  color:#fff;
  font-weight:700;
  text-decoration:none;
  transition:.3s;
  border:none;
}

.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 30px rgba(59,130,246,0.35);
}
.primary{
  background:linear-gradient(135deg,#1d9bf0,#006cff);
  color:#fff;
  box-shadow:0 16px 35px rgba(29,155,240,0.28);
}

.primary:hover{
  transform:translateY(-4px);
}

.secondary{
  background:transparent;
  border:1px solid rgba(255,255,255,0.45);
  color:#fff;
}

.secondary:hover{
  background:#fff;
  color:#0f172a;
}

/* COMMON */

.section{
  padding:80px 5%;
}

.section-top{
  text-align:center;
  margin-bottom:38px;
}

.section-top p,
.blue-text{
  color:#1d9bf0;
  font-size:13px;
  font-weight:800;
  letter-spacing:1.5px;
  margin-bottom:12px;
}

.section-top h2{
  font-size:clamp(32px,4vw,46px);
  font-weight:900;
}

/* PRODUCTS */

#products{
  padding-top:50px;
  padding-bottom:50px;
}

.products-slider{
  width:100%;
  position:relative;
  overflow:hidden;
}

.category-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.category-grid::-webkit-scrollbar{
  display:none;
}

.category-card{
  background:#fff;
  border-radius:8px;
  overflow:hidden;
  border:1px solid #edf2f7;
  transition:.3s;
}

.category-card:hover{
  transform:
  perspective(1200px)
  translateY(-8px)
  scale(1.01);

  box-shadow:
  0 20px 50px rgba(29,155,240,0.18);
}

.category-card img{
  width:100%;
  height:160px;
  object-fit:cover;
  display:block;
  transition:.35s;
}

.category-card:hover img{
  transform:scale(1.05);
}

.category-info{
  padding:16px 18px 20px;
  text-align:center;
}

.category-info h3{
  font-size:18px;
  margin-bottom:10px;
}

.category-info p{
  color:#64748b;
  line-height:1.7;
  font-size:14px;
}

.product-link{
  display:inline-block;
  margin-top:18px;
  color:#1d9bf0;
  font-weight:700;
  text-decoration:none;
}

/* ABOUT */

.about-section,
.oem-section,
.contact-section{
  padding:100px 7%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-section,
.contact-section{
  background:#fff;
}

.about-left{
  overflow:hidden;
  border-radius:18px;
}

.about-left video{
  width:100%;
  height:360px;
  object-fit:cover;
  display:block;
  border-radius:18px;
}

.about-right h2,
.oem-left h2,
.contact-left h2{
  font-size:clamp(34px,4vw,50px);
  line-height:1.15;
  margin-bottom:24px;
}

.about-desc,
.oem-left p{
  color:#64748b;
  line-height:1.9;
  margin-bottom:34px;
}

.about-boxes{
  display:flex;
  gap:18px;
}

.mini-box{
  flex:1;
  background:linear-gradient(180deg,#f5faff,#eef6ff);
  border-radius:18px;
  padding:28px 20px;
  text-align:center;
  border:1px solid #dbeafe;
}

.mini-box h3{
  color:#1d9bf0;
  font-size:36px;
  margin-bottom:8px;
}

/* WHY */

.why-section{
  padding:110px 7%;
  background:
  linear-gradient(
  135deg,
  rgba(8,20,45,0.88),
  rgba(25,80,150,0.82)
  ),
  url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1800&q=90");
  background-size:105%;
  background-position:center;
}

.white p,
.white h2{
  color:#fff;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.why-card{
  padding:32px;
  border-radius:18px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  backdrop-filter:blur(14px);
  transition:.35s;
}

.why-card:hover{
  transform:translateY(-8px);
}

.why-card h3{
  color:#fff;
  font-size:22px;
  margin-bottom:14px;
}

.why-card p{
  color:#dbeafe;
  line-height:1.8;
}

/* OEM */

.oem-section{
  background:#f4f8ff;
}

.oem-box{
  background:#fff;
  border-radius:20px;
  padding:50px;
  box-shadow:0 18px 50px rgba(15,23,42,0.08);
  border:1px solid #e0f2fe;
}

  /* CONTACT */

.contact-section{
  background:#fff;
}

form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

input,
textarea{
  width:100%;
  padding:18px 20px;
  border:1px solid #dbeafe;
  border-radius:18px;
  background:#f8fbff;
  font-size:15px;
  outline:none;
}

textarea{
  min-height:160px;
  resize:vertical;
}

button{
  height:56px;
  border:none;
  border-radius:999px;
  background:linear-gradient(135deg,#1d9bf0,#006cff);
  color:#fff;
  font-size:16px;
  font-weight:800;
  cursor:pointer;
  transition:.35s;
}

button:hover{
  transform:translateY(-4px);
}

.contact-card{
  background:#f8fbff;
  border-radius:18px;
  padding:40px;
  border:1px solid #dbeafe;
  box-shadow:0 20px 50px rgba(15,23,42,0.08);
}

.contact-card h3{
  font-size:28px;
  margin-bottom:24px;
}

.contact-card p{
  color:#475569;
  line-height:1.9;
  margin-bottom:24px;
}

/* BANNERS */

.oem-banner,
.factory-strength,
.production-process,
.products-banner{
  width:100%;
  padding:40px 7%;
}

.oem-banner img,
.factory-strength img,
.production-process img,
.products-banner img{

  width:100%;

  border-radius:18px;

  display:block;

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

  object-fit:contain;

  background:#fff;

}

.production-process img{
  max-height:420px;
}

/* CERTIFICATE */

.cert-banner{
  background:#f4f8ff;
  overflow:hidden;
}

.cert-overlay{
  text-align:center;
  padding:60px 20px 40px;
}

.cert-overlay p{
  color:#3b82f6;
  font-weight:800;
  margin-bottom:12px;
}

.cert-overlay h2{
  font-size:52px;
  font-weight:900;
}

.cert-banner img{
  width:100%;
  max-width:1400px;
  max-height:420px;
  object-fit:contain;
  margin:auto;
  display:block;
  border-radius:18px;
}

/* PRODUCT PAGE */

.product-hero{
  position:relative;
  width:100%;
  min-height:60vh;

  background:
  linear-gradient(
  120deg,
  rgba(2,10,28,0.75),
  rgba(5,40,90,0.45)
  ),
  url("products-banner.jpg");

  background-size:cover;
  background-position:center;

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

  text-align:center;

  overflow:hidden;
}

.product-hero-content{
  position:relative;
  z-index:2;
  padding:140px 20px 100px;
}

.product-hero-content p{
  color:#38bdf8;
  font-size:14px;
  font-weight:800;
  letter-spacing:2px;
  margin-bottom:20px;
}

.product-hero-content h1{
  color:#fff;
  font-size:clamp(42px,5vw,72px);
  line-height:1.05;
  margin-bottom:24px;
}

.product-hero-content span{
  color:#dbeafe;
  font-size:18px;
}

.product-section{
  padding:90px 7%;
}

.product-filter-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  max-width:1280px;
  margin:0 auto 34px;
  padding:14px;
  background:rgba(255,255,255,0.86);
  border:1px solid rgba(148,163,184,0.22);
  border-radius:20px;
  box-shadow:0 16px 40px rgba(15,23,42,0.07);
  backdrop-filter:blur(14px);
}

.product-filter-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.product-filter-btn{
  min-height:40px;
  padding:0 16px;
  border:1px solid rgba(148,163,184,0.28);
  border-radius:999px;
  background:#fff;
  color:#475569;
  font-family:inherit;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:.25s;
}

.product-filter-btn:hover{
  color:#0f172a;
  border-color:rgba(29,155,240,0.42);
  box-shadow:0 10px 24px rgba(29,155,240,0.12);
  transform:translateY(-1px);
}

.product-filter-btn.is-active{
  color:#fff;
  border-color:transparent;
  background:linear-gradient(135deg,#1d9bf0,#2563eb);
  box-shadow:0 12px 28px rgba(37,99,235,0.22);
}

.product-search{
  position:relative;
  display:flex;
  align-items:center;
  flex:0 0 280px;
  min-width:220px;
}

.product-search-icon{
  position:absolute;
  left:16px;
  width:14px;
  height:14px;
  border:2px solid #60a5fa;
  border-radius:50%;
  pointer-events:none;
}

.product-search-icon::after{
  content:"";
  position:absolute;
  right:-6px;
  bottom:-5px;
  width:7px;
  height:2px;
  background:#60a5fa;
  border-radius:999px;
  transform:rotate(45deg);
}

.product-search input{
  width:100%;
  height:44px;
  padding:0 18px 0 44px;
  border:1px solid rgba(148,163,184,0.28);
  border-radius:999px;
  outline:none;
  background:#f8fbff;
  color:#0f172a;
  font-family:inherit;
  font-size:14px;
  font-weight:600;
  transition:.25s;
}

.product-search input:focus{
  border-color:rgba(29,155,240,0.55);
  background:#fff;
  box-shadow:0 0 0 4px rgba(29,155,240,0.1);
}

.product-empty-state{
  grid-column:1 / -1;
  padding:42px 24px;
  text-align:center;
  background:#fff;
  border:1px solid rgba(148,163,184,0.22);
  border-radius:20px;
  box-shadow:0 12px 30px rgba(15,23,42,0.06);
}

.product-empty-state h3{
  margin-bottom:8px;
  color:#0f172a;
  font-size:22px;
}

.product-empty-state p{
  color:#64748b;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

.product-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;

  border:1px solid #e2e8f0;

  transition:.35s;

  box-shadow:
  0 10px 30px rgba(15,23,42,0.06);
}

.product-card:hover{
  transform:translateY(-8px);

  box-shadow:
  0 20px 50px rgba(29,155,240,0.15);
}

.product-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

.product-info{
  padding:24px;
  text-align:center;
}

.product-info h3{
  font-size:20px;
  margin-bottom:16px;
}

.product-info a{
  color:#1d9bf0;
  font-weight:700;
  text-decoration:none;
}

.product-oem{
  padding:100px 7%;

  background:
  linear-gradient(
  135deg,
  rgba(8,20,45,0.92),
  rgba(25,80,150,0.88)
  );
}

.oem-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.oem-card{
  background:rgba(255,255,255,0.08);

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

  border-radius:20px;

  padding:36px 28px;

  backdrop-filter:blur(14px);

  transition:.35s;
}

.oem-card:hover{
  transform:translateY(-8px);
}

.oem-card h3{
  color:#fff;
  font-size:24px;
  margin-bottom:16px;
}

.oem-card p{
  color:#dbeafe;
  line-height:1.8;
}

.product-contact{
  padding:100px 7%;
}

.product-contact-box{
  background:#fff;

  border-radius:30px;

  padding:70px 50px;

  text-align:center;

  box-shadow:
  0 20px 60px rgba(15,23,42,0.08);
}

.product-contact-box h2{
  font-size:48px;
  margin-bottom:20px;
}

.product-contact-box p{
  color:#64748b;
  margin-bottom:32px;
  font-size:18px;
}

@media(max-width:1100px){

  .product-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .product-filter-bar{
    align-items:flex-start;
    flex-direction:column;
  }

  .product-search{
    flex:0 1 auto;
    width:100%;
  }

  .oem-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:700px){

  .product-grid{
    grid-template-columns:1fr;
  }

  .product-filter-bar{
    margin-bottom:24px;
    padding:12px;
    border-radius:18px;
  }

  .product-filter-buttons{
    flex-wrap:nowrap;
    width:100%;
    overflow-x:auto;
    padding-bottom:2px;
    scrollbar-width:none;
  }

  .product-filter-buttons::-webkit-scrollbar{
    display:none;
  }

  .product-filter-btn{
    flex:0 0 auto;
    min-height:38px;
    padding:0 14px;
    font-size:13px;
  }

  .product-search{
    min-width:0;
  }

  .oem-grid{
    grid-template-columns:1fr;
  }

  .product-hero-content h1{
    font-size:46px;
  }

}

/* DELIVERY MOBILE AND PERFORMANCE TUNING */

@media(max-width:760px){

  .header{
    height:66px;
    padding:12px 5%;
  }

  .logo img{
    width:38px;
    height:38px;
  }

  .logo-text{
    max-width:210px;
    overflow:hidden;
    font-size:17px;
    text-overflow:ellipsis;
  }

  .menu-btn{
    display:block;
    min-width:44px;
    min-height:44px;
    line-height:44px;
    text-align:center;
  }

  .nav{
    position:absolute;
    top:66px;
    left:0;
    width:100%;
    padding:14px 5% 18px;
    background:rgba(7,18,38,.96);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    display:none;
  }

  .nav.active{
    display:flex;
  }

  .nav a{
    width:100%;
    min-height:42px;
    display:flex;
    align-items:center;
  }

  .hero{
    min-height:620px;
    padding:96px 5% 70px;
  }

  .hero h1{
    font-size:clamp(34px,10vw,44px);
    line-height:1.12;
  }

  .hero-desc{
    max-width:100%;
    font-size:15px;
    line-height:1.75;
  }

  .hero-buttons{
    width:100%;
    gap:12px;
  }

  .hero-buttons .btn{
    width:100%;
    min-height:50px;
  }

  #products .category-grid,
  .product-grid,
  .factory-grid,
  .related-grid{
    grid-template-columns:1fr;
  }

  #products .category-card{
    height:312px;
    box-shadow:0 12px 28px rgba(15,23,42,.08);
  }

  #products .category-card img{
    height:240px;
    flex-basis:240px;
  }

  .detail-page{
    grid-template-columns:1fr;
    padding:112px 18px 70px;
    gap:34px;
  }

  .detail-main-image img{
    height:340px;
  }

  .detail-info,
  .detail-features{
    grid-template-columns:1fr;
  }

  .detail-buttons .btn{
    width:100%;
    min-height:54px;
  }

  input,
  textarea,
  select{
    min-height:50px;
    font-size:16px;
  }

  .inquiry-form button{
    min-height:54px;
  }

  .whatsapp-container{
    right:16px;
    bottom:16px;
  }

  .whatsapp{
    width:56px;
    height:56px;
    min-width:56px;
    min-height:56px;
    box-shadow:0 10px 24px rgba(37,211,102,.24);
  }

  .category-card,
  .product-card,
  .related-card,
  .feature-item,
  .info-row{
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }
}

@media(prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    scroll-behavior:auto !important;
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
}

/* PRODUCT DETAIL PAGE */

.detail-page{
  padding:140px 7% 100px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:start;
  background:#fff;
}

.detail-main-image{
  background:#f8fbff;
  border-radius:24px;
  overflow:hidden;
  border:1px solid #e2e8f0;
}

.detail-main-image img{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
}

.detail-gallery{
  margin-top:24px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.detail-gallery img{
  width:100%;
  height:110px;
  object-fit:cover;
  border-radius:16px;
  cursor:pointer;
  border:1px solid #e2e8f0;
  transition:.3s;
}

.detail-gallery img:hover{
  transform:translateY(-4px);
}

.detail-tag{
  color:#1d9bf0;
  font-size:14px;
  font-weight:800;
  letter-spacing:2px;
  margin-bottom:18px;
}

.detail-right h1{
  font-size:clamp(40px,4vw,58px);
  line-height:1.08;
  margin-bottom:28px;
}

.detail-desc{
  color:#64748b;
  line-height:1.9;
  font-size:17px;
  margin-bottom:34px;
}

.detail-features{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-bottom:38px;
}

.feature-item{
  color:#0f172a;
  font-weight:600;
}

.detail-info{
  border-top:1px solid #e2e8f0;
  border-bottom:1px solid #e2e8f0;
  margin-bottom:40px;
}

.info-row{
  display:flex;
  justify-content:space-between;
  padding:18px 0;
  border-bottom:1px solid #edf2f7;
}

.info-row:last-child{
  border-bottom:none;
}

.info-row span{
  color:#64748b;
}

.info-row strong{
  color:#0f172a;
}

.detail-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.detail-factory{
  padding:100px 7%;
  background:#f4f8ff;
}

.factory-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.factory-box{
  background:#fff;
  border-radius:22px;
  padding:38px 30px;
  border:1px solid #e2e8f0;
  transition:.35s;
}

.factory-box:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(15,23,42,0.08);
}

.factory-box h3{
  font-size:24px;
  margin-bottom:16px;
}

.factory-box p{
  color:#64748b;
  line-height:1.8;
}

@media(max-width:1100px){

  .detail-page{
    grid-template-columns:1fr;
  }

  .factory-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:700px){

  .factory-grid{
    grid-template-columns:1fr;
  }

  .detail-main-image img{
    height:380px;
  }

  .detail-gallery{
    grid-template-columns:repeat(2,1fr);
  }

  .detail-right h1{
    font-size:42px;
  }

}

/* FOOTER */

.footer{
  background:#020d1f;
  padding:80px 7% 40px;
  color:#fff;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
}

.footer-col{
  display:flex;
  flex-direction:column;
}

.footer-logo{
  font-size:30px;
  font-weight:900;
  margin-bottom:18px;
}

.footer-desc{
  color:#94a3b8;
  line-height:1.9;
  max-width:320px;
}

.footer-col h3{
  font-size:18px;
  margin-bottom:20px;
}

.footer-col a{
  color:#94a3b8;
  text-decoration:none;
  margin-bottom:14px;
  transition:.3s;
}

.footer-col a:hover{
  color:#38bdf8;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  margin-top:50px;
  padding-top:24px;
  text-align:center;
  color:#64748b;
  font-size:14px;
}

@media(max-width:900px){

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:600px){

  .footer-grid{
    grid-template-columns:1fr;
  }

}

/* WHATSAPP */

.whatsapp-container{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:9999;
  display:flex;
  align-items:center;
  gap:14px;
}

.whatsapp{
  width:68px;
  height:68px;
  border-radius:50%;
  background:#25d366;
  display:flex;
  justify-content:center;
  align-items:center;
  box-shadow:0 12px 30px rgba(37,211,102,0.35);
  transition:.3s;
}

.whatsapp:hover{
  transform:scale(1.08);
}

.whatsapp img{
  width:34px;
  height:34px;
}

.whatsapp-tooltip{
  background:#fff;
  padding:14px 18px;
  border-radius:18px;
  font-size:14px;
  font-weight:600;
  line-height:1.6;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* MOBILE */

@media(max-width:950px){

  .menu-btn{
    display:block;
  }

  .category-grid{
    grid-template-columns:1fr 1fr;
  }

  .nav{
    position:absolute;
    top:72px;
    left:0;
    width:100%;
    background:rgba(10,20,40,0.96);
    flex-direction:column;
    align-items:flex-start;
    padding:28px 7%;
    display:none;
  }

  .nav.active{
    display:flex;
  }

  .about-section,
  .oem-section,
  .contact-section,
  .why-grid{
    grid-template-columns:1fr;
  }

  .hero-container{
    padding-top:130px;
  }

}

@media(max-width:520px){

  .hero h1{
    font-size:42px;
  }

  .hero-desc{
    font-size:15px;
  }

  .btn{
    width:100%;
  }

  .hero-buttons{
    width:100%;
  }

  .category-grid{
      grid-template-columns:1fr;
}
  
  .about-boxes{
    flex-direction:column;
  }

  .whatsapp-tooltip{
    display:none;
  }

  .footer-logo{
    font-size:24px;
  }

}

/* LIGHT ENHANCEMENTS */

.header{
  background:rgba(7,18,38,0.34);
  border-bottom:1px solid rgba(255,255,255,0.08);
  box-shadow:0 10px 34px rgba(2,8,23,0.12);
  transition:background .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.header.is-scrolled{
  background:rgba(7,18,38,0.72);
  border-bottom-color:rgba(148,163,184,0.18);
  box-shadow:0 18px 42px rgba(2,8,23,0.2);
}

.logo{
  filter:drop-shadow(0 8px 18px rgba(14,165,233,0.18));
}

.logo img{
  border-radius:12px;
  box-shadow:0 8px 22px rgba(15,23,42,0.22);
}

.logo-text{
  font-weight:760;
  letter-spacing:0;
}

.product-hero{
  min-height:520px;
  height:clamp(500px,52vw,550px);
  isolation:isolate;
  background:
    linear-gradient(120deg,rgba(5,12,28,.86),rgba(15,40,72,.58) 48%,rgba(8,16,32,.82)),
    url("products-banner.jpg");
  background-size:cover;
  background-position:center;
}

.product-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:inherit;
  filter:blur(2px) saturate(1.08);
  transform:scale(1.015);
  opacity:.56;
}

.product-hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(circle at 50% 18%,rgba(56,189,248,.28),transparent 26%),
    radial-gradient(circle at 18% 72%,rgba(37,99,235,.22),transparent 26%),
    linear-gradient(180deg,rgba(2,6,23,.2),rgba(2,6,23,.34));
  pointer-events:none;
}

.product-hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg,rgba(2,6,23,.7),rgba(15,23,42,.28),rgba(2,6,23,.68)),
    linear-gradient(180deg,rgba(2,6,23,.18),rgba(2,6,23,.54));
  backdrop-filter:blur(1px);
  -webkit-backdrop-filter:blur(1px);
}

.product-hero-content{
  max-width:760px;
  padding:150px 24px 92px;
  text-shadow:0 18px 42px rgba(2,6,23,.35);
}

.product-hero-content p{
  margin-bottom:16px;
  color:#7dd3fc;
  font-size:12px;
  font-weight:700;
  letter-spacing:3.6px;
}

.product-hero-content h1{
  font-size:clamp(32px,3.35vw,46px);
  line-height:1.16;
  margin-bottom:18px;
  font-weight:760;
  letter-spacing:0;
}

.product-hero-content span{
  display:block;
  color:#bde9ff;
  font-size:14px;
  font-weight:600;
  letter-spacing:2.8px;
  line-height:1.9;
  text-transform:uppercase;
}

.product-hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  margin-top:30px;
  padding:0 26px;
  border-radius:999px;
  color:#fff;
  background:linear-gradient(135deg,#38bdf8,#2563eb);
  box-shadow:0 16px 42px rgba(37,99,235,.34);
  font-size:14px;
  font-weight:800;
  text-decoration:none;
  transition:transform .28s ease, box-shadow .28s ease, filter .28s ease;
}

.product-hero-btn:hover{
  transform:translateY(-3px);
  filter:saturate(1.08);
  box-shadow:0 22px 54px rgba(56,189,248,.42);
}

.product-hero:hover{
  background-position:center 48%;
}

/* PRODUCT DETAIL PREMIUM ENHANCEMENTS */

body:has(.detail-page){
  background:
    radial-gradient(circle at 12% 12%,rgba(56,189,248,.16),transparent 28%),
    radial-gradient(circle at 88% 18%,rgba(37,99,235,.12),transparent 30%),
    linear-gradient(180deg,#eef6ff 0%,#f8fbff 42%,#eef5fb 100%);
}

.detail-page{
  max-width:1280px;
  margin:0 auto;
  padding:156px 32px 112px;
  gap:76px;
  background:transparent;
}

.detail-main-image{
  position:relative;
  border-radius:28px;
  background:
    linear-gradient(145deg,rgba(15,23,42,.96),rgba(15,54,88,.88)),
    radial-gradient(circle at 30% 20%,rgba(56,189,248,.22),transparent 34%);
  border:1px solid rgba(125,211,252,.24);
  box-shadow:
    0 28px 70px rgba(15,23,42,.2),
    0 0 42px rgba(56,189,248,.12);
}

.detail-main-image::after{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:27px;
  background:linear-gradient(135deg,rgba(255,255,255,.12),transparent 38%);
  pointer-events:none;
}

.detail-main-image img{
  height:500px;
  transition:transform .45s ease, opacity .3s ease, filter .35s ease;
}

.detail-main-image:hover img{
  transform:scale(1.035);
  filter:saturate(1.05) contrast(1.03);
}

.detail-main-image img.is-swapping{
  animation:detailImageSwap .38s ease;
}

@keyframes detailImageSwap{
  from{
    opacity:.45;
    transform:scale(.985);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}

.detail-gallery{
  gap:16px;
}

.detail-gallery img{
  border-radius:18px;
  border:1px solid rgba(14,165,233,.22);
  box-shadow:0 14px 32px rgba(15,23,42,.08);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.detail-gallery img:hover{
  transform:translateY(-5px) scale(1.02);
  border-color:rgba(56,189,248,.56);
  box-shadow:0 18px 42px rgba(37,99,235,.16);
}

.detail-tag{
  color:#0ea5e9;
  letter-spacing:3px;
}

.detail-right h1{
  max-width:620px;
  font-size:clamp(34px,3.6vw,48px);
  line-height:1.14;
  font-weight:760;
  letter-spacing:0;
  margin-bottom:22px;
}

.detail-desc{
  max-width:620px;
  color:#516173;
  font-size:16px;
  line-height:1.85;
  margin-bottom:22px;
}

.detail-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 30px;
}

.detail-badges span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 14px;
  border:1px solid rgba(14,165,233,.2);
  border-radius:999px;
  color:#0369a1;
  background:rgba(224,242,254,.72);
  box-shadow:0 10px 24px rgba(14,165,233,.08);
  font-size:13px;
  font-weight:800;
}

.detail-features{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.feature-item{
  position:relative;
  padding:15px 16px 15px 46px;
  border:1px solid rgba(191,219,254,.72);
  border-radius:16px;
  background:rgba(255,255,255,.76);
  box-shadow:0 12px 28px rgba(15,23,42,.06);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.feature-item::before{
  content:"✓";
  position:absolute;
  left:15px;
  top:50%;
  width:22px;
  height:22px;
  border-radius:50%;
  transform:translateY(-50%);
  display:grid;
  place-items:center;
  color:#fff;
  background:linear-gradient(135deg,#38bdf8,#2563eb);
  font-size:13px;
  font-weight:900;
}

.feature-item:hover{
  transform:translateY(-4px);
  border-color:rgba(56,189,248,.52);
  box-shadow:0 18px 40px rgba(37,99,235,.12);
}

.detail-info{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  border:0;
  margin-bottom:38px;
}

.info-row{
  display:grid;
  gap:8px;
  padding:18px;
  border:1px solid rgba(191,219,254,.76);
  border-radius:18px;
  background:rgba(255,255,255,.82);
  box-shadow:0 14px 32px rgba(15,23,42,.07);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.info-row:hover{
  transform:translateY(-4px);
  border-color:rgba(56,189,248,.52);
  box-shadow:0 20px 44px rgba(37,99,235,.12);
}

.info-row span{
  color:#64748b;
  font-size:12px;
  font-weight:800;
  letter-spacing:1.4px;
  text-transform:uppercase;
}

.info-row strong{
  color:#0f172a;
  font-size:17px;
}

.detail-buttons .btn{
  min-height:52px;
  padding:0 28px;
  border-radius:999px;
}

.detail-buttons .primary{
  background:linear-gradient(135deg,#38bdf8,#2563eb);
  box-shadow:0 18px 44px rgba(37,99,235,.3);
}

.detail-buttons .primary:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 58px rgba(56,189,248,.38);
}

.detail-buttons .secondary{
  color:#075985;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(14,165,233,.22);
  box-shadow:0 14px 34px rgba(15,23,42,.08);
}

.related-products{
  max-width:1280px;
  margin:0 auto;
  padding:0 32px 112px;
}

.product-video-section{
  max-width:1280px;
  margin:0 auto;
  padding:0 32px 92px;
}

.product-video-box{
  overflow:hidden;
  border:1px solid rgba(125,211,252,.24);
  border-radius:28px;
  background:
    linear-gradient(145deg,rgba(15,23,42,.96),rgba(15,54,88,.88)),
    radial-gradient(circle at 30% 20%,rgba(56,189,248,.22),transparent 34%);
  box-shadow:
    0 28px 70px rgba(15,23,42,.18),
    0 0 42px rgba(56,189,248,.12);
}

.product-video-box video{
  width:100%;
  max-height:620px;
  display:block;
  object-fit:cover;
}

.related-grid,
.related-products-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
}

.related-products-message{
  grid-column:1 / -1;
  padding:22px;
  color:#64748b;
  text-align:center;
  background:#fff;
  border:1px solid rgba(191,219,254,.74);
  border-radius:18px;
}

.related-card{
  display:block;
  overflow:hidden;
  border:1px solid rgba(191,219,254,.74);
  border-radius:20px;
  color:#0f172a;
  background:rgba(255,255,255,.82);
  box-shadow:0 18px 42px rgba(15,23,42,.08);
  text-decoration:none;
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.related-card:hover{
  transform:translateY(-6px);
  border-color:rgba(56,189,248,.55);
  box-shadow:0 24px 58px rgba(37,99,235,.14);
}

.related-card img{
  width:100%;
  height:170px;
  display:block;
  object-fit:cover;
  transition:transform .35s ease;
}

.related-card:hover img{
  transform:scale(1.045);
}

.related-card h3{
  padding:18px 18px 8px;
  font-size:18px;
}

.related-card p{
  padding:0 18px 20px;
  color:#64748b;
  font-size:14px;
  line-height:1.6;
}

@media(max-width:1100px){
  .detail-page{
    padding-left:28px;
    padding-right:28px;
  }

  .related-grid,
  .related-products-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:700px){
  .detail-page{
    padding:118px 18px 76px;
    gap:42px;
  }

  .detail-main-image img{
    height:360px;
  }

  .detail-features,
  .detail-info,
  .related-grid,
  .related-products-grid{
    grid-template-columns:1fr;
  }

  .detail-right h1{
    font-size:34px;
  }

  .related-products{
    padding:0 18px 78px;
  }

  .product-video-section{
    padding:0 18px 72px;
  }
}

/* HOME PRODUCT CATEGORY PREMIUM ENHANCEMENTS */

#products.section{
  padding:74px 5% 82px;
  background:
    radial-gradient(circle at 12% 18%,rgba(56,189,248,.12),transparent 28%),
    radial-gradient(circle at 88% 10%,rgba(37,99,235,.1),transparent 24%),
    linear-gradient(180deg,#f7fbff 0%,#eef6ff 100%);
}

#products .section-top{
  margin-bottom:34px;
}

#products .category-grid{
  gap:18px;
}

#products .category-card{
  display:flex;
  flex-direction:column;
  height:310px;
  border:1px solid rgba(203,213,225,.56);
  border-radius:18px;
  background:rgba(255,255,255,.78);
  box-shadow:
    0 14px 34px rgba(15,23,42,.065),
    inset 0 1px 0 rgba(255,255,255,.65);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  overflow:hidden;
  transition:transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

#products .category-card:hover{
  transform:translateY(-7px);
  border-color:rgba(56,189,248,.42);
  box-shadow:
    0 20px 48px rgba(37,99,235,.13),
    0 0 24px rgba(56,189,248,.1);
}

#products .category-card img{
  width:100%;
  height:240px;
  flex:0 0 240px;
  border-radius:18px 18px 14px 14px;
  object-fit:cover;
  display:block;
  background:#eaf3fb;
  opacity:0;
  animation:categoryImageIn .55s ease forwards;
}

#products .category-card:hover img{
  transform:scale(1.045);
}

@keyframes categoryImageIn{
  from{
    opacity:0;
    filter:blur(8px);
    transform:scale(1.015);
  }
  to{
    opacity:1;
    filter:blur(0);
    transform:scale(1);
  }
}

#products .category-info{
  flex:1 1 auto;
  min-height:70px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  padding:9px 14px 11px;
}

#products .category-info h3{
  margin-bottom:8px;
  font-size:17px;
  font-weight:820;
  letter-spacing:0;
}

#products .category-info p{
  display:none;
}

#products .product-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:28px;
  margin-top:0;
  padding:0 13px;
  border-radius:999px;
  color:#fff;
  background:linear-gradient(135deg,#38bdf8,#2563eb);
  box-shadow:0 8px 18px rgba(37,99,235,.18);
  font-size:11px;
  font-weight:800;
  transition:transform .26s ease, box-shadow .26s ease, filter .26s ease;
}

#products .product-link:hover{
  transform:translateY(-2px);
  filter:saturate(1.08);
  box-shadow:0 18px 40px rgba(56,189,248,.34);
}

@media(max-width:1100px){
  #products .category-card{
    height:292px;
  }

  #products .category-card img{
    height:224px;
    flex-basis:224px;
  }
}

@media(max-width:700px){
  #products.section{
    padding:62px 5% 68px;
  }

  #products .category-grid{
    gap:18px;
  }

  #products .category-card{
    height:312px;
  }

  #products .category-card img{
    height:240px;
    flex-basis:240px;
  }

  #products .category-info{
    padding:10px 14px 12px;
  }
}

.whatsapp-container{
  right:max(18px,env(safe-area-inset-right));
  bottom:max(18px,env(safe-area-inset-bottom));
}

.whatsapp{
  min-width:58px;
  min-height:58px;
  box-shadow:0 16px 36px rgba(37,211,102,0.3);
}

.whatsapp img{
  display:block;
}

.form-status{
  margin-top:12px;
  color:#64748b;
  font-size:14px;
  line-height:1.5;
}

.form-status.success{
  color:#128c4a;
}

.form-status.error{
  color:#dc2626;
}

button.is-loading,
.btn.is-loading{
  position:relative;
  pointer-events:none;
  opacity:.86;
}

button.is-loading::after,
.btn.is-loading::after{
  content:"";
  width:16px;
  height:16px;
  margin-left:10px;
  border:2px solid rgba(255,255,255,.55);
  border-top-color:#fff;
  border-radius:50%;
  animation:xiqiSpin .75s linear infinite;
}

@keyframes xiqiSpin{
  to{
    transform:rotate(360deg);
  }
}

.detail-right,
.detail-desc,
.feature-item,
.info-row{
  min-width:0;
  overflow-wrap:anywhere;
}

.detail-main-image img,
.detail-gallery img,
.product-card img,
.category-card img{
  max-width:100%;
}

@media(max-width:700px){

  input,
  textarea,
  button,
  .btn,
  .product-info a,
  .whatsapp{
    min-height:48px;
  }

  input,
  textarea{
    font-size:16px;
  }

  .product-card,
  .category-card{
    margin-bottom:4px;
  }

  .detail-page{
    gap:34px;
    overflow:hidden;
  }

  .detail-buttons .btn{
    width:100%;
  }

  .whatsapp{
    width:58px;
    height:58px;
  }

  .whatsapp img{
    width:30px;
    height:30px;
  }
}

/* HOME PAGE 2026 REDESIGN */

.home-page{
  background:#030814;
  color:#f8fbff;
}

.home-page .home-header{
  height:76px;
  padding:14px 6%;
  background:rgba(3,8,20,.64);
  border-bottom:1px solid rgba(125,211,252,.16);
  box-shadow:0 18px 60px rgba(0,0,0,.28);
}

.home-page .logo{
  color:#fff;
  text-decoration:none;
}

.home-page .logo img{
  width:42px;
  height:42px;
  border-radius:12px;
  background:rgba(255,255,255,.92);
  box-shadow:0 0 26px rgba(56,189,248,.25);
}

.home-page .logo-text{
  font-size:18px;
  font-weight:800;
  letter-spacing:.1px;
}

.home-page .nav a{
  color:#d8ecff;
  font-size:14px;
  font-weight:700;
}

.home-page .menu-btn{
  width:44px;
  height:44px;
  padding:0;
  border:1px solid rgba(125,211,252,.2);
  border-radius:12px;
  background:rgba(255,255,255,.06);
  color:#fff;
  font-size:22px;
}

.home-hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  display:flex;
  align-items:center;
  background:
    radial-gradient(circle at 18% 20%,rgba(56,189,248,.18),transparent 32%),
    radial-gradient(circle at 78% 18%,rgba(99,102,241,.18),transparent 34%),
    linear-gradient(135deg,#030814 0%,#061329 48%,#02040a 100%);
}

.home-hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:220px;
  background:linear-gradient(180deg,transparent,#030814 74%);
  pointer-events:none;
}

.hero-grid-lines{
  position:absolute;
  inset:0;
  opacity:.22;
  background-image:
    linear-gradient(rgba(125,211,252,.14) 1px,transparent 1px),
    linear-gradient(90deg,rgba(125,211,252,.14) 1px,transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(180deg,rgba(0,0,0,.82),transparent 78%);
}

.hero-glow{
  position:absolute;
  width:420px;
  height:420px;
  border-radius:50%;
  filter:blur(28px);
  opacity:.48;
  pointer-events:none;
}

.hero-glow-one{
  left:8%;
  top:18%;
  background:rgba(14,165,233,.34);
}

.hero-glow-two{
  right:8%;
  top:12%;
  background:rgba(79,70,229,.32);
}

.home-hero-inner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding:150px 32px 105px;
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(420px,.98fr);
  gap:64px;
  align-items:center;
}

.eyebrow{
  color:#7dd3fc;
  font-size:12px;
  font-weight:800;
  letter-spacing:2.5px;
  line-height:1.5;
  text-transform:uppercase;
}

.home-hero h1{
  max-width:760px;
  margin:20px 0 24px;
  color:#fff;
  font-size:clamp(46px,6.4vw,88px);
  line-height:.98;
  font-weight:900;
  letter-spacing:0;
}

.home-page .hero-desc{
  max-width:650px;
  color:#c9d9ea;
  font-size:18px;
  line-height:1.8;
  margin-bottom:34px;
}

.home-btn{
  min-height:54px;
  padding:0 28px;
  border-radius:999px;
  font-size:15px;
  box-shadow:none;
}

.home-btn.primary{
  background:linear-gradient(135deg,#38bdf8,#2563eb 58%,#4f46e5);
  box-shadow:0 20px 56px rgba(37,99,235,.34);
}

.home-btn.secondary{
  color:#eaf7ff;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(125,211,252,.32);
  backdrop-filter:blur(14px);
}

.home-btn.secondary:hover{
  color:#fff;
  background:rgba(255,255,255,.14);
}

.hero-trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}

.hero-trust-row span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 14px;
  border:1px solid rgba(125,211,252,.2);
  border-radius:999px;
  color:#bfe8ff;
  background:rgba(255,255,255,.055);
  font-size:13px;
  font-weight:700;
}

.hero-visual{
  position:relative;
  min-height:560px;
}

.glass-panel,
.device-card,
.category-card,
.home-product-card,
.advantage-card{
  border:1px solid rgba(125,211,252,.18);
  background:linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.045));
  box-shadow:0 24px 70px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.16);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}

.hero-center-panel{
  position:absolute;
  left:50%;
  top:50%;
  width:min(360px,76%);
  min-height:250px;
  transform:translate(-50%,-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:34px;
  border-radius:26px;
  text-align:center;
}

.hero-center-panel img{
  width:104px;
  height:104px;
  object-fit:contain;
  padding:10px;
  border-radius:24px;
  background:rgba(255,255,255,.92);
  box-shadow:0 0 44px rgba(56,189,248,.22);
}

.hero-center-panel p{
  margin:20px 0 10px;
  color:#b9d7ef;
  line-height:1.6;
}

.hero-center-panel strong{
  color:#fff;
  font-size:18px;
  line-height:1.4;
}

.device-card{
  position:absolute;
  border-radius:24px;
  padding:18px;
  animation:homeFloat 6s ease-in-out infinite;
}

.phone-case-card{
  left:0;
  top:58px;
  width:190px;
  height:250px;
}

.charger-card{
  right:18px;
  top:98px;
  width:170px;
  height:190px;
  animation-delay:-1.8s;
}

.earbuds-card{
  right:90px;
  bottom:50px;
  width:210px;
  height:172px;
  animation-delay:-3s;
}

.card-kicker{
  display:block;
  color:#dff7ff;
  font-size:13px;
  font-weight:800;
  margin-bottom:16px;
}

.phone-mockup{
  width:92px;
  height:154px;
  margin:0 auto;
  border:2px solid rgba(125,211,252,.5);
  border-radius:26px;
  background:linear-gradient(145deg,rgba(14,165,233,.26),rgba(15,23,42,.88));
  box-shadow:0 0 36px rgba(56,189,248,.26);
}

.phone-mockup span{
  display:block;
  width:22px;
  height:22px;
  margin:14px;
  border-radius:50%;
  background:#07111f;
  border:1px solid rgba(255,255,255,.3);
}

.charger-mockup{
  width:92px;
  height:108px;
  margin:8px auto 0;
  border-radius:20px;
  background:linear-gradient(180deg,#f8fbff,#c7d2fe);
  position:relative;
  box-shadow:0 18px 45px rgba(56,189,248,.16);
}

.charger-mockup i{
  position:absolute;
  top:-24px;
  width:11px;
  height:30px;
  border-radius:8px;
  background:#d9efff;
}

.charger-mockup i:first-child{left:28px;}
.charger-mockup i:last-child{right:28px;}

.earbuds-mockup{
  display:flex;
  justify-content:center;
  gap:28px;
  padding-top:18px;
}

.earbuds-mockup i{
  width:46px;
  height:78px;
  border-radius:28px 28px 24px 24px;
  background:linear-gradient(180deg,#fff,#a5f3fc);
  box-shadow:0 0 30px rgba(125,211,252,.24);
}

@keyframes homeFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-18px);}
}

.home-section{
  position:relative;
  padding:96px 6%;
  background:#030814;
}

.section-heading{
  max-width:1120px;
  margin:0 auto 42px;
  text-align:center;
}

.section-heading h2{
  margin-top:12px;
  color:#fff;
  font-size:clamp(30px,4vw,52px);
  line-height:1.1;
  font-weight:900;
}

.split-heading{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
  text-align:left;
}

.text-link{
  color:#7dd3fc;
  font-weight:800;
  text-decoration:none;
  white-space:nowrap;
}

.home-page #products.section,
.category-section{
  background:
    radial-gradient(circle at 8% 10%,rgba(14,165,233,.14),transparent 28%),
    linear-gradient(180deg,#030814,#071225 54%,#030814);
}

.home-page .category-grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}

.home-page .category-card{
  min-height:270px;
  height:auto;
  padding:26px;
  border-radius:22px;
  overflow:hidden;
  transition:transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.home-page .category-card:hover,
.home-product-card:hover,
.advantage-card:hover{
  transform:translateY(-8px);
  border-color:rgba(125,211,252,.42);
  box-shadow:0 28px 80px rgba(37,99,235,.2),0 0 34px rgba(56,189,248,.14);
}

.home-page .category-icon{
  width:72px;
  height:72px;
  margin-bottom:26px;
  border-radius:20px;
  background:linear-gradient(135deg,rgba(56,189,248,.9),rgba(37,99,235,.78));
  position:relative;
  box-shadow:0 18px 42px rgba(37,99,235,.26);
}

.home-page .category-icon::before,
.home-page .category-icon::after{
  content:"";
  position:absolute;
  border:2px solid rgba(255,255,255,.9);
}

.phone-icon::before{inset:13px 21px;border-radius:12px;}
.phone-icon::after{width:8px;height:8px;right:24px;top:19px;border-radius:50%;}
.film-icon::before{inset:14px;border-radius:12px;transform:rotate(-8deg);}
.film-icon::after{inset:21px;border-radius:10px;transform:rotate(8deg);}
.charger-icon::before{left:22px;right:22px;top:22px;bottom:13px;border-radius:8px;}
.charger-icon::after{left:28px;right:28px;top:10px;height:14px;border-radius:6px;}
.earbuds-icon::before{width:18px;height:34px;left:18px;top:20px;border-radius:14px;}
.earbuds-icon::after{width:18px;height:34px;right:18px;top:20px;border-radius:14px;}
.power-icon::before{left:14px;right:14px;top:20px;bottom:18px;border-radius:10px;}
.power-icon::after{right:8px;top:32px;width:8px;height:14px;border-radius:5px;}
.accessory-icon::before{left:15px;right:15px;top:32px;height:8px;border-radius:999px;transform:rotate(-28deg);}
.accessory-icon::after{left:15px;right:15px;top:32px;height:8px;border-radius:999px;transform:rotate(28deg);}

.home-page .category-info{
  padding:0;
  text-align:left;
}

.home-page .category-info h3{
  color:#fff;
  font-size:22px;
  margin-bottom:12px;
}

.home-page .category-info p{
  display:block;
  color:#aebfd3;
  font-size:14px;
  line-height:1.75;
  min-height:74px;
}

.home-page .product-link,
.home-product-card a{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  margin-top:18px;
  padding:0 14px;
  border-radius:999px;
  color:#dff7ff;
  background:rgba(125,211,252,.1);
  border:1px solid rgba(125,211,252,.2);
  font-size:13px;
  font-weight:800;
  text-decoration:none;
}

.featured-section{
  background:
    radial-gradient(circle at 90% 0%,rgba(79,70,229,.16),transparent 30%),
    #030814;
}

.home-product-grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
}

.home-product-card{
  border-radius:22px;
  overflow:hidden;
  transition:transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.home-product-card img{
  width:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
  display:block;
  background:#0b1730;
  filter:saturate(1.02) contrast(1.02);
}

.home-product-card div{
  padding:20px;
}

.home-product-card span{
  display:block;
  color:#7dd3fc;
  font-size:12px;
  font-weight:800;
  letter-spacing:1.2px;
  text-transform:uppercase;
  margin-bottom:10px;
}

.home-product-card h3{
  min-height:52px;
  color:#fff;
  font-size:18px;
  line-height:1.35;
}

.solutions-section{
  background:
    linear-gradient(180deg,#030814,#071225),
    radial-gradient(circle at 20% 45%,rgba(56,189,248,.16),transparent 32%);
}

.solutions-panel{
  max-width:1180px;
  margin:0 auto;
  border-radius:30px;
  padding:48px;
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:46px;
  align-items:center;
}

.solutions-copy h2{
  margin:14px 0 22px;
  color:#fff;
  font-size:clamp(32px,4.5vw,56px);
  line-height:1.05;
}

.solutions-copy p{
  color:#b7c8dc;
  line-height:1.85;
  margin-bottom:28px;
}

.solution-list{
  display:grid;
  gap:14px;
}

.solution-list div{
  padding:18px;
  border:1px solid rgba(125,211,252,.15);
  border-radius:18px;
  background:rgba(255,255,255,.055);
}

.solution-list span{
  color:#7dd3fc;
  font-weight:900;
  margin-right:12px;
}

.solution-list strong{
  color:#fff;
}

.solution-list p{
  margin:8px 0 0;
  color:#aebfd3;
  line-height:1.6;
}

.why-section-home{
  background:#030814;
}

.advantage-grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
}

.advantage-card{
  min-height:230px;
  padding:26px;
  border-radius:22px;
  transition:transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.advantage-card span{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  color:#04111f;
  background:#7dd3fc;
  font-size:12px;
  font-weight:900;
  margin-bottom:28px;
}

.advantage-card h3{
  color:#fff;
  font-size:22px;
  margin-bottom:12px;
}

.advantage-card p{
  color:#aebfd3;
  line-height:1.75;
}

.home-contact-section{
  padding:104px 6%;
  background:
    radial-gradient(circle at 78% 18%,rgba(56,189,248,.14),transparent 28%),
    linear-gradient(180deg,#071225,#030814);
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
}

.home-contact-section .contact-left,
.home-contact-section .contact-right{
  max-width:590px;
  width:100%;
}

.home-contact-section h2{
  color:#fff;
  font-size:clamp(34px,4.5vw,58px);
  line-height:1.05;
}

.contact-intro{
  color:#b7c8dc;
  line-height:1.8;
  margin:-10px 0 28px;
}

.home-page input,
.home-page textarea{
  color:#fff;
  border:1px solid rgba(125,211,252,.2);
  background:rgba(255,255,255,.065);
  border-radius:16px;
}

.home-page input::placeholder,
.home-page textarea::placeholder{
  color:#8fa5bd;
}

.home-page input:focus,
.home-page textarea:focus{
  border-color:rgba(125,211,252,.5);
  box-shadow:0 0 0 4px rgba(56,189,248,.1);
}

.home-page .inquiry-form button{
  background:linear-gradient(135deg,#38bdf8,#2563eb 58%,#4f46e5);
  box-shadow:0 20px 48px rgba(37,99,235,.26);
}

.home-page .contact-card{
  border-radius:28px;
  padding:40px;
  color:#fff;
}

.home-page .contact-card h3{
  color:#fff;
  font-size:30px;
}

.home-page .contact-card p{
  color:#b7c8dc;
}

.home-page .contact-card strong{
  color:#fff;
}

.home-footer{
  background:#020611;
  border-top:1px solid rgba(125,211,252,.12);
}

.home-footer .footer-logo{
  max-width:420px;
  font-size:28px;
  line-height:1.15;
}

.home-footer .footer-col a,
.home-footer .footer-desc,
.home-footer .footer-bottom{
  color:#90a4ba;
}

.home-footer .footer-col a:hover{
  color:#7dd3fc;
}

@media(max-width:1100px){
  .home-hero-inner{
    grid-template-columns:1fr;
    gap:32px;
  }

  .hero-visual{
    min-height:430px;
  }

  .home-product-grid,
  .advantage-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .solutions-panel,
  .home-contact-section{
    grid-template-columns:1fr;
  }

  .home-contact-section .contact-left,
  .home-contact-section .contact-right{
    max-width:none;
  }
}

@media(max-width:900px){
  .home-page .category-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .split-heading{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media(max-width:760px){
  .home-page .home-header{
    height:66px;
    padding:12px 5%;
  }

  .home-page .logo-text{
    max-width:205px;
    font-size:16px;
  }

  .home-page .nav{
    top:66px;
    padding:16px 5% 18px;
    background:rgba(3,8,20,.96);
  }

  .home-hero-inner{
    padding:112px 18px 78px;
  }

  .home-hero h1{
    font-size:clamp(40px,13vw,58px);
  }

  .home-page .hero-desc{
    font-size:16px;
  }

  .hero-trust-row span{
    width:100%;
  }

  .hero-visual{
    min-height:360px;
  }

  .phone-case-card{
    width:150px;
    height:210px;
    left:0;
    top:25px;
  }

  .charger-card{
    width:140px;
    height:160px;
    right:0;
    top:55px;
  }

  .earbuds-card{
    width:170px;
    height:150px;
    right:28px;
    bottom:12px;
  }

  .hero-center-panel{
    width:74%;
    min-height:210px;
    padding:24px;
  }

  .hero-center-panel img{
    width:82px;
    height:82px;
  }

  .home-section,
  .home-contact-section{
    padding:72px 18px;
  }

  .home-page .category-grid,
  .home-product-grid,
  .advantage-grid{
    grid-template-columns:1fr;
  }

  .home-page .category-card,
  .advantage-card{
    min-height:auto;
  }

  .home-page .category-info p{
    min-height:0;
  }

  .solutions-panel{
    padding:28px;
    border-radius:24px;
  }
}

@media(max-width:520px){
  .home-btn,
  .home-page .hero-buttons .btn{
    width:100%;
  }

  .hero-visual{
    min-height:330px;
  }

  .device-card{
    padding:14px;
  }

  .card-kicker{
    font-size:12px;
  }

  .home-product-card h3{
    min-height:auto;
  }
}

.home-page .whatsapp-tooltip{display:none;}

@media(max-width:760px){.home-page .hero-visual{display:none;}.home-hero{min-height:auto;}.home-hero-inner{padding-bottom:72px;}}

.home-page #products .category-card{
  display:block;
  min-height:270px;
  height:auto;
  padding:26px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(125,211,252,.18);
  background:linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.045));
  box-shadow:0 24px 70px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.16);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}

.home-page #products .category-card:hover{
  transform:translateY(-8px);
  border-color:rgba(125,211,252,.42);
  box-shadow:0 28px 80px rgba(37,99,235,.2),0 0 34px rgba(56,189,248,.14);
}

.home-page #products .category-info{
  min-height:0;
  display:block;
  padding:0;
  text-align:left;
}

.home-page #products .category-info h3{
  color:#fff;
  font-size:22px;
  margin-bottom:12px;
}

.home-page #products .category-info p{
  display:block;
  color:#aebfd3;
  font-size:14px;
  line-height:1.75;
  min-height:74px;
}

.home-page #products .product-link{
  display:inline-flex;
  min-height:34px;
  margin-top:18px;
  padding:0 14px;
  color:#dff7ff;
  background:rgba(125,211,252,.1);
  border:1px solid rgba(125,211,252,.2);
  box-shadow:none;
  font-size:13px;
}

@media(max-width:760px){
  .home-page #products .category-card{
    min-height:auto;
    height:auto;
  }

  .home-page #products .category-info p{
    min-height:0;
  }
}

/* HOME PAGE PREMIUM VISUAL UPGRADE: APPLE + NOTHING + TECH B2B */

.home-page{
  background:
    radial-gradient(circle at 12% 4%,rgba(56,189,248,.16),transparent 28%),
    radial-gradient(circle at 86% 0%,rgba(76,29,149,.16),transparent 30%),
    linear-gradient(180deg,#07111f 0%,#030814 38%,#071225 70%,#030814 100%);
  color:#f8fbff;
}

.home-page::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  opacity:.52;
  background:
    radial-gradient(circle at 18% 22%,rgba(125,211,252,.16) 0 1px,transparent 1.5px),
    radial-gradient(circle at 72% 34%,rgba(255,255,255,.16) 0 1px,transparent 1.5px),
    radial-gradient(circle at 44% 76%,rgba(96,165,250,.14) 0 1px,transparent 1.5px);
  background-size:118px 118px,164px 164px,210px 210px;
  animation:homeParticleDrift 22s linear infinite;
}

@keyframes homeParticleDrift{
  from{background-position:0 0,0 0,0 0;}
  to{background-position:118px 236px,-164px 164px,210px -210px;}
}

.home-page .home-header{
  top:14px;
  left:50%;
  width:min(1180px,calc(100% - 40px));
  height:68px;
  padding:10px 16px 10px 18px;
  border:1px solid rgba(180,220,255,.14);
  border-radius:22px;
  background:rgba(5,12,24,.48);
  box-shadow:0 18px 60px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.08);
  transform:translateX(-50%);
  backdrop-filter:blur(24px) saturate(150%);
  -webkit-backdrop-filter:blur(24px) saturate(150%);
}

.home-page .home-header.is-scrolled{
  background:rgba(5,12,24,.74);
  border-color:rgba(125,211,252,.22);
  box-shadow:0 20px 70px rgba(0,0,0,.32),0 0 30px rgba(56,189,248,.08);
}

.home-page .logo{
  gap:12px;
}

.home-page .logo img{
  width:40px;
  height:40px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(56,189,248,.18), inset 0 1px 0 rgba(255,255,255,.9);
}

.home-page .logo-text{
  font-size:16px;
  font-weight:780;
}

.home-page .nav{
  gap:6px;
}

.home-page .nav a{
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  color:rgba(232,246,255,.78);
  font-size:13px;
  transition:background .25s ease,color .25s ease,transform .25s ease;
}

.home-page .nav a::after{
  display:none;
}

.home-page .nav a:hover{
  color:#fff;
  background:rgba(255,255,255,.075);
  transform:translateY(-1px);
}

.home-hero{
  min-height:clamp(680px,88vh,840px);
  isolation:isolate;
  background:
    radial-gradient(circle at 22% 24%,rgba(56,189,248,.24),transparent 30%),
    radial-gradient(circle at 62% 28%,rgba(76,29,149,.26),transparent 32%),
    radial-gradient(circle at 78% 68%,rgba(14,165,233,.16),transparent 24%),
    linear-gradient(145deg,#07111f 0%,#071225 42%,#030814 100%);
}

.home-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    linear-gradient(115deg,transparent 0 36%,rgba(125,211,252,.09) 43%,transparent 52%),
    linear-gradient(180deg,rgba(255,255,255,.06),transparent 22%);
  filter:blur(.2px);
}

.home-hero::after{
  height:180px;
  background:linear-gradient(180deg,transparent,#030814 82%);
}

.hero-grid-lines{
  opacity:.28;
  background-image:
    linear-gradient(rgba(125,211,252,.12) 1px,transparent 1px),
    linear-gradient(90deg,rgba(125,211,252,.10) 1px,transparent 1px),
    radial-gradient(circle at center,rgba(125,211,252,.22) 0 1px,transparent 1.5px);
  background-size:88px 88px,88px 88px,44px 44px;
  mask-image:radial-gradient(circle at 58% 38%,rgba(0,0,0,.9),transparent 72%);
}

.hero-glow{
  width:520px;
  height:520px;
  filter:blur(46px);
  opacity:.6;
  animation:heroGlowPulse 8s ease-in-out infinite;
}

.hero-glow-one{
  left:10%;
  top:16%;
  background:rgba(56,189,248,.28);
}

.hero-glow-two{
  right:5%;
  top:6%;
  background:rgba(99,102,241,.24);
  animation-delay:-4s;
}

@keyframes heroGlowPulse{
  0%,100%{transform:scale(1);opacity:.48;}
  50%{transform:scale(1.12);opacity:.68;}
}

.home-hero-inner{
  max-width:1220px;
  padding:124px 32px 72px;
  grid-template-columns:minmax(0,1.04fr) minmax(420px,.96fr);
  gap:50px;
}

.home-hero-copy{
  position:relative;
}

.home-hero-copy::before{
  content:"";
  position:absolute;
  left:-30px;
  top:18px;
  width:1px;
  height:300px;
  background:linear-gradient(180deg,transparent,#7dd3fc,transparent);
  opacity:.55;
}

.eyebrow{
  color:#9be7ff;
  letter-spacing:3.4px;
  font-size:11px;
}

.home-hero h1{
  max-width:730px;
  margin:18px 0 22px;
  font-size:clamp(50px,6.2vw,82px);
  line-height:.99;
  font-weight:860;
  letter-spacing:-.5px;
  text-wrap:balance;
  background:linear-gradient(180deg,#fff 0%,#f7fbff 48%,#b9d9ff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow:0 24px 70px rgba(56,189,248,.18);
}

.home-page .hero-desc{
  max-width:620px;
  color:rgba(226,241,255,.78);
  font-size:17px;
  line-height:1.85;
  margin-bottom:30px;
}

.home-btn{
  position:relative;
  overflow:hidden;
  min-height:52px;
  padding:0 30px;
  border:1px solid rgba(255,255,255,.14);
  transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease,background .28s ease;
}

.home-btn::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:linear-gradient(110deg,transparent 12%,rgba(255,255,255,.42) 28%,transparent 42%);
  transform:translateX(-120%);
  transition:transform .58s ease;
}

.home-btn:hover::before{
  transform:translateX(120%);
}

.home-btn:hover{
  transform:translateY(-4px);
}

.home-btn.primary{
  background:linear-gradient(135deg,#70d7ff 0%,#2563eb 54%,#6d5dfc 100%);
  box-shadow:0 18px 55px rgba(37,99,235,.34),0 0 28px rgba(125,211,252,.16);
}

.home-btn.primary:hover{
  box-shadow:0 26px 74px rgba(37,99,235,.44),0 0 42px rgba(125,211,252,.28);
}

.home-btn.secondary{
  background:rgba(255,255,255,.055);
  border-color:rgba(190,226,255,.22);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.1);
}

.hero-trust-row{
  gap:12px;
  margin-top:26px;
}

.hero-trust-row span{
  min-height:38px;
  padding:0 16px;
  border-color:rgba(180,220,255,.16);
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.035));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}

.hero-visual{
  min-height:500px;
  perspective:1200px;
}

.hero-center-panel{
  width:min(370px,78%);
  min-height:252px;
  border-radius:34px;
  background:
    radial-gradient(circle at 60% 0%,rgba(255,255,255,.18),transparent 32%),
    linear-gradient(145deg,rgba(255,255,255,.18),rgba(255,255,255,.055));
  box-shadow:0 32px 100px rgba(0,0,0,.34),0 0 70px rgba(56,189,248,.12),inset 0 1px 0 rgba(255,255,255,.2);
  transform:translate(-50%,-50%) rotateX(2deg) rotateY(-7deg);
  animation:centerPanelFloat 7s ease-in-out infinite;
}

@keyframes centerPanelFloat{
  0%,100%{transform:translate(-50%,-50%) rotateX(2deg) rotateY(-7deg) translateY(0);}
  50%{transform:translate(-50%,-50%) rotateX(0deg) rotateY(-2deg) translateY(-14px);}
}

.hero-center-panel::before,
.hero-center-panel::after{
  content:"";
  position:absolute;
  pointer-events:none;
  border-radius:inherit;
}

.hero-center-panel::before{
  inset:-1px;
  padding:1px;
  background:linear-gradient(135deg,rgba(125,211,252,.62),transparent 34%,rgba(99,102,241,.42));
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
}

.hero-center-panel::after{
  left:18%;
  right:18%;
  bottom:-24px;
  height:42px;
  background:rgba(56,189,248,.26);
  filter:blur(28px);
}

.hero-center-panel img{
  width:96px;
  height:96px;
  border-radius:28px;
}

.device-card{
  border-radius:30px;
  background:
    radial-gradient(circle at 50% 0%,rgba(255,255,255,.16),transparent 35%),
    linear-gradient(145deg,rgba(255,255,255,.14),rgba(255,255,255,.045));
  box-shadow:0 28px 90px rgba(0,0,0,.28),0 0 34px rgba(56,189,248,.1),inset 0 1px 0 rgba(255,255,255,.16);
  transition:transform .35s ease,border-color .35s ease,box-shadow .35s ease;
}

.device-card:hover{
  border-color:rgba(125,211,252,.42);
  box-shadow:0 34px 100px rgba(0,0,0,.34),0 0 52px rgba(56,189,248,.18),inset 0 1px 0 rgba(255,255,255,.2);
}

.phone-case-card{left:2%;top:42px;width:205px;height:265px;}
.charger-card{right:0;top:70px;width:180px;height:196px;}
.earbuds-card{right:90px;bottom:30px;width:220px;height:178px;}

.home-section{
  padding:112px 6%;
  overflow:hidden;
}

.home-section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:radial-gradient(circle at 50% 0%,rgba(125,211,252,.08),transparent 36%);
  opacity:.9;
}

.section-heading{
  max-width:980px;
  margin-bottom:56px;
}

.section-heading h2{
  margin-top:14px;
  font-size:clamp(34px,4.4vw,58px);
  line-height:1.04;
  font-weight:850;
  letter-spacing:-.2px;
  text-wrap:balance;
}

.category-section{
  background:
    radial-gradient(circle at 10% 18%,rgba(56,189,248,.16),transparent 30%),
    radial-gradient(circle at 84% 8%,rgba(59,130,246,.10),transparent 28%),
    linear-gradient(180deg,#030814 0%,#081427 52%,#030814 100%);
}

.home-page .category-grid{
  max-width:1200px;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}

.home-page #products .category-card{
  position:relative;
  min-height:330px;
  padding:32px;
  border-radius:34px;
  display:grid;
  grid-template-columns:150px minmax(0,1fr);
  gap:28px;
  align-items:center;
  background:
    radial-gradient(circle at 18% 18%,rgba(125,211,252,.20),transparent 28%),
    linear-gradient(145deg,rgba(255,255,255,.13),rgba(255,255,255,.045));
  box-shadow:0 28px 90px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.12);
}

.home-page #products .category-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(135deg,rgba(125,211,252,.38),transparent 42%,rgba(99,102,241,.24));
  opacity:.45;
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  transition:opacity .3s ease;
}

.home-page #products .category-card::after{
  content:"";
  position:absolute;
  left:24px;
  right:24px;
  bottom:-28px;
  height:52px;
  border-radius:999px;
  background:rgba(56,189,248,.18);
  filter:blur(32px);
  opacity:0;
  transition:opacity .3s ease;
}

.home-page #products .category-card:hover::before,
.home-page #products .category-card:hover::after{
  opacity:1;
}

.home-page .category-icon{
  width:138px;
  height:138px;
  margin:0;
  border-radius:36px;
  background:
    radial-gradient(circle at 32% 24%,rgba(255,255,255,.48),transparent 22%),
    linear-gradient(145deg,#8ee7ff 0%,#2563eb 56%,#5b4df5 100%);
  box-shadow:0 26px 70px rgba(37,99,235,.34),0 0 48px rgba(125,211,252,.18);
  transform:translateZ(0);
  transition:transform .35s ease,box-shadow .35s ease;
}

.home-page #products .category-card:hover .category-icon{
  transform:translateY(-8px) scale(1.035);
  box-shadow:0 34px 90px rgba(37,99,235,.42),0 0 60px rgba(125,211,252,.25);
}

.home-page #products .category-info h3{
  font-size:28px;
  font-weight:830;
  margin-bottom:14px;
}

.home-page #products .category-info p{
  max-width:410px;
  min-height:0;
  color:rgba(223,237,249,.72);
  font-size:15px;
}

.home-page #products .product-link,
.home-product-card a,
.text-link{
  transition:transform .25s ease,border-color .25s ease,background .25s ease,color .25s ease,box-shadow .25s ease;
}

.home-page #products .product-link:hover,
.home-product-card a:hover,
.text-link:hover{
  transform:translateY(-2px);
  color:#fff;
  border-color:rgba(125,211,252,.45);
  background:rgba(125,211,252,.16);
  box-shadow:0 12px 34px rgba(56,189,248,.16);
}

.featured-section{
  background:
    radial-gradient(circle at 80% 8%,rgba(99,102,241,.18),transparent 32%),
    radial-gradient(circle at 16% 30%,rgba(14,165,233,.12),transparent 26%),
    linear-gradient(180deg,#030814 0%,#071225 50%,#030814 100%);
}

.home-product-grid{
  max-width:1200px;
  gap:24px;
}

.home-product-card{
  position:relative;
  border-radius:32px;
  background:
    radial-gradient(circle at 50% 0%,rgba(255,255,255,.12),transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,.045));
  box-shadow:0 24px 70px rgba(0,0,0,.20),inset 0 1px 0 rgba(255,255,255,.14);
  transform:translateZ(0);
}

.home-product-card::before{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  top:18px;
  height:42%;
  border-radius:28px;
  background:radial-gradient(circle at 50% 50%,rgba(125,211,252,.18),transparent 58%);
  filter:blur(18px);
  opacity:.8;
  pointer-events:none;
}

.home-product-card:hover{
  transform:translateY(-10px);
  border-color:rgba(125,211,252,.36);
  box-shadow:0 34px 92px rgba(0,0,0,.28),0 0 46px rgba(56,189,248,.14),inset 0 1px 0 rgba(255,255,255,.18);
}

.home-product-card img{
  position:relative;
  z-index:1;
  width:calc(100% - 28px);
  margin:14px 14px 0;
  border-radius:26px;
  aspect-ratio:1 / 1;
  object-fit:contain;
  padding:20px;
  background:
    radial-gradient(circle at 50% 26%,rgba(255,255,255,.92),rgba(230,242,255,.80) 42%,rgba(187,214,245,.52) 100%);
  transition:transform .35s ease,filter .35s ease;
}

.home-product-card:hover img{
  transform:translateY(-8px) scale(1.035);
  filter:saturate(1.05) contrast(1.03);
}

.home-product-card div{
  position:relative;
  z-index:2;
  padding:22px 22px 24px;
}

.home-product-card h3{
  min-height:54px;
  font-size:19px;
  font-weight:790;
}

.solutions-panel,
.home-page .contact-card{
  border-radius:36px;
  background:
    radial-gradient(circle at 18% 0%,rgba(125,211,252,.14),transparent 28%),
    linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.04));
  box-shadow:0 30px 90px rgba(0,0,0,.24),inset 0 1px 0 rgba(255,255,255,.14);
}

.solution-list div,
.advantage-card{
  background:linear-gradient(145deg,rgba(255,255,255,.105),rgba(255,255,255,.04));
  box-shadow:0 22px 70px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.1);
}

.advantage-card{
  border-radius:30px;
}

.home-contact-section{
  background:
    radial-gradient(circle at 72% 10%,rgba(56,189,248,.14),transparent 28%),
    radial-gradient(circle at 18% 72%,rgba(99,102,241,.12),transparent 28%),
    linear-gradient(180deg,#030814,#071225 48%,#030814);
}

.home-page input,
.home-page textarea{
  border-radius:18px;
  background:rgba(255,255,255,.07);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 18px 46px rgba(0,0,0,.08);
  transition:border-color .25s ease,box-shadow .25s ease,background .25s ease;
}

.home-page input:focus,
.home-page textarea:focus{
  background:rgba(255,255,255,.095);
  box-shadow:0 0 0 4px rgba(56,189,248,.10),0 18px 46px rgba(0,0,0,.16);
}

.home-footer{
  padding-top:72px;
  background:
    radial-gradient(circle at 10% 0%,rgba(56,189,248,.10),transparent 28%),
    linear-gradient(180deg,#030814,#020611 70%);
}

.home-footer .footer-grid{
  max-width:1180px;
  margin:0 auto;
  grid-template-columns:1.5fr 1fr 1fr 1.2fr;
  padding:28px;
  border:1px solid rgba(125,211,252,.12);
  border-radius:34px;
  background:rgba(255,255,255,.035);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}

.home-footer .footer-logo{
  font-size:24px;
  font-weight:820;
}

.home-footer .footer-col h3{
  color:#f8fbff;
  font-size:14px;
  letter-spacing:1.4px;
  text-transform:uppercase;
}

.home-motion{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease,transform .7s ease;
}

.home-motion.is-visible{
  opacity:1;
  transform:translateY(0);
}

.home-motion:nth-child(2n){
  transition-delay:.05s;
}

.home-motion:nth-child(3n){
  transition-delay:.1s;
}

@media(max-width:1100px){
  .home-page .home-header{
    width:calc(100% - 28px);
  }

  .home-hero-inner{
    grid-template-columns:1fr;
  }

  .hero-visual{
    min-height:430px;
  }

  .home-page .category-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:760px){
  .home-page .home-header{
    top:10px;
    width:calc(100% - 22px);
    height:62px;
    border-radius:20px;
  }

  .home-page .nav{
    top:70px;
    left:0;
    width:100%;
    border:1px solid rgba(125,211,252,.14);
    border-radius:22px;
    background:rgba(5,12,24,.92);
    box-shadow:0 28px 80px rgba(0,0,0,.32);
  }

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

  .home-hero-inner{
    padding:118px 18px 70px;
  }

  .home-hero-copy::before{
    display:none;
  }

  .home-hero h1{
    font-size:clamp(40px,12.4vw,56px);
    line-height:1.02;
  }

  .home-page .hero-desc{
    font-size:15.5px;
    line-height:1.75;
    margin-bottom:26px;
  }

  .hero-visual{
    display:none;
  }

  .home-section,
  .home-contact-section{
    padding:82px 18px;
  }

  .section-heading{
    margin-bottom:34px;
  }

  .section-heading h2{
    font-size:clamp(31px,9vw,42px);
  }

  .home-page #products .category-card{
    grid-template-columns:1fr;
    min-height:auto;
    padding:26px;
    border-radius:28px;
  }

  .home-page .category-icon{
    width:112px;
    height:112px;
    border-radius:30px;
  }

  .home-page #products .category-info h3{
    font-size:24px;
  }

  .home-product-grid,
  .advantage-grid{
    gap:18px;
  }

  .home-product-card{
    border-radius:28px;
  }

  .home-product-card img{
    border-radius:24px;
    aspect-ratio:4 / 3;
  }

  .solutions-panel{
    padding:28px;
    border-radius:30px;
  }

  .home-footer .footer-grid{
    grid-template-columns:1fr;
    padding:24px;
    border-radius:28px;
  }
}

@media(prefers-reduced-motion:reduce){
  .home-page::before,
  .hero-glow,
  .device-card,
  .hero-center-panel{
    animation:none !important;
  }

  .home-motion{
    opacity:1;
    transform:none;
  }
}

@media(min-width:761px){.home-hero h1{max-width:840px;font-size:clamp(48px,5.4vw,72px);line-height:1.01;}.home-hero-inner{padding-top:116px;padding-bottom:52px;}.home-page .hero-desc{max-width:680px;}.home-hero-copy{min-width:0;}}

/* BRAND-SITE REBUILD: REMOVE TEMPLATE FEEL */

.home-page{
  background:
    radial-gradient(circle at 50% -10%,rgba(125,211,252,.20),transparent 34%),
    radial-gradient(circle at 16% 30%,rgba(76,29,149,.18),transparent 28%),
    radial-gradient(circle at 88% 48%,rgba(14,165,233,.12),transparent 30%),
    linear-gradient(180deg,#08101d 0%,#020611 44%,#081426 100%);
}

.brand-hero{
  min-height:min(900px,100vh);
  padding:0 6%;
  display:block;
  background:
    radial-gradient(circle at 50% 18%,rgba(125,211,252,.22),transparent 32%),
    radial-gradient(circle at 32% 72%,rgba(99,102,241,.14),transparent 26%),
    radial-gradient(circle at 78% 52%,rgba(56,189,248,.13),transparent 30%),
    linear-gradient(180deg,#08101d 0%,#020611 100%);
}

.brand-hero::before{
  background:
    linear-gradient(120deg,transparent 0 34%,rgba(255,255,255,.07) 42%,transparent 50%),
    radial-gradient(circle at 50% 64%,rgba(125,211,252,.10),transparent 42%);
}

.hero-noise{
  position:absolute;
  inset:0;
  opacity:.18;
  pointer-events:none;
  background-image:
    radial-gradient(circle at 20% 30%,rgba(255,255,255,.8) 0 1px,transparent 1.4px),
    radial-gradient(circle at 70% 60%,rgba(125,211,252,.6) 0 1px,transparent 1.4px);
  background-size:90px 90px,132px 132px;
  animation:homeParticleDrift 28s linear infinite;
  mask-image:radial-gradient(circle at 50% 42%,#000,transparent 76%);
}

.hero-orb{
  position:absolute;
  border-radius:50%;
  pointer-events:none;
  filter:blur(44px);
  opacity:.58;
  animation:heroGlowPulse 9s ease-in-out infinite;
}

.hero-orb-a{
  width:420px;
  height:420px;
  left:8%;
  top:18%;
  background:rgba(56,189,248,.22);
}

.hero-orb-b{
  width:520px;
  height:520px;
  right:8%;
  top:10%;
  background:rgba(99,102,241,.18);
  animation-delay:-3s;
}

.hero-orb-c{
  width:360px;
  height:360px;
  left:42%;
  bottom:5%;
  background:rgba(14,165,233,.14);
  animation-delay:-6s;
}

.brand-hero-inner{
  position:relative;
  z-index:2;
  max-width:1220px;
  min-height:min(900px,100vh);
  margin:0 auto;
  padding:126px 0 42px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.brand-hero .eyebrow{
  color:rgba(181,234,255,.88);
  letter-spacing:4.2px;
}

.brand-hero h1{
  max-width:1120px;
  margin:22px auto 20px;
  font-size:clamp(60px,8.6vw,118px);
  line-height:.9;
  font-weight:880;
  letter-spacing:-1.8px;
  background:linear-gradient(180deg,#fff 0%,#eaf6ff 45%,#a7c9ff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-wrap:balance;
}

.brand-hero .hero-desc{
  max-width:700px;
  margin:0 auto 26px;
  color:rgba(226,241,255,.74);
  font-size:18px;
  line-height:1.7;
}

.brand-hero .hero-buttons{
  justify-content:center;
  margin-bottom:18px;
}

.hero-stage{
  position:relative;
  width:min(1050px,100%);
  height:310px;
  margin:18px auto 8px;
  perspective:1200px;
}

.hero-stage::before{
  content:"";
  position:absolute;
  left:8%;
  right:8%;
  bottom:28px;
  height:68px;
  border-radius:999px;
  background:rgba(56,189,248,.18);
  filter:blur(42px);
}

.stage-card{
  position:absolute;
  overflow:hidden;
  border:1px solid rgba(190,226,255,.20);
  border-radius:34px;
  background:
    radial-gradient(circle at 50% 0%,rgba(255,255,255,.22),transparent 34%),
    linear-gradient(145deg,rgba(255,255,255,.15),rgba(255,255,255,.045));
  box-shadow:0 34px 110px rgba(0,0,0,.34),inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter:blur(22px) saturate(145%);
  -webkit-backdrop-filter:blur(22px) saturate(145%);
  transition:transform .45s cubic-bezier(.2,.8,.2,1),box-shadow .45s ease,border-color .45s ease;
  animation:stageFloat 7s ease-in-out infinite;
}

.stage-card:hover{
  border-color:rgba(125,211,252,.54);
  transform:translateY(-14px) rotate(0deg) scale(1.03) !important;
  box-shadow:0 44px 130px rgba(0,0,0,.42),0 0 58px rgba(56,189,248,.20),inset 0 1px 0 rgba(255,255,255,.22);
}

.stage-card img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  opacity:.9;
  filter:saturate(1.04) contrast(1.04);
}

.stage-card span{
  position:absolute;
  left:18px;
  bottom:18px;
  min-height:34px;
  padding:0 14px;
  display:inline-flex;
  align-items:center;
  border:1px solid rgba(255,255,255,.2);
  border-radius:999px;
  color:#fff;
  background:rgba(5,12,24,.48);
  font-size:12px;
  font-weight:850;
  backdrop-filter:blur(14px);
}

.stage-phone{
  left:7%;
  top:48px;
  width:230px;
  height:230px;
  transform:rotate(-8deg);
}

.stage-film{
  left:29%;
  top:0;
  width:300px;
  height:270px;
  transform:rotate(3deg);
  animation-delay:-1.5s;
}

.stage-audio{
  right:25%;
  top:66px;
  width:225px;
  height:205px;
  transform:rotate(-3deg);
  animation-delay:-3s;
}

.stage-power{
  right:7%;
  top:20px;
  width:255px;
  height:245px;
  transform:rotate(7deg);
  animation-delay:-4.5s;
}

@keyframes stageFloat{
  0%,100%{translate:0 0;}
  50%{translate:0 -13px;}
}

.brand-signal-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}

.brand-signal-row span{
  min-height:34px;
  padding:0 14px;
  display:inline-flex;
  align-items:center;
  border:1px solid rgba(180,220,255,.16);
  border-radius:999px;
  color:rgba(226,241,255,.78);
  background:rgba(255,255,255,.045);
  font-size:12px;
  font-weight:780;
}

.brand-category-section{
  padding-top:128px;
  background:
    radial-gradient(circle at 18% 18%,rgba(56,189,248,.13),transparent 28%),
    radial-gradient(circle at 82% 42%,rgba(99,102,241,.12),transparent 30%),
    linear-gradient(180deg,#020611 0%,#071426 52%,#020611 100%);
}

.brand-heading{
  max-width:1120px;
}

.brand-heading h2{
  font-size:clamp(40px,5.8vw,78px);
  letter-spacing:-1px;
}

.brand-category-list,
.home-page .brand-category-list{
  max-width:1160px;
  display:grid;
  grid-template-columns:1fr;
  gap:34px;
}

.home-page #products .brand-category-card,
.home-page #products .category-card.brand-category-card{
  min-height:410px;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:44px;
  align-items:center;
  padding:26px;
  border-radius:42px;
  background:
    radial-gradient(circle at 18% 18%,rgba(125,211,252,.13),transparent 32%),
    linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.035));
}

.home-page #products .brand-category-card:nth-child(even){
  grid-template-columns:.92fr 1.08fr;
}

.home-page #products .brand-category-card:nth-child(even) .category-media{
  order:2;
}

.category-media{
  position:relative;
  overflow:hidden;
  min-height:350px;
  border-radius:34px;
  background:#dcecff;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.7),0 24px 70px rgba(0,0,0,.22);
}

.category-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 50% 20%,rgba(255,255,255,.2),transparent 40%);
  pointer-events:none;
}

.category-media img{
  width:100%;
  height:100%;
  min-height:350px;
  display:block;
  object-fit:cover;
  transition:transform .6s cubic-bezier(.2,.8,.2,1),filter .6s ease;
}

.home-page #products .brand-category-card:hover .category-media img{
  transform:scale(1.06);
  filter:saturate(1.08) contrast(1.04);
}

.category-index{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  margin-bottom:22px;
  border:1px solid rgba(125,211,252,.24);
  border-radius:50%;
  color:#9be7ff;
  background:rgba(255,255,255,.055);
  font-size:13px;
  font-weight:900;
}

.home-page #products .brand-category-card .category-info h3{
  max-width:450px;
  font-size:clamp(34px,4.2vw,58px);
  line-height:1;
  letter-spacing:-.7px;
}

.home-page #products .brand-category-card .category-info p{
  max-width:430px;
  margin-top:18px;
  color:rgba(226,241,255,.72);
  font-size:16px;
  line-height:1.85;
}

.brand-featured-section{
  padding-top:130px;
  background:
    radial-gradient(circle at 50% 0%,rgba(125,211,252,.14),transparent 34%),
    linear-gradient(180deg,#020611 0%,#081426 50%,#020611 100%);
}

.brand-product-wall,
.home-product-grid.brand-product-wall{
  max-width:1220px;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
}

.brand-product-wall .home-product-card{
  min-height:430px;
  border-radius:38px;
  background:
    radial-gradient(circle at 50% 0%,rgba(255,255,255,.16),transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,.035));
}

.brand-product-wall .home-product-card:nth-child(1),
.brand-product-wall .home-product-card:nth-child(6){
  grid-column:span 2;
}

.brand-product-wall .home-product-card img{
  height:auto;
  aspect-ratio:1 / 1;
  object-fit:contain;
  padding:28px;
  background:
    radial-gradient(circle at 50% 18%,#fff 0%,#edf7ff 42%,#b8cdf5 100%);
}

.brand-product-wall .home-product-card:hover img{
  transform:translateY(-12px) scale(1.045);
}

.brand-product-wall .home-product-card h3{
  font-size:22px;
  min-height:58px;
}

.home-footer{
  padding:92px 6% 34px;
  background:
    radial-gradient(circle at 50% 0%,rgba(56,189,248,.10),transparent 34%),
    linear-gradient(180deg,#020611,#050b16 100%);
}

.home-footer .footer-grid{
  position:relative;
  max-width:1180px;
  grid-template-columns:1.4fr .85fr .85fr 1fr;
  border-radius:44px;
  padding:46px;
  background:
    radial-gradient(circle at 18% 0%,rgba(125,211,252,.10),transparent 32%),
    rgba(255,255,255,.035);
}

.home-footer .footer-logo{
  max-width:520px;
  font-size:clamp(28px,3.2vw,44px);
  line-height:1.04;
  letter-spacing:-.5px;
}

.home-footer .footer-desc{
  max-width:450px;
}

.home-footer .footer-bottom{
  max-width:1180px;
  margin:34px auto 0;
  border-top:0;
  text-align:left;
}

@media(max-width:1100px){
  .brand-hero h1{
    font-size:clamp(54px,10vw,92px);
  }

  .hero-stage{
    height:280px;
  }

  .stage-phone{left:0;}
  .stage-film{left:22%;}
  .stage-audio{right:20%;}
  .stage-power{right:0;}

  .home-page #products .brand-category-card,
  .home-page #products .category-card.brand-category-card{
    grid-template-columns:1fr;
  }

  .home-page #products .brand-category-card:nth-child(even){
    grid-template-columns:1fr;
  }

  .home-page #products .brand-category-card:nth-child(even) .category-media{
    order:0;
  }

  .brand-product-wall,
  .home-product-grid.brand-product-wall{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:760px){
  .brand-hero{
    min-height:auto;
    padding:0 18px;
  }

  .brand-hero-inner{
    min-height:auto;
    padding:118px 0 76px;
  }

  .brand-hero h1{
    margin-top:18px;
    font-size:clamp(44px,13vw,66px);
    line-height:.96;
    letter-spacing:-.8px;
  }

  .brand-hero .hero-desc{
    font-size:16px;
  }

  .hero-stage{
    height:250px;
    margin-top:28px;
  }

  .stage-card{
    border-radius:26px;
  }

  .stage-phone{
    left:0;
    top:52px;
    width:145px;
    height:145px;
  }

  .stage-film{
    left:24%;
    top:0;
    width:180px;
    height:172px;
  }

  .stage-audio{
    right:22%;
    top:96px;
    width:150px;
    height:132px;
  }

  .stage-power{
    right:0;
    top:36px;
    width:150px;
    height:150px;
  }

  .brand-signal-row span{
    flex:1 1 auto;
    justify-content:center;
  }

  .brand-category-section,
  .brand-featured-section{
    padding-top:86px;
  }

  .brand-heading h2{
    font-size:clamp(36px,11vw,50px);
  }

  .brand-category-list,
  .home-page .brand-category-list{
    gap:22px;
  }

  .home-page #products .brand-category-card,
  .home-page #products .category-card.brand-category-card{
    min-height:auto;
    padding:18px;
    border-radius:32px;
    gap:24px;
  }

  .category-media{
    min-height:250px;
    border-radius:26px;
  }

  .category-media img{
    min-height:250px;
  }

  .home-page #products .brand-category-card .category-info{
    padding:0 8px 8px;
  }

  .home-page #products .brand-category-card .category-info h3{
    font-size:clamp(32px,10vw,42px);
  }

  .brand-product-wall,
  .home-product-grid.brand-product-wall{
    grid-template-columns:1fr;
  }

  .brand-product-wall .home-product-card:nth-child(1),
  .brand-product-wall .home-product-card:nth-child(6){
    grid-column:auto;
  }

  .brand-product-wall .home-product-card{
    min-height:auto;
    border-radius:32px;
  }

  .home-footer .footer-grid{
    grid-template-columns:1fr;
    padding:30px;
    border-radius:34px;
  }
}

@media(min-width:761px){.brand-hero-inner{padding-top:104px;padding-bottom:34px;justify-content:flex-start;}.brand-hero h1{max-width:980px;font-size:clamp(70px,8.2vw,112px);line-height:.88;margin-bottom:18px;}.brand-hero .hero-desc{margin-bottom:22px;}.hero-stage{height:270px;margin-top:10px;}.stage-phone{top:36px;}.stage-film{top:-4px;}.stage-audio{top:52px;}.stage-power{top:10px;}.brand-hero{min-height:760px;}}

.stage-object{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  filter:drop-shadow(0 24px 42px rgba(56,189,248,.22));
}

.phone-object{
  width:102px;
  height:162px;
  border:2px solid rgba(190,226,255,.68);
  border-radius:30px;
  background:
    radial-gradient(circle at 32% 22%,rgba(255,255,255,.42),transparent 16%),
    linear-gradient(145deg,rgba(125,211,252,.18),rgba(37,99,235,.18) 48%,rgba(7,16,31,.82));
}

.phone-object::before{
  content:"";
  position:absolute;
  left:18px;
  top:18px;
  width:24px;
  height:24px;
  border-radius:50%;
  background:#020611;
  box-shadow:34px 0 0 -7px rgba(2,6,17,.88);
}

.film-object{
  width:132px;
  height:132px;
  border:2px solid rgba(190,226,255,.68);
  border-radius:28px;
  background:linear-gradient(145deg,rgba(255,255,255,.20),rgba(125,211,252,.10));
  transform:translate(-50%,-50%) rotate(-10deg);
}

.film-object::before,
.film-object::after{
  content:"";
  position:absolute;
  inset:16px;
  border:2px solid rgba(255,255,255,.55);
  border-radius:22px;
  transform:rotate(18deg);
}

.film-object::after{
  inset:28px;
  opacity:.5;
  transform:rotate(-16deg);
}

.audio-object{
  width:154px;
  height:96px;
  border-radius:30px;
  background:linear-gradient(145deg,rgba(255,255,255,.20),rgba(125,211,252,.10));
}

.audio-object::before,
.audio-object::after{
  content:"";
  position:absolute;
  top:22px;
  width:38px;
  height:58px;
  border-radius:24px;
  background:linear-gradient(180deg,#fff,#99e8ff 72%,#5183ff);
}

.audio-object::before{left:34px;}
.audio-object::after{right:34px;}

.power-object{
  width:150px;
  height:96px;
  border:2px solid rgba(190,226,255,.62);
  border-radius:28px;
  background:
    radial-gradient(circle at 28% 24%,rgba(255,255,255,.34),transparent 20%),
    linear-gradient(145deg,rgba(125,211,252,.16),rgba(99,102,241,.18),rgba(7,16,31,.82));
}

.power-object::before{
  content:"";
  position:absolute;
  right:-10px;
  top:36px;
  width:10px;
  height:24px;
  border-radius:0 8px 8px 0;
  background:rgba(190,226,255,.66);
}

.power-object::after{
  content:"";
  position:absolute;
  left:22px;
  right:22px;
  top:48px;
  height:6px;
  border-radius:999px;
  background:linear-gradient(90deg,#7dd3fc,#6366f1);
}

.stage-card img{
  display:none;
}

@media(max-width:760px){
  .phone-object{width:76px;height:116px;border-radius:24px;}
  .film-object{width:96px;height:96px;border-radius:22px;}
  .audio-object{width:112px;height:76px;}
  .audio-object::before,.audio-object::after{top:18px;width:28px;height:44px;}
  .audio-object::before{left:26px;}
  .audio-object::after{right:26px;}
  .power-object{width:108px;height:74px;border-radius:22px;}
}

/* HOME RHYTHM COMPRESSION: BRAND DISPLAY, NOT CATALOG */

.brand-category-section{
  padding-top:86px;
  padding-bottom:82px;
}

.brand-featured-section{
  padding-top:88px;
  padding-bottom:86px;
}

.brand-category-section .section-heading,
.brand-featured-section .section-heading{
  margin-bottom:34px;
}

.brand-heading h2{
  font-size:clamp(34px,4.6vw,58px);
  line-height:1.03;
  letter-spacing:-.7px;
}

.brand-category-list,
.home-page .brand-category-list{
  max-width:1120px;
  gap:18px;
}

.home-page #products .brand-category-card,
.home-page #products .category-card.brand-category-card{
  min-height:240px;
  grid-template-columns:.82fr 1.18fr;
  gap:26px;
  padding:18px;
  border-radius:30px;
}

.home-page #products .brand-category-card:nth-child(even){
  grid-template-columns:1.18fr .82fr;
}

.category-media{
  min-height:204px;
  border-radius:24px;
}

.category-media img{
  min-height:204px;
  height:204px;
  object-fit:cover;
}

.category-index{
  width:36px;
  height:36px;
  margin-bottom:14px;
  font-size:12px;
}

.home-page #products .brand-category-card .category-info h3{
  max-width:420px;
  font-size:clamp(26px,3vw,40px);
  line-height:1.02;
}

.home-page #products .brand-category-card .category-info p{
  max-width:450px;
  margin-top:12px;
  font-size:14px;
  line-height:1.65;
}

.home-page #products .brand-category-card .product-link{
  min-height:32px;
  margin-top:14px;
  padding:0 13px;
  font-size:12px;
}

.brand-featured-section .split-heading{
  max-width:1120px;
  align-items:flex-end;
}

.brand-featured-section .split-heading h2{
  max-width:760px;
}

.brand-product-wall,
.home-product-grid.brand-product-wall{
  max-width:1120px;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  align-items:stretch;
}

.brand-product-wall .home-product-card{
  min-height:0;
  height:318px;
  border-radius:26px;
  display:flex;
  flex-direction:column;
  background:
    radial-gradient(circle at 50% 0%,rgba(255,255,255,.13),transparent 30%),
    linear-gradient(180deg,rgba(255,255,255,.105),rgba(255,255,255,.035));
}

.brand-product-wall .home-product-card:nth-child(1),
.brand-product-wall .home-product-card:nth-child(6){
  grid-column:auto;
}

.brand-product-wall .home-product-card::before{
  left:16px;
  right:16px;
  top:14px;
  height:44%;
  filter:blur(16px);
  opacity:.62;
}

.brand-product-wall .home-product-card img{
  width:calc(100% - 24px);
  height:178px;
  aspect-ratio:auto;
  flex:0 0 178px;
  margin:12px 12px 0;
  padding:16px;
  border-radius:22px;
  object-fit:contain;
  background:
    radial-gradient(circle at 50% 18%,#fff 0%,#eef7ff 42%,#c6d6f2 100%);
}

.brand-product-wall .home-product-card div{
  flex:1;
  padding:16px 18px 18px;
  display:flex;
  flex-direction:column;
}

.brand-product-wall .home-product-card span{
  margin-bottom:8px;
  font-size:10px;
  letter-spacing:1.2px;
}

.brand-product-wall .home-product-card h3{
  min-height:0;
  margin:0;
  color:#fff;
  font-size:16px;
  line-height:1.25;
  font-weight:790;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.brand-product-wall .home-product-card a{
  width:max-content;
  min-height:30px;
  margin-top:auto;
  padding:0 12px;
  font-size:12px;
}

.brand-product-wall .home-product-card:hover{
  transform:translateY(-7px);
}

.brand-product-wall .home-product-card:hover img{
  transform:translateY(-5px) scale(1.025);
}

.solutions-section,
.why-section-home,
.home-contact-section{
  padding-top:86px;
  padding-bottom:86px;
}

.solutions-panel{
  padding:38px;
}

.advantage-card{
  min-height:190px;
  padding:22px;
}

.home-footer{
  padding-top:68px;
}

@media(min-width:1101px){
  .brand-category-list .brand-category-card:nth-child(3),
  .brand-category-list .brand-category-card:nth-child(4),
  .brand-category-list .brand-category-card:nth-child(5),
  .brand-category-list .brand-category-card:nth-child(6){
    min-height:210px;
  }

  .brand-category-list .brand-category-card:nth-child(3) .category-media,
  .brand-category-list .brand-category-card:nth-child(4) .category-media,
  .brand-category-list .brand-category-card:nth-child(5) .category-media,
  .brand-category-list .brand-category-card:nth-child(6) .category-media,
  .brand-category-list .brand-category-card:nth-child(3) .category-media img,
  .brand-category-list .brand-category-card:nth-child(4) .category-media img,
  .brand-category-list .brand-category-card:nth-child(5) .category-media img,
  .brand-category-list .brand-category-card:nth-child(6) .category-media img{
    min-height:178px;
    height:178px;
  }
}

@media(max-width:1100px){
  .home-page #products .brand-category-card,
  .home-page #products .category-card.brand-category-card,
  .home-page #products .brand-category-card:nth-child(even){
    grid-template-columns:220px minmax(0,1fr);
  }

  .home-page #products .brand-category-card:nth-child(even) .category-media{
    order:0;
  }

  .category-media,
  .category-media img{
    min-height:190px;
    height:190px;
  }

  .brand-product-wall,
  .home-product-grid.brand-product-wall{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:760px){
  .brand-category-section,
  .brand-featured-section,
  .solutions-section,
  .why-section-home,
  .home-contact-section{
    padding-top:64px;
    padding-bottom:64px;
  }

  .brand-category-section .section-heading,
  .brand-featured-section .section-heading{
    margin-bottom:26px;
  }

  .brand-heading h2{
    font-size:clamp(30px,9.2vw,40px);
  }

  .brand-category-list,
  .home-page .brand-category-list{
    gap:14px;
  }

  .home-page #products .brand-category-card,
  .home-page #products .category-card.brand-category-card,
  .home-page #products .brand-category-card:nth-child(even){
    grid-template-columns:118px minmax(0,1fr);
    gap:14px;
    padding:12px;
    border-radius:24px;
  }

  .category-media,
  .category-media img{
    min-height:122px;
    height:122px;
    border-radius:18px;
  }

  .category-index{
    width:28px;
    height:28px;
    margin-bottom:8px;
    font-size:10px;
  }

  .home-page #products .brand-category-card .category-info{
    padding:0;
  }

  .home-page #products .brand-category-card .category-info h3{
    font-size:20px;
    line-height:1.05;
  }

  .home-page #products .brand-category-card .category-info p{
    margin-top:7px;
    font-size:12px;
    line-height:1.45;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }

  .home-page #products .brand-category-card .product-link{
    min-height:28px;
    margin-top:10px;
    padding:0 10px;
    font-size:11px;
  }

  .brand-product-wall,
  .home-product-grid.brand-product-wall{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
  }

  .brand-product-wall .home-product-card{
    height:254px;
    border-radius:22px;
  }

  .brand-product-wall .home-product-card img{
    width:calc(100% - 18px);
    height:132px;
    flex-basis:132px;
    margin:9px 9px 0;
    padding:12px;
    border-radius:18px;
  }

  .brand-product-wall .home-product-card div{
    padding:12px 12px 14px;
  }

  .brand-product-wall .home-product-card span{
    font-size:9px;
    margin-bottom:6px;
  }

  .brand-product-wall .home-product-card h3{
    font-size:13px;
    line-height:1.25;
  }

  .brand-product-wall .home-product-card a{
    min-height:28px;
    padding:0 10px;
    font-size:11px;
  }

  .solutions-panel{
    padding:24px;
  }
}

@media(max-width:430px){
  .home-page #products .brand-category-card,
  .home-page #products .category-card.brand-category-card,
  .home-page #products .brand-category-card:nth-child(even){
    grid-template-columns:104px minmax(0,1fr);
  }

  .category-media,
  .category-media img{
    min-height:112px;
    height:112px;
  }

  .brand-product-wall .home-product-card{
    height:238px;
  }

  .brand-product-wall .home-product-card img{
    height:120px;
    flex-basis:120px;
  }
}

/* FEATURED WALL FINAL COMPRESSION */

.brand-featured-section{
  padding-top:66px;
  padding-bottom:70px;
}

.brand-featured-section .section-heading{
  margin-bottom:24px;
}

.brand-featured-section .split-heading{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:24px;
}

.brand-featured-section .split-heading h2{
  max-width:640px;
  font-size:clamp(30px,4vw,48px);
  line-height:1.02;
  letter-spacing:-.5px;
}

.brand-featured-section .eyebrow{
  margin-bottom:8px;
}

.brand-featured-section .text-link{
  align-self:center;
  min-height:36px;
  padding:0 14px;
  display:inline-flex;
  align-items:center;
  border:1px solid rgba(125,211,252,.18);
  border-radius:999px;
  background:rgba(255,255,255,.045);
  font-size:13px;
}

.brand-product-wall,
.home-product-grid.brand-product-wall{
  gap:14px;
}

.brand-product-wall .home-product-card{
  height:258px;
  border-radius:24px;
}

.brand-product-wall .home-product-card img{
  width:calc(100% - 20px);
  height:138px;
  flex-basis:138px;
  margin:10px 10px 0;
  padding:13px;
  border-radius:20px;
}

.brand-product-wall .home-product-card div{
  padding:13px 15px 15px;
}

.brand-product-wall .home-product-card span{
  margin-bottom:6px;
  font-size:9px;
}

.brand-product-wall .home-product-card h3{
  font-size:14px;
  line-height:1.22;
}

.brand-product-wall .home-product-card a{
  min-height:27px;
  padding:0 10px;
  font-size:11px;
}

.brand-product-wall .home-product-card:hover{
  transform:translateY(-5px);
}

.brand-product-wall .home-product-card:hover img{
  transform:translateY(-3px) scale(1.02);
}

@media(min-width:1101px){
  .brand-featured-section{
    min-height:720px;
  }
}

@media(max-width:760px){
  .brand-featured-section{
    padding-top:52px;
    padding-bottom:56px;
  }

  .brand-featured-section .split-heading{
    grid-template-columns:1fr;
    gap:12px;
  }

  .brand-featured-section .split-heading h2{
    font-size:clamp(27px,8vw,36px);
  }

  .brand-featured-section .text-link{
    width:max-content;
  }

  .brand-product-wall,
  .home-product-grid.brand-product-wall{
    gap:10px;
  }

  .brand-product-wall .home-product-card{
    height:214px;
  }

  .brand-product-wall .home-product-card img{
    height:106px;
    flex-basis:106px;
    padding:10px;
  }

  .brand-product-wall .home-product-card div{
    padding:10px 11px 12px;
  }

  .brand-product-wall .home-product-card h3{
    font-size:12px;
  }
}

/* UNIFIED PRODUCT VISUAL SYSTEM */

.category-media.category-visual,
.product-visual{
  position:relative;
  overflow:hidden;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 48% 18%,rgba(255,255,255,.96),rgba(239,247,255,.88) 36%,rgba(198,216,242,.68) 100%),
    linear-gradient(145deg,#f8fbff,#dbeafe);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.86),0 24px 62px rgba(0,0,0,.20);
}

.category-media.category-visual::before,
.product-visual::before{
  content:"";
  position:absolute;
  width:68%;
  height:36%;
  left:16%;
  bottom:12%;
  border-radius:50%;
  background:rgba(37,99,235,.16);
  filter:blur(24px);
}

.category-media.category-visual::after,
.product-visual::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg,rgba(255,255,255,.36),transparent 34%),
    radial-gradient(circle at 78% 16%,rgba(125,211,252,.32),transparent 24%);
  pointer-events:none;
}

.visual-device{
  position:relative;
  z-index:2;
  filter:drop-shadow(0 22px 32px rgba(37,99,235,.20));
  transition:transform .45s cubic-bezier(.2,.8,.2,1),filter .45s ease;
}

.brand-category-card:hover .visual-device,
.home-product-card:hover .visual-device{
  transform:translateY(-7px) scale(1.035);
  filter:drop-shadow(0 30px 42px rgba(37,99,235,.28));
}

.case-visual{
  width:92px;
  height:142px;
  border:2px solid rgba(30,64,175,.24);
  border-radius:30px;
  background:
    radial-gradient(circle at 34% 21%,rgba(255,255,255,.72),transparent 16%),
    linear-gradient(145deg,#eaf7ff,#a8d7ff 52%,#6c7cff);
}

.case-visual::before{
  content:"";
  position:absolute;
  left:17px;
  top:16px;
  width:23px;
  height:23px;
  border-radius:50%;
  background:#071225;
  box-shadow:32px 3px 0 -8px rgba(7,18,37,.78);
}

.film-visual{
  width:124px;
  height:124px;
  border:2px solid rgba(30,64,175,.22);
  border-radius:28px;
  background:linear-gradient(145deg,rgba(255,255,255,.92),rgba(172,218,255,.50));
  transform:rotate(-8deg);
}

.film-visual::before,
.film-visual::after{
  content:"";
  position:absolute;
  inset:16px;
  border:2px solid rgba(37,99,235,.28);
  border-radius:22px;
  transform:rotate(16deg);
}

.film-visual::after{
  inset:30px;
  opacity:.7;
  transform:rotate(-18deg);
}

.charger-visual{
  width:94px;
  height:116px;
  border-radius:26px;
  background:linear-gradient(180deg,#fff,#d9efff 58%,#aab9ff);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.95);
}

.charger-visual::before,
.charger-visual::after{
  content:"";
  position:absolute;
  top:-27px;
  width:12px;
  height:34px;
  border-radius:8px;
  background:#eaf7ff;
}

.charger-visual::before{left:28px;}
.charger-visual::after{right:28px;}

.earbuds-visual{
  width:138px;
  height:96px;
  border-radius:34px;
  background:linear-gradient(145deg,rgba(255,255,255,.72),rgba(145,214,255,.32));
}

.earbuds-visual::before,
.earbuds-visual::after{
  content:"";
  position:absolute;
  top:20px;
  width:36px;
  height:58px;
  border-radius:24px;
  background:linear-gradient(180deg,#fff,#a5f3fc 72%,#6d7dfc);
}

.earbuds-visual::before{left:30px;}
.earbuds-visual::after{right:30px;}

.powerbank-visual{
  width:140px;
  height:90px;
  border:2px solid rgba(30,64,175,.22);
  border-radius:28px;
  background:
    radial-gradient(circle at 24% 20%,rgba(255,255,255,.66),transparent 18%),
    linear-gradient(145deg,#eef8ff,#b7d8ff 55%,#6572f2);
}

.powerbank-visual::before{
  content:"";
  position:absolute;
  right:-10px;
  top:34px;
  width:10px;
  height:23px;
  border-radius:0 8px 8px 0;
  background:#dbeafe;
}

.powerbank-visual::after{
  content:"";
  position:absolute;
  left:24px;
  right:24px;
  top:45px;
  height:6px;
  border-radius:999px;
  background:linear-gradient(90deg,#38bdf8,#4f46e5);
}

.cable-visual{
  width:142px;
  height:118px;
}

.cable-visual::before{
  content:"";
  position:absolute;
  left:20px;
  top:48px;
  width:102px;
  height:42px;
  border:12px solid #9bdcff;
  border-top-color:transparent;
  border-radius:50%;
  transform:rotate(-10deg);
}

.cable-visual::after{
  content:"";
  position:absolute;
  right:8px;
  top:34px;
  width:34px;
  height:24px;
  border-radius:8px;
  background:linear-gradient(145deg,#fff,#a8d7ff);
  box-shadow:-86px 46px 0 -4px #dff7ff;
}

.category-visual-case .visual-device,
.product-visual-case .visual-device{transform:rotate(-5deg);}
.category-visual-film .visual-device,
.product-visual-film .visual-device{transform:rotate(-8deg);}
.category-visual-power .visual-device,
.product-visual-power .visual-device{transform:rotate(4deg);}
.category-visual-accessory .visual-device,
.product-visual-accessory .visual-device{transform:rotate(-2deg);}

.product-visual{
  width:calc(100% - 20px);
  height:148px;
  flex:0 0 148px;
  margin:10px 10px 0;
  border-radius:20px;
}

.brand-product-wall .home-product-card img{
  display:none;
}

.brand-product-wall .home-product-card .product-visual + div{
  padding-top:14px;
}

@media(min-width:761px){
  .home-page .home-header{
    top:16px;
    background:linear-gradient(180deg,rgba(12,22,38,.68),rgba(4,10,22,.48));
  }

  .brand-hero-inner{
    padding-top:112px;
  }

  .stage-card{
    background:
      radial-gradient(circle at 42% 0%,rgba(255,255,255,.20),transparent 34%),
      linear-gradient(145deg,rgba(255,255,255,.16),rgba(255,255,255,.055));
  }
}

@media(max-width:760px){
  .product-visual{
    width:calc(100% - 18px);
    height:112px;
    flex-basis:112px;
    margin:9px 9px 0;
    border-radius:18px;
  }

  .case-visual{width:62px;height:96px;border-radius:22px;}
  .case-visual::before{left:12px;top:12px;width:16px;height:16px;box-shadow:24px 2px 0 -6px rgba(7,18,37,.78);}
  .film-visual{width:82px;height:82px;border-radius:20px;}
  .charger-visual{width:64px;height:82px;border-radius:20px;}
  .charger-visual::before,.charger-visual::after{top:-20px;width:9px;height:26px;}
  .charger-visual::before{left:19px;}.charger-visual::after{right:19px;}
  .earbuds-visual{width:92px;height:66px;border-radius:24px;}
  .earbuds-visual::before,.earbuds-visual::after{top:14px;width:24px;height:40px;}
  .earbuds-visual::before{left:21px;}.earbuds-visual::after{right:21px;}
  .powerbank-visual{width:88px;height:62px;border-radius:20px;}
  .powerbank-visual::before{top:23px;height:16px;}
  .powerbank-visual::after{left:16px;right:16px;top:30px;height:4px;}
  .cable-visual{width:90px;height:78px;}
  .cable-visual::before{left:12px;top:30px;width:66px;height:30px;border-width:8px;}
  .cable-visual::after{right:6px;top:22px;width:24px;height:18px;box-shadow:-54px 32px 0 -3px #dff7ff;}
}

/* BRAND PHILOSOPHY, HEADER, FOOTER POLISH */

.brand-philosophy-section{
  padding-top:86px;
  padding-bottom:42px;
  background:
    radial-gradient(circle at 50% 20%,rgba(125,211,252,.13),transparent 36%),
    linear-gradient(180deg,#020611,#071426 58%,#020611);
}

.brand-philosophy-card{
  position:relative;
  max-width:1120px;
  margin:0 auto;
  padding:60px 7%;
  border-radius:42px;
  text-align:center;
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 0%,rgba(255,255,255,.16),transparent 34%),
    linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.035));
  border:1px solid rgba(190,226,255,.16);
  box-shadow:0 30px 100px rgba(0,0,0,.26),inset 0 1px 0 rgba(255,255,255,.12);
}

.brand-philosophy-card::before{
  content:"";
  position:absolute;
  left:18%;
  right:18%;
  top:-70px;
  height:140px;
  border-radius:50%;
  background:rgba(56,189,248,.20);
  filter:blur(42px);
}

.brand-philosophy-card h2{
  position:relative;
  max-width:820px;
  margin:14px auto 18px;
  color:#fff;
  font-size:clamp(42px,6vw,76px);
  line-height:.96;
  letter-spacing:-1px;
}

.brand-philosophy-card p:last-child{
  position:relative;
  max-width:720px;
  margin:0 auto;
  color:rgba(226,241,255,.72);
  font-size:17px;
  line-height:1.75;
}

.home-page .home-header{
  border-color:rgba(190,226,255,.18);
  background:
    linear-gradient(180deg,rgba(13,24,42,.72),rgba(4,10,22,.50));
  box-shadow:0 22px 72px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.10);
}

.home-page .logo img{
  padding:3px;
  background:linear-gradient(145deg,#fff,#dff7ff);
}

.home-page .logo-text{
  color:#f8fbff;
  font-weight:760;
}

.home-page .nav a{
  position:relative;
  overflow:hidden;
}

.home-page .nav a::before{
  content:"";
  position:absolute;
  left:50%;
  bottom:5px;
  width:18px;
  height:1px;
  border-radius:999px;
  background:#7dd3fc;
  opacity:0;
  transform:translateX(-50%) scaleX(.2);
  transition:opacity .25s ease,transform .25s ease;
}

.home-page .nav a:hover::before{
  opacity:1;
  transform:translateX(-50%) scaleX(1);
}

.home-footer{
  padding-top:74px;
  padding-bottom:34px;
  background:
    radial-gradient(circle at 50% 0%,rgba(125,211,252,.10),transparent 38%),
    linear-gradient(180deg,#020611 0%,#07111f 100%);
}

.home-footer .footer-grid{
  border-radius:40px;
  padding:42px;
  background:
    linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
  border:1px solid rgba(190,226,255,.14);
  box-shadow:0 24px 80px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.10);
}

.home-footer .footer-logo{
  font-size:clamp(26px,3vw,40px);
  font-weight:820;
}

.home-footer .footer-desc{
  margin-top:16px;
  color:rgba(226,241,255,.66);
}

.home-footer .footer-col h3{
  margin-bottom:18px;
  color:#eaf7ff;
  font-size:12px;
  letter-spacing:2px;
  font-weight:820;
}

.home-footer .footer-col a{
  width:max-content;
  margin-bottom:12px;
  color:rgba(226,241,255,.58);
  font-size:14px;
}

.home-footer .footer-col a:hover{
  color:#9be7ff;
  transform:translateX(3px);
}

.home-footer .footer-bottom{
  color:rgba(226,241,255,.42);
}

@media(max-width:760px){
  .brand-philosophy-section{
    padding-top:56px;
    padding-bottom:30px;
  }

  .brand-philosophy-card{
    padding:38px 22px;
    border-radius:30px;
  }

  .brand-philosophy-card h2{
    font-size:clamp(34px,10vw,46px);
  }

  .brand-philosophy-card p:last-child{
    font-size:15px;
  }

  .home-page .nav a::before{
    display:none;
  }

  .home-footer{
    padding-top:54px;
  }

  .home-footer .footer-grid{
    padding:28px;
    border-radius:30px;
  }
}

/* CATEGORY SECTION FINAL BRAND RHYTHM */

@media(min-width:1101px){
  .brand-category-list,
  .home-page .brand-category-list{
    max-width:1120px;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
  }

  .home-page #products .brand-category-card,
  .home-page #products .category-card.brand-category-card,
  .home-page #products .brand-category-card:nth-child(even){
    min-height:238px;
    height:238px;
    grid-template-columns:180px minmax(0,1fr);
    gap:20px;
    padding:16px;
  }

  .home-page #products .brand-category-card:nth-child(even) .category-media{
    order:0;
  }

  .home-page #products .brand-category-card .category-media,
  .home-page #products .category-card.brand-category-card .category-media,
  .home-page #products .brand-category-card .category-media.category-visual{
    min-height:206px;
    height:206px;
  }

  .home-page #products .brand-category-card .category-info h3{
    font-size:30px;
    line-height:1.02;
  }

  .home-page #products .brand-category-card .category-info p{
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
    font-size:13px;
    line-height:1.55;
  }

  .brand-category-section{
    padding-top:78px;
    padding-bottom:76px;
  }
}

/* FLAGSHIP HEADER / NAVBAR UPGRADE */

.home-page .home-header{
  top:18px;
  width:min(1240px,calc(100% - 48px));
  height:82px;
  padding:12px 22px 12px 24px;
  border-radius:28px;
  border:1px solid rgba(210,235,255,.20);
  background:
    linear-gradient(180deg,rgba(13,25,45,.78),rgba(5,12,26,.58));
  box-shadow:
    0 26px 86px rgba(0,0,0,.34),
    0 0 42px rgba(56,189,248,.10),
    inset 0 1px 0 rgba(255,255,255,.14);
  backdrop-filter:blur(30px) saturate(170%);
  -webkit-backdrop-filter:blur(30px) saturate(170%);
}

.home-page .home-header.is-scrolled{
  background:
    linear-gradient(180deg,rgba(10,20,38,.88),rgba(4,10,22,.72));
  border-color:rgba(170,220,255,.24);
  box-shadow:
    0 30px 96px rgba(0,0,0,.40),
    0 0 54px rgba(56,189,248,.13),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.home-page .logo{
  gap:16px;
  min-height:58px;
  padding:7px 12px 7px 8px;
  border-radius:22px;
  transition:background .28s ease,transform .28s ease,box-shadow .28s ease;
}

.home-page .logo:hover{
  background:rgba(255,255,255,.055);
  transform:translateY(-1px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}

.home-page .logo img{
  width:52px;
  height:52px;
  padding:4px;
  border-radius:17px;
  background:linear-gradient(145deg,#ffffff,#dff7ff 72%,#b9e8ff);
  box-shadow:
    0 14px 34px rgba(56,189,248,.20),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.home-page .logo-text{
  max-width:none;
  color:#f7fbff;
  font-size:19px;
  font-weight:780;
  letter-spacing:-.1px;
  text-shadow:0 10px 28px rgba(125,211,252,.12);
}

.home-page .nav{
  gap:8px;
  padding:6px;
  border:1px solid rgba(255,255,255,.055);
  border-radius:999px;
  background:rgba(255,255,255,.035);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.065);
}

.home-page .nav a{
  min-height:46px;
  padding:0 18px;
  border-radius:999px;
  color:rgba(235,247,255,.80);
  font-size:14px;
  font-weight:760;
  letter-spacing:-.05px;
  transition:
    color .28s ease,
    background .28s ease,
    box-shadow .28s ease,
    transform .28s ease;
}

.home-page .nav a:hover{
  color:#fff;
  background:
    radial-gradient(circle at 50% 0%,rgba(125,211,252,.20),transparent 64%),
    rgba(255,255,255,.075);
  box-shadow:
    0 10px 28px rgba(56,189,248,.12),
    inset 0 1px 0 rgba(255,255,255,.12);
  transform:translateY(-2px);
}

.home-page .nav a::before{
  bottom:7px;
  width:22px;
  background:linear-gradient(90deg,transparent,#9be7ff,transparent);
  box-shadow:0 0 12px rgba(125,211,252,.55);
}

@media(min-width:761px){
  .brand-hero-inner{
    padding-top:132px;
  }
}

@media(max-width:1100px){
  .home-page .home-header{
    width:calc(100% - 32px);
    height:76px;
    padding:11px 16px;
  }

  .home-page .logo img{
    width:48px;
    height:48px;
  }

  .home-page .logo-text{
    font-size:17px;
  }

  .home-page .nav a{
    padding:0 13px;
    font-size:13px;
  }
}

@media(max-width:760px){
  .home-page .home-header{
    top:12px;
    width:calc(100% - 24px);
    height:72px;
    padding:10px 12px;
    border-radius:24px;
  }

  .home-page .logo{
    gap:12px;
    min-height:52px;
    padding:4px 8px 4px 4px;
  }

  .home-page .logo img{
    width:46px;
    height:46px;
    border-radius:16px;
  }

  .home-page .logo-text{
    max-width:210px;
    font-size:16px;
    line-height:1.12;
  }

  .home-page .menu-btn{
    width:50px;
    height:50px;
    min-width:50px;
    min-height:50px;
    border-radius:17px;
    border-color:rgba(190,226,255,.20);
    background:rgba(255,255,255,.07);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.10),0 12px 30px rgba(0,0,0,.16);
    font-size:24px;
  }

  .home-page .nav{
    top:84px;
    left:0;
    width:100%;
    padding:12px;
    gap:8px;
    border-radius:24px;
    background:rgba(5,12,24,.94);
    box-shadow:0 28px 90px rgba(0,0,0,.40),inset 0 1px 0 rgba(255,255,255,.08);
  }

  .home-page .nav a{
    min-height:48px;
    width:100%;
    padding:0 16px;
    font-size:15px;
    background:rgba(255,255,255,.04);
  }

  .brand-hero-inner{
    padding-top:132px;
  }
}

@media(max-width:430px){
  .home-page .logo-text{
    max-width:190px;
    font-size:15px;
  }

  .home-page .home-header{
    width:calc(100% - 20px);
  }
}

/* CATEGORY CARD CLICK LAYER FIX */

.brand-category-card{
  cursor:pointer;
}

.brand-category-card::before,
.brand-category-card::after,
.category-media,
.category-media::before,
.category-media::after,
.category-media .visual-device,
.category-card .category-icon,
.category-card .category-icon::before,
.category-card .category-icon::after{
  pointer-events:none;
}

.brand-category-card .category-info{
  position:relative;
  z-index:3;
  pointer-events:auto;
}

.brand-category-card .product-link,
.home-page #products .brand-category-card .product-link,
.home-page #products .category-card.brand-category-card .product-link{
  position:relative;
  z-index:8;
  pointer-events:auto;
}

.brand-category-card:focus-visible{
  outline:2px solid rgba(125,211,252,.75);
  outline-offset:4px;
}

/* OVERSEAS TECH BRAND SYSTEM REFINEMENT */

.home-page{
  --brand-bg:#050b16;
  --brand-panel:rgba(255,255,255,.065);
  --brand-panel-strong:rgba(255,255,255,.105);
  --brand-line:rgba(198,231,255,.15);
  --brand-line-strong:rgba(198,231,255,.26);
  --brand-text:#f7fbff;
  --brand-muted:rgba(226,241,255,.68);
  --brand-soft:rgba(226,241,255,.48);
  --brand-glow:rgba(83,190,255,.18);
  background:
    radial-gradient(circle at 50% -8%,rgba(95,202,255,.18),transparent 35%),
    radial-gradient(circle at 12% 30%,rgba(86,72,220,.13),transparent 28%),
    radial-gradient(circle at 88% 58%,rgba(56,189,248,.09),transparent 30%),
    linear-gradient(180deg,#08111f 0%,#050b16 38%,#081426 70%,#050b16 100%);
}

.home-section{
  padding-top:118px;
  padding-bottom:118px;
}

.section-heading,
.brand-heading{
  margin-bottom:52px;
}

.section-heading h2,
.brand-heading h2,
.solutions-copy h2,
.contact-left h2{
  font-weight:760;
  letter-spacing:-.65px;
}

.home-page p,
.home-page .hero-desc,
.home-page .category-info p,
.home-product-card h3,
.solution-list p,
.advantage-card p,
.contact-intro{
  font-weight:430;
}

.home-page .eyebrow{
  font-weight:760;
  letter-spacing:3.4px;
  color:rgba(173,232,255,.86);
}

/* slimmer, more premium Apple-like navigation */
.home-page .home-header{
  top:18px;
  height:70px;
  width:min(1200px,calc(100% - 56px));
  padding:9px 14px 9px 16px;
  border-radius:24px;
  border-color:rgba(220,242,255,.16);
  background:linear-gradient(180deg,rgba(10,20,36,.58),rgba(5,12,24,.38));
  box-shadow:
    0 20px 70px rgba(0,0,0,.28),
    0 0 34px rgba(56,189,248,.08),
    inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter:blur(34px) saturate(175%);
  -webkit-backdrop-filter:blur(34px) saturate(175%);
}

.home-page .home-header.is-scrolled{
  background:linear-gradient(180deg,rgba(8,17,32,.76),rgba(5,12,24,.56));
  box-shadow:
    0 24px 82px rgba(0,0,0,.34),
    0 0 42px rgba(56,189,248,.11),
    inset 0 1px 0 rgba(255,255,255,.11);
}

.home-page .logo{
  gap:13px;
  min-height:50px;
  padding:4px 10px 4px 4px;
}

.home-page .logo img{
  width:46px;
  height:46px;
  border-radius:15px;
}

.home-page .logo-text{
  font-size:17px;
  font-weight:720;
  letter-spacing:-.15px;
}

.home-page .nav{
  gap:4px;
  padding:4px;
  background:rgba(255,255,255,.032);
  border-color:rgba(255,255,255,.05);
}

.home-page .nav a{
  min-height:42px;
  padding:0 16px;
  font-size:13px;
  font-weight:690;
  color:rgba(235,247,255,.74);
}

.home-page .nav a:hover{
  background:rgba(255,255,255,.07);
  box-shadow:0 12px 34px rgba(56,189,248,.10), inset 0 1px 0 rgba(255,255,255,.10);
}

/* hero atmosphere */
.brand-hero{
  background:
    radial-gradient(circle at 50% 16%,rgba(125,211,252,.20),transparent 34%),
    radial-gradient(circle at 22% 72%,rgba(99,102,241,.15),transparent 28%),
    radial-gradient(circle at 82% 54%,rgba(56,189,248,.11),transparent 32%),
    linear-gradient(180deg,#08111f 0%,#050b16 100%);
}

.brand-hero h1{
  font-weight:880;
  letter-spacing:-2px;
}

.brand-hero .hero-desc{
  color:var(--brand-muted);
  line-height:1.85;
}

.home-btn{
  transition:transform .42s cubic-bezier(.16,1,.3,1), box-shadow .42s ease, background .42s ease, border-color .42s ease;
}

.home-btn:hover{
  transform:translateY(-3px) scale(1.015);
}

.home-btn.primary:hover{
  box-shadow:0 24px 74px rgba(37,99,235,.42),0 0 48px rgba(125,211,252,.28);
}

.home-btn.secondary:hover{
  border-color:rgba(185,232,255,.34);
  box-shadow:0 18px 46px rgba(56,189,248,.13), inset 0 1px 0 rgba(255,255,255,.12);
}

.stage-card{
  background:
    radial-gradient(circle at 35% 0%,rgba(255,255,255,.20),transparent 34%),
    linear-gradient(145deg,rgba(255,255,255,.14),rgba(255,255,255,.045));
  border-color:rgba(220,242,255,.17);
  box-shadow:
    0 34px 120px rgba(0,0,0,.36),
    0 0 44px rgba(83,190,255,.10),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.stage-card::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:inherit;
  background:linear-gradient(135deg,rgba(255,255,255,.18),transparent 42%);
  pointer-events:none;
}

/* category/cards unified language */
.home-page #products .brand-category-card,
.home-page #products .category-card.brand-category-card,
.home-product-card,
.solutions-panel,
.advantage-card,
.home-page .contact-card,
.brand-philosophy-card,
.home-footer .footer-grid{
  border-color:var(--brand-line);
  background:
    radial-gradient(circle at 30% 0%,rgba(255,255,255,.12),transparent 32%),
    linear-gradient(145deg,rgba(255,255,255,.09),rgba(255,255,255,.028));
  box-shadow:
    0 28px 90px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.home-page #products .brand-category-card:hover,
.home-product-card:hover,
.advantage-card:hover{
  border-color:var(--brand-line-strong);
  box-shadow:
    0 34px 110px rgba(0,0,0,.30),
    0 0 48px rgba(83,190,255,.13),
    inset 0 1px 0 rgba(255,255,255,.13);
}

.home-page #products .brand-category-card .category-info h3{
  font-weight:720;
  letter-spacing:-.45px;
}

.home-page #products .brand-category-card .category-info p{
  color:var(--brand-muted);
}

/* philosophy: left text, right abstract product system */
.brand-philosophy-section{
  padding-top:120px;
  padding-bottom:80px;
}

.brand-philosophy-card{
  max-width:1160px;
  min-height:430px;
  padding:58px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 420px;
  gap:54px;
  align-items:center;
  text-align:left;
}

.brand-philosophy-card::before{
  left:auto;
  right:-80px;
  top:10%;
  width:320px;
  height:320px;
  border-radius:50%;
  background:rgba(83,190,255,.14);
  filter:blur(62px);
}

.brand-philosophy-copy{
  position:relative;
  z-index:2;
}

.brand-philosophy-card h2{
  margin:16px 0 22px;
  max-width:640px;
  font-size:clamp(44px,5.4vw,74px);
  font-weight:760;
  letter-spacing:-1.2px;
  text-align:left;
}

.brand-philosophy-card p:last-child{
  margin:0;
  max-width:560px;
  color:var(--brand-muted);
  font-size:18px;
  line-height:1.85;
}

.brand-philosophy-visual{
  position:relative;
  min-height:330px;
  border-radius:36px;
  background:
    radial-gradient(circle at 50% 45%,rgba(125,211,252,.16),transparent 38%),
    linear-gradient(145deg,rgba(255,255,255,.08),rgba(255,255,255,.025));
  border:1px solid rgba(220,242,255,.12);
  overflow:hidden;
}

.orbit-ring{
  position:absolute;
  left:50%;
  top:50%;
  border:1px solid rgba(173,232,255,.18);
  border-radius:50%;
  transform:translate(-50%,-50%) rotate(-18deg);
}

.orbit-ring-one{width:260px;height:160px;}
.orbit-ring-two{width:330px;height:210px;transform:translate(-50%,-50%) rotate(22deg);}

.philosophy-device{
  position:absolute;
  border:1px solid rgba(220,242,255,.18);
  background:linear-gradient(145deg,rgba(255,255,255,.16),rgba(255,255,255,.045));
  box-shadow:0 24px 80px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter:blur(18px);
}

.philosophy-phone{
  width:118px;
  height:170px;
  left:64px;
  top:92px;
  border-radius:32px;
  transform:rotate(-9deg);
}

.philosophy-phone::before{
  content:"";
  position:absolute;
  left:20px;
  top:20px;
  width:24px;
  height:24px;
  border-radius:50%;
  background:#071225;
  box-shadow:34px 2px 0 -8px rgba(7,18,37,.84);
}

.philosophy-bud{
  width:128px;
  height:92px;
  right:88px;
  top:86px;
  border-radius:30px;
  transform:rotate(7deg);
}

.philosophy-bud::before,
.philosophy-bud::after{
  content:"";
  position:absolute;
  top:20px;
  width:32px;
  height:52px;
  border-radius:24px;
  background:linear-gradient(180deg,#fff,#9deaff 72%,#5d6df3);
}

.philosophy-bud::before{left:30px;}
.philosophy-bud::after{right:30px;}

.philosophy-pack{
  width:170px;
  height:118px;
  left:148px;
  bottom:48px;
  border-radius:30px;
  transform:rotate(-2deg);
}

.philosophy-pack::after{
  content:"";
  position:absolute;
  left:34px;
  right:34px;
  top:58px;
  height:6px;
  border-radius:999px;
  background:linear-gradient(90deg,#7dd3fc,#5b5df5);
}

/* product showcase: less Shopify, more editorial Apple-like */
.brand-featured-section{
  padding-top:124px;
  padding-bottom:126px;
}

.brand-featured-section .split-heading{
  max-width:1160px;
  margin-bottom:44px;
}

.brand-featured-section .split-heading h2{
  max-width:780px;
  font-size:clamp(38px,5vw,64px);
  font-weight:740;
  line-height:1.02;
}

.brand-product-wall,
.home-product-grid.brand-product-wall{
  max-width:1160px;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:18px;
}

.brand-product-wall .home-product-card{
  min-height:360px;
  height:auto;
  grid-column:span 2;
  border-radius:32px;
}

.brand-product-wall .home-product-card:nth-child(1),
.brand-product-wall .home-product-card:nth-child(2){
  grid-column:span 3;
  min-height:430px;
}

.brand-product-wall .home-product-card:nth-child(1) .product-visual,
.brand-product-wall .home-product-card:nth-child(2) .product-visual{
  height:260px;
  flex-basis:260px;
}

.brand-product-wall .home-product-card:nth-child(n+7){
  grid-column:span 3;
}

.product-visual{
  height:205px;
  flex-basis:205px;
  margin:16px 16px 0;
  width:calc(100% - 32px);
  border-radius:26px;
}

.brand-product-wall .home-product-card div:not(.product-visual):not(.visual-device){
  padding:20px 22px 24px;
}

.brand-product-wall .home-product-card h3{
  font-size:20px;
  font-weight:700;
  line-height:1.25;
}

.brand-product-wall .home-product-card span{
  color:rgba(155,231,255,.84);
  font-weight:720;
}

.brand-product-wall .home-product-card a{
  margin-top:18px;
}

/* footer as brand outro */
.home-footer{
  position:relative;
  padding-top:122px;
  padding-bottom:44px;
}

.home-footer::before{
  content:"";
  position:absolute;
  left:10%;
  right:10%;
  top:42px;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(125,211,252,.38),transparent);
  box-shadow:0 0 24px rgba(125,211,252,.22);
}

.home-footer .footer-grid{
  grid-template-columns:1.7fr .8fr .8fr 1fr;
  gap:54px;
  padding:58px;
  border-radius:44px;
}

.home-footer .footer-logo{
  max-width:620px;
  font-weight:760;
  letter-spacing:-.8px;
}

.home-footer .footer-desc{
  max-width:520px;
  line-height:1.9;
}

@media(max-width:1100px){
  .brand-philosophy-card{
    grid-template-columns:1fr;
  }

  .brand-philosophy-visual{
    min-height:300px;
  }

  .brand-product-wall,
  .home-product-grid.brand-product-wall{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .brand-product-wall .home-product-card,
  .brand-product-wall .home-product-card:nth-child(1),
  .brand-product-wall .home-product-card:nth-child(2),
  .brand-product-wall .home-product-card:nth-child(n+7){
    grid-column:auto;
    min-height:330px;
  }

  .brand-product-wall .home-product-card:nth-child(1) .product-visual,
  .brand-product-wall .home-product-card:nth-child(2) .product-visual,
  .product-visual{
    height:180px;
    flex-basis:180px;
  }
}

@media(max-width:760px){
  .home-section{
    padding-top:76px;
    padding-bottom:76px;
  }

  .section-heading,
  .brand-heading{
    margin-bottom:32px;
  }

  .brand-philosophy-section{
    padding-top:78px;
    padding-bottom:54px;
  }

  .brand-philosophy-card{
    padding:30px;
    gap:30px;
    border-radius:34px;
  }

  .brand-philosophy-card h2{
    font-size:clamp(34px,10vw,48px);
  }

  .brand-philosophy-card p:last-child{
    font-size:15px;
  }

  .brand-philosophy-visual{
    min-height:240px;
    border-radius:28px;
  }

  .philosophy-phone{left:30px;top:66px;transform:scale(.72) rotate(-9deg);transform-origin:left top;}
  .philosophy-bud{right:34px;top:58px;transform:scale(.72) rotate(7deg);transform-origin:right top;}
  .philosophy-pack{left:92px;bottom:24px;transform:scale(.72) rotate(-2deg);transform-origin:left bottom;}

  .brand-featured-section{
    padding-top:78px;
    padding-bottom:82px;
  }

  .brand-featured-section .split-heading h2{
    font-size:clamp(31px,9vw,42px);
  }

  .brand-product-wall,
  .home-product-grid.brand-product-wall{
    grid-template-columns:1fr;
    gap:16px;
  }

  .brand-product-wall .home-product-card,
  .brand-product-wall .home-product-card:nth-child(1),
  .brand-product-wall .home-product-card:nth-child(2),
  .brand-product-wall .home-product-card:nth-child(n+7){
    min-height:300px;
  }

  .brand-product-wall .home-product-card:nth-child(1) .product-visual,
  .brand-product-wall .home-product-card:nth-child(2) .product-visual,
  .product-visual{
    height:168px;
    flex-basis:168px;
  }

  .home-footer{
    padding-top:82px;
  }

  .home-footer .footer-grid{
    gap:30px;
    padding:32px;
  }
}

/* MOBILE OVERFLOW GUARD FOR FINAL BRAND SYSTEM */

.home-page{
  overflow-x:hidden;
}

@media(max-width:760px){
  .home-page .hero-orb{
    max-width:76vw;
    max-height:76vw;
  }

  .home-footer .footer-grid{
    display:grid;
    grid-template-columns:1fr !important;
    gap:28px;
    width:100%;
    max-width:100%;
  }

  .home-footer .footer-col,
  .home-footer .footer-col h3,
  .home-footer .footer-col a{
    width:auto;
    max-width:100%;
  }

  .home-footer .footer-col a{
    overflow-wrap:anywhere;
  }
}
