:root {
  --black: #000000;
  --ink: #111111;
  --gray-900: #222222;
  --gray-700: #555555;
  --gray-500: #777777;
  --gray-200: #e5e5e5;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  --yellow: #ffd200;
  --yellow-dark: #f2b900;
  --red: #d71920;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

button {
  font: inherit;
}

.notice-bar {
  display: flex;
  gap: 42px;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  overflow: hidden;
  padding: 8px 18px;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.notice-bar span:first-child {
  color: var(--yellow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--gray-200);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.header-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 74px;
  padding: 0 clamp(18px, 4vw, 64px);
}

.brand {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: lowercase;
}

.utility-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.utility-actions button,
.utility-actions a {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 8px;
}

.utility-actions button:hover,
.utility-actions a:hover,
.nav-links a:hover {
  color: var(--red);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 44px);
  min-height: 46px;
  border-top: 1px solid var(--gray-200);
  font-size: 14px;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(300px, 0.85fr);
  min-height: 680px;
  background:
    radial-gradient(circle at 23% 35%, rgba(255, 210, 0, 0.25), transparent 25%),
    linear-gradient(180deg, #f7f7f7 0%, #e9e9e9 100%);
}

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 560px;
  padding: 52px;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 13% 4% 10% 10%;
  border-radius: 50%;
  background: rgba(255, 210, 0, 0.28);
  filter: blur(16px);
}

.mirror-device {
  position: relative;
  z-index: 2;
  width: min(92%, 720px);
  height: clamp(190px, 23vw, 260px);
  border: 14px solid var(--black);
  border-radius: 22px;
  background: linear-gradient(90deg, #050505, #222222);
  box-shadow: 0 28px 45px rgba(0, 0, 0, 0.26);
  animation: product-float 5s ease-in-out infinite;
}

.mirror-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 210, 0, 0.5) 49%, rgba(255, 210, 0, 0.5) 51%, transparent 51%),
    linear-gradient(180deg, #303030 0%, #121212 56%, #2a2a2a 100%);
}

.mirror-screen strong {
  position: absolute;
  right: 22px;
  bottom: 20px;
  color: var(--yellow);
  font-size: 34px;
}

.rec-dot {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.7s infinite;
}

.lane {
  position: absolute;
  bottom: -24px;
  width: 2px;
  height: 190px;
  background: rgba(255, 255, 255, 0.58);
  transform-origin: bottom;
}

.lane.center {
  left: 50%;
  height: 130px;
  background: var(--yellow);
  animation: road 1.3s linear infinite;
}

.lane.left {
  left: 34%;
  transform: rotate(15deg);
}

.lane.right {
  right: 34%;
  transform: rotate(-15deg);
}

.rear-camera {
  position: absolute;
  right: 13%;
  bottom: 18%;
  z-index: 3;
  display: grid;
  width: 116px;
  height: 82px;
  place-items: center;
  border: 10px solid var(--black);
  border-radius: 14px;
  background: #2a2a2a;
  box-shadow: var(--shadow);
}

.rear-camera span {
  width: 34px;
  height: 34px;
  border: 7px solid #050505;
  border-radius: 50%;
  background: var(--yellow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(22px, 5vw, 78px) 70px 22px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.25;
}

p {
  color: var(--gray-700);
  line-height: 1.62;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  font-size: 18px;
}

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

.button,
.add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 2px;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button {
  padding: 0 30px;
}

.primary,
.add-button {
  background: var(--yellow);
  color: var(--black);
}

.primary:hover,
.add-button:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}

.secondary {
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
}

.secondary:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}

.service-strip article {
  min-height: 94px;
  padding: 22px 28px;
  border-right: 1px solid var(--gray-200);
  text-align: center;
}

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

.service-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.service-strip span {
  color: var(--gray-500);
  font-size: 13px;
}

.collection-section,
.sale-section,
.compare-section,
.accessory-section,
.reviews-section,
.support-section,
.faq-section {
  padding: clamp(52px, 7vw, 96px) clamp(18px, 5vw, 78px);
}

.section-title {
  margin-bottom: 30px;
  text-align: center;
}

.section-title.row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
}

.view-all {
  color: var(--red);
  font-weight: 900;
}

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

