:root {
  --ink: #101722;
  --muted: #5d6878;
  --line: #dce6ee;
  --paper: #ffffff;
  --soft: #f5f9fb;
  --amber: #ffb703;
  --orange: #fb6f3d;
  --teal: #00a7a5;
  --green: #19a463;
  --navy: #14213d;
  --shadow: 0 22px 55px rgba(16, 23, 34, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(0, 167, 165, 0.08), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 42%, #ffffff 100%);
  line-height: 1.6;
}

::selection {
  color: #101722;
  background: rgba(255, 183, 3, 0.55);
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, calc(100% - 44px));
  max-width: 100%;
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(16, 23, 34, 0.42), rgba(16, 23, 34, 0));
  border-bottom: 1px solid transparent;
  transform: none;
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(221, 229, 239, 0.8);
  box-shadow: 0 18px 45px rgba(16, 23, 34, 0.08);
  backdrop-filter: blur(20px);
}

.nav-wrap {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  color: #fff;
}

.brand-logo {
  width: 214px;
  height: 62px;
  object-fit: contain;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 34px rgba(16, 23, 34, 0.16);
}

.site-header.scrolled .logo {
  color: var(--ink);
}

.logo-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--teal));
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0, 167, 165, 0.22);
}

.logo small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
}

.site-header.scrolled .logo small {
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.nav-links a {
  padding: 11px 15px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.site-header.scrolled .nav-links a {
  color: #273243;
}

.site-header.scrolled .nav-links {
  border-color: rgba(221, 229, 239, 0.8);
  background: rgba(255, 255, 255, 0.74);
}

.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active {
  color: var(--teal);
  background: #e9fbfa;
  border-color: #c9f3f1;
}

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

.lang-toggle {
  display: inline-grid;
  min-width: 48px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.lang-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 5px rgba(0, 167, 165, 0.13);
}

.site-header.scrolled .lang-toggle {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.4rem;
  cursor: pointer;
}

.site-header.scrolled .menu-toggle {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  min-height: 46px;
  padding: 12px 19px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: var(--amber);
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(255, 183, 3, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 0 0 6px rgba(255, 183, 3, 0.16), 0 24px 38px rgba(251, 111, 61, 0.28);
}

.site-header:not(.scrolled) .nav-actions .btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.hero .btn,
.banner .btn,
.nav-actions .btn {
  animation: buttonBob 4s ease-in-out infinite;
}

.btn-dark {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 12px 22px rgba(20, 33, 61, 0.2);
}

.btn-light {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.section {
  padding: 112px 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(245, 249, 251, 0.96), rgba(245, 249, 251, 1)),
    radial-gradient(circle at 90% 20%, rgba(255, 183, 3, 0.14), transparent 28rem);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  max-width: 100%;
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1,
.hero-title {
  max-width: min(100%, 920px);
  font-size: clamp(2.5rem, 5.2vw, 4.75rem);
  line-height: 1.04;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  max-width: 100%;
  margin: 0;
  overflow-wrap: break-word;
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero {
  position: relative;
  min-height: clamp(760px, 100svh, 920px);
  overflow: hidden;
  color: #fff;
  background: #101722;
}

.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 120px;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(16, 23, 34, 0.34));
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: clamp(132px, 14vh, 168px) 0 clamp(92px, 11vh, 120px);
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 23, 34, 0.94), rgba(16, 23, 34, 0.62), rgba(16, 23, 34, 0.14)),
    linear-gradient(0deg, rgba(16, 23, 34, 0.25), rgba(16, 23, 34, 0.05));
  z-index: 1;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1200px);
}

.hero-content::before {
  display: block;
  width: 84px;
  height: 5px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), var(--teal));
  content: "";
}

.hero p {
  max-width: min(100%, 720px);
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 36px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--amber);
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.counter-band {
  position: relative;
  margin-top: 0;
  padding-top: 28px;
  z-index: 5;
}

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

.counter-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 32px 26px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(20, 33, 61, 0.95), rgba(17, 65, 66, 0.9)),
    radial-gradient(circle at top right, rgba(255, 183, 3, 0.26), transparent 16rem);
  box-shadow: 0 18px 46px rgba(16, 23, 34, 0.22);
  backdrop-filter: blur(16px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.counter-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 44%);
}

