﻿:root {
  --bg: #f8f8f8;
  --surface: #ffffff;
  --card: #ffffff;
  --text: #000000;
  --muted: #333333;
  --line: #dfdfdf;
  --black: #000000;
  --white: #ffffff;
  --accent: #000000;
  --accent-dark: #000000;
  --radius: 12px;
  --container: 1280px;
  --shadow-soft: 0 14px 30px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 22px 46px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #1b1b1b #e6e6e6;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #1b1b1b #ececec;
}

*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

*::-webkit-scrollbar-track {
  background: #ececec;
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2a2a2a, #111111);
  border-radius: 999px;
  border: 3px solid #ececec;
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #1c1c1c, #000000);
}

*::-webkit-scrollbar-corner {
  background: #ececec;
}

body {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 18%, rgba(0, 0, 0, 0.055) 0, rgba(0, 0, 0, 0.018) 18%, transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(0, 0, 0, 0.05) 0, rgba(0, 0, 0, 0.016) 20%, transparent 44%),
    linear-gradient(145deg, #ffffff 0%, #f8f8f8 46%, #efefef 100%);
  color: var(--text);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  overflow-x: clip;
}

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

::selection {
  background: #111111;
  color: #ffffff;
}

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

a,
button,
input,
textarea {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

.container {
  width: min(var(--container), 92vw);
  margin-inline: auto;
}

.topbar {
  background: var(--accent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 0;
  overflow: hidden;
}

.topbar a {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.topbar--ticker .topbar-ticker {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.topbar--ticker .topbar-ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 2.6rem;
  min-width: max-content;
  padding: 0.62rem 1rem;
  animation: topbarMarquee 18s linear infinite;
}

.topbar--ticker .topbar-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
}

.topbar--ticker:hover .topbar-ticker__track {
  animation-play-state: paused;
}

.nitoor-finder-tab {
  position: fixed;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 48;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.32rem;
  background: #a02424;
  color: #ffffff;
  border-radius: 10px 0 0 10px;
  padding: 0.66rem 0.4rem 0.58rem;
  border: 1px solid rgba(0, 0, 0, 0.35);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.nitoor-finder-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.14rem 0.32rem;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.nitoor-finder-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.nitoor-finder-tab:hover {
  filter: brightness(0.95);
}

@keyframes topbarMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 1.3rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .topbar--ticker .topbar-ticker__track {
    animation: none;
  }
}

.site-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: saturate(140%) blur(6px);
}

.nav-row {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.menu-toggle {
  margin-left: auto;
  display: none;
  width: 40px;
  height: 34px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: var(--accent);
  transition: transform 190ms ease, opacity 190ms ease;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
  color: #000000;
  flex-direction: row;
  text-align: left;
}

.nav-icon svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.nav-icon span {
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.02em;
}

.nav-icon-label {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #000000;
}

.nav-icon:hover {
  background: var(--bg);
  border-color: rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav a:not(.amazon-btn) {
  position: relative;
  padding: 0.3rem 0;
}

.site-nav a:not(.amazon-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:not(.amazon-btn):hover::after,
.site-nav a.active:not(.amazon-btn)::after {
  transform: scaleX(1);
}

.amazon-btn {
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 180ms ease, transform 180ms ease;
  margin-left: auto;
}

.amazon-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.about-brand-top {
  position: relative;
  padding: clamp(1.25rem, 3vw, 2.2rem) 0 clamp(1.2rem, 2.8vw, 2rem);
  background:
    radial-gradient(circle at 8% 85%, rgba(0, 0, 0, 0.06) 0 7rem, transparent 7rem),
    radial-gradient(circle at 92% 12%, rgba(0, 0, 0, 0.06) 0 7rem, transparent 7rem),
    linear-gradient(160deg, #ffffff 0%, #f5f5f5 58%, #ececec 100%);
  border-top: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
  overflow: hidden;
}

.about-brand-top .container {
  width: 100%;
  max-width: 100%;
  padding-inline: clamp(1rem, 2.6vw, 2.5rem);
}

.about-brand-top__panel {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: clamp(1rem, 2.6vw, 1.8rem) clamp(0.95rem, 2.6vw, 2rem);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 0.52rem;
}

.about-brand-top__panel::before,
.about-brand-top__panel::after {
  display: none;
}

.about-brand-top__logo {
  width: clamp(128px, 14vw, 184px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.14));
}

.about-brand-top__kicker {
  margin: 0;
  color: #4a4a4a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 800;
}

.about-brand-top__panel h2 {
  margin: 0.15rem auto 0;
  max-width: 23ch;
  font-size: clamp(1.4rem, 2.7vw, 2.35rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.about-brand-top__panel p {
  margin: 0.22rem auto 0;
  max-width: 56ch;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.3vw, 1.03rem);
}

.about-page {
  background: inherit;
}

.page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: min(86vh, 760px);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.hero-copy {
  padding: clamp(2.2rem, 6vw, 5.5rem) clamp(1.2rem, 4vw, 4.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-copy h1 {
  margin: 0.7rem 0 0.9rem;
  font-size: clamp(2.2rem, 4.4vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -0.015em;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 34ch;
  font-size: clamp(1rem, 1.3vw, 1.28rem);
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.78rem 1.22rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.86rem;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-dark:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-light {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-light:hover {
  background: var(--accent);
  color: var(--white);
}

.hero-media {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1);
  filter: saturate(1);
  transition: transform 700ms ease, filter 320ms ease;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.section {
  padding: clamp(2.9rem, 6vw, 5rem) 0;
}

@supports (content-visibility: auto) {
  main .section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
  }
}

.section h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.section h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.section-lead {
  margin: 0.65rem 0 0;
  color: var(--muted);
  max-width: 70ch;
  font-size: 1.02rem;
}

.page-hero:hover .hero-media img {
  transform: scale(1);
  filter: saturate(1.03);
}

.store-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.store-card {
  background: #efefef;
  border: 1px solid #dddddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.store-card-hover {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.store-card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.store-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f8f8f8;
}

.store-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.store-wishlist-btn {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: #222222;
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 170ms ease, background 170ms ease;
}

.store-wishlist-btn:hover {
  background: #ffffff;
  transform: scale(1.04);
}

.store-body {
  padding: 0.62rem 0.65rem 0.72rem;
  display: grid;
  gap: 0.48rem;
}

.store-body h3 {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.3;
}

.store-price-row {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  flex-wrap: wrap;
}

.store-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: #dd2520;
  line-height: 1;
}

.store-old-price {
  font-size: 0.8rem;
  color: #3a3a3a;
  text-decoration: line-through;
}

.store-discount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e1231e;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  padding: 0.32rem 0.44rem;
}

.store-cart-btn {
  width: 100%;
  border: 0;
  background: #e1231e;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 0.65rem 0.8rem;
  cursor: pointer;
  transition: filter 180ms ease, transform 180ms ease;
}

.store-card-hover .store-cart-btn {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.store-card-hover:hover .store-cart-btn {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.store-card-hover .store-cart-btn:hover,
.store-card-static .store-cart-btn:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.products-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: var(--bg);
}

.card-body {
  padding: 1rem;
}

.card h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.28;
}

.card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.featured-card {
  border: none;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 30px 60px rgba(18, 18, 18, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.featured-card .card-media {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(255, 255, 255, 0));
  padding: clamp(1.4rem, 3vw, 2.1rem);
}

.featured-card .card-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--white);
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.featured-card .card-body {
  padding: clamp(1.4rem, 2.6vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.featured-card .eyebrow {
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
}

.featured-card h3 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
}

.card-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.card-meta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.card-meta span {
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.22);
  background: rgba(0, 0, 0, 0.04);
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
}

.split-banner {
  margin-top: 2rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(360px, 1.15fr) minmax(220px, 0.78fr) minmax(220px, 0.78fr);
  min-height: clamp(360px, 42vw, 620px);
}

.split-content {
  padding: clamp(1.8rem, 4vw, 3.3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}

.split-brand {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
}

.split-brand-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #e5372d;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.34rem 1.2rem;
}

.split-brand-sub {
  margin: 0;
  color: #f0f0f0;
  font-size: 1.02rem;
  font-weight: 700;
}

.split-content h3 {
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  line-height: 1.04;
  max-width: 12ch;
}

.split-content p {
  margin: 0;
  color: #d8d8d8;
  max-width: 34ch;
  font-size: clamp(1rem, 1.35vw, 1.4rem);
}

.split-cta {
  margin-top: 0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: 1px solid #e5372d;
  background: #e5372d;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.8rem 1.3rem;
  transition: filter 180ms ease, transform 180ms ease;
}

.split-cta:hover {
  filter: brightness(0.94);
  transform: translateY(-1px);
}

.split-tile {
  position: relative;
  display: block;
  min-height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  isolation: isolate;
  background: #eeece2;
}

.split-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 4.3rem 0.35rem 0.35rem;
}

.split-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.12) 34%, rgba(0, 0, 0, 0) 56%);
  z-index: 1;
  pointer-events: none;
}

.split-tile-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: #eeece2;
  color: #141414;
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 1rem 0.6rem 0.95rem;
}

.split-caption {
  position: absolute;
  left: 1.05rem;
  right: 1.05rem;
  bottom: 1rem;
  z-index: 2;
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}


.categories-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.planet-section {
  background: var(--bg);
  padding-top: clamp(2.2rem, 5vw, 4.2rem);
  padding-bottom: clamp(2.2rem, 5vw, 4.2rem);
}

.planet-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: clamp(1.4rem, 3vw, 3.2rem);
  align-items: center;
}

.planet-media {
  position: relative;
  min-height: clamp(340px, 48vw, 620px);
  background: #efede3;
  border: 1px solid #d8d2c5;
  padding: 3.1rem 0.55rem 0.55rem;
  overflow: hidden;
}

.planet-media-badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 0.85rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.planet-collage {
  height: 100%;
  min-height: clamp(300px, 34vw, 470px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.04fr) minmax(0, 0.88fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.planet-tile {
  border: 2px solid #242424;
  border-radius: 14px;
  overflow: hidden;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}

.planet-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.planet-tile--left-top {
  grid-column: 1;
  grid-row: 1;
}

.planet-tile--left-bottom {
  grid-column: 1;
  grid-row: 2;
}

.planet-tile--center {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.planet-tile--center img {
  background: #f5f5f5;
}

.planet-tile--right-top {
  grid-column: 3;
  grid-row: 1;
}

.planet-tile--right-bottom {
  grid-column: 3;
  grid-row: 2;
}

.planet-logo-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #e5372d;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.32rem 0.95rem;
}

.planet-logo-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #1c76c5;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.34rem 0.9rem;
}

.planet-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000000 !important;
  text-shadow: none;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.planet-copy {
  display: grid;
  gap: 1rem;
  justify-items: flex-start;
}

.planet-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.planet-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.12;
  max-width: 15ch;
  color: var(--text);
}

.planet-copy p {
  margin: 0;
  max-width: 36ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  line-height: 1.5;
}

.planet-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.8rem 1.45rem;
  transition: transform 180ms ease, opacity 180ms ease;
}