.collection-grid a {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  padding: 24px;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.collection-grid a:hover,
.product-card:hover,
.accessory-grid article:hover,
.support-grid a:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.collection-visual {
  position: relative;
  display: grid;
  width: 100%;
  height: 160px;
  margin-bottom: 22px;
  place-items: center;
}

.collection-visual::before,
.product-visual::before {
  content: "";
  display: block;
  border: 9px solid var(--black);
  background: linear-gradient(90deg, #262626, #111111);
}

.mirror-shape::before {
  width: 78%;
  height: 56px;
  border-radius: 10px;
}

.compact-shape::before {
  width: 45%;
  height: 86px;
  border-radius: 12px;
}

.truck-shape::before {
  width: 62%;
  height: 62px;
  border-radius: 12px;
}

.accessory-shape::before {
  width: 68px;
  height: 68px;
  border-radius: 50%;
}

.collection-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.collection-grid span {
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.5;
}

.sale-section,
.accessory-section,
.faq-section {
  background: var(--gray-100);
}

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

.product-card {
  position: relative;
  display: flex;
  min-height: 530px;
  flex-direction: column;
  border: 1px solid var(--gray-200);
  background: var(--white);
  padding: 16px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.discount {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
}

.product-visual {
  display: grid;
  height: 205px;
  margin-bottom: 18px;
  place-items: center;
  background: linear-gradient(180deg, #eeeeee, #fafafa);
}

.product-visual.long::before {
  width: 78%;
  height: 56px;
  border-radius: 10px;
}

.product-visual.slim::before {
  height: 44px;
}

.product-visual.small::before {
  width: 48%;
  height: 92px;
  border-radius: 12px;
}

.product-visual.kit::before {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}

.product-card p {
  font-size: 14px;
}

.stars {
  margin-top: auto;
  color: var(--yellow-dark);
  font-size: 13px;
  font-weight: 900;
}

.stars span {
  color: var(--ink);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 12px 0 14px;
}

.price-row strong {
  color: var(--red);
  font-size: 24px;
}

.price-row del {
  color: var(--gray-500);
  font-size: 14px;
}

.add-button {
  width: 100%;
}

.feature-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(360px, 1.2fr);
  gap: 38px;
  align-items: center;
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 78px);
}

.feature-hero.dark {
  background: var(--black);
  color: var(--white);
}

.feature-hero.dark p:not(.eyebrow) {
  color: #d5d5d5;
}

.feature-device {
  display: grid;
  min-height: 420px;
  place-items: center;
}

.split-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(92%, 760px);
  height: clamp(240px, 32vw, 390px);
  overflow: hidden;
  border: 16px solid var(--white);
  border-radius: 18px;
  background: #202020;
}

.split-screen span {
  position: relative;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 210, 0, 0.72) 49%, rgba(255, 210, 0, 0.72) 51%, transparent 51%),
    linear-gradient(180deg, #444444, #111111);
}

.split-screen span + span {
  border-left: 2px solid var(--white);
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.35) 49%, rgba(255, 255, 255, 0.35) 51%, transparent 51%),
    linear-gradient(180deg, #1f1f1f, #050505);
}

.compare-section {
  background: var(--white);
}

.compare-table {
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.table-row {
  display: grid;
  grid-template-columns: 1.05fr repeat(4, 1fr);
}

.table-row span {
  min-height: 58px;
  padding: 18px;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  font-size: 14px;
}

.table-row span:last-child {
  border-right: 0;
}

.table-row.head span {
  background: var(--black);
  color: var(--white);
  font-weight: 900;
}

.table-row span:nth-child(3) {
  background: rgba(255, 210, 0, 0.16);
}

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

.accessory-grid article,
.review-grid article,
.support-grid a {
  border: 1px solid var(--gray-200);
  background: var(--white);
  padding: 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.accessory-grid article span {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  place-items: center;
  background: var(--yellow);
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
}

.accessory-grid strong,
.support-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.reviews-section {
  background: var(--black);
  color: var(--white);
}

.reviews-section h2 {
  color: var(--white);
}

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

.review-grid article {
  border-color: #2a2a2a;
  background: #151515;
}

.review-grid strong {
  color: var(--yellow);
}

.review-grid p {
  color: #eeeeee;
}

.review-grid span {
  color: #bbbbbb;
  font-size: 13px;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(420px, 1.3fr);
  gap: 30px;
  background: var(--white);
}

.support-copy {
  align-self: start;
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--gray-200);
  background: var(--white);
}

.faq-list details + details {
  margin-top: 12px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  padding: 20px 24px;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 46px clamp(18px, 5vw, 78px);
  background: var(--black);
  color: var(--white);
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 36px;
  line-height: 1;
}

.site-footer p {
  max-width: 460px;
  color: #cfcfcf;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-weight: 800;
}

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes product-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 14px rgba(215, 25, 32, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(215, 25, 32, 0);
  }
}