.counter-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 183, 3, 0.7);
  box-shadow: 0 0 0 6px rgba(255, 183, 3, 0.11), 0 28px 56px rgba(16, 23, 34, 0.25);
}

.counter-card strong {
  position: relative;
  display: block;
  color: var(--amber);
  font-size: clamp(2.05rem, 4.4vw, 3.45rem);
  line-height: 1;
  overflow-wrap: normal;
}

.counter-card span:last-child,
.counter-card p {
  position: relative;
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  line-height: 1.35;
}

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

.trust-item {
  padding: 22px 20px;
  border-left: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  font-size: 1rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.91rem;
}

.split {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 52px;
  align-items: center;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 40px;
}

.section-head-stacked {
  display: grid;
  justify-content: start;
  align-items: start;
  gap: 16px;
}

.section-head-stacked .lead {
  max-width: 760px;
}

.compact-head {
  margin-bottom: 26px;
}

.grid-3,
.grid-4,
.product-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 23, 34, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover,
.service-card:hover,
.step:hover,
.info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 167, 165, 0.36);
  box-shadow: 0 0 0 6px rgba(0, 167, 165, 0.08), 0 28px 54px rgba(16, 23, 34, 0.13);
}

.card-body {
  padding: 24px;
}

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  color: var(--teal);
  background: #fff2c2;
  font-weight: 900;
}

.icon::before,
.icon::after,
.step-num::before,
.step-num::after {
  position: absolute;
  content: "";
}

.icon-cable::before {
  width: 23px;
  height: 23px;
  border: 3px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
}

.icon-cable::after {
  width: 18px;
  height: 3px;
  right: 7px;
  bottom: 12px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-24deg);
}

.icon-light::before {
  width: 20px;
  height: 20px;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(0, 167, 165, 0.1);
}

.icon-light::after {
  width: 13px;
  height: 5px;
  left: 16px;
  bottom: 9px;
  border-radius: 999px;
  background: currentColor;
}

.icon-solar::before {
  width: 24px;
  height: 16px;
  border: 3px solid currentColor;
  border-radius: 4px;
  transform: skewX(-12deg);
}

.icon-solar::after {
  width: 26px;
  height: 3px;
  left: 10px;
  bottom: 9px;
  border-radius: 999px;
  background: currentColor;
}

.icon-safety::before {
  width: 24px;
  height: 28px;
  border: 3px solid currentColor;
  border-radius: 14px 14px 8px 8px;
}

.icon-safety::after {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
}

