:root {
  --ink: #07124c;
  --white: #ffffff;
  --cyan: #1ee0ff;
  --blue: #1378ff;
  --violet: #8f34f4;
  --purple: #5b2dc9;
  --panel: rgba(14, 32, 96, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: #f7faff;
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

button {
  font: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-shell {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 34px clamp(22px, 5.4vw, 104px) 14px;
  background:
    radial-gradient(circle at 81% 37%, rgba(207, 62, 255, 0.48), transparent 25%),
    radial-gradient(circle at 48% 42%, rgba(0, 198, 255, 0.32), transparent 27%),
    linear-gradient(128deg, #020831 0%, #06175b 44%, #111e73 63%, #4a168e 100%);
  isolation: isolate;
  animation: gradientShift 12s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 175px;
  background: linear-gradient(180deg, transparent, rgba(2, 8, 49, 0.4));
  pointer-events: none;
  z-index: -1;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.72;
  pointer-events: none;
  z-index: -1;
}

.hero-glow-a {
  width: 380px;
  height: 180px;
  right: 7%;
  top: 175px;
  background: rgba(187, 75, 255, 0.34);
  animation: driftA 9s ease-in-out infinite alternate;
}

.hero-glow-b {
  width: 420px;
  height: 130px;
  left: 34%;
  top: 276px;
  background: rgba(15, 209, 255, 0.25);
  animation: driftB 11s ease-in-out infinite alternate;
}

.soundwave {
  position: absolute;
  inset: 170px -5vw auto auto;
  width: min(980px, 68vw);
  height: 300px;
  pointer-events: none;
  z-index: -1;
}

.soundwave span {
  position: absolute;
  inset: 0;
  border-top: 2px solid rgba(79, 209, 255, 0.34);
  border-radius: 50%;
  transform: rotate(-4deg) translateY(calc(var(--i, 0) * 22px));
  filter: drop-shadow(0 0 10px rgba(31, 224, 255, 0.74));
  animation: wavePulse 4.8s ease-in-out infinite;
}

.soundwave span:nth-child(1) { --i: 0; border-color: rgba(31, 224, 255, 0.9); }
.soundwave span:nth-child(2) { --i: 1; border-color: rgba(53, 152, 255, 0.7); }
.soundwave span:nth-child(3) { --i: 2; border-color: rgba(161, 85, 255, 0.7); }
.soundwave span:nth-child(4) { --i: 3; border-color: rgba(234, 83, 255, 0.55); }
.soundwave span:nth-child(5) { --i: 4; border-color: rgba(104, 215, 255, 0.3); }

.nav {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 3;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-width: 0;
  transition: transform 0.24s ease;
}

.brand:hover {
  transform: translateY(-2px);
}

.brand-mark {
  width: 42px;
  color: #8f61ff;
}

.brand-mark svg {
  width: 42px;
  height: 49px;
  stroke-width: 4.5;
  filter: drop-shadow(0 0 8px rgba(105, 112, 255, 0.7));
}

.brand strong {
  display: block;
  font-size: 1.86rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  font-size: 0.56rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand span:last-child {
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3.3vw, 56px);
  justify-content: center;
}

.nav-links a {
  position: relative;
  padding: 12px 0;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.22s ease, transform 0.22s ease;
}

.nav-links a:hover {
  color: #b7dfff;
  transform: translateY(-2px);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #9b4dff, #31a2ff);
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  gap: 21px;
}

.nav-actions button {
  position: relative;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-actions svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 12px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.22s ease, background 0.22s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: 10px;
  min-height: 555px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 58px;
  animation: fadeUp 0.8s ease both;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 9px 17px;
  border-radius: 999px;
  background: linear-gradient(100deg, #651fd1, #2386ff);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  max-width: 660px;
  margin: 0;
  font-size: 5.2rem;
  line-height: 0.99;
  letter-spacing: 0;
  font-weight: 900;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.24);
}

h1 span {
  color: #9f43ff;
}

.lead {
  max-width: 560px;
  margin: 27px 0 34px;
  font-size: 1.33rem;
  line-height: 1.55;
  font-weight: 500;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 28px 0 31px;
  border-radius: 8px;
  background: linear-gradient(105deg, #9b31ed, #078fff);
  box-shadow: 0 16px 34px rgba(27, 123, 255, 0.28);
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(27, 123, 255, 0.36);
}

.cta svg,
.product-card a svg {
  width: 24px;
  height: 24px;
}

.hero-product {
  position: relative;
  min-height: 560px;
  perspective: 1100px;
}

.hero-product::before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 48px;
  width: min(760px, 62vw);
  height: 380px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 46% 55%, rgba(255, 255, 255, 0.32), transparent 24%),
    radial-gradient(ellipse at 54% 50%, rgba(50, 192, 255, 0.38), transparent 48%),
    radial-gradient(ellipse at 76% 48%, rgba(188, 68, 255, 0.28), transparent 58%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-device {
  position: absolute;
  right: 0;
  bottom: 28px;
  width: min(780px, 64vw);
  max-width: none;
  filter:
    drop-shadow(0 58px 48px rgba(0, 0, 0, 0.58))
    drop-shadow(0 22px 20px rgba(0, 0, 0, 0.26))
    drop-shadow(0 0 34px rgba(60, 174, 255, 0.46))
    saturate(1.25)
    contrast(1.16);
  mix-blend-mode: normal;
  animation: floatDevice 5.8s ease-in-out infinite;
  transform-origin: 50% 70%;
  z-index: 1;
}

.listen-badge {
  position: absolute;
  right: 0;
  left: auto;
  top: 72px;
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(200, 180, 255, 0.76);
  border-radius: 50%;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background: rgba(4, 12, 44, 0.74);
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.08), 0 16px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  z-index: 2;
  animation: floatBadge 4.8s ease-in-out infinite;
}

.listen-badge svg {
  width: 32px;
  height: 32px;
  color: #d8cdfd;
  stroke-width: 3.4;
}

.listen-badge strong {
  font-size: 0.74rem;
  line-height: 1.25;
}

.listen-badge i {
  width: 42px;
  height: 10px;
  border-top: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: -3px;
  padding: 26px 24px;
  border: 1px solid rgba(126, 151, 255, 0.28);
  border-radius: 20px;
  background: rgba(7, 19, 75, 0.62);
  box-shadow: inset 0 1px 18px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  animation: fadeUp 0.9s ease 0.18s both;
}

.benefits article {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  border-right: 1px solid rgba(141, 159, 255, 0.34);
}

.benefits article:last-child {
  border-right: 0;
}

.benefits span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7437d7, #2368d8);
}

.benefits svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.8;
}

.benefits h2 {
  margin: 0 0 6px;
  font-size: 0.96rem;
  text-transform: uppercase;
}

.benefits p {
  margin: 0;
  max-width: 230px;
  line-height: 1.36;
}

.products {
  padding: 32px clamp(22px, 5.4vw, 104px) 28px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, #f3f8ff);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 24px;
  text-align: center;
}

.section-title span {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #315bff);
}

.section-title span:last-child {
  background: linear-gradient(90deg, #7d40fa, transparent);
}

.section-title h2 {
  margin: 0;
  font-size: 1.42rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title em {
  color: #7e34f2;
  font-style: normal;
}

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

.product-card {
  position: relative;
  min-height: 205px;
  padding: 21px 22px;
  overflow: hidden;
  border-radius: 14px;
  color: #fff;
  isolation: isolate;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 44px rgba(22, 49, 125, 0.22);
}

.product-card > div {
  position: relative;
  z-index: 2;
  max-width: 61%;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto -24px -64px auto;
  width: 210px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  filter: blur(3px);
  z-index: -1;
}

.product-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  text-transform: uppercase;
}

.product-card p {
  max-width: 172px;
  margin: 0;
  line-height: 1.34;
}

.product-card a {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 39px;
  height: 39px;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.violet { background: linear-gradient(132deg, #6a37d0 0%, #9e81ee 100%); }
.blue { background: linear-gradient(132deg, #557fe5 0%, #78a3f8 100%); }
.lavender { background: linear-gradient(132deg, #8251db 0%, #c4b0ef 100%); }
.sky { background: linear-gradient(132deg, #3979df 0%, #94c5ff 100%); }

.card-image {
  position: absolute;
  display: block;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.retro-image {
  right: 0;
  bottom: 8px;
  width: 168px;
  height: 122px;
  object-fit: contain;
  object-position: 54% 55%;
  filter:
    drop-shadow(0 20px 16px rgba(18, 11, 72, 0.42))
    drop-shadow(0 0 16px rgba(255, 255, 255, 0.2))
    saturate(1.18)
    contrast(1.18);
  mix-blend-mode: normal;
}

.rechargeable-image {
  right: 0;
  bottom: 8px;
  width: 170px;
  height: 122px;
  object-fit: contain;
  object-position: 49% 54%;
  border-radius: 24px;
  filter:
    drop-shadow(0 18px 18px rgba(10, 28, 80, 0.38))
    drop-shadow(0 0 14px rgba(255, 255, 255, 0.16))
    saturate(1.12)
    contrast(1.12);
}

.invisible-image {
  right: 0;
  bottom: 8px;
  width: 168px;
  height: 122px;
  object-fit: contain;
  object-position: 52% 57%;
  border-radius: 22px;
  filter:
    drop-shadow(0 18px 18px rgba(58, 21, 90, 0.35))
    drop-shadow(0 0 14px rgba(255, 255, 255, 0.18))
    saturate(1.1)
    contrast(1.1);
}

.accessories-image {
  right: 0;
  bottom: 8px;
  width: 174px;
  height: 124px;
  object-fit: contain;
  object-position: 54% 58%;
  border-radius: 22px;
  filter:
    drop-shadow(0 18px 18px rgba(7, 46, 108, 0.34))
    drop-shadow(0 0 14px rgba(255, 255, 255, 0.18))
    saturate(1.1)
    contrast(1.1);
}

.case {
  position: absolute;
  right: 24px;
  bottom: 18px;
  width: 150px;
  height: 86px;
  border-radius: 22px 22px 31px 31px;
  background: linear-gradient(#030611, #17233a);
  box-shadow: inset 0 8px 14px rgba(255, 255, 255, 0.16), 0 14px 22px rgba(0, 0, 0, 0.24);
}

.case::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: -34px;
  height: 52px;
  border-radius: 28px 28px 12px 12px;
  background: linear-gradient(#05070f, #2e3d56);
  box-shadow: inset 0 -8px 14px rgba(255, 255, 255, 0.12);
}

.case span {
  position: absolute;
  bottom: 18px;
  width: 38px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d7dde7, #172239 54%, #56677d);
}

.case span:first-child { left: 42px; }
.case span:nth-child(2) { right: 42px; }
.case i {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 46px;
  height: 4px;
  border-radius: 99px;
  background: #46ee7b;
  transform: translateX(-50%);
}

.in-ear {
  position: absolute;
  right: 35px;
  bottom: 34px;
  display: flex;
  gap: 14px;
}

.in-ear span {
  width: 68px;
  height: 78px;
  border-radius: 56% 44% 48% 52%;
  background: radial-gradient(circle at 40% 42%, #3a1d26 0 10%, transparent 11%), linear-gradient(135deg, #f0ae83, #784443 67%, #38191e);
  box-shadow: inset 8px 8px 14px rgba(255, 255, 255, 0.28), 0 14px 18px rgba(0, 0, 0, 0.18);
  transform: rotate(-9deg);
}

.in-ear span:nth-child(2) {
  transform: rotate(8deg) scale(0.88);
}

.brush {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 174px;
  height: 92px;
}

.brush::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 48px;
  width: 128px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #062967, #011230);
  transform: rotate(-34deg);
  box-shadow: 0 12px 15px rgba(0, 0, 0, 0.2);
}

.brush span {
  position: absolute;
  right: 16px;
  top: 1px;
  width: 54px;
  height: 66px;
  border-radius: 5px;
  background: repeating-linear-gradient(90deg, #041a43 0 8px, #9fc4ff 8px 10px);
  transform: rotate(-34deg);
}

.brush i {
  position: absolute;
  right: 2px;
  bottom: 3px;
  width: 76px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 55% 46%, #fff 0 8%, #bfd7ff 9% 100%);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
  padding: 22px 34px;
  border-radius: 14px;
  background: rgba(229, 238, 255, 0.82);
}

.service-strip article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.service-strip svg {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  color: #2169ff;
  stroke-width: 1.8;
}

.service-strip p {
  margin: 0;
  color: #0d2b82;
  font-size: 0.84rem;
  line-height: 1.35;
}

.service-strip strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.home-story,
.page-shell {
  padding: 34px clamp(22px, 5.4vw, 104px);
}

.home-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 42px;
  align-items: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 22%, rgba(30, 224, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #f3f8ff, #ffffff);
}

.home-story h2,
.text-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.home-story p:not(.eyebrow),
.text-band p,
.detail-card p,
.value-grid p,
.contact-panel p {
  color: #425381;
  line-height: 1.65;
}

.secondary-cta {
  margin-top: 14px;
  color: #fff;
}

.mini-gallery {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 18px;
}

.mini-gallery img {
  width: 100%;
  min-height: 210px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 44px rgba(24, 52, 120, 0.16);
}

.mini-gallery img:first-child {
  grid-row: span 2;
  min-height: 438px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(22px, 5.4vw, 104px);
  color: #dfeaff;
  background: #03092d;
}

.site-footer strong {
  color: #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.site-footer a {
  color: #73dfff;
  font-weight: 900;
  text-transform: uppercase;
}

.inner-page {
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 0%, rgba(137, 68, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #edf5ff, #ffffff 42%, #f7faff);
}

.page-shell {
  overflow: hidden;
}

.page-nav {
  margin-bottom: 28px;
  padding: 22px 26px;
  padding-bottom: 30px;
  color: #fff;
  border: 1px solid rgba(159, 197, 255, 0.18);
  border-radius: 24px;
  background: rgba(5, 14, 55, 0.82);
  box-shadow: 0 18px 42px rgba(8, 23, 78, 0.14);
  backdrop-filter: blur(14px);
}

.page-nav .nav-links a:hover {
  color: #fff;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 38px;
  align-items: center;
  min-height: 520px;
  padding: 54px;
  overflow: hidden;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 74% 35%, rgba(154, 72, 255, 0.34), transparent 26%),
    linear-gradient(132deg, #020831, #07175f 52%, #5a20a3);
  box-shadow: 0 32px 70px rgba(10, 28, 94, 0.22);
  animation: fadeUp 0.7s ease both;
}

.page-hero img {
  width: min(100%, 680px);
  justify-self: end;
  filter: drop-shadow(0 35px 34px rgba(0, 0, 0, 0.36));
  animation: floatDevice 6s ease-in-out infinite;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.detail-grid,
.value-grid,
.contact-layout {
  display: grid;
  gap: 24px;
  margin-top: 30px;
}

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

.detail-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 300px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(75, 112, 190, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 50px rgba(29, 59, 120, 0.11);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 62px rgba(29, 59, 120, 0.16);
}

.detail-card img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  border-radius: 18px;
}

.detail-card span,
.value-grid span,
.contact-panel span {
  color: #7b3ff1;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-card h2,
.value-grid h2,
.contact-panel a {
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: 1.55rem;
}

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

.value-grid article,
.text-band,
.contact-panel,
.contact-form {
  padding: 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 46px rgba(29, 59, 120, 0.1);
}

.text-band {
  margin-top: 30px;
  max-width: 980px;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
}

.contact-panel a {
  display: block;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #10215f;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(61, 92, 160, 0.2);
  border-radius: 12px;
  color: var(--ink);
  background: #f8fbff;
  font: inherit;
  font-size: 16px;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.about-page {
  color: var(--ink);
  background:
    radial-gradient(circle at 74% 5%, rgba(126, 72, 255, 0.16), transparent 25%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f4f8ff 100%);
}

.about-shell {
  overflow: hidden;
}

.about-top {
  position: relative;
  min-height: 690px;
  padding: 26px clamp(22px, 5.4vw, 104px) 120px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 8, 49, 0.94) 0%, rgba(4, 15, 76, 0.82) 42%, rgba(4, 15, 76, 0.22) 100%),
    url("about-hero.png") center / cover;
  isolation: isolate;
}

.about-top::before {
  content: "";
  position: absolute;
  inset: auto 0 68px;
  height: 170px;
  background:
    radial-gradient(ellipse at 44% 55%, rgba(159, 70, 255, 0.9), transparent 5%),
    radial-gradient(ellipse at 50% 55%, rgba(38, 118, 255, 0.54), transparent 39%),
    repeating-linear-gradient(100deg, transparent 0 18px, rgba(116, 82, 255, 0.13) 18px 20px);
  opacity: 0.76;
  clip-path: ellipse(78% 46% at 50% 70%);
  pointer-events: none;
  z-index: -1;
}

.about-top::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -1px;
  height: 130px;
  background: #fff;
  clip-path: ellipse(58% 78% at 50% 100%);
}

.about-nav {
  display: flex;
  justify-content: space-between;
  color: #fff;
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 660px;
  padding-top: 110px;
  animation: fadeUp 0.8s ease both;
}

.about-hero-copy h1 {
  font-size: clamp(3rem, 5.5vw, 5rem);
}

.about-hero-copy h1 span {
  color: #a261ff;
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.16rem;
  line-height: 1.75;
}

.about-mission {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 46px;
  align-items: center;
  padding: 34px clamp(22px, 5.4vw, 104px) 52px;
}

.mission-copy h2,
.about-team h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.08;
}

.mission-copy p,
.about-team p {
  color: #40507c;
  line-height: 1.75;
}

.mission-copy strong {
  display: block;
  margin-top: 28px;
  color: #06155b;
  font-family: cursive;
  font-size: 1.5rem;
}

.mission-copy span {
  color: #4d5c8a;
  font-size: 0.92rem;
}

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

.mission-cards article {
  min-height: 245px;
  padding: 28px 22px;
  border: 1px solid rgba(82, 108, 185, 0.12);
  border-radius: 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 46px rgba(30, 55, 120, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.mission-cards article:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 58px rgba(30, 55, 120, 0.14);
}

.mission-cards svg {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  color: #8a4cff;
  stroke-width: 1.8;
}

.mission-cards h3 {
  margin: 0 0 10px;
  color: #11218a;
}

.mission-cards p {
  margin: 0;
  color: #40507c;
  line-height: 1.55;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 clamp(22px, 5.4vw, 104px) 34px;
  padding: 34px 28px;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 50%, rgba(161, 68, 255, 0.42), transparent 22%),
    repeating-linear-gradient(112deg, transparent 0 18px, rgba(116, 82, 255, 0.12) 18px 20px),
    linear-gradient(125deg, #030a3c, #06177b 56%, #2d0c78);
  box-shadow: 0 26px 60px rgba(20, 42, 120, 0.22);
}

.about-stats article {
  padding: 14px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.about-stats article:last-child {
  border-right: 0;
}

.about-stats span {
  display: block;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  font-weight: 900;
}

.about-stats p {
  margin: 8px auto 0;
  max-width: 190px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}

.about-team {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 54px;
  align-items: center;
  padding: 0 clamp(22px, 5.4vw, 104px) 34px;
}

.about-team img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 26px 58px rgba(30, 55, 120, 0.16);
}

.about-certs {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 18px;
  align-items: center;
  margin: 0 clamp(22px, 5.4vw, 104px) 44px;
  padding: 24px 34px;
  border: 1px solid rgba(82, 108, 185, 0.16);
  border-radius: 18px;
  color: #12237a;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(30, 55, 120, 0.08);
}

.about-certs strong,
.about-certs span {
  font-weight: 900;
  text-align: center;
}

.about-certs strong {
  text-align: left;
}

.contact-page {
  color: var(--ink);
  background: #f7faff;
}

.contact-top {
  position: relative;
  min-height: 560px;
  padding: 24px clamp(22px, 5.4vw, 104px) 100px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 46%, rgba(132, 72, 255, 0.42), transparent 24%),
    radial-gradient(circle at 56% 58%, rgba(19, 120, 255, 0.3), transparent 28%),
    linear-gradient(130deg, #02072e 0%, #06145f 52%, #230578 100%);
  overflow: hidden;
  isolation: isolate;
}

.contact-top::before {
  content: "";
  position: absolute;
  right: -12%;
  top: 120px;
  width: min(920px, 74vw);
  height: 300px;
  border-radius: 50%;
  border-top: 1px solid rgba(60, 183, 255, 0.55);
  background:
    repeating-linear-gradient(105deg, transparent 0 16px, rgba(126, 80, 255, 0.14) 16px 18px),
    radial-gradient(ellipse at 48% 54%, rgba(92, 83, 255, 0.32), transparent 55%);
  transform: rotate(-6deg);
  filter: drop-shadow(0 0 22px rgba(105, 92, 255, 0.45));
  z-index: -1;
}

.contact-top::after {
  content: "";
  position: absolute;
  left: -7%;
  right: -7%;
  bottom: -2px;
  height: 96px;
  background: #f7faff;
  clip-path: ellipse(56% 72% at 50% 100%);
}

.contact-nav {
  display: flex;
  justify-content: space-between;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 40px;
  align-items: center;
  padding-top: 70px;
}

.contact-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
  animation: fadeUp 0.8s ease both;
}

.contact-hero-copy h1 {
  font-size: clamp(3.2rem, 6vw, 5.1rem);
}

.contact-hero-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.14rem;
  line-height: 1.75;
}

.contact-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
}

.contact-benefits article {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-benefits span,
.contact-info-card article > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: linear-gradient(135deg, #9138ff, #145eff);
  box-shadow: 0 14px 26px rgba(53, 59, 228, 0.32);
}

.contact-benefits svg,
.contact-info-card svg,
.contact-assurances svg,
.send-button svg {
  width: 26px;
  height: 26px;
}

.contact-benefits strong,
.contact-benefits small {
  display: block;
}

.contact-benefits small {
  color: rgba(255, 255, 255, 0.82);
}

.contact-visual {
  position: relative;
  min-height: 310px;
}

.neon-ear {
  position: absolute;
  right: 105px;
  top: -12px;
  width: 260px;
  height: 260px;
  color: #b489ff;
  filter: drop-shadow(0 0 18px rgba(164, 91, 255, 0.95)) drop-shadow(0 0 34px rgba(64, 98, 255, 0.7));
  animation: floatBadge 5s ease-in-out infinite;
}

.neon-ear svg {
  width: 100%;
  height: 100%;
  stroke-width: 12;
}

.neon-chat {
  position: absolute;
  right: 0;
  top: 128px;
  width: 170px;
  height: 118px;
  border: 10px solid #8f6cff;
  border-radius: 42px;
  filter: drop-shadow(0 0 18px rgba(164, 91, 255, 0.95)) drop-shadow(0 0 34px rgba(64, 98, 255, 0.7));
  animation: floatDevice 5.7s ease-in-out infinite;
}

.neon-chat::after {
  content: "";
  position: absolute;
  left: 42px;
  bottom: -28px;
  width: 38px;
  height: 38px;
  border-left: 10px solid #8f6cff;
  border-bottom: 10px solid #8f6cff;
  border-radius: 0 0 0 16px;
  transform: rotate(-18deg);
}

.neon-chat span {
  position: absolute;
  top: 45px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #d8c8ff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.9);
}

.neon-chat span:nth-child(1) { left: 42px; }
.neon-chat span:nth-child(2) { left: 76px; }
.neon-chat span:nth-child(3) { left: 110px; }

.contact-main {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 28px;
  padding: 0 clamp(22px, 5.4vw, 104px) 28px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

.message-card,
.contact-info-card,
.map-card,
.contact-assurances {
  border: 1px solid rgba(74, 99, 165, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(27, 50, 110, 0.12);
}

.message-card,
.contact-info-card {
  padding: 30px;
}

.message-card h2,
.contact-info-card h2 {
  margin: 0 0 22px;
  color: #07124c;
  font-size: 1.65rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-grid label {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-height: 58px;
  padding: 16px;
  border: 1px solid rgba(67, 87, 145, 0.16);
  border-radius: 9px;
  background: #f8faff;
}

.form-grid label svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: #27376f;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 0;
  outline: 0;
  color: #142058;
  background: transparent;
  font: inherit;
  font-size: 16px;
}

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

.privacy-check {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 22px 0;
  color: #4c5b87;
  font-size: 0.92rem;
}

.send-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 60px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(105deg, #9b31ed, #078fff);
  box-shadow: 0 18px 34px rgba(27, 123, 255, 0.24);
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.send-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(27, 123, 255, 0.34);
}

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

.contact-info-card article {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid rgba(67, 87, 145, 0.14);
}

.contact-info-card article:last-child {
  border-bottom: 0;
}

.contact-info-card small {
  display: block;
  color: #56638f;
}

.contact-info-card strong {
  color: #07124c;
  font-size: 1.04rem;
}

.contact-info-card p {
  margin: 0;
  color: #344273;
  text-align: right;
  line-height: 1.45;
}

.contact-info-card .green {
  background: linear-gradient(135deg, #2fd175, #23b35f);
}

.contact-info-card .blue-dot {
  background: linear-gradient(135deg, #315bff, #1126ca);
}

.map-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.55) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.55) 1px, transparent 1px),
    linear-gradient(135deg, #dff5e8, #f1f4fa 46%, #d9ebff);
  background-size: 58px 58px, 58px 58px, auto;
}

.map-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(25deg, transparent 43%, rgba(167, 150, 130, 0.45) 44% 47%, transparent 48%),
    linear-gradient(145deg, transparent 45%, rgba(167, 150, 130, 0.42) 46% 49%, transparent 50%),
    radial-gradient(circle at 14% 22%, rgba(111, 209, 128, 0.32), transparent 11%),
    radial-gradient(circle at 78% 18%, rgba(111, 209, 128, 0.28), transparent 12%);
}

.map-pin {
  position: absolute;
  left: 46%;
  top: 28%;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #9b31ed, #5335f6);
  box-shadow: 0 16px 30px rgba(93, 50, 225, 0.3);
}

.map-pin svg {
  width: 34px;
  height: 34px;
}

.map-card a {
  position: absolute;
  left: 24px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: #07124c;
  background: #fff;
  box-shadow: 0 12px 24px rgba(40, 56, 110, 0.14);
  font-weight: 900;
}

.map-card a svg {
  width: 20px;
  height: 20px;
  color: #146dff;
}

.contact-assurances {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 clamp(22px, 5.4vw, 104px) 28px;
  padding: 26px;
}

.contact-assurances article {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 26px;
  border-right: 1px solid rgba(67, 87, 145, 0.16);
}

.contact-assurances article:last-child {
  border-right: 0;
}

.contact-assurances svg {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  color: #6835ff;
}

.contact-assurances strong {
  color: #07124c;
}

.contact-assurances p {
  margin: 5px 0 0;
  color: #4d5b88;
}

.contact-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, 1fr) minmax(150px, 0.8fr);
  gap: 34px;
  padding: 44px clamp(22px, 5.4vw, 104px);
  color: #dfeaff;
  background:
    radial-gradient(circle at 18% 0%, rgba(126, 72, 255, 0.24), transparent 26%),
    linear-gradient(125deg, #020831, #06145f 56%, #04072f);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand strong,
.contact-footer nav strong,
.socials strong {
  display: block;
  color: #fff;
  text-transform: uppercase;
}

.footer-brand small,
.contact-footer a {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.socials span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 14px 8px 0 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #6c4cff, #d83dbe);
  font-size: 0.78rem;
  font-weight: 900;
}

.catalog-page {
  color: var(--ink);
  background: linear-gradient(180deg, #f7faff, #ffffff);
}

.catalog-hero {
  position: relative;
  min-height: 540px;
  padding: 24px clamp(22px, 5.4vw, 104px) 84px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 48%, rgba(145, 56, 255, 0.38), transparent 24%),
    radial-gradient(circle at 52% 48%, rgba(19, 120, 255, 0.25), transparent 28%),
    linear-gradient(132deg, #020831 0%, #06145f 58%, #210572 100%);
  overflow: hidden;
  isolation: isolate;
}

.catalog-hero::before {
  content: "";
  position: absolute;
  right: -12%;
  top: 160px;
  width: min(940px, 74vw);
  height: 300px;
  border-radius: 50%;
  border-top: 1px solid rgba(89, 194, 255, 0.5);
  background:
    repeating-linear-gradient(106deg, transparent 0 16px, rgba(126, 80, 255, 0.14) 16px 18px),
    radial-gradient(ellipse at 48% 54%, rgba(92, 83, 255, 0.3), transparent 55%);
  transform: rotate(-6deg);
  filter: drop-shadow(0 0 22px rgba(105, 92, 255, 0.45));
  z-index: -1;
}

.catalog-hero::after {
  content: "";
  position: absolute;
  left: -7%;
  right: -7%;
  bottom: -2px;
  height: 86px;
  background: #f7faff;
  clip-path: ellipse(56% 72% at 50% 100%);
}

.catalog-nav {
  display: flex;
  justify-content: space-between;
}

.catalog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  gap: 34px;
  align-items: center;
  padding-top: 52px;
}

.catalog-hero h1 {
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  max-width: 660px;
}

.catalog-hero p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
  line-height: 1.6;
}

.catalog-showcase {
  position: relative;
  min-height: 370px;
}

.podium {
  position: absolute;
  bottom: 0;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 8px 8px / 20% 20% 8px 8px;
  background: linear-gradient(180deg, #6d77ff, #2722a8);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28), inset 0 20px 30px rgba(255, 255, 255, 0.12);
}

.podium::after {
  content: "";
  position: absolute;
  inset: -18px 0 auto;
  height: 54px;
  border-radius: 50%;
  background: rgba(150, 160, 255, 0.35);
}

.podium img {
  position: relative;
  z-index: 1;
  width: 260px;
  height: 250px;
  object-fit: contain;
  object-position: center bottom;
  filter:
    drop-shadow(0 36px 28px rgba(0, 0, 0, 0.48))
    drop-shadow(0 10px 14px rgba(0, 0, 0, 0.3))
    drop-shadow(0 0 22px rgba(135, 180, 255, 0.36));
  animation: floatDevice 5.6s ease-in-out infinite;
  transform-origin: 50% 76%;
}

.podium-a {
  left: 4%;
  width: 230px;
  height: 150px;
  z-index: 1;
}

.podium-b {
  left: 35%;
  width: 260px;
  height: 170px;
  background: linear-gradient(180deg, #7477ff, #2f188d);
  z-index: 2;
}

.podium-b img {
  filter:
    brightness(0.9)
    contrast(1.12)
    drop-shadow(0 38px 30px rgba(0, 0, 0, 0.54))
    drop-shadow(0 0 22px rgba(125, 145, 255, 0.36));
}

.podium-c {
  right: 2%;
  width: 140px;
  height: 110px;
  background: linear-gradient(180deg, #b36aff, #5720a8);
  z-index: 1;
}

.podium-c img {
  width: 156px;
  height: 148px;
}

.catalog-assurances {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: -50px clamp(22px, 5.4vw, 104px) 30px;
  padding: 24px 34px;
  border: 1px solid rgba(74, 99, 165, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(27, 50, 110, 0.14);
}

.catalog-assurances article {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  border-right: 1px solid rgba(67, 87, 145, 0.14);
}

.catalog-assurances article:last-child {
  border-right: 0;
}

.catalog-assurances svg {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: #5437ff;
}

.catalog-assurances strong {
  color: #07124c;
}

.catalog-assurances p {
  margin: 5px 0 0;
  color: #4d5b88;
}

.catalog-body {
  padding: 0 clamp(22px, 5.4vw, 104px) 52px;
}

.catalog-body > h2 {
  margin: 0 0 20px;
  color: #07124c;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
}

.catalog-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}

.catalog-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  border: 1px solid rgba(74, 99, 165, 0.14);
  border-radius: 12px;
  color: #07124c;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(27, 50, 110, 0.08);
  font-weight: 900;
  cursor: pointer;
}

.catalog-tabs button.active {
  color: #fff;
  background: linear-gradient(105deg, #145eff, #a744ff);
}

.catalog-tabs svg {
  width: 25px;
  height: 25px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 24px;
}

.filter-panel,
.shop-card,
.products-toolbar button {
  border: 1px solid rgba(74, 99, 165, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(27, 50, 110, 0.1);
}

.filter-panel {
  align-self: start;
  padding: 20px 18px;
}

.filter-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(67, 87, 145, 0.14);
  text-transform: uppercase;
}

.filter-head a {
  color: #573cff;
  font-size: 0.82rem;
  text-transform: none;
}

.filter-group {
  padding: 20px 0;
  border-bottom: 1px solid rgba(67, 87, 145, 0.14);
}

.filter-group:last-child {
  border-bottom: 0;
}

.filter-group h3 {
  margin: 0 0 14px;
  color: #07124c;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.filter-group label {
  display: block;
  margin: 11px 0;
  color: #41517f;
  font-size: 0.92rem;
}

.range-line {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: #e1e7f5;
}

.range-line span {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #1b58ff, #8c39ff);
}

.range-values {
  display: flex;
  justify-content: space-between;
  margin-top: 13px;
  color: #07124c;
  font-weight: 800;
}

.products-area {
  min-width: 0;
}

.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.products-toolbar strong {
  color: #07124c;
}

.products-toolbar button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  color: #07124c;
  font: inherit;
}

.products-toolbar svg {
  width: 18px;
  height: 18px;
}

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

.shop-card {
  position: relative;
  min-height: 382px;
  padding: 20px;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.shop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(27, 50, 110, 0.15);
}

.shop-card img {
  display: block;
  width: 100%;
  height: 158px;
  object-fit: contain;
  margin: 12px auto 18px;
}

.shop-card .dark-product {
  filter: brightness(0.55) contrast(1.18);
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(105deg, #8b31ff, #5438ff);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blue-badge {
  background: linear-gradient(105deg, #0a8dff, #2454ff);
}

.green-badge {
  background: linear-gradient(105deg, #18c9a9, #12aa72);
}

.heart {
  position: absolute;
  top: 15px;
  right: 16px;
  border: 0;
  color: #4160d0;
  background: transparent;
  font-size: 1.55rem;
}

.shop-card h3 {
  margin: 0 0 7px;
  color: #07124c;
}

.shop-card p {
  margin: 0 0 10px;
  color: #59678f;
}

.stars {
  color: #ff9d00;
  font-weight: 900;
}

.stars small {
  color: #52618d;
  font-weight: 700;
}

.fit-note {
  min-height: 42px;
  margin: 12px 0 4px;
  color: #52618d;
  font-size: 0.88rem;
  line-height: 1.45;
}

.features {
  display: flex;
  gap: 8px;
  margin: 14px 0 20px;
}

.features i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #135cff;
  background: #eef4ff;
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 900;
}

.product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 2px;
  padding: 0 16px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(105deg, #1b58ff, #8c39ff);
  box-shadow: 0 14px 28px rgba(75, 63, 230, 0.22);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-consult {
  display: grid;
  grid-template-columns: 150px minmax(260px, 1.1fr) repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 28px;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 50%, rgba(161, 68, 255, 0.34), transparent 22%),
    linear-gradient(125deg, #1032c8, #020f63 54%, #5a1df0);
  box-shadow: 0 24px 58px rgba(27, 50, 110, 0.18);
}

.consult-avatar {
  width: 126px;
  height: 126px;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.consult-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 28%;
}

.catalog-consult h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.55rem;
}

.catalog-consult p {
  color: rgba(255, 255, 255, 0.88);
}

.catalog-consult article {
  min-height: 150px;
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.catalog-consult article svg {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
}

.catalog-consult article strong {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes floatDeviceCentered {
  0%, 100% {
    transform: translateX(50%) translateY(0);
  }
  50% {
    transform: translateX(50%) translateY(-16px);
  }
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

@keyframes wavePulse {
  0%, 100% {
    opacity: 0.42;
  }
  50% {
    opacity: 0.96;
  }
}

@keyframes driftA {
  to {
    transform: translate(34px, -18px) scale(1.08);
  }
}

@keyframes driftB {
  to {
    transform: translate(-28px, 24px) scale(1.12);
  }
}

@keyframes gradientShift {
  to {
    background-position: 20% 0, 62% 48%, 0 0;
  }
}

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

  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  h1 {
    font-size: 4.8rem;
  }

  .hero-product {
    min-height: 500px;
  }

  .hero-device {
    right: 50%;
    bottom: 12px;
    width: min(780px, 96vw);
    transform: translateX(50%);
    animation-name: floatDeviceCentered;
  }

  .listen-badge {
    left: auto;
    right: max(0px, calc(50% - 390px));
    top: 54px;
  }

  .hero-product::before {
    right: 50%;
    width: min(720px, 94vw);
    transform: translateX(50%);
  }

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

  .home-story,
  .page-hero,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .page-hero img {
    justify-self: center;
    max-height: 420px;
    object-fit: contain;
  }

  .about-nav {
    display: grid;
  }

  .about-mission,
  .about-team {
    grid-template-columns: 1fr;
  }

  .mission-cards,
  .about-stats,
  .about-certs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-certs strong {
    grid-column: 1 / -1;
    text-align: center;
  }

  .contact-nav {
    display: grid;
  }

  .contact-hero-grid,
  .contact-main {
    grid-template-columns: 1fr;
  }

  .contact-visual {
    min-height: 260px;
  }

  .neon-ear {
    right: 160px;
  }

  .contact-assurances,
  .contact-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-assurances article:nth-child(2) {
    border-right: 0;
  }

  .catalog-nav {
    display: grid;
  }

  .catalog-hero-grid,
  .shop-layout,
  .catalog-consult {
    grid-template-columns: 1fr;
  }

  .catalog-tabs,
  .shop-grid,
  .catalog-assurances {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-showcase {
    min-height: 360px;
  }

  .catalog-assurances article:nth-child(2) {
    border-right: 0;
  }

  .catalog-consult article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    padding: 22px 0 0;
  }

  .benefits article:nth-child(2) {
    border-right: 0;
  }

  .benefits article:nth-child(n + 3) {
    margin-top: 24px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 22px 18px 12px;
  }

  .nav {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .brand {
    min-width: 0;
    max-width: 100%;
  }

  .brand strong {
    font-size: clamp(1.08rem, 5vw, 1.28rem);
    overflow-wrap: anywhere;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-cta {
    grid-column: 1 / -1;
    justify-self: stretch;
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .nav-actions button {
    width: 32px;
    height: 32px;
  }

  .nav-links {
    grid-column: 1 / -1;
    width: 100%;
    gap: 10px;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 0 8px;
    scrollbar-width: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    font-size: 0.78rem;
  }

  .nav-links a.active::after {
    left: 12px;
    right: 12px;
    bottom: 5px;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .hero-copy {
    padding-top: 26px;
  }

  h1 {
    font-size: clamp(2.35rem, 10vw, 3.12rem);
    line-height: 1.04;
  }

  .lead {
    font-size: 1.03rem;
    margin: 20px 0 24px;
  }

  .cta {
    min-height: 52px;
    padding: 0 20px;
    font-size: 0.88rem;
  }

  .hero-product {
    min-height: 300px;
    margin: 0;
    overflow: visible;
  }

  .listen-badge {
    left: auto;
    right: calc(50% - 165px);
    top: 12px;
    width: 104px;
    height: 104px;
  }

  .listen-badge svg {
    width: 25px;
    height: 25px;
  }

  .listen-badge strong {
    font-size: 0.62rem;
  }

  .listen-badge i {
    width: 34px;
    height: 8px;
  }

  .hero-device {
    right: 50%;
    bottom: 26px;
    width: min(460px, 96vw);
  }

  .hero-product::before {
    bottom: 38px;
    height: 190px;
  }

  .benefits,
  .product-grid,
  .service-strip {
    grid-template-columns: 1fr;
  }

  .home-story,
  .page-shell {
    padding: 28px 18px;
  }

  .page-nav {
    padding: 18px;
  }

  .page-hero {
    min-height: auto;
    padding: 34px 22px;
    border-radius: 22px;
  }

  .page-hero h1 {
    font-size: 2.8rem;
  }

  .mini-gallery,
  .detail-grid,
  .value-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .mini-gallery img,
  .mini-gallery img:first-child {
    min-height: 230px;
  }

  .detail-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-top {
    min-height: 620px;
    padding: 22px 18px 96px;
    background-position: 62% center;
  }

  .about-top::after {
    height: 82px;
  }

  .about-hero-copy {
    padding-top: 64px;
  }

  .about-hero-copy h1 {
    font-size: 2.85rem;
  }

  .about-hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .about-mission,
  .about-team {
    padding: 28px 18px;
  }

  .mission-cards,
  .about-stats,
  .about-certs {
    grid-template-columns: 1fr;
  }

  .about-stats,
  .about-certs {
    margin-left: 18px;
    margin-right: 18px;
  }

  .about-stats article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .about-stats article:last-child {
    border-bottom: 0;
  }

  .about-team img {
    min-height: 280px;
  }

  .contact-top {
    min-height: auto;
    padding: 22px 18px 64px;
  }

  .contact-hero-grid {
    padding-top: 34px;
    gap: 22px;
  }

  .contact-hero-copy h1 {
    font-size: 2.65rem;
  }

  .contact-benefits {
    display: grid;
    gap: 12px;
  }

  .contact-benefits article {
    padding: 14px;
  }

  .contact-visual {
    min-height: 170px;
  }

  .neon-ear {
    right: 96px;
    top: -6px;
    width: 180px;
    height: 180px;
  }

  .neon-chat {
    right: 4px;
    top: 92px;
    width: 126px;
    height: 88px;
    border-width: 8px;
  }

  .neon-chat::after {
    bottom: -22px;
    border-left-width: 8px;
    border-bottom-width: 8px;
  }

  .neon-chat span {
    top: 33px;
    width: 13px;
    height: 13px;
  }

  .neon-chat span:nth-child(1) { left: 30px; }
  .neon-chat span:nth-child(2) { left: 56px; }
  .neon-chat span:nth-child(3) { left: 82px; }

  .contact-main {
    padding: 0 18px 22px;
    margin-top: -18px;
  }

  .message-card,
  .contact-info-card {
    padding: 20px;
  }

  .message-card h2,
  .contact-info-card h2 {
    font-size: 1.35rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-grid label {
    min-height: 54px;
    padding: 14px;
  }

  .contact-info-card article {
    grid-template-columns: 54px 1fr;
  }

  .contact-info-card article p {
    grid-column: 2;
    text-align: left;
  }

  .contact-assurances,
  .contact-footer {
    grid-template-columns: 1fr;
    margin-left: 18px;
    margin-right: 18px;
  }

  .contact-assurances article {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(67, 87, 145, 0.16);
  }

  .contact-assurances article:last-child {
    border-bottom: 0;
  }

  .contact-footer {
    margin: 0;
    padding: 34px 18px;
  }

  .catalog-hero {
    min-height: auto;
    padding: 22px 18px 64px;
  }

  .catalog-hero-grid {
    padding-top: 30px;
    gap: 18px;
  }

  .catalog-hero h1 {
    font-size: clamp(2.05rem, 9.4vw, 2.65rem);
    line-height: 1.04;
  }

  .catalog-hero p {
    font-size: 1rem;
  }

  .catalog-showcase {
    min-height: 246px;
    margin: 0;
  }

  .podium-a {
    left: 0;
    width: 142px;
    height: 98px;
  }

  .podium-b {
    left: 30%;
    width: 162px;
    height: 114px;
  }

  .podium-c {
    right: 0;
    width: 92px;
    height: 76px;
  }

  .podium img {
    width: 142px;
    height: 152px;
  }

  .podium-c img {
    width: 98px;
    height: 100px;
  }

  .catalog-assurances {
    grid-template-columns: 1fr;
    margin-left: 18px;
    margin-right: 18px;
    padding: 18px;
  }

  .catalog-assurances article {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(67, 87, 145, 0.14);
  }

  .catalog-assurances article:last-child {
    border-bottom: 0;
  }

  .catalog-body {
    padding: 0 18px 34px;
  }

  .catalog-body > h2 {
    font-size: 1.55rem;
    line-height: 1.18;
  }

  .catalog-tabs {
    display: flex;
    gap: 12px;
    width: calc(100% + 18px);
    margin-right: 0;
    overflow-x: auto;
    padding: 0 18px 12px 0;
    scrollbar-width: none;
  }

  .catalog-tabs::-webkit-scrollbar {
    display: none;
  }

  .catalog-tabs button {
    flex: 0 0 auto;
    min-width: 168px;
    min-height: 50px;
    padding: 0 16px;
    font-size: 0.86rem;
  }

  .shop-layout {
    display: block;
  }

  .filter-panel {
    display: none;
  }

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

  .products-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-card {
    min-height: auto;
    padding: 18px;
  }

  .shop-card img {
    height: 132px;
    margin: 14px auto 14px;
  }

  .catalog-consult {
    padding: 24px;
  }

  .benefits {
    padding: 20px;
    gap: 20px;
  }

  .benefits article,
  .benefits article:nth-child(n) {
    margin-top: 0;
    padding: 0;
    border-right: 0;
  }

  .benefits span {
    width: 58px;
    height: 58px;
  }

  .benefits svg {
    width: 29px;
    height: 29px;
  }

  .products {
    padding: 29px 18px 24px;
  }

  .section-title {
    gap: 12px;
  }

  .section-title h2 {
    font-size: 1.14rem;
    line-height: 1.25;
  }

  .product-card {
    min-height: 184px;
    padding: 20px;
  }

  .product-card > div {
    max-width: 62%;
  }

  .product-card p {
    max-width: 170px;
    font-size: 0.92rem;
  }

  .retro-image,
  .rechargeable-image,
  .invisible-image,
  .accessories-image {
    right: 0;
    bottom: 10px;
    width: 138px;
    height: 104px;
  }

  .service-strip {
    padding: 22px;
  }

  .service-strip article {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .nav {
    gap: 10px;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-cta {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .nav-actions button {
    width: 30px;
    height: 30px;
  }

  .brand-mark,
  .brand-mark svg {
    width: 34px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.45rem;
    overflow-wrap: anywhere;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  h1 {
    font-size: 2.42rem;
  }

  .cta {
    width: 100%;
  }

  .hero-product {
    min-height: 254px;
    transform: none;
    margin: 0;
  }

  .hero-device {
    bottom: 24px;
    width: min(390px, 96vw);
  }

  .hero-product::before {
    height: 150px;
    bottom: 36px;
  }

  .home-story h2,
  .text-band h2 {
    font-size: 2rem;
  }

  .page-hero h1 {
    font-size: 2.35rem;
  }

  .about-hero-copy h1 {
    font-size: 2.25rem;
  }

  .mission-copy h2,
  .about-team h2 {
    font-size: 1.9rem;
  }

  .site-footer {
    display: grid;
  }

  .contact-hero-copy h1 {
    font-size: 2.2rem;
  }

  .neon-ear {
    right: 58px;
    width: 136px;
    height: 136px;
  }

  .neon-chat {
    width: 96px;
    height: 70px;
  }

  .catalog-hero h1 {
    font-size: 2.08rem;
  }

  .catalog-tabs button {
    justify-content: flex-start;
    padding: 0 18px;
  }

  .catalog-showcase {
    min-height: 220px;
  }

  .podium-a {
    width: 120px;
    height: 84px;
  }

  .podium-b {
    left: 29%;
    width: 134px;
    height: 96px;
  }

  .podium-c {
    width: 78px;
    height: 66px;
  }

  .podium img {
    width: 122px;
    height: 132px;
  }

  .podium-c img {
    width: 82px;
    height: 84px;
  }

  .listen-badge {
    left: auto;
    right: calc(50% - 128px);
    top: 8px;
    width: 86px;
    height: 86px;
  }

  .listen-badge strong {
    font-size: 0.54rem;
  }

  .listen-badge svg {
    width: 22px;
    height: 22px;
  }

  .product-card > div {
    max-width: 54%;
  }

  .product-card h3 {
    font-size: 0.96rem;
  }

  .product-card p {
    max-width: 132px;
    font-size: 0.84rem;
  }

  .retro-image,
  .rechargeable-image,
  .invisible-image,
  .accessories-image {
    right: 0;
    width: 118px;
    height: 94px;
  }
}

/* Final anti-crop overrides for deployed/cached styles. */
.hero-product,
.catalog-showcase,
.podium {
  overflow: visible !important;
}

.hero-device,
.podium img,
.retro-image,
.rechargeable-image,
.invisible-image,
.accessories-image,
.shop-card img {
  -webkit-mask-image: none !important;
  mask-image: none !important;
  object-fit: contain !important;
}

.hero-device {
  right: 0 !important;
  bottom: 34px !important;
  width: min(720px, 58vw) !important;
}

.podium img {
  object-position: center bottom !important;
}

@media (max-width: 1160px) {
  .hero-device {
    right: 50% !important;
    bottom: 34px !important;
    width: min(680px, 92vw) !important;
  }
}

@media (max-width: 720px) {
  .hero-product {
    min-height: 320px !important;
    margin: 0 !important;
  }

  .hero-device {
    right: 50% !important;
    bottom: 34px !important;
    width: min(430px, 92vw) !important;
  }

  .catalog-showcase {
    min-height: 280px !important;
  }
}

@media (max-width: 430px) {
  .hero-product {
    min-height: 270px !important;
  }

  .hero-device {
    bottom: 30px !important;
    width: min(360px, 92vw) !important;
  }

  .catalog-showcase {
    min-height: 235px !important;
  }
}