@keyframes road {
  from {
    transform: translateY(-24px);
    opacity: 0.3;
  }
  to {
    transform: translateY(86px);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .product-grid,
  .collection-grid,
  .accessory-grid,
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero,
  .feature-hero,
  .support-section {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 10px clamp(18px, 5vw, 78px) 60px;
  }
}

@media (max-width: 760px) {
  .notice-bar {
    justify-content: flex-start;
    overflow-x: auto;
  }

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

  .brand {
    justify-self: center;
    font-size: 34px;
  }

  .menu-button {
    display: block;
  }

  .utility-actions button {
    display: none;
  }

  .nav-links {
    display: none;
    align-items: flex-start;
    padding: 18px;
  }

  .site-header.menu-open .nav-links {
    display: grid;
    justify-content: stretch;
    gap: 16px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 430px;
    padding: 34px 18px;
  }

  .service-strip,
  .product-grid,
  .collection-grid,
  .accessory-grid,
  .review-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .section-title.row,
  .site-footer {
    display: block;
  }

  .compare-table {
    overflow-x: auto;
  }

  .table-row {
    min-width: 860px;
  }
}

/* Dark immersive direction */
:root {
  --night: #050607;
  --night-2: #0b0d10;
  --night-3: #11151a;
  --mist: #aab0b8;
  --aqua: #69d7ff;
  --glass: rgba(255, 255, 255, 0.07);
  --soft-line: rgba(255, 255, 255, 0.1);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

body {
  background:
    radial-gradient(circle at 20% 6%, rgba(105, 215, 255, 0.15), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(255, 210, 0, 0.12), transparent 22%),
    linear-gradient(180deg, var(--night) 0%, var(--night-2) 38%, #050505 100%);
  color: var(--white);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(255, 255, 255, 0.045) 45%, transparent 46% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 90px);
  opacity: 0.45;
}

p,
.collection-grid span,
.support-grid span,
.service-strip span {
  color: var(--mist);
}

.notice-bar {
  justify-content: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #000000;
}

.notice-bar span {
  animation: ticker 18s linear infinite;
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 7, 0.78);
}

.brand,
.utility-actions button,
.utility-actions a,
.nav-links a {
  color: var(--white);
}

.menu-button span {
  background: var(--white);
}

.nav-links {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  grid-template-columns: minmax(320px, 1.08fr) minmax(300px, 0.92fr);
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 47%, rgba(105, 215, 255, 0.18), transparent 28%),
    radial-gradient(circle at 64% 42%, rgba(255, 210, 0, 0.12), transparent 20%),
    linear-gradient(135deg, #020303 0%, #11161c 48%, #050505 100%);
}

.hero::after,
.feature-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--night-2));
}

.hero-media img {
  position: relative;
  z-index: 2;
  width: min(96%, 820px);
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.55));
  animation: hero-drift 7s ease-in-out infinite;
}

.hero-media::before {
  inset: 12% 3% 10% 5%;
  border-radius: 42%;
  background:
    radial-gradient(circle, rgba(105, 215, 255, 0.18), transparent 52%),
    radial-gradient(circle at 72% 50%, rgba(255, 210, 0, 0.16), transparent 35%);
  filter: blur(28px);
  animation: aura 8s ease-in-out infinite;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-copy p:not(.eyebrow) {
  color: #c8cdd4;
}

.secondary {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.service-strip,
.collection-section,
.sale-section,
.compare-section,
.accessory-section,
.support-section,
.faq-section {
  position: relative;
  border: 0;
  background: linear-gradient(180deg, rgba(9, 11, 14, 0.96), rgba(5, 6, 7, 0.98));
}

.service-strip {
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 78px);
}

.service-strip article {
  border: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(12px);
}

.service-strip strong,
.collection-grid strong,
.product-card h3,
.accessory-grid strong,
.support-grid strong,
.faq-list summary {
  color: var(--white);
}

.collection-grid,
.product-grid,
.accessory-grid,
.review-grid,
.support-grid {
  gap: 14px;
}

.collection-grid a,
.product-card,
.accessory-grid article,
.review-grid article,
.support-grid a,
.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028));
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.collection-grid a {
  min-height: 300px;
}

.collection-grid a:hover,
.product-card:hover,
.accessory-grid article:hover,
.support-grid a:hover {
  border-color: rgba(105, 215, 255, 0.24);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.collection-visual::before,
.product-visual::before {
  border-color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(90deg, #080a0d, #222b34);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
}

.sale-section {
  overflow: hidden;
}

.sale-section::before,
.accessory-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(105, 215, 255, 0.08), transparent),
    radial-gradient(circle at 12% 22%, rgba(255, 210, 0, 0.08), transparent 22%);
  animation: slow-pan 15s ease-in-out infinite alternate;
}

.product-card {
  min-height: 540px;
}

.product-visual {
  position: relative;
  overflow: hidden;
  height: 230px;
  background: radial-gradient(circle at 50% 50%, rgba(105, 215, 255, 0.18), rgba(255, 255, 255, 0.035) 54%, transparent 76%);
}

.product-visual::before {
  display: none;
}

.product-visual img {
  width: 112%;
  height: 112%;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.45));
  transform: translateY(3px);
  transition: transform 0.35s ease;
}

.product-card:hover .product-visual img {
  transform: translateY(-7px) scale(1.025);
}

.stars {
  color: var(--aqua);
}

.stars span {
  color: var(--white);
}

.feature-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 45%, rgba(105, 215, 255, 0.2), transparent 27%),
    linear-gradient(180deg, #050607 0%, #0c1117 50%, #050607 100%);
}

.feature-device img {
  width: min(96%, 780px);
  max-height: 520px;
  object-fit: contain;
  border-radius: 26px;
  filter: drop-shadow(0 35px 80px rgba(0, 0, 0, 0.55));
  animation: product-float 6s ease-in-out infinite;
}

.compare-table {
  border: 0;
  background: rgba(255, 255, 255, 0.04);
}