.icon-fan::before {
  width: 26px;
  height: 26px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.icon-fan::after {
  width: 6px;
  height: 28px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 10px 8px 0 -1px currentColor, -10px 8px 0 -1px currentColor;
  transform: rotate(26deg);
}

.icon-project::before,
.icon-stock::before {
  width: 24px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.icon-project::after,
.icon-stock::after {
  width: 15px;
  height: 3px;
  top: 15px;
  left: 15px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 7px 0 currentColor;
}

.icon-message::before {
  width: 22px;
  height: 16px;
  border: 3px solid currentColor;
  border-radius: 6px;
}

.icon-message::after {
  left: 13px;
  bottom: 9px;
  border-top: 8px solid currentColor;
  border-right: 8px solid transparent;
}

.icon-guide::before {
  width: 22px;
  height: 28px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.icon-guide::after {
  width: 13px;
  height: 3px;
  top: 13px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 8px 0 currentColor;
}

.icon-quote::before {
  width: 24px;
  height: 28px;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.icon-quote::after {
  width: 16px;
  height: 3px;
  top: 14px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 8px 0 currentColor;
}

.icon-map::before {
  width: 22px;
  height: 28px;
  border: 3px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.icon-map::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.card p,
.service-card p,
.product-card p,
.step p {
  margin-top: 10px;
  color: var(--muted);
}

.service-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:nth-child(2n) .icon {
  background: #dff8f7;
}

.service-card:nth-child(3n) .icon {
  background: #e8f7ee;
}

.feature-photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-photo img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.stat strong {
  display: block;
  color: var(--orange);
  font-size: 1.55rem;
}

.banner {
  position: relative;
  overflow: hidden;
  padding: 72px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(20, 33, 61, 0.98), rgba(20, 58, 61, 0.96) 58%, rgba(25, 164, 99, 0.94)),
    url("https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&w=1400&q=70") center / cover;
}

.banner::after {
  position: absolute;
  right: 48px;
  bottom: -38px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.banner > * {
  position: relative;
  z-index: 1;
}

.banner p {
  max-width: 690px;
  margin: 14px 0 26px;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  display: grid;
  min-height: 520px;
  align-items: end;
  padding: 178px 0 94px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 23, 34, 0.92), rgba(16, 23, 34, 0.56)),
    var(--page-image) center / cover;
}

.page-hero p {
  max-width: 700px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #334154;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  content: "\2713";
  font-weight: 900;
}

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

.step {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.step-num {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  place-items: center;
  position: relative;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq summary {
  padding: 18px 22px;
  font-weight: 850;
  cursor: pointer;
}

.faq p {
  padding: 0 22px 20px;
  color: var(--muted);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 23, 34, 0.06);
}

.product-showcase {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 0;
  overflow: hidden;
  margin-bottom: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f0f3f5;
  box-shadow: var(--shadow);
}

.product-gallery-panel {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  padding: 44px 74px 108px;
  background: linear-gradient(135deg, #edf1f4, #f8fafb);
}

.product-gallery-panel > img {
  width: min(620px, 86%);
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(16, 23, 34, 0.2));
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 28px rgba(16, 23, 34, 0.12);
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery-arrow:first-of-type {
  left: 26px;
}

.gallery-arrow:last-of-type {
  right: 26px;
}

.mini-gallery {
  position: absolute;
  left: 50%;
  bottom: 26px;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.mini-thumb {
  width: 94px;
  height: 62px;
  padding: 5px;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.mini-thumb.active {
  border-color: var(--ink);
}

.mini-thumb img {
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.product-info-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 48px 42px;
  background: #fff;
}

.deal-label {
  color: #202938;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.rating-row span {
  color: var(--amber);
  letter-spacing: 0.08em;
}

.rating-row small {
  color: var(--muted);
  font-weight: 800;
}

.availability-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid #c9f3f1;
  border-radius: 8px;
  background: #e9fbfa;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(25, 164, 99, 0.14);
}

.product-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  margin: 0;
  padding-left: 18px;
  color: #334154;
}

.product-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.product-total span {
  color: var(--muted);
  font-weight: 800;
}

.product-total strong {
  font-size: 1.3rem;
}

.product-actions {
  display: grid;
  gap: 12px;
}

.top-picks {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  margin-bottom: 64px;
  padding: 26px;
  border-radius: 8px;
  background: #f2f0fb;
}

.top-picks-intro {
  display: grid;
  align-content: space-between;
  min-height: 210px;
}

.pick-controls {
  display: flex;
  gap: 12px;
}

.pick-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  cursor: pointer;
}

.pick-controls button:first-child {
  color: var(--ink);
  background: #fff;
}

.pick-track {
  display: grid;
  grid-auto-columns: minmax(190px, 1fr);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 4px;
}

.pick-card,
.seller-card {
  border: 0;
  border-radius: 8px;
  text-align: left;
  background: #fff;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pick-card {
  display: grid;
  gap: 10px;
  min-height: 232px;
  padding: 16px;
}

.pick-card img {
  height: 132px;
  object-fit: contain;
}

.pick-card span,
.pick-card strong {
  display: block;
}

.pick-card strong {
  color: var(--ink);
}

.pick-card::after {
  justify-self: end;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #b9ff00;
  color: #101722;
  content: ">";
  font-weight: 900;
}

.best-seller-section {
  margin-bottom: 50px;
}

.best-seller-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.seller-card {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
}

.seller-card:hover,
.pick-card:hover,
.seller-card:focus-visible,
.pick-card:focus-visible {
  outline: 0;
  transform: translateY(-7px);
  box-shadow: 0 0 0 6px rgba(0, 167, 165, 0.08), 0 24px 46px rgba(16, 23, 34, 0.12);
}

.seller-card img {
  height: 160px;
  margin-bottom: 14px;
  object-fit: contain;
}

.seller-card p {
  margin-top: 8px;
  color: var(--muted);
}

.sale-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #116a43;
  background: #e8f7ee;
  font-size: 0.74rem;
  font-weight: 900;
}

.filter-btn {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #344154;
  font-weight: 850;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--teal);
  color: #fff;
  background: var(--teal);
}

.product-card img {
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
  transition: transform 0.42s ease, filter 0.42s ease;
}

.product-card {
  cursor: pointer;
}

.product-card:focus-visible {
  outline: 3px solid rgba(0, 167, 165, 0.45);
  outline-offset: 4px;
}

.product-detail-link {
  border: 0;
  padding: 0;
  color: var(--teal);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.mini-quote {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  margin-top: 18px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  background: #fff2c2;
  font-weight: 900;
}

.product-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.1) contrast(1.03);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #116a43;
  background: #e8f7ee;
  font-weight: 850;
  font-size: 0.78rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 34px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #263244;
  font-weight: 850;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fbfdff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 5px rgba(0, 167, 165, 0.1);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-panel {
  display: grid;
  gap: 18px;
}

.info-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trusted-companies {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 251, 0.98)),
    radial-gradient(circle at 15% 20%, rgba(0, 167, 165, 0.08), transparent 24rem);
}