.planet-cta:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.category-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.category-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: var(--bg);
}

.category-card span {
  display: block;
  padding: 0.9rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.category-card-title {
  padding-bottom: 0.28rem !important;
}

.category-card small {
  display: block;
  padding: 0 0.9rem 0.92rem;
  color: #5d5d5d;
  font-size: 0.78rem;
  line-height: 1.42;
}

.subcategories-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.subcategory-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #ffffff;
  border: 1px solid #d5d5d5;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #121212;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  transition: transform 200ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.subcategory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.11);
  border-color: #1f1f1f;
}

.subcategory-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, #f7f7f7 0%, #efefef 100%);
  padding: 0.6rem;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.subcategory-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 280ms ease;
}

.subcategory-card:hover .subcategory-media img {
  transform: scale(1.02);
}

.subcategory-body {
  display: grid;
  gap: 0.5rem;
  padding: 0.9rem 0.85rem 1rem;
}

.subcategory-body h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.25;
}

.subcategory-body p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.42;
  color: #525252;
}

.subcategory-cta {
  margin-top: 0.2rem;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.34rem 0.62rem;
}

.product-benefits {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.product-benefit {
  background: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 12px;
  padding: 0.95rem 0.9rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
}

.product-benefit h3 {
  margin: 0;
  font-size: 1rem;
}

.product-benefit p {
  margin: 0.42rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.product-benefit-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.product-info-section {
  padding-top: clamp(2rem, 5vw, 3.2rem);
}

.product-info-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.product-info-card {
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  overflow: hidden;
}

.product-info-block + .product-info-block {
  border-top: 1px solid #d9d9d9;
}

.product-info-block h3 {
  margin: 0;
  padding: 0.82rem 0.95rem;
  font-size: 1.04rem;
  background: #f2f2f2;
  border-bottom: 1px solid #d9d9d9;
}

.product-info-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.95fr);
  gap: 0.85rem;
  padding: 0.62rem 0.95rem;
  border-bottom: 1px solid #ebebeb;
}

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