.table-row span {
  border-color: rgba(255, 255, 255, 0.065);
  color: var(--mist);
}

.table-row.head span {
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.table-row span:nth-child(3) {
  background: rgba(105, 215, 255, 0.08);
  color: var(--white);
}

.reviews-section {
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 210, 0, 0.12), transparent 28%),
    linear-gradient(180deg, #050607, #000000);
}

.review-grid {
  animation: subtle-slide 13s ease-in-out infinite alternate;
}

.faq-list details {
  overflow: hidden;
}

.site-footer {
  background: linear-gradient(180deg, #050607, #000000);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-160px);
  }
}

@keyframes hero-drift {
  0%,
  100% {
    transform: translate3d(0, var(--scroll-shift, 0px), 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, calc(var(--scroll-shift, 0px) - 14px), 0) rotate(-0.6deg);
  }
}

@keyframes aura {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.78;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes slow-pan {
  from {
    transform: translateX(-4%);
  }
  to {
    transform: translateX(4%);
  }
}

@keyframes subtle-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-18px);
  }
}

@media (max-width: 760px) {
  .hero-media img {
    width: 115%;
  }

  .service-strip {
    padding: 0;
  }

  .review-grid {
    animation: none;
  }
}

/* Warm commercial balance: dark + cream + orange, closer to the reference store */
:root {
  --cream: #fff7df;
  --cream-2: #fff2bf;
  --warm-white: #fffdf6;
  --orange: #ff8a00;
  --orange-deep: #ef5f00;
  --coffee: #201915;
}

body {
  background:
    radial-gradient(circle at 18% 4%, rgba(255, 210, 0, 0.24), transparent 24%),
    radial-gradient(circle at 84% 14%, rgba(255, 138, 0, 0.18), transparent 22%),
    linear-gradient(180deg, #100d0a 0%, #16120f 28%, #fff7df 58%, #100d0a 100%);
}

body::before {
  background:
    linear-gradient(115deg, transparent 0 43%, rgba(255, 242, 191, 0.11) 44%, transparent 45% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 92px);
}

.notice-bar {
  background: linear-gradient(90deg, #0a0806, #2b1605, #0a0806);
}

.notice-bar span:first-child,
.brand,
.site-footer strong {
  color: var(--yellow);
}

.site-header {
  background: rgba(18, 13, 9, 0.78);
}

.hero {
  background:
    radial-gradient(circle at 26% 48%, rgba(255, 210, 0, 0.22), transparent 28%),
    radial-gradient(circle at 69% 39%, rgba(255, 138, 0, 0.16), transparent 22%),
    linear-gradient(135deg, #080706 0%, #211814 52%, #0b0907 100%);
}

.hero::after {
  background: linear-gradient(180deg, transparent, #1a130f);
}

.eyebrow,
.view-all {
  color: var(--orange);
}

.primary,
.add-button,
.accessory-grid article span {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #120c05;
}

.primary:hover,
.add-button:hover {
  background: linear-gradient(135deg, #ffe16a, var(--orange-deep));
}

.secondary {
  border-color: rgba(255, 247, 223, 0.56);
  background: rgba(255, 247, 223, 0.08);
}

.service-strip {
  background: linear-gradient(180deg, #1a130f, var(--cream));
}

.service-strip article {
  background: rgba(255, 253, 246, 0.86);
  color: var(--coffee);
  backdrop-filter: blur(10px);
}

.service-strip strong,
.service-strip span {
  color: var(--coffee);
}

.collection-section {
  background:
    radial-gradient(circle at 10% 22%, rgba(255, 138, 0, 0.16), transparent 24%),
    linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
  color: var(--coffee);
}

.collection-section .section-title h2,
.collection-grid strong {
  color: var(--coffee);
}

.collection-grid a {
  border-color: rgba(32, 25, 21, 0.08);
  background: linear-gradient(180deg, #ffffff, #fff4ce);
  color: var(--coffee);
  box-shadow: 0 18px 36px rgba(94, 60, 17, 0.08);
}

.collection-grid span {
  color: #6e5b47;
}

.collection-visual::before {
  border-color: #1d1714;
  background: linear-gradient(90deg, #19130f, #4c3824);
}

.sale-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 210, 0, 0.2), transparent 26%),
    linear-gradient(180deg, #fff8df 0%, #fffdf6 100%);
  color: var(--coffee);
}

.sale-section .section-title h2,
.product-card h3 {
  color: var(--coffee);
}

.sale-section::before,
.accessory-section::before {
  background:
    linear-gradient(90deg, transparent, rgba(255, 138, 0, 0.13), transparent),
    radial-gradient(circle at 12% 22%, rgba(255, 210, 0, 0.2), transparent 22%);
}

.product-card {
  border-color: rgba(32, 25, 21, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: var(--coffee);
  box-shadow: 0 20px 42px rgba(92, 61, 26, 0.1);
}

.product-card p {
  color: #6b5d4c;
}

.product-visual {
  background:
    radial-gradient(circle at 55% 48%, rgba(255, 210, 0, 0.22), transparent 34%),
    linear-gradient(180deg, #fff8df, #ffffff);
}

.discount {
  background: linear-gradient(135deg, var(--orange-deep), var(--red));
}

.stars {
  color: var(--orange-deep);
}

.stars span {
  color: var(--coffee);
}

.price-row strong {
  color: var(--orange-deep);
}

.feature-hero {
  background:
    radial-gradient(circle at 73% 45%, rgba(105, 215, 255, 0.18), transparent 27%),
    radial-gradient(circle at 23% 18%, rgba(255, 138, 0, 0.2), transparent 24%),
    linear-gradient(180deg, #160f0a 0%, #080706 52%, #17110c 100%);
}

.feature-hero::after {
  background: linear-gradient(180deg, transparent, var(--cream));
}

.compare-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
  color: var(--coffee);
}

.compare-section .section-title h2 {
  color: var(--coffee);
}

.compare-table {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 48px rgba(92, 61, 26, 0.09);
}

.table-row span {
  border-color: rgba(32, 25, 21, 0.08);
  color: #594d40;
}

.table-row.head span {
  background: #1b1410;
  color: #fffdf6;
}

.table-row span:nth-child(3) {
  background: rgba(255, 210, 0, 0.23);
  color: var(--coffee);
}

.accessory-section,
.faq-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 210, 0, 0.18), transparent 22%),
    linear-gradient(180deg, var(--warm-white), var(--cream));
  color: var(--coffee);
}

.accessory-section .section-title h2,
.faq-section .section-title h2,
.accessory-grid strong,
.faq-list summary {
  color: var(--coffee);
}

.accessory-grid article,
.faq-list details {
  border-color: rgba(32, 25, 21, 0.08);
  background: rgba(255, 255, 255, 0.68);
  color: var(--coffee);
}

.accessory-grid p,
.faq-list p {
  color: #6b5d4c;
}

.reviews-section {
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 210, 0, 0.16), transparent 24%),
    radial-gradient(circle at 84% 70%, rgba(255, 138, 0, 0.13), transparent 26%),
    linear-gradient(180deg, #17110c, #080706);
}

.review-grid article {
  border-color: rgba(255, 247, 223, 0.09);
  background: linear-gradient(180deg, rgba(255, 247, 223, 0.09), rgba(255, 247, 223, 0.035));
}

.review-grid article {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  padding: 0;
}

.review-grid article img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.55s ease;
}

.review-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.02) 0%, rgba(8, 7, 6, 0.2) 42%, rgba(8, 7, 6, 0.88) 100%),
    radial-gradient(circle at 18% 20%, rgba(255, 210, 0, 0.13), transparent 28%);
}

