:root {
  --ink: #081735;
  --muted: #5c667d;
  --line: #e8ebf2;
  --pink: #f4267d;
  --pink-soft: #ffe8f2;
  --blue: #1557ff;
  --cyan: #50d7ff;
  --surface: #ffffff;
  --soft: #f7f9fc;
  --shadow: 0 18px 45px rgba(10, 22, 50, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 20%, rgba(244, 38, 125, 0.11), transparent 20rem),
    radial-gradient(circle at 4% 58%, rgba(80, 215, 255, 0.08), transparent 17rem),
    radial-gradient(circle at 9px 9px, rgba(244, 38, 125, 0.11) 1.2px, transparent 1.4px),
    #fff;
  background-attachment: scroll;
  background-size: auto, auto, 22px 22px, auto;
}

main {
  position: relative;
  overflow: hidden;
}

main::before,
main::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

main::before {
  top: 520px;
  right: -150px;
  width: 360px;
  height: 360px;
  background-image: radial-gradient(circle, rgba(244, 38, 125, 0.12) 1.2px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.34;
}

main::after {
  top: 1080px;
  left: -120px;
  width: 270px;
  height: 270px;
  background-image: radial-gradient(circle, rgba(244, 38, 125, 0.16) 1.4px, transparent 1.6px);
  background-size: 18px 18px;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 88px;
  padding: calc(18px + env(safe-area-inset-top)) clamp(24px, 6.4vw, 102px) 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 23, 53, 0.97), rgba(13, 34, 77, 0.97)),
    radial-gradient(circle at 82% -40%, rgba(244, 38, 125, 0.2), transparent 22rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(8, 23, 53, 0.16);
}

.brand {
  display: inline-grid;
  place-items: center;
  justify-self: start;
  width: 202px;
  min-width: 202px;
  height: 48px;
  padding: 0;
  color: #fff;
}

.brand::before {
  width: 100%;
  height: 100%;
  content: "";
  background: url("images/logo-header-white.png") center / contain no-repeat;
}

.brand span,
.footer-brand {
  font-size: 26px;
  font-weight: 500;
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3.6vw, 58px);
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  color: #fff;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav a.active {
  color: #fff;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.header-cta,
.btn.primary {
  color: #fff;
  background: var(--pink);
  box-shadow: 0 12px 26px rgba(244, 38, 125, 0.22);
}

.site-header .header-cta {
  box-shadow: 0 12px 26px rgba(244, 38, 125, 0.3);
}

.btn.arrow::after {
  content: "→";
  margin-left: 13px;
  font-size: 20px;
  line-height: 1;
}

.btn.phone::after {
  content: "☎";
  margin-left: 12px;
  font-size: 15px;
}