.product-info-row span {
  color: #2f2f2f;
  font-weight: 600;
}

.product-info-row strong {
  font-weight: 600;
  color: #111111;
}

.product-stars {
  color: #d18b00;
  letter-spacing: 0.03em;
}

.testimonials-section {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonials-kicker {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.73rem;
  font-weight: 800;
  color: #4b4b4b;
}

.testimonials-title {
  margin: 0.45rem 0 0;
  text-align: center;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  letter-spacing: -0.015em;
  line-height: 1.08;
}

.testimonials-subtitle {
  margin: 0.9rem auto 0;
  text-align: center;
  color: var(--muted);
  max-width: 44ch;
  font-size: 1rem;
}

.testimonials-carousel {
  margin-top: 1.55rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(280px, 30vw, 390px);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem 0 0.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-slide {
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #dadada;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  min-height: 100%;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.testimonial-slide:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.testimonial-image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f6f6f6;
  padding: 0.45rem;
  border-bottom: 1px solid #e3e3e3;
}

.testimonial-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.testimonials-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.testimonials-controls {
  margin-top: 0.68rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.testimonials-arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #b6b6b6;
  background: #f0f0f0;
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.testimonials-arrow span {
  font-size: 0.92rem;
  line-height: 1;
  font-weight: 800;
}

.testimonials-arrow:hover {
  transform: translateY(-1px);
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  border: 1px solid #a4a4a4;
  border-radius: 999px;
  background: #d1d1d1;
  padding: 0;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease, border-color 180ms ease;
}

.testimonial-dot.is-active {
  width: 24px;
  background: #111111;
  border-color: #111111;
}

.testimonial-content {
  padding: 0.92rem 0.95rem 1rem;
  display: grid;
  gap: 0.62rem;
}

.testimonial-content--amazon {
  gap: 0.44rem;
}

.testimonial-stars {
  margin: 0;
  font-size: 1.22rem;
  color: #d4af37;
  letter-spacing: 0.04em;
  line-height: 1;
}

.testimonial-quote {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.42;
  min-height: 4.2em;
}

.testimonial-content--amazon .testimonial-quote {
  min-height: auto;
  font-size: 0.98rem;
}

.testimonial-author {
  margin: 0;
  color: #252525;
  font-size: 0.88rem;
  font-weight: 700;
}

.testimonial-content--amazon .testimonial-author {
  font-size: 0.95rem;
  font-weight: 500;
}

.testimonial-author-row {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-top: 0.12rem;
  border-top: 1px solid #ececec;
}

.testimonial-content--amazon .testimonial-author-row {
  padding-top: 0;
  border-top: 0;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.testimonial-heading {
  margin: 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.testimonial-content--amazon .testimonial-stars {
  color: #f08804;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.testimonial-title-line {
  color: #111111;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.2;
}

.testimonial-meta {
  margin: 0;
  color: #565959;
  font-size: 0.95rem;
}

.testimonial-verified {
  margin: 0;
  color: #c45500;
  font-size: 0.92rem;
  font-weight: 700;
}

.testimonial-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 0.52rem 0.66rem;
  border-radius: 999px;
  transition: background 170ms ease, color 170ms ease;
}

.testimonial-link:hover {
  background: #ffffff;
  color: #111111;
}

.feature-list {
  margin: 1.4rem 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.78rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.about-video {
  margin-top: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.about-video h3 {
  margin: 0;
  font-size: 1.12rem;
}

.about-video-frame {
  margin-top: 0.7rem;
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #000000;
  border: 1px solid #1f1f1f;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.about-video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 340ms ease;
}

.about-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.08) 62%);
}

.about-video-frame:hover img {
  transform: scale(1.04);
}

.about-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.14);
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.16rem;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.about-video-frame:hover .about-video-play {
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
}

.about-video-label {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.4rem 0.72rem;
}

.about-video p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.about-video-links {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.about-video-links .btn {
  padding: 0.58rem 0.95rem;
  font-size: 0.78rem;
}

.about-video p a {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.about-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.panel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.panel h3 {
  margin: 0;
  font-size: 1.2rem;
}

.panel p {
  margin: 0.72rem 0 0;
  color: var(--muted);
}

.stats {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.stat strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.2;
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.product-highlight {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.product-highlight .card img {
  aspect-ratio: 4 / 3;
}

.customer-gallery-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.customer-gallery-kicker {
  margin: 0 0 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
}

.customer-gallery-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.75rem;
  align-items: stretch;
}

.customer-gallery-item {
  margin: 0;
  position: relative;
  border: 1px solid #d7d7d7;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f7f7, #ededed);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.customer-gallery-item:hover {
  transform: translateY(-3px);
  border-color: #a7a7a7;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12);
}

.customer-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  transition: transform 260ms ease;
}

.customer-gallery-item:hover img {
  transform: scale(1.03);
}

.customer-gallery-item::after {
  content: "Customer Shot";
  position: absolute;
  left: 0.52rem;
  bottom: 0.52rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.24rem 0.44rem;
}

.home-customer-preview {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-customer-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

.home-customer-item {
  margin: 0;
  border: 1px solid #d9d9d9;
  border-radius: 13px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f7f7, #efefef);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.36rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.home-customer-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
}

.home-customer-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.courses-preview-section {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.courses-preview-kicker {
  margin: 0 0 0.42rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.3rem 0.62rem;
}

.courses-preview-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

.course-preview-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 246, 246, 0.98));
  border: 1px solid #dcdcdc;
  border-radius: 18px;
  padding: 1rem 0.95rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.course-preview-card h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.25;
}

.course-preview-card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.48;
}

.courses-preview-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.va-preview-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(243, 243, 243, 0.9));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.va-preview-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
  gap: 1rem;
  align-items: end;
}