.review-grid article div {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 460px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.review-grid article:hover img {
  transform: scale(1.075);
}

.review-grid strong {
  color: var(--yellow);
}

.support-section {
  background:
    linear-gradient(180deg, #fff7df 0%, #fffdf6 48%, #17110c 100%);
  color: var(--coffee);
}

.support-copy h2,
.support-grid strong {
  color: var(--coffee);
}

.support-grid a {
  border-color: rgba(32, 25, 21, 0.08);
  background: rgba(255, 255, 255, 0.74);
  color: var(--coffee);
}

.support-grid span {
  color: #6b5d4c;
}

.site-footer {
  background: linear-gradient(180deg, #17110c, #050403);
}

@media (max-width: 760px) {
  .service-strip {
    background: var(--cream);
  }
}

/* Reduce yellow usage: keep yellow only as small label/button accents */
:root {
  --accent-yellow: #e6aa00;
  --clean-white: #ffffff;
  --paper: #f7f7f4;
  --paper-2: #eeeeea;
  --soft-ink: #191817;
}

body {
  background:
    radial-gradient(circle at 18% 4%, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at 84% 14%, rgba(255, 138, 0, 0.09), transparent 22%),
    linear-gradient(180deg, #100d0a 0%, #16120f 30%, #f7f7f4 58%, #100d0a 100%);
}

.notice-bar span:first-child,
.brand,
.site-footer strong {
  color: var(--clean-white);
}

.notice-bar span:first-child {
  display: inline-flex;
  align-items: center;
  border-radius: 2px;
  background: var(--accent-yellow);
  color: var(--clean-white);
  padding: 4px 9px;
}

.hero {
  background:
    radial-gradient(circle at 26% 48%, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 69% 39%, rgba(255, 138, 0, 0.09), transparent 22%),
    linear-gradient(135deg, #080706 0%, #211814 52%, #0b0907 100%);
}

.hero-media::before {
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.84), rgba(8, 7, 6, 0.34) 42%, rgba(8, 7, 6, 0.08) 72%),
    linear-gradient(180deg, rgba(8, 7, 6, 0.18), rgba(8, 7, 6, 0.78));
}

.eyebrow,
.view-all {
  color: var(--orange-deep);
}

.primary,
.add-button,
.accessory-grid article span,
.discount {
  background: var(--accent-yellow);
  color: var(--clean-white);
}

.primary:hover,
.add-button:hover {
  background: #c99000;
  color: var(--clean-white);
}

.service-strip {
  background: linear-gradient(180deg, #1a130f, var(--paper));
}

.collection-section,
.compare-section,
.accessory-section,
.faq-section {
  background: linear-gradient(180deg, var(--paper) 0%, var(--clean-white) 100%);
}

.collection-grid a {
  background: linear-gradient(180deg, var(--clean-white), var(--paper-2));
}

.sale-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 138, 0, 0.08), transparent 26%),
    linear-gradient(180deg, var(--paper) 0%, var(--clean-white) 100%);
}

.sale-section::before,
.accessory-section::before {
  background:
    linear-gradient(90deg, transparent, rgba(255, 138, 0, 0.07), transparent),
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.18), transparent 22%);
}