.btn.secondary {
  color: var(--pink);
  background: #fff;
  border-color: var(--pink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section-pad,
.page-hero,
.help-band,
.brands,
.numbers,
.feature-band {
  width: min(calc(100% - 40px), 1340px);
  margin-inline: auto;
}

.section-pad {
  padding: 72px 0;
}

.section-pad.compact {
  padding-top: 44px;
  padding-bottom: 56px;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(28px, 5.6vw, 86px);
  align-items: start;
  min-height: 520px;
  padding-top: 68px;
  padding-bottom: 54px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 18px;
  right: min(-40px, -2vw);
  bottom: 26px;
  left: min(-40px, -2vw);
  content: "";
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(244, 38, 125, 0.045) 42% 55%, transparent 55% 100%),
    linear-gradient(115deg, transparent 0 64%, rgba(21, 87, 255, 0.035) 64% 72%, transparent 72% 100%),
    radial-gradient(circle at 10px 10px, rgba(244, 38, 125, 0.13) 1.1px, transparent 1.4px);
  background-size: auto, auto, 22px 22px;
  opacity: 0.92;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 2%;
  bottom: 24px;
  width: min(320px, 28vw);
  height: min(150px, 16vw);
  content: "";
  background-image: radial-gradient(circle, rgba(244, 38, 125, 0.16) 1.1px, transparent 1.4px);
  background-size: 18px 18px;
  opacity: 0.42;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 24%, #000 72%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 72%, transparent);
}

.hero-copy h1,
.page-hero h1 {
  max-width: 760px;
  margin: 18px 0 14px;
  font-size: clamp(42px, 3.75vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-copy h1 span,
.help-band span {
  color: var(--pink);
}

.hero-copy p,
.page-hero p,
.copy-stack p,
.product-card p,
.footer-grid p,
.detail-copy,
.catalog-card li {
  color: var(--muted);
  line-height: 1.65;
}

.pill,
.eyebrow,
.section-title span,
.page-hero span,
.contact-copy span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pill {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-actions,
.hero-stats,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  width: 100%;
  margin-top: 24px;
}

.hero-stats {
  flex-wrap: nowrap;
  margin-top: 34px;
  align-items: stretch;
}

.hero-stats div {
  position: relative;
  min-width: 160px;
  padding-right: 18px;
  padding-left: 33px;
  border-right: 1px solid var(--line);
}

.hero-stats i {
  position: absolute;
  top: 2px;
  left: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--pink-soft);
}

.hero-stats i::after {
  position: absolute;
  inset: 7px;
  content: "";
  border: 2px solid var(--pink);
  border-radius: 50%;
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.15;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-media {
  position: relative;
  min-height: 470px;
  margin-top: -8px;
  overflow: hidden;
}

.hero-media::before {
  position: absolute;
  right: 0;
  bottom: 2%;
  left: 22%;
  height: 48%;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(244, 38, 125, 0.09) 48% 49%, transparent 49% 100%),
    linear-gradient(35deg, transparent 0 55%, rgba(21, 87, 255, 0.08) 55% 56%, transparent 56% 100%);
  opacity: 0.75;
}

.hero-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 34px 38px rgba(10, 22, 50, 0.16));
}

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

.section-title.align-left {
  text-align: left;
}

.section-title h2,
.help-band h2,
.numbers h2,
.feature-band h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 2.6vw, 36px);
  letter-spacing: 0;
}

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

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: visible;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(10, 22, 50, 0.08);
}

.promo-badge {
  position: absolute;
  z-index: 3;
  top: -11px;
  left: 14px;
  padding: 7px 12px;
  color: #fff;
  background: var(--pink);
  border-radius: 999px;
  box-shadow: 0 12px 22px rgba(244, 38, 125, 0.28);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.6px;
  line-height: 1;
  text-transform: uppercase;
}

.promo-badge::after {
  position: absolute;
  right: 12px;
  bottom: -5px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--pink);
  transform: rotate(45deg);
}

.product-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 12px;
  background: #fff;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}

.product-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 208px;
  padding: 20px 58px 20px 20px;
  overflow: hidden;
}

.product-copy h3 {
  margin: 9px 0 8px;
  font-size: 17px;
  line-height: 1.28;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-copy p {
  margin: 0 0 24px;
  font-size: 13px;
  line-height: 1.65;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-action {
  margin-top: auto;
  color: var(--pink);
  font-weight: 800;
}

.circle-link {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--pink);
  background: var(--pink-soft);
  border-radius: 50%;
  font-size: 24px;
}

.suggested-products {
  padding-top: 8px;
  padding-bottom: 72px;
}

.suggested-products .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 1060px);
  margin: 0 auto;
}

.help-band {
  display: grid;
  grid-template-columns: 1fr 270px 270px;
  gap: 28px;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 52px;
  padding: 24px clamp(24px, 5vw, 70px);
  background:
    linear-gradient(135deg, rgba(255, 238, 246, 0.96), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at right bottom, rgba(244, 38, 125, 0.12), transparent 18rem);
  border-radius: var(--radius);
}

.help-band p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-tile {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 5px 18px;
  align-items: center;
  min-width: 0;
  padding: 20px 24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(10, 22, 50, 0.06);
}

.contact-tile b {
  grid-row: span 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--pink);
  background: var(--pink-soft);
  border-radius: 50%;
  font-size: 24px;
  font-family: "Segoe UI Symbol", "Segoe UI", sans-serif;
}

.contact-tile strong {
  color: var(--muted);
  font-size: 13px;
}