.trusted-wrap {
  max-width: 1180px;
}

.stars {
  color: var(--amber);
  font-size: 1.3rem;
  letter-spacing: 0.2em;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

.logo-pill {
  display: flex;
  position: relative;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #182235;
  font-size: 1.05rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(16, 23, 34, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.logo-pill:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 167, 165, 0.34);
  box-shadow: 0 0 0 6px rgba(0, 167, 165, 0.07), 0 24px 46px rgba(16, 23, 34, 0.11);
}

.logo-image-tile {
  min-height: 156px;
  background-color: #fff;
  background-image: var(--logo-url);
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(76%, 280px) min(70%, 112px);
}

.logo-image-tile::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 52%);
}

.logo-symbol {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--orange));
}

.media-section {
  background:
    linear-gradient(135deg, rgba(16, 23, 34, 0.98), rgba(20, 58, 61, 0.96)),
    radial-gradient(circle at 80% 10%, rgba(255, 183, 3, 0.18), transparent 22rem);
  color: #fff;
}

.media-section .lead {
  color: rgba(255, 255, 255, 0.76);
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.video-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: #fff;
  background: rgba(16, 23, 34, 0.56);
  backdrop-filter: blur(12px);
  font-weight: 850;
}

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

.gallery-tile {
  position: relative;
  overflow: hidden;
  min-height: 285px;
  border-radius: var(--radius);
  background: #101722;
  box-shadow: 0 16px 36px rgba(16, 23, 34, 0.12);
}

.gallery-tile.wide {
  grid-column: span 2;
}

.gallery-tile img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-tile:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.gallery-tile figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  background: rgba(16, 23, 34, 0.7);
  backdrop-filter: blur(12px);
  font-weight: 850;
}