.va-preview-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.va-preview-card {
  padding: 1rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 246, 246, 0.95));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.va-preview-card h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.24;
}

.va-preview-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.56;
}

.section-heading {
  display: grid;
  gap: 0.42rem;
}

.courses-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.2rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 0, 0, 0.08), transparent 28%),
    radial-gradient(circle at 86% 82%, rgba(0, 0, 0, 0.08), transparent 24%),
    linear-gradient(145deg, #ffffff 0%, #f4f4f4 55%, #ececec 100%);
}

.courses-page-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.9fr);
  gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: center;
}

.courses-page-hero__content {
  display: grid;
  align-content: center;
  gap: 0.95rem;
}

.courses-page-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.courses-page-hero__lead {
  max-width: 58ch;
  font-size: 1.06rem;
}

.courses-page-hero__actions {
  margin-top: 0.2rem;
}

.courses-page-hero__aside {
  display: flex;
  justify-content: flex-end;
}

.courses-page-hero__panel {
  width: min(100%, 420px);
  padding: 1.2rem;
  border-radius: 24px;
  color: #ffffff;
  background:
    linear-gradient(160deg, rgba(0, 0, 0, 0.96), rgba(22, 22, 22, 0.88)),
    #111111;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.courses-page-hero__panel-label {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.courses-page-hero__stats {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.courses-page-hero__stats li {
  min-height: 122px;
  display: grid;
  align-content: space-between;
  gap: 0.5rem;
  padding: 0.9rem 0.82rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.courses-page-hero__stats strong {
  font-size: 1.35rem;
  line-height: 1;
}

.courses-page-hero__stats span {
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.courses-page-hero__note {
  margin-top: 0.85rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.84);
}

.courses-intro {
  background: rgba(255, 255, 255, 0.55);
}

.courses-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
  gap: 1rem;
  align-items: end;
}