.contact-tile span {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.brands {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
  padding-bottom: 72px;
}

.brands h2 {
  font-size: 18px;
}

.brands img {
  max-height: 80px;
  object-fit: contain;
}

.page-hero {
  padding: 96px 0 50px;
}

.productized-hero {
  display: grid;
  gap: 16px;
  max-width: 980px;
}

.page-hero h1 {
  font-size: clamp(36px, 4vw, 64px);
}

.filter-row {
  margin-bottom: 10px;
}

.filter-row button {
  padding: 12px 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.filter-row button:hover,
.filter-row button.active {
  color: var(--pink);
  border-color: rgba(244, 38, 125, 0.48);
  box-shadow: 0 10px 22px rgba(244, 38, 125, 0.09);
  transform: translateY(-1px);
}

.filter-row strong {
  color: var(--pink);
}

.filter-status {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.product-card[hidden] {
  display: none;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.detail-shell {
  align-items: start;
}

.detail-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-main {
  display: grid;
  height: clamp(520px, 58vw, 720px);
  place-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #fff, #fff5fa);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 10px;
  padding: 14px;
  background: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
}

.thumb {
  height: 86px;
  padding: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

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

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

.back-link {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--pink);
  font-weight: 800;
}

.detail-copy h1 {
  margin: 10px 0 20px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.05;
}

.detail-copy {
  padding: clamp(24px, 4vw, 44px);
}

.detail-lead {
  margin: -4px 0 22px;
  color: var(--muted);
  line-height: 1.7;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.detail-meta {
  display: grid;
  gap: 6px;
  margin: 22px 0;
  padding: 18px;
  background: var(--soft);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
}

.product-description {
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.product-description p {
  margin: 0 0 16px;
}

.image-lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  place-items: center;
  padding: 72px;
  background: rgba(4, 12, 30, 0.92);
}

.image-lightbox.open {
  display: grid;
}

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox img {
  max-width: min(1120px, calc(100vw - 144px));
  max-height: calc(100vh - 144px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  font-size: 30px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  width: 52px;
  height: 52px;
  font-size: 42px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.split,
.feature-band,
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.split.reverse img {
  order: 0;
}

.rounded-media,
.feature-band img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split .rounded-media {
  aspect-ratio: 4 / 3;
  height: auto;
  max-height: 560px;
  object-fit: cover;
}

.split:nth-of-type(3) .rounded-media {
  aspect-ratio: 4 / 3;
  object-position: center top;
}

.numbers {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(10, 22, 50, 0.06);
}

.numbers div {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: var(--soft);
  border-radius: var(--radius);
}

.numbers strong {
  color: var(--pink);
  font-size: 32px;
}

.numbers span {
  color: var(--muted);
}

.feature-band {
  margin-top: 50px;
  margin-bottom: 72px;
  padding: 34px;
  background: linear-gradient(135deg, #f5fbff, #fff0f7);
  border-radius: var(--radius);
}

.feature-band ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.feature-band li {
  padding: 12px 14px;
  background: #fff;
  border-radius: var(--radius);
  font-weight: 800;
}

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

.teaser-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(10, 22, 50, 0.07);
}

.teaser-image {
  display: grid;
  aspect-ratio: 1 / 1;
  min-height: 0;
  place-items: center;
  padding: 18px;
  background: linear-gradient(135deg, #fff, #f7f9fc);
}

.teaser-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  border-radius: var(--radius);
}

.teaser-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding: 22px 22px 70px;
}

.teaser-card h2 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.2;
}

.teaser-card p,
.selector-form label,
.selection-band p {
  color: var(--muted);
  line-height: 1.65;
}

.teaser-cta {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  color: #fff;
  background: var(--pink);
  border-radius: var(--radius);
  box-shadow: 0 12px 22px rgba(244, 38, 125, 0.2);
  font-size: 13px;
  font-weight: 800;
}

.teaser-card details {
  margin-top: 18px;
}

.teaser-card summary {
  color: var(--pink);
  font-weight: 800;
  cursor: pointer;
}

.teaser-card ul {
  margin: 0;
  padding-top: 12px;
  padding-left: 18px;
}

.selection-band {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 0.62fr);
  gap: 34px;
  align-items: center;
  width: min(calc(100% - 40px), 1340px);
  margin: 0 auto 16px;
  padding: 32px clamp(24px, 5vw, 62px);
  background: linear-gradient(135deg, #fff0f7, #fff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(10, 22, 50, 0.06);
}

.selection-band span {
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.selection-band h2 {
  margin: 8px 0;
  font-size: clamp(26px, 3vw, 38px);
}

.selector-form {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.selector-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  font-weight: 800;
}

.selector-form select,
.selector-form input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

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

.product-card.reveal,
.teaser-card.reveal {
  transition-delay: min(var(--reveal-delay, 0ms), 160ms);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .filter-row button {
    transition: none;
  }
}

.contact-page {
  align-items: stretch;
}

.contact-intro {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.contact-copy {
  display: grid;
  align-content: start;
}

.contact-copy h1 {
  margin-bottom: 12px;
}

.contact-copy p {
  max-width: 620px;
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-copy a {
  display: block;
  margin: 16px 0;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
}

.contact-visual {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(10, 22, 50, 0.08);
}

.contact-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.contact-visual div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 23, 53, 0.92), rgba(13, 34, 77, 0.9)),
    radial-gradient(circle at 100% 0%, rgba(244, 38, 125, 0.2), transparent 12rem);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(8, 23, 53, 0.18);
}

.contact-visual strong {
  font-size: 20px;
}

.contact-visual span {
  color: #cbd7ef;
  font-size: 14px;
}

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

.contact-highlights div {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(10, 22, 50, 0.05);
}

.contact-highlights strong {
  color: var(--ink);
}

.contact-highlights span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.contact-form .hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.form-status.success {
  color: #0f7a4a;
}

.form-status.error {
  color: #b42352;
}

.site-footer {
  padding: 58px clamp(20px, 6vw, 96px) 28px;
  color: #dfe8ff;
  background:
    linear-gradient(135deg, rgba(8, 23, 53, 0.98), rgba(13, 34, 77, 0.98)),
    radial-gradient(circle at 84% 0%, rgba(244, 38, 125, 0.18), transparent 22rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.6fr;
  gap: 18px;
  width: min(100%, 1400px);
  margin: 0 auto;
}

.footer-grid > div {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.footer-grid h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 18px;
}

.footer-grid p {
  margin: 0 0 10px;
  color: #b7c3dc;
}

.footer-grid a {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 700;
}

.footer-grid > div:nth-child(3) a {
  display: flex;
  width: 100%;
  padding: 4px 0;
}

.copyright {
  width: min(100%, 1400px);
  margin: 18px auto 0;
  padding-top: 18px;
  color: #91a0be;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .suggested-products .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .help-band,
  .numbers {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    display: flex;
    justify-content: space-between;
  }

  .nav-toggle {
    position: absolute;
    top: 16px;
    right: 20px;
    display: block;
    justify-self: end;
    flex: 0 0 44px;
    background: var(--pink);
    border-color: var(--pink);
  }

  .nav-toggle span {
    background: #fff;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  body.nav-open .main-nav {
    position: fixed;
    inset: 82px 20px auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 14px;
    background:
      linear-gradient(135deg, rgba(8, 23, 53, 0.98), rgba(13, 34, 77, 0.98)),
      radial-gradient(circle at 80% 0%, rgba(244, 38, 125, 0.18), transparent 18rem);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: 0 24px 50px rgba(8, 23, 53, 0.28);
  }

  .hero-copy p {
    max-width: 330px;
  }

  body.nav-open .main-nav a {
    padding: 16px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  body.nav-open .main-nav a:last-child {
    border-bottom: 0;
  }

  .hero,
  .product-detail,
  .split,
  .feature-band,
  .contact-page,
  .selection-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 18px;
    padding-top: 34px;
    padding-bottom: 26px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .pill {
    order: 1;
    justify-self: start;
    width: max-content;
    max-width: 100%;
  }

  .hero-copy h1 {
    order: 2;
  }

  .hero-copy p {
    order: 3;
  }

  .hero-media {
    order: 4;
    min-height: 0;
    margin-top: -10px;
  }

  .hero-actions {
    order: 5;
    margin-top: 4px;
  }

  .hero-stats {
    order: 6;
  }

  .hero-media img {
    width: min(118vw, 620px);
    max-height: 340px;
    margin: -18px auto -24px;
    transform: scale(1.08);
  }

  .split .rounded-media {
    aspect-ratio: auto;
    max-height: none;
    object-fit: contain;
  }

  .gallery-main {
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 12px;
  }

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

@media (max-width: 640px) {
  body {
    padding-bottom: 0;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    left: 14px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(8, 23, 53, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(8, 23, 53, 0.28);
    backdrop-filter: blur(16px);
  }

  .mobile-sticky-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    color: #fff;
    background: var(--pink);
    border-radius: 7px;
    font-weight: 900;
  }

  .mobile-sticky-cta a:first-child {
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
  }

  .site-header {
    position: sticky;
    padding: calc(16px + env(safe-area-inset-top)) 20px 16px;
  }

  .brand {
    width: 188px;
    min-width: 188px;
    height: 39px;
  }

  .section-pad {
    padding: 44px 0;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .page-hero {
    padding: 64px 0 34px;
  }

  .selection-band {
    padding: 24px;
  }

  .contact-visual,
  .contact-visual img {
    min-height: 220px;
  }

  .contact-highlights {
    grid-template-columns: 1fr;
  }

  .contact-copy a {
    font-size: 20px;
    overflow-wrap: anywhere;
  }

  .product-grid,
  .teaser-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .help-band,
  .numbers,
  .feature-band ul {
    grid-template-columns: 1fr;
  }

  .product-card {
    border-radius: 8px;
  }

  .promo-badge {
    top: -9px;
    left: 10px;
    padding: 6px 10px;
    font-size: 10px;
  }

  .product-image {
    padding: 8px;
  }

  .product-image img,
  .teaser-image img {
    border-radius: 6px;
  }

  .product-copy {
    min-height: 128px;
    padding: 12px 38px 12px 12px;
  }

  .product-copy .eyebrow {
    font-size: 10px;
    letter-spacing: 0.5px;
  }

  .product-copy h3 {
    margin: 6px 0 8px;
    font-size: 13px;
    line-height: 1.24;
  }

  .product-copy p {
    display: none;
  }

  .product-action {
    font-size: 13px;
  }

  .circle-link {
    right: 10px;
    bottom: 10px;
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .teaser-card {
    border-radius: 8px;
  }

  .teaser-image {
    aspect-ratio: 1 / 1;
    padding: 8px;
  }

  .teaser-image img {
    height: 100%;
  }

  .teaser-copy {
    padding: 12px 12px 58px;
  }

  .teaser-card h2 {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.2;
  }

  .teaser-card p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .teaser-cta {
    right: 10px;
    bottom: 10px;
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero-stats div {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .contact-tile {
    min-width: 0;
  }

  .gallery-main {
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 8px;
  }

  .thumb-row {
    grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
    gap: 8px;
    padding: 8px;
  }

  .thumb {
    height: 62px;
  }

  .detail-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .detail-actions .btn {
    width: 100%;
  }

  .image-lightbox {
    padding: 58px 12px 76px;
  }

  .image-lightbox img {
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - 148px);
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 14px;
    width: 46px;
    height: 46px;
    font-size: 36px;
    transform: none;
  }

  .lightbox-prev {
    left: 14px;
  }

  .lightbox-next {
    right: 14px;
  }

  .site-footer {
    padding: 34px 20px calc(104px + env(safe-area-inset-bottom));
  }

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

  .footer-grid > div {
    padding: 16px;
  }

  .footer-grid > div:first-child,
  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3) {
    grid-column: 1 / -1;
  }

  .footer-grid > div:nth-child(3) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .footer-grid > div:nth-child(3) h2 {
    grid-column: 1 / -1;
  }

  .footer-grid > div:nth-child(3) a {
    justify-content: center;
    margin: 0;
    padding: 10px 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
  }

  .footer-brand {
    font-size: 22px;
  }

  .footer-grid h2 {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .footer-grid p,
  .footer-grid a {
    font-size: 12px;
    line-height: 1.45;
  }

  .copyright {
    margin-top: 14px;
    padding-top: 14px;
    text-align: center;
    font-size: 12px;
  }
}
