.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(0,184,255,.24), transparent 28%),
    linear-gradient(135deg, #07172c 0%, #102746 58%, #0b1e38 100%);
  color: #fff;
  padding: 76px 0 54px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 54px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25e08a;
  box-shadow: 0 0 0 0 rgba(37,224,138,.8);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(37,224,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,224,138,0); }
}
.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -2.3px;
}
.hero p {
  margin: 0 0 30px;
  color: rgba(255,255,255,.76);
  font-size: 17px;
  line-height: 1.75;
  max-width: 620px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
  max-width: 630px;
}
.stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 18px;
}
.stat strong { display: block; font-size: 25px; margin-bottom: 4px; }
.stat span { color: rgba(255,255,255,.65); font-size: 13px; }
.hero-visual--search {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: auto;
}
.hero .hero-search-card {
  width: min(480px, 100%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 34px 80px rgba(0,0,0,.25);
}
.hero .hero-search-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -.4px;
}
.hero .hero-search-card > p {
  margin: 0 0 20px;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  line-height: 1.65;
}
.hero .hero-search-box {
  display: grid;
  grid-template-columns: 1fr auto;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 14px;
}
.hero .hero-search-box input {
  border: 0;
  padding: 17px 18px;
  outline: none;
  font: inherit;
  color: var(--text);
  min-width: 0;
}
.hero .hero-search-box button {
  border: 0;
  padding: 0 22px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}
.hero-search-hint {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255,255,255,.62);
}

.home-categories .section-head--intro {
  display: block;
  align-items: stretch;
}
.home-categories .section-head-intro {
  max-width: 720px;
  margin-top: 16px;
}
.home-categories-empty {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
a.home-category-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.home-category-card {
  position: relative;
  overflow: hidden;
  min-height: 212px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(8,26,51,.05);
  transition: .25s ease;
}
.home-category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(17,103,255,.25); }
.category-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #eef5ff;
  color: var(--blue);
  font-size: 25px;
  margin-bottom: 22px;
}
.home-category-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 18px; }
.home-category-card p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 14px; }
.home-category-card::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: rgba(17,103,255,.07);
}

.home-services {
  background: #fff;
}

.home-services .section-head--intro {
  display: block;
  align-items: stretch;
}

.home-services .section-head-intro {
  max-width: 720px;
  margin-top: 16px;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-service-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(8, 26, 51, 0.04);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.home-service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(17, 103, 255, 0.28);
  box-shadow: 0 14px 34px rgba(17, 103, 255, 0.1);
}

.home-service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #eef5ff;
  color: var(--blue);
  font-size: 20px;
  flex-shrink: 0;
}

.home-service-card__body {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.home-service-card__body strong {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.25;
}

.home-service-card__body small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.home-products {
  background: var(--soft);
}

.home-products .section-head--intro {
  display: block;
  align-items: stretch;
}

.home-products .section-head-intro {
  max-width: 720px;
  margin-top: 16px;
}

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

.home-product-card {
  border: 1px solid #e7edf5;
  border-radius: 26px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(8, 26, 51, 0.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.home-product-card > a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.home-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(8, 26, 51, 0.12);
  border-color: rgba(17, 103, 255, 0.22);
}

.home-product-card__visual {
  height: 220px;
  overflow: hidden;
  background: #f8fafc;
}

.home-product-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-product-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eef5ff, #f8fbff);
}

.home-product-card__body {
  padding: 20px;
  display: grid;
  gap: 14px;
}

.home-product-card__body h3 {
  margin: 0;
  color: #102746;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -.4px;
}

.home-product-card__meta {
  display: grid;
  gap: 4px;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
}

.home-product-card__footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid #edf2f7;
  color: #64748b;
  font-size: 13px;
}

.home-product-card__footer b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f1f6ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.home-product-card:hover .home-product-card__footer b {
  background: var(--blue);
  color: #fff;
}

.home-products-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.brands { background: var(--soft); }
.brands .section-head--intro {
  display: block;
  align-items: stretch;
}
.brands .section-head-intro {
  max-width: 720px;
  margin-top: 16px;
}
.brands-empty {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.brand {
  min-width: 0;
  height: 84px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  overflow: hidden;
}
a.brand-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
a.brand-link:hover {
  border-color: rgba(17, 103, 255, 0.28);
  box-shadow: 0 12px 28px rgba(8, 26, 51, 0.08);
  transform: translateY(-3px);
}
a.brand-link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.brand-name {
  font-weight: 800;
  color: #64748b;
  letter-spacing: -.4px;
  text-align: center;
  line-height: 1.15;
  word-break: break-word;
}
.brand-logo {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo--image img {
  display: block;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
  object-position: center;
}

.home-process .section-head--intro {
  display: block;
  align-items: stretch;
}
.home-process .section-head-intro {
  max-width: 720px;
  margin-top: 16px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process {
  border-left: 3px solid var(--blue);
  background: #fff;
  border-radius: 0 22px 22px 0;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(8,26,51,.06);
}
.process strong { color: var(--orange); font-size: 13px; }
.process h3 { color: var(--navy); margin: 12px 0 10px; }
.process p { color: var(--muted); line-height: 1.65; font-size: 14px; margin: 0; }

.cta { padding: 0 0 86px; }
.cta-box {
  background:
    radial-gradient(circle at 85% 20%, rgba(255,138,0,.24), transparent 30%),
    linear-gradient(135deg, var(--navy), #07172c);
  color: #fff;
  border-radius: 34px;
  padding: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  position: relative;
}
.cta-box h2 { margin: 0 0 12px; font-size: 34px; letter-spacing: -1px; }
.cta-box p { margin: 0; color: rgba(255,255,255,.72); line-height: 1.7; max-width: 650px; }

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual--search { justify-content: stretch; }
  .home-category-grid, .home-services-grid, .home-product-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .hero { padding-top: 54px; }
  .hero-stats, .home-category-grid, .home-services-grid, .home-product-grid, .process-grid, .brand-grid { grid-template-columns: 1fr; }
  .cta-box { grid-template-columns: 1fr; display: grid; padding: 26px; }
  .section-head { display: block; }
  .section-head p { margin-top: 14px; }
  section { padding: 62px 0; }
  .hero .hero-search-box { grid-template-columns: 1fr; }
  .hero .hero-search-box button { padding: 16px; }
}