.courses-catalog {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 247, 247, 0.86));
}

.courses-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.course-card {
  position: relative;
  display: grid;
  gap: 0.58rem;
  padding: 1.2rem 1.1rem 1.12rem;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 243, 243, 0.92));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.course-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.18);
}

.course-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.course-card__eyebrow {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4d4d4d;
}

.course-card h3 {
  margin: 0;
  max-width: 18ch;
  font-size: 1.38rem;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.course-card h4 {
  margin: 0.32rem 0 0;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #121212;
}

.course-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.course-card ul {
  margin: 0.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.course-card li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text);
  font-size: 0.91rem;
  line-height: 1.5;
}

.course-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #111111;
}

.courses-value {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.45);
}

.training-points {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.training-points li {
  display: grid;
  gap: 0.42rem;
  padding: 1rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.training-points strong {
  font-size: 0.95rem;
  line-height: 1.35;
}

.training-points span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.courses-results {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
}

.results-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.result-card {
  position: relative;
  padding: 1.15rem 1rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.result-card::before {
  content: '"';
  position: absolute;
  top: 0.55rem;
  right: 0.9rem;
  font-size: 3rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.08);
  font-weight: 800;
}

.result-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.66;
}

.result-card strong {
  margin-top: 0.9rem;
  display: block;
  font-size: 0.84rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111111;
}

.courses-faq {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.66);
}

.faq-accordion {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.85rem;
  height: 2px;
  border-radius: 999px;
  background: #111111;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.faq-item__body {
  padding: 0 1.05rem 1rem;
}

.faq-item__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.va-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 0, 0, 0.08), transparent 30%),
    radial-gradient(circle at 88% 78%, rgba(0, 0, 0, 0.08), transparent 24%),
    linear-gradient(150deg, #ffffff 0%, #f3f3f3 58%, #eaeaea 100%);
}