.map {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: var(--radius);
  filter: saturate(0.92);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 850;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(135deg, #101722, #14213d 62%, #113f40);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 0.9fr;
  gap: 42px;
  padding: 88px 0;
}

.site-footer .logo-mark {
  box-shadow: none;
}

.site-footer strong,
.site-footer h3 {
  color: #fff;
}

.site-footer a {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer a:hover {
  color: #fff;
  transform: translateX(3px);
}

.copyright {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  gap: 10px;
}

.float-btn {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 28px rgba(16, 23, 34, 0.22);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 0 0 6px rgba(25, 164, 99, 0.15), 0 20px 38px rgba(16, 23, 34, 0.26);
}

.up-btn {
  background: var(--navy);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.up-btn.show {
  opacity: 1;
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

@keyframes buttonBob {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -3px;
  }
}

@media (max-width: 1366px) {
  .container {
    width: min(1120px, calc(100% - 48px));
  }

  h1,
  .hero-title {
    max-width: min(100%, 860px);
    font-size: clamp(2.55rem, 5vw, 4.4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  }

  .hero {
    min-height: 780px;
  }

  .hero-slide {
    padding: 136px 0 104px;
  }

  .counter-card {
    padding: 28px 22px;
  }

  .section {
    padding: 96px 0;
  }
}

@media (max-width: 1280px) {
  .container {
    width: min(1080px, calc(100% - 48px));
  }

  h1,
  .hero-title {
    max-width: min(100%, 800px);
    font-size: clamp(2.45rem, 4.7vw, 4.1rem);
  }

  .hero {
    min-height: 760px;
  }

  .hero-slide {
    padding: 128px 0 98px;
  }

  .hero p {
    max-width: min(100%, 660px);
  }

  .counter-card strong {
    font-size: clamp(2rem, 4vw, 3.15rem);
  }
}

@media (max-width: 1120px) {
  .nav-wrap {
    min-height: 88px;
    gap: 12px;
  }

  .brand-logo {
    width: 178px;
    height: 56px;
    padding: 7px 9px;
  }

  .nav-links {
    gap: 4px;
    padding: 5px;
  }

  .nav-links a {
    padding: 9px 10px;
    font-size: 0.93rem;
  }

  .nav-actions .btn {
    display: none;
  }

  .lang-toggle,
  .menu-toggle {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 1040px) {
  .hero {
    min-height: 760px;
  }

  .hero-slide {
    padding: 130px 0 88px;
  }

  h1,
  .hero-title {
    max-width: min(100%, 720px);
    font-size: clamp(2.3rem, 5.4vw, 3.55rem);
  }

  .hero p {
    max-width: min(100%, 660px);
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(16, 23, 34, 0.96);
    backdrop-filter: blur(18px);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    color: #fff;
    padding: 12px;
  }

  .split,
  .contact-grid,
  .product-showcase {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4,
  .product-grid,
  .steps,
  .counter-grid,
  .logo-cloud,
  .trust-grid,
  .footer-grid,
  .gallery-grid,
  .best-seller-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .nav-wrap {
    gap: 16px;
  }

  .product-gallery-panel {
    min-height: 470px;
  }

  .top-picks {
    grid-template-columns: 1fr;
  }

  .top-picks-intro {
    min-height: auto;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    min-height: 720px;
  }

  .logo {
    gap: 8px;
    font-size: 0.95rem;
  }

  .brand-logo {
    width: 158px;
    height: 50px;
    padding: 6px 8px;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
  }

  .logo small {
    display: none;
  }

  .hero-slide {
    padding: 150px 0 92px;
  }

  h1,
  .hero-title {
    max-width: 100%;
    font-size: clamp(2.15rem, 10vw, 2.55rem);
    line-height: 1.08;
  }

  .grid-3,
  .grid-4,
  .product-grid,
  .steps,
  .counter-grid,
  .logo-cloud,
  .trust-grid,
  .footer-grid,
  .stats,
  .gallery-grid,
  .best-seller-grid,
  .product-feature-list {
    grid-template-columns: 1fr;
  }

  .product-gallery-panel {
    min-height: 430px;
    padding: 32px 44px 100px;
  }

  .product-info-panel {
    padding: 34px 24px;
  }

  .mini-thumb {
    width: 72px;
    height: 52px;
  }

  .gallery-arrow {
    width: 38px;
    height: 38px;
  }

  .gallery-arrow:first-of-type {
    left: 12px;
  }

  .gallery-arrow:last-of-type {
    right: 12px;
  }

  .top-picks {
    padding: 18px;
  }

  .pick-track {
    grid-auto-columns: minmax(170px, 78%);
  }

  .gallery-tile.wide {
    grid-column: span 1;
  }

  .trust-item,
  .trust-item:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 82px 0;
  }

  .banner {
    padding: 42px 24px;
  }

  .contact-form {
    padding: 22px;
  }
}