.product-visual {
  background:
    radial-gradient(circle at 55% 48%, rgba(255, 138, 0, 0.08), transparent 34%),
    linear-gradient(180deg, #f7f7f4, #ffffff);
}

.product-card::after {
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.02), rgba(8, 7, 6, 0.16) 44%, rgba(8, 7, 6, 0.86)),
    radial-gradient(circle at 55% 35%, rgba(255, 138, 0, 0.08), transparent 32%);
}

.product-card .stars,
.product-card .stars span,
.product-card .price-row strong {
  color: var(--clean-white);
}

.feature-hero {
  background:
    radial-gradient(circle at 73% 45%, rgba(105, 215, 255, 0.12), transparent 27%),
    radial-gradient(circle at 23% 18%, rgba(255, 138, 0, 0.1), transparent 24%),
    linear-gradient(180deg, #160f0a 0%, #080706 52%, #17110c 100%);
}

.feature-hero::after {
  background: linear-gradient(180deg, transparent, var(--paper));
}

.table-row span:nth-child(3) {
  background: rgba(230, 170, 0, 0.12);
  color: var(--soft-ink);
}

.reviews-section {
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at 84% 70%, rgba(255, 138, 0, 0.1), transparent 26%),
    linear-gradient(180deg, #17110c, #080706);
}

.review-grid article::after {
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.02) 0%, rgba(8, 7, 6, 0.2) 42%, rgba(8, 7, 6, 0.88) 100%),
    radial-gradient(circle at 18% 20%, rgba(255, 138, 0, 0.08), transparent 28%);
}

.review-grid strong {
  display: inline-flex;
  width: fit-content;
  background: var(--accent-yellow);
  color: var(--clean-white);
  padding: 5px 9px;
}

.support-section {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--clean-white) 48%, #17110c 100%);
}

@media (max-width: 760px) {
  .service-strip {
    background: var(--paper);
  }
}

/* Full-bleed product-led layout: image first, text overlays */
.hero {
  display: block;
  min-height: calc(100vh - 120px);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  min-height: 0;
  padding: 0;
}

.hero-media::before {
  inset: 0;
  z-index: 2;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.84), rgba(8, 7, 6, 0.34) 42%, rgba(8, 7, 6, 0.08) 72%),
    linear-gradient(180deg, rgba(8, 7, 6, 0.18), rgba(8, 7, 6, 0.78));
  filter: none;
  animation: none;
}

.hero-media img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
  animation: hero-kenburns 16s ease-in-out infinite alternate;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(760px, calc(100% - 36px));
  min-height: calc(100vh - 120px);
  justify-content: flex-end;
  padding: 0 0 clamp(56px, 8vw, 104px) clamp(22px, 6vw, 84px);
}

.hero-copy h1 {
  text-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
}

.hero-copy p:not(.eyebrow) {
  color: rgba(255, 253, 246, 0.84);
}

.service-strip {
  position: relative;
  z-index: 4;
  margin-top: 0;
}

.sale-section {
  padding-right: 0;
  padding-left: 0;
}

.sale-section .section-title {
  padding: 0 clamp(18px, 5vw, 78px);
}

.product-grid {
  grid-template-columns: repeat(4, minmax(280px, 1fr));
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 clamp(18px, 5vw, 78px) 12px;
}

.product-card {
  min-height: clamp(520px, 62vw, 680px);
  overflow: hidden;
  scroll-snap-align: start;
  border: 0;
  background: #17110c;
  color: var(--white);
  padding: 0;
  box-shadow: none;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.02), rgba(8, 7, 6, 0.16) 44%, rgba(8, 7, 6, 0.86)),
    radial-gradient(circle at 55% 35%, rgba(255, 138, 0, 0.08), transparent 32%);
}

.product-visual {
  position: absolute;
  inset: 0;
  height: auto;
  margin: 0;
  background: #17110c;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.96;
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.02);
}

.product-card:hover .product-visual img {
  transform: scale(1.075);
}

.product-card .discount,
.product-card h3,
.product-card p,
.product-card .stars,
.product-card .price-row,
.product-card .add-button {
  position: relative;
  z-index: 2;
}