.va-page-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.9fr);
  gap: 1.5rem;
  align-items: center;
}

.va-page-hero__content {
  display: grid;
  gap: 0.9rem;
}

.va-page-hero__content h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.va-page-hero__lead {
  max-width: 58ch;
  font-size: 1.05rem;
}

.va-page-hero__panel {
  padding: 1.2rem;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.96), rgba(24, 24, 24, 0.9));
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.va-page-hero__panel-label {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.va-page-hero__stats {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.va-page-hero__stats li {
  display: grid;
  gap: 0.28rem;
  padding: 0.9rem 0.88rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.va-page-hero__stats strong {
  font-size: 1rem;
}

.va-page-hero__stats span {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}

.va-services-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(246, 246, 246, 0.92));
}

.va-services-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.va-service-card {
  display: grid;
  gap: 0.68rem;
  padding: 1.2rem 1.05rem;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.07);
}

.va-service-card h3 {
  margin: 0;
  max-width: 24ch;
  font-size: 1.3rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.va-service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.va-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.va-checklist li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.92rem;
  line-height: 1.56;
  color: var(--text);
}

.va-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: #111111;
}

.va-trust-section,
.va-gains-section {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.55);
}

.va-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: start;
}

.va-checklist--compact {
  margin-top: 1rem;
}

.va-seller-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.va-seller-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 64px;
  padding: 0.9rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.va-checklist--large {
  margin-top: 0.4rem;
}

.va-cta-panel {
  padding: clamp(1.4rem, 3.2vw, 2.2rem);
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(240, 240, 240, 0.92));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.contact-grid {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.info-list {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.info-list li {
  color: var(--text);
}

.contact-form {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.78rem;
}

.field {
  display: grid;
  gap: 0.34rem;
}

.field label {
  font-size: 0.86rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  padding: 0.74rem 0.8rem;
  font: inherit;
}

.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.14);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.shop-layout {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 1rem;
  align-items: start;
}

.shop-list {
  display: grid;
  gap: 0.9rem;
}

.shop-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 0.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.72rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.shop-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.shop-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--bg);
  border-radius: 8px;
}

.shop-item-body {
  display: grid;
  gap: 0.45rem;
}

.shop-item-body h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.28;
}

.shop-item-price {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: #d92a24;
}

.shop-item-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.shop-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.shop-mini-btn {
  border: 1px solid #bcbcbc;
  background: #ffffff;
  color: #1b1b1b;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.34rem 0.58rem;
  cursor: pointer;
}

.shop-mini-btn:hover {
  background: #f0f0f0;
}

.shop-summary {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
  position: sticky;
  top: 105px;
}

.shop-summary h3 {
  margin: 0;
  font-size: 1.2rem;
}

.shop-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  font-size: 0.95rem;
}

.shop-total-row strong {
  font-size: 1.25rem;
}

.shop-empty {
  background: var(--white);
  border: 1px dashed #b9b9b9;
  border-radius: 10px;
  padding: 1rem;
}

.shop-empty p {
  margin: 0;
  color: var(--muted);
}

@media (hover: none) {
  .store-card-hover .store-cart-btn {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.footer {
  margin-top: 2.4rem;
  background: var(--accent);
  color: var(--white);
  border-top: 4px solid #1a1a1a;
}

.footer::after {
  content: "Copyright \00A9 2026 NITOOR. All rights reserved.";
  display: block;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 0.9rem;
  padding: 0.72rem 0.9rem 0.82rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
}

.footer-wrap {
  width: min(var(--container), 92vw);
  margin-inline: auto;
  padding: 2.6rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

.footer-left {
  display: grid;
  align-content: start;
  gap: 0.6rem;
}

.footer-left::before {
  content: "NITOOR";
  display: block;
  color: #ffffff;
  font-size: clamp(1.75rem, 4.1vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.18);
}

.footer-left img {
  display: none;
}

.footer-left p {
  margin: 0;
  color: #ffffff;
  max-width: 40ch;
  font-size: 1rem;
}

.footer-left p + p {
  margin-top: 0.45rem;
}

.footer-right {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.footer-right h4 {
  margin: 0;
  font-size: 1.03rem;
  color: #ffffff;
}

.footer-right p,
.footer-right a {
  margin: 0.52rem 0 0;
  color: #ffffff;
  font-size: 0.96rem;
}

.footer-right > div > a {
  display: block;
  width: fit-content;
  line-height: 1.35;
}

.footer-right a:hover {
  color: #e5e5e5;
}

.subtle {
  color: #d7d7d7;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(2px);
  transition: opacity 500ms ease, transform 500ms ease, filter 500ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

body.modal-open {
  overflow: hidden;
}

.welcome-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.welcome-modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.welcome-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(2px);
}

.welcome-modal__dialog {
  position: relative;
  width: min(980px, 94vw);
  min-height: min(74vh, 620px);
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  transform: translateY(16px) scale(0.98);
  transition: transform 260ms ease;
}

.welcome-modal.is-visible .welcome-modal__dialog {
  transform: translateY(0) scale(1);
}

.welcome-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.welcome-modal__left {
  background: var(--bg);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.44rem 1rem;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.welcome-modal__left h2 {
  margin: 0.95rem 0 0;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.02;
}

.welcome-modal__left p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.welcome-modal__left p a {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.offer-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.58rem;
}

.offer-form label {
  font-size: 1rem;
  font-weight: 700;
}

.offer-form input {
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 0.72rem 0.8rem;
  font: inherit;
}

.offer-form button {
  border: 0;
  border-radius: 7px;
  background: var(--accent);
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 0.72rem 1rem;
  cursor: pointer;
}

.offer-form button:hover {
  background: var(--accent-dark);
}

.offer-note {
  margin-top: 0.58rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.welcome-modal__right {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #f3f3f3;
  padding: clamp(0.7rem, 1.8vw, 1.2rem);
}

.welcome-modal__right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
}

.welcome-modal__right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.04) 30%, rgba(0, 0, 0, 0));
  z-index: 1;
}

.offer-points {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1rem;
  z-index: 2;
  display: grid;
  gap: 0.4rem;
}

.offer-points span {
  display: block;
  background: rgba(10, 10, 10, 0.72);
  color: #f5f5f5;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.38rem 0.72rem;
  font-size: 0.77rem;
  width: fit-content;
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 60;
  }

  .site-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: min(86vw, 360px);
    height: 100dvh;
    background: var(--white);
    border-right: 1px solid var(--line);
    padding: 5.7rem 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    transform: translateX(-108%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
    transition: transform 260ms ease, opacity 220ms ease, visibility 220ms ease;
    z-index: 55;
  }

  .site-nav a {
    width: 100%;
    padding: 0.9rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .amazon-btn {
    margin: 0.95rem 0 0;
    width: fit-content;
    align-self: flex-start;
    padding: 0.72rem 1.15rem;
    border-bottom: 0;
  }

  .nav-actions {
    margin: 1rem 0 0;
    padding-top: 0.95rem;
    gap: 0.75rem;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-top: 1px solid var(--line);
  }

  .nav-icon {
    padding: 0.45rem 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .nav-icon svg {
    width: 17px;
    height: 17px;
  }

  .nav-icon-label {
    font-size: 1.03rem;
    line-height: 1.1;
  }

  .site-header.menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 50;
  }

  .site-nav a:not(.amazon-btn)::after {
    display: none;
  }

  .site-header.menu-open .site-nav {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .page-hero,
  .about-grid,
  .contact-grid,
  .product-highlight,
  .footer-wrap,
  .footer-right {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-block: clamp(2rem, 5vw, 3rem);
  }

  .about-brand-top__panel {
    border-radius: 13px;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .va-preview-header,
  .va-page-hero__layout,
  .va-two-column {
    grid-template-columns: 1fr;
  }

  .va-preview-grid,
  .va-services-grid,
  .va-seller-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .courses-page-hero__layout,
  .courses-intro__grid {
    grid-template-columns: 1fr;
  }

  .courses-page-hero__aside {
    justify-content: flex-start;
  }

  .courses-page-hero__panel {
    width: min(100%, 560px);
  }

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

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

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

  .courses-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

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

  .product-info-grid {
    grid-template-columns: 1fr;
  }

  .split-banner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-tile {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    min-height: 280px;
  }

  .split-tile img {
    padding-top: 3.9rem;
  }

  .split-content {
    align-items: flex-start;
    text-align: left;
  }

  .split-brand {
    justify-items: flex-start;
  }

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

  .planet-media {
    min-height: 320px;
    padding-top: 2.95rem;
  }

  .planet-collage {
    min-height: 360px;
  }

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

  .shop-summary {
    position: static;
    top: auto;
  }

  .testimonials-carousel {
    grid-auto-columns: clamp(270px, 55vw, 390px);
  }

  .nitoor-finder-tab {
    right: 0;
    border-radius: 8px 0 0 8px;
  }
}

@media (max-width: 700px) {
  .topbar {
    font-size: 0.76rem;
  }

  .nav-row {
    min-height: 78px;
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .products-grid,
  .store-grid,
  .categories-grid,
  .subcategories-grid,
  .courses-preview-grid,
  .va-preview-grid,
  .va-services-grid,
  .va-seller-grid,
  .training-points,
  .stats,
  .product-benefits {
    grid-template-columns: 1fr;
  }

  .customer-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.56rem;
  }

  .home-customer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.56rem;
  }

  .home-customer-item {
    aspect-ratio: 1 / 0.95;
    padding: 0.28rem;
  }

  .product-info-row {
    grid-template-columns: 1fr;
    gap: 0.34rem;
  }

  .hero-copy {
    padding-inline: 1.05rem;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 11vw, 2.9rem);
  }

  .about-brand-top {
    padding-top: 1rem;
  }

  .about-brand-top__panel {
    padding: 1rem 0.82rem 1.08rem;
  }

  .about-video-play {
    width: 48px;
    height: 48px;
    font-size: 1.02rem;
  }

  .about-video-label {
    font-size: 0.73rem;
    padding: 0.34rem 0.58rem;
  }

  .hero-copy p,
  .section-lead {
    font-size: 0.96rem;
  }

  .courses-page-hero h1 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .courses-page-hero {
    padding: 2.6rem 0;
  }

  .va-page-hero {
    padding: 2.6rem 0;
  }

  .va-page-hero__content h1 {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  .va-page-hero__panel,
  .va-cta-panel {
    padding: 1rem;
    border-radius: 20px;
  }

  .va-service-card {
    border-radius: 18px;
    padding: 1rem 0.95rem;
  }

  .va-service-card h3 {
    font-size: 1.16rem;
  }

  .courses-page-hero__panel {
    padding: 1rem;
    border-radius: 20px;
  }

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

  .courses-page-hero__stats li {
    min-height: auto;
  }

  .course-card {
    border-radius: 18px;
    padding: 1rem 0.95rem;
  }

  .course-card h3 {
    font-size: 1.2rem;
  }

  .faq-item summary {
    padding: 0.9rem;
    font-size: 0.95rem;
  }

  .faq-item__body {
    padding: 0 0.9rem 0.9rem;
  }

  .split-content h3 {
    font-size: clamp(1.95rem, 9vw, 2.35rem);
  }

  .split-caption {
    font-size: 1.2rem;
  }

  .split-tile-top {
    font-size: 0.95rem;
    padding: 0.8rem 0.55rem 0.75rem;
  }

  .planet-kicker {
    flex-wrap: wrap;
  }

  .planet-media {
    padding: 2.7rem 0.42rem 0.42rem;
  }

  .planet-media-badge {
    left: 0.55rem;
    right: 0.55rem;
    gap: 0.45rem;
  }

  .planet-logo-red,
  .planet-logo-blue {
    font-size: 0.66rem;
    padding: 0.28rem 0.56rem;
  }

  .planet-plus {
    font-size: 1rem;
  }

  .planet-collage {
    min-height: 290px;
    gap: 0.33rem;
  }

  .planet-tile {
    border-width: 1px;
    border-radius: 10px;
  }

  .testimonials-carousel {
    grid-auto-columns: 86vw;
    gap: 0.85rem;
  }

  .testimonials-controls {
    gap: 0.58rem;
  }

  .testimonials-arrow {
    width: 32px;
    height: 32px;
  }

  .testimonial-slide {
    border-radius: 10px;
  }

  .testimonial-stars {
    font-size: 1.2rem;
  }

  .shop-item {
    grid-template-columns: 88px minmax(0, 1fr);
    padding: 0.6rem;
  }

  .shop-item-body h3 {
    font-size: 0.96rem;
  }

  .shop-item-price {
    font-size: 1rem;
  }

  .footer-left::before {
    font-size: 1.85rem;
  }

  .welcome-modal {
    padding: 0.5rem;
  }

  .welcome-modal__dialog {
    width: 100%;
    min-height: auto;
    grid-template-columns: 1fr;
    border-radius: 14px;
    max-height: calc(100vh - 1rem);
    overflow: auto;
  }

  .welcome-modal__right {
    min-height: 245px;
    order: -1;
  }

  .welcome-modal__left h2 {
    font-size: 2rem;
  }

  .offer-form button {
    font-size: 1.22rem;
  }

  .nitoor-finder-tab {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