.product-card .discount {
  top: 22px;
  left: 22px;
}

.product-card h3 {
  margin-top: auto;
  padding: 0 24px;
  color: var(--white);
  font-size: 22px;
}

.product-card p {
  padding: 0 24px;
  color: rgba(255, 253, 246, 0.76);
}

.product-card .stars,
.product-card .price-row {
  padding-right: 24px;
  padding-left: 24px;
}

.product-card .stars,
.product-card .stars span {
  color: rgba(255, 253, 246, 0.88);
}

.product-card .price-row strong {
  color: var(--white);
}

.product-card .price-row del {
  color: rgba(255, 253, 246, 0.55);
}

.product-card .add-button {
  width: auto;
  margin: 0 24px 24px;
}

.feature-hero {
  display: block;
  min-height: 760px;
  padding: 0;
  isolation: isolate;
}

.feature-device {
  position: absolute;
  inset: 0;
  min-height: 0;
}

.feature-device::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(15, 10, 6, 0.86), rgba(15, 10, 6, 0.36) 45%, rgba(15, 10, 6, 0.12)),
    linear-gradient(180deg, rgba(15, 10, 6, 0.08), rgba(15, 10, 6, 0.76));
}

.feature-device img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  filter: saturate(1.08) contrast(1.04);
  animation: hero-kenburns 18s ease-in-out infinite alternate;
}

.feature-copy {
  position: relative;
  z-index: 3;
  width: min(680px, calc(100% - 36px));
  padding: clamp(70px, 12vw, 140px) 0 0 clamp(22px, 6vw, 84px);
}

.feature-copy p:not(.eyebrow) {
  color: rgba(255, 253, 246, 0.78);
}

.collection-grid a,
.accessory-grid article,
.support-grid a,
.faq-list details {
  border-width: 0;
}

@keyframes hero-kenburns {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08);
  }
}

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

  .hero-copy {
    padding: 0 18px 54px;
  }

  .product-grid {
    grid-template-columns: repeat(4, minmax(82vw, 1fr));
    padding-right: 18px;
    padding-left: 18px;
  }

  .feature-hero {
    min-height: 720px;
  }

  .feature-copy {
    padding: 70px 18px 0;
  }
}

/* Final brand palette: sea fishing + technology + ocean */
:root {
  --ocean-950: #04151f;
  --ocean-900: #082331;
  --ocean-800: #0d3544;
  --ocean-700: #12546a;
  --reef: #18c6b6;
  --reef-soft: #c9fff6;
  --foam: #f6fbfb;
  --mist-blue: #d9e8ec;
  --titanium: #a9b7bc;
  --coral: #ff6b4a;
  --coral-deep: #e84f31;
  --sand: #eef0ea;
  --accent-yellow: var(--reef);
}

body {
  background:
    radial-gradient(circle at 18% 5%, rgba(24, 198, 182, 0.18), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(255, 107, 74, 0.1), transparent 22%),
    linear-gradient(180deg, var(--ocean-950) 0%, var(--ocean-900) 32%, var(--foam) 58%, var(--ocean-950) 100%);
  color: var(--foam);
}

body::before {
  background:
    linear-gradient(115deg, transparent 0 43%, rgba(201, 255, 246, 0.09) 44%, transparent 45% 100%),
    repeating-linear-gradient(90deg, rgba(246, 251, 251, 0.024) 0 1px, transparent 1px 92px);
}

.notice-bar {
  background: linear-gradient(90deg, #031017, var(--ocean-800), #031017);
}

.notice-bar span:first-child,
.discount,
.review-grid strong,
.primary,
.add-button,
.accessory-grid article span {
  background: var(--coral);
  color: #ffffff;
}

.primary:hover,
.add-button:hover {
  background: var(--coral-deep);
}

.brand,
.site-footer strong {
  color: var(--foam);
}

.site-header {
  background: rgba(4, 21, 31, 0.78);
}

.hero {
  background:
    radial-gradient(circle at 24% 46%, rgba(24, 198, 182, 0.22), transparent 29%),
    radial-gradient(circle at 72% 38%, rgba(255, 107, 74, 0.12), transparent 22%),
    linear-gradient(135deg, #031017 0%, var(--ocean-800) 52%, #06151d 100%);
}

.hero-media::before {
  background:
    linear-gradient(90deg, rgba(3, 16, 23, 0.86), rgba(3, 16, 23, 0.38) 44%, rgba(3, 16, 23, 0.1) 74%),
    linear-gradient(180deg, rgba(3, 16, 23, 0.16), rgba(3, 16, 23, 0.78));
}

.hero::after {
  background: linear-gradient(180deg, transparent, var(--ocean-950));
}

.eyebrow,
.view-all {
  color: var(--reef);
}

.secondary {
  border-color: rgba(246, 251, 251, 0.52);
  background: rgba(246, 251, 251, 0.08);
}

.service-strip {
  background: linear-gradient(180deg, var(--ocean-950), var(--foam));
}

.service-strip article {
  background: rgba(246, 251, 251, 0.9);
  color: var(--ocean-950);
}

.service-strip strong,
.service-strip span {
  color: var(--ocean-950);
}

.collection-section,
.sale-section,
.compare-section,
.accessory-section,
.faq-section {
  background:
    radial-gradient(circle at 10% 18%, rgba(24, 198, 182, 0.1), transparent 22%),
    linear-gradient(180deg, var(--foam) 0%, #ffffff 100%);
  color: var(--ocean-950);
}

.collection-section .section-title h2,
.sale-section .section-title h2,
.compare-section .section-title h2,
.accessory-section .section-title h2,
.faq-section .section-title h2,
.collection-grid strong,
.product-card h3,
.accessory-grid strong,
.faq-list summary {
  color: var(--ocean-950);
}

.collection-grid a,
.accessory-grid article,
.faq-list details,
.support-grid a {
  background: linear-gradient(180deg, #ffffff, var(--foam));
  color: var(--ocean-950);
}

.collection-grid span,
.product-card p,
.accessory-grid p,
.faq-list p,
.support-grid span {
  color: #52686f;
}

.collection-visual::before {
  border-color: var(--ocean-950);
  background: linear-gradient(90deg, var(--ocean-950), var(--ocean-700));
}

.sale-section::before,
.accessory-section::before {
  background:
    linear-gradient(90deg, transparent, rgba(24, 198, 182, 0.08), transparent),
    radial-gradient(circle at 12% 22%, rgba(255, 107, 74, 0.07), transparent 22%);
}

.product-card {
  background: var(--ocean-900);
}

.product-card::after {
  background:
    linear-gradient(180deg, rgba(4, 21, 31, 0.02), rgba(4, 21, 31, 0.18) 44%, rgba(4, 21, 31, 0.9)),
    radial-gradient(circle at 55% 35%, rgba(24, 198, 182, 0.12), transparent 32%);
}

.product-visual {
  background: var(--ocean-900);
}

.product-card .stars,
.product-card .stars span,
.product-card .price-row strong {
  color: var(--foam);
}

.feature-hero {
  background:
    radial-gradient(circle at 73% 45%, rgba(24, 198, 182, 0.18), transparent 28%),
    radial-gradient(circle at 23% 18%, rgba(255, 107, 74, 0.11), transparent 24%),
    linear-gradient(180deg, var(--ocean-900) 0%, var(--ocean-950) 52%, #031017 100%);
}

.feature-device::after {
  background:
    linear-gradient(90deg, rgba(3, 16, 23, 0.88), rgba(3, 16, 23, 0.4) 45%, rgba(3, 16, 23, 0.12)),
    linear-gradient(180deg, rgba(3, 16, 23, 0.08), rgba(3, 16, 23, 0.76));
}

.feature-hero::after {
  background: linear-gradient(180deg, transparent, var(--foam));
}

.table-row.head span {
  background: var(--ocean-950);
  color: var(--foam);
}

.table-row span {
  color: #4d6269;
}

.table-row span:nth-child(3) {
  background: rgba(24, 198, 182, 0.12);
  color: var(--ocean-950);
}

.reviews-section {
  background:
    radial-gradient(circle at 18% 8%, rgba(24, 198, 182, 0.14), transparent 24%),
    radial-gradient(circle at 84% 70%, rgba(255, 107, 74, 0.12), transparent 26%),
    linear-gradient(180deg, var(--ocean-900), var(--ocean-950));
}

.review-grid article::after {
  background:
    linear-gradient(180deg, rgba(4, 21, 31, 0.02) 0%, rgba(4, 21, 31, 0.24) 42%, rgba(4, 21, 31, 0.9) 100%),
    radial-gradient(circle at 18% 20%, rgba(24, 198, 182, 0.1), transparent 28%);
}

.support-section {
  background:
    linear-gradient(180deg, var(--foam) 0%, #ffffff 48%, var(--ocean-950) 100%);
  color: var(--ocean-950);
}

.support-copy h2,
.support-grid strong {
  color: var(--ocean-950);
}

.site-footer {
  background: linear-gradient(180deg, var(--ocean-950), #01080c);
}

@media (max-width: 760px) {
  .service-strip {
    background: var(--foam);
  }
}


.contact-section {
  padding: clamp(52px, 7vw, 96px) clamp(18px, 5vw, 78px);
  background:
    radial-gradient(circle at 80% 20%, rgba(24, 198, 182, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--foam) 100%);
  color: var(--ocean-950);
}

.contact-section .section-title h2 {
  color: var(--ocean-950);
}

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

.contact-grid a {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: flex-end;
  border: 0;
  background: linear-gradient(180deg, #ffffff, var(--foam));
  color: var(--ocean-950);
  padding: 24px;
  box-shadow: 0 18px 42px rgba(4, 21, 31, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-grid a:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(4, 21, 31, 0.14);
}

.contact-grid strong {
  margin-bottom: 8px;
  color: var(--ocean-950);
  font-size: 18px;
}

.contact-grid span {
  color: #52686f;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
