@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&family=IBM+Plex+Sans+Arabic:wght@500;600;700&display=swap");

:root {
  --black: #080808;
  --black-soft: #141414;
  --gold: #d8a447;
  --gold-deep: #a97926;
  --white: #ffffff;
  --paper: #f7f4ef;
  --muted: #6d6a64;
  --line: #e4d8c6;
  --whatsapp: #18b65b;
  --shadow: 0 22px 60px rgba(8, 8, 8, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--black);
  font-family: Cairo, "IBM Plex Sans Arabic", Arial, sans-serif;
  line-height: 1.7;
  margin: 0;
  overflow-x: hidden;
  padding-bottom: 76px;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-select: none;
}

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

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

h1,
h2 {
  font-family: "IBM Plex Sans Arabic", Cairo, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.16;
}

h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 10vw, 5.7rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.75rem, 6.5vw, 3.55rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 0.35rem;
}

.site-header {
  color: var(--white);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}

.top-strip {
  align-items: center;
  background: var(--gold);
  color: var(--black);
  display: flex;
  font-size: 0.78rem;
  font-weight: 900;
  gap: 0.8rem;
  justify-content: center;
  letter-spacing: 0;
  padding: 0.5rem 0.75rem;
  text-align: center;
}

.top-strip span:not(:last-child)::after {
  content: "•";
  margin-right: 0.8rem;
}

.nav-bar {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr auto;
  padding: 0.9rem clamp(1rem, 4vw, 4.5rem);
}

.brand img {
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
  height: 54px;
  object-fit: contain;
  width: auto;
}

.nav-links {
  align-items: center;
  display: none;
  gap: 1.4rem;
  justify-content: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 800;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta,
.button,
.sticky-whatsapp {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0;
  min-height: 50px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  background: var(--white);
  color: var(--black);
  font-size: 0.86rem;
  padding: 0.72rem 1rem;
}

.button {
  border: 1px solid transparent;
  font-size: 1rem;
  min-width: 210px;
  padding: 0.9rem 1.25rem;
}

.whatsapp {
  background: var(--whatsapp);
  box-shadow: 0 16px 42px rgba(24, 182, 91, 0.26);
  color: var(--white);
}

.ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.sticky-whatsapp:hover {
  transform: translateX(-50%) translateY(-2px);
}

.pulse {
  animation: pulse 2.2s ease-in-out infinite;
}

.hero {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.72), rgba(8, 8, 8, 0.96)),
    radial-gradient(circle at 72% 22%, rgba(216, 164, 71, 0.26), transparent 34%),
    var(--black);
  display: grid;
  gap: 2rem;
  min-height: 100svh;
  overflow: hidden;
  padding: 9.4rem 1rem 3.2rem;
  position: relative;
}

.hero::after {
  background: linear-gradient(90deg, transparent, rgba(216, 164, 71, 0.22), transparent);
  content: "";
  height: 1px;
  inset: auto 1rem 1.5rem;
  position: absolute;
}

.hero-copy {
  align-self: end;
  animation: rise 700ms ease both;
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.hero-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 4.2vw, 1.34rem);
  max-width: 620px;
}

.hero-actions {
  display: grid;
  gap: 0.8rem;
  margin: 1.35rem 0;
}

.trust-row {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-row span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  padding: 0.72rem;
  text-align: center;
}

.hero-product {
  align-self: center;
  animation: product-in 900ms ease 120ms both;
  justify-self: center;
  max-width: 520px;
  position: relative;
  width: min(100%, 420px);
}

.hero-product img {
  border: 1px solid rgba(216, 164, 71, 0.34);
  border-radius: 12px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  object-fit: cover;
  width: 100%;
}

.price-badge {
  background: var(--gold);
  border: 6px solid var(--black);
  border-radius: 50%;
  bottom: -1rem;
  color: var(--black);
  display: grid;
  height: 122px;
  left: -0.6rem;
  place-items: center;
  position: absolute;
  text-align: center;
  width: 122px;
}

.price-badge span {
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1;
}

.price-badge strong {
  font-size: 1.08rem;
  line-height: 1.1;
}

.section {
  padding: clamp(3.4rem, 8vw, 6.7rem) 1rem;
}

.section-heading {
  margin: 0 auto 2rem;
  max-width: 820px;
  text-align: center;
}

.section-heading p,
.split-copy p,
.why-card p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(1rem, 3.4vw, 1.18rem);
}

.before-after {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 0;
  position: relative;
}

.before-after picture,
.before-after img {
  display: block;
  width: 100%;
}

.before-after img {
  height: auto;
  object-fit: cover;
}

.before-after-hit {
  border-radius: 8px;
  bottom: 3.35%;
  height: 4.2%;
  left: 10.8%;
  position: absolute;
  right: 10.8%;
  z-index: 4;
}

.before-after-hit:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.pain {
  background: var(--black);
  overflow: hidden;
  padding: 0;
}

.pain picture,
.pain img {
  display: block;
  width: 100%;
}

.pain img {
  height: auto;
  object-fit: cover;
}

.pain-grid,
.benefit-grid,
.steps,
.review-grid {
  display: grid;
  gap: 0.8rem;
}

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

.pain-grid article,
.benefit-grid article,
.steps article,
.review-grid article,
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(8, 8, 8, 0.055);
}

.pain-grid article {
  min-height: 160px;
  padding: 1.15rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pain-grid span {
  color: var(--gold-deep);
  display: block;
  font-size: 0.92rem;
  font-weight: 900;
  margin-bottom: 0.6rem;
}

.pain-grid p,
.benefit-grid p,
.steps p,
.review-grid p,
.faq p {
  color: var(--muted);
}

.solution {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 0;
  position: relative;
}

.solution picture,
.solution img {
  display: block;
  width: 100%;
}

.solution img {
  height: auto;
  object-fit: cover;
}

.solution-hit {
  border-radius: 8px;
  bottom: 7.15%;
  height: 4.9%;
  left: 12.2%;
  position: absolute;
  right: 12.2%;
  z-index: 4;
}

.solution-hit:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.split-image {
  justify-self: center;
  max-width: 520px;
}

.split-image img {
  border: 1px solid rgba(216, 164, 71, 0.36);
  border-radius: 12px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
  object-fit: cover;
  width: 100%;
}

.split-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.clean-list {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
}

.clean-list li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  padding: 0.85rem 1rem;
}

.clean-list li::before {
  color: var(--gold);
  content: "✓";
  font-weight: 900;
  margin-left: 0.55rem;
}

.benefits {
  background: var(--white);
}

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

.benefit-grid article {
  min-height: 172px;
  padding: 1.15rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.benefit-grid i {
  background: var(--black);
  border-radius: 50%;
  color: var(--gold);
  display: grid;
  font-style: normal;
  font-weight: 900;
  height: 36px;
  margin-bottom: 0.9rem;
  place-items: center;
  width: 36px;
}

.how-to,
.reviews,
.faq {
  background: var(--paper);
}

.how-to {
  background: var(--black);
  overflow: hidden;
  padding: 0;
  position: relative;
}

.how-to picture,
.how-to img {
  display: block;
  width: 100%;
}

.how-to img {
  height: auto;
  object-fit: cover;
}

.how-to-hit {
  border-radius: 8px;
  bottom: 3.2%;
  height: 7.5%;
  left: 19.5%;
  position: absolute;
  right: 19.5%;
  z-index: 4;
}

.how-to-hit:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.steps {
  counter-reset: step;
}

.steps article {
  min-height: 178px;
  padding: 1.15rem;
  position: relative;
}

.steps span {
  color: var(--gold);
  display: block;
  font-family: "IBM Plex Sans Arabic", Cairo, Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.9rem;
}

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

.why-card {
  background:
    linear-gradient(135deg, rgba(216, 164, 71, 0.18), rgba(255, 255, 255, 0.06)),
    var(--black-soft);
  border: 1px solid rgba(216, 164, 71, 0.32);
  border-radius: 10px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  display: grid;
  gap: 1.6rem;
  margin: 0 auto;
  max-width: 1120px;
  padding: clamp(1.2rem, 5vw, 3rem);
}

.why-card p {
  color: rgba(255, 255, 255, 0.74);
}

.why-points {
  display: grid;
  gap: 0.7rem;
}

.why-points span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
  padding: 0.9rem 1rem;
}

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

.review-grid article {
  padding: 1.15rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

.review-grid strong {
  color: var(--black);
  display: block;
  font-size: 0.92rem;
  margin-top: 0.7rem;
}

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

.reviews .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.swipe-hint {
  color: var(--gold) !important;
  font-size: 0.94rem !important;
  font-weight: 900;
  margin: 0.4rem auto 0;
}

.audio-carousel {
  margin: 0 auto;
  max-width: 1060px;
  position: relative;
}

.audio-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.4rem 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.audio-grid::-webkit-scrollbar {
  display: none;
}

.audio-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  color: var(--black);
  display: grid;
  gap: 1rem;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 1.8rem);
  position: relative;
  flex: 0 0 100%;
  min-height: 300px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.audio-card audio {
  min-height: 54px;
}

.audio-arrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(216, 164, 71, 0.35);
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
  color: var(--gold-deep);
  cursor: pointer;
  display: flex;
  font-size: 2.25rem;
  font-weight: 900;
  height: 52px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease;
  width: 52px;
  z-index: 5;
}

.audio-arrow:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-50%) scale(1.06);
}

.audio-arrow-prev {
  right: 0.35rem;
}

.audio-arrow-next {
  left: 0.35rem;
}

.audio-card::after {
  background: var(--gold);
  content: "";
  height: 4px;
  inset: 0 0 auto;
  position: absolute;
}

.audio-top {
  align-items: center;
  display: flex;
  gap: 0.8rem;
}

.audio-avatar {
  align-items: center;
  background: var(--black);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  flex: 0 0 48px;
  font-size: 0.9rem;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.audio-card span {
  color: var(--gold-deep);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.audio-card h3,
.audio-card p {
  margin: 0;
}

.audio-card p {
  color: var(--muted);
}

.audio-wave {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 0.38rem;
  height: 78px;
  justify-content: center;
}

.audio-wave i {
  animation: voice-bar 1.2s ease-in-out infinite;
  background: var(--gold);
  border-radius: 999px;
  display: block;
  height: 26px;
  width: 7px;
}

.audio-wave i:nth-child(2) { animation-delay: 0.1s; height: 42px; }
.audio-wave i:nth-child(3) { animation-delay: 0.2s; height: 30px; }
.audio-wave i:nth-child(4) { animation-delay: 0.3s; height: 54px; }
.audio-wave i:nth-child(5) { animation-delay: 0.4s; height: 34px; }
.audio-wave i:nth-child(6) { animation-delay: 0.5s; height: 46px; }
.audio-wave i:nth-child(7) { animation-delay: 0.6s; height: 24px; }

.audio-card audio {
  accent-color: var(--gold);
  width: 100%;
}

.featured-audio {
  background: var(--black-soft);
  border-color: rgba(216, 164, 71, 0.5);
  color: var(--white);
}

.featured-audio .audio-avatar {
  background: var(--gold);
  color: var(--black);
}

.featured-audio .audio-wave {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.featured-audio p {
  color: rgba(255, 255, 255, 0.74);
}

.audio-card:nth-child(odd) {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--line);
  color: var(--black);
}

.audio-card:nth-child(odd) .audio-avatar {
  background: var(--black);
  color: var(--gold);
}

.audio-card:nth-child(odd) .audio-wave {
  background: var(--paper);
  border-color: var(--line);
}

.audio-card:nth-child(odd) p {
  color: var(--muted);
}

.audio-card:nth-child(even) {
  background: var(--black-soft);
  border-color: rgba(216, 164, 71, 0.5);
  color: var(--white);
}

.audio-card:nth-child(even) .audio-avatar {
  background: var(--gold);
  color: var(--black);
}

.audio-card:nth-child(even) .audio-wave {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.audio-card:nth-child(even) p {
  color: rgba(255, 255, 255, 0.74);
}

.audio-dots {
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  margin-top: 1rem;
}

.audio-dots button {
  background: rgba(216, 164, 71, 0.45);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: block;
  height: 0.45rem;
  padding: 0;
  transition: width 180ms ease, background 180ms ease;
  width: 0.45rem;
}

.audio-dots button.is-active {
  background: var(--gold);
  width: 1.35rem;
}

.offer {
  background: var(--white);
}

.offer-panel {
  background: var(--black);
  border-radius: 10px;
  color: var(--white);
  display: grid;
  gap: 1.4rem;
  margin: 0 auto;
  max-width: 1120px;
  overflow: hidden;
  padding: 1rem;
}

.offer-image img {
  border-radius: 8px;
  max-height: 520px;
  object-fit: cover;
  width: 100%;
}

.offer-copy {
  padding: 0.4rem 0.2rem 0.6rem;
}

.offer-lines {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  margin: 1.2rem 0;
  overflow: hidden;
}

.offer-lines div {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 1rem;
}

.offer-lines div:last-child {
  border-bottom: 0;
}

.offer-lines span {
  color: rgba(255, 255, 255, 0.68);
}

.offer-lines strong {
  color: var(--gold);
}

.urgency {
  background: rgba(216, 164, 71, 0.15);
  border: 1px solid rgba(216, 164, 71, 0.4);
  border-radius: 8px;
  color: var(--gold);
  font-weight: 900;
  padding: 0.85rem 1rem;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin: 0 auto;
  max-width: 900px;
}

details {
  padding: 1rem;
}

details[open] {
  border-color: rgba(216, 164, 71, 0.8);
}

summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  padding-left: 2rem;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  background: var(--black);
  border-radius: 50%;
  color: var(--gold);
  content: "+";
  display: grid;
  height: 1.5rem;
  left: 0;
  place-items: center;
  position: absolute;
  top: 0.1rem;
  width: 1.5rem;
}

details[open] summary::after {
  background: var(--gold);
  color: var(--black);
  content: "-";
}

details p {
  margin: 0.7rem 0 0;
}

.final-cta {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.86), rgba(8, 8, 8, 0.94)),
    url("assets/faris-beard-oil.jpeg") center/cover;
  color: var(--white);
  padding: clamp(4rem, 10vw, 7rem) 1rem;
  text-align: center;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
}

.final-cta .button {
  margin-top: 1rem;
}

.sticky-whatsapp {
  animation: sticky-bounce 2.35s ease-in-out infinite;
  background: var(--whatsapp);
  bottom: 0.8rem;
  box-shadow: 0 18px 46px rgba(24, 182, 91, 0.32);
  color: var(--white);
  font-size: 1rem;
  left: 50%;
  max-width: 520px;
  min-height: 56px;
  position: fixed;
  right: auto;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  z-index: 50;
}

.pain-grid article:hover,
.benefit-grid article:hover,
.review-grid article:hover,
.audio-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes product-in {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(18px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(24, 182, 91, 0);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(24, 182, 91, 0.18);
  }
}

@keyframes sticky-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-7px);
  }
}

@keyframes voice-bar {
  0%,
  100% {
    transform: scaleY(0.72);
  }

  50% {
    transform: scaleY(1);
  }
}

@media (min-width: 700px) {
  body {
    padding-bottom: 0;
  }

  .nav-links {
    display: flex;
  }

  .hero {
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    grid-template-columns: 1.05fr 0.95fr;
    padding: 9.4rem clamp(1rem, 4vw, 4.5rem) 4rem;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .trust-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 680px;
  }

  .section {
    padding-left: clamp(1rem, 4vw, 4.5rem);
    padding-right: clamp(1rem, 4vw, 4.5rem);
  }

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

  .solution {
    display: block;
    padding: 0;
  }

  .solution-hit {
    bottom: 6.9%;
    height: 5.8%;
    left: 34%;
    right: auto;
    width: 32%;
  }

  .before-after-hit {
    bottom: 4.85%;
    height: 6.4%;
    left: 31%;
    right: auto;
    width: 38%;
  }

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

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

  .how-to-hit {
    bottom: 3.4%;
    height: 6.5%;
    left: 34%;
    right: auto;
    width: 32%;
  }

  .why-card {
    grid-template-columns: 1.1fr 0.9fr;
  }

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

  .audio-grid {
    padding: 0.5rem 0;
  }

  .audio-card {
    flex-basis: 100%;
    min-height: 320px;
  }

  .audio-arrow-prev {
    right: calc(100% + 1rem);
  }

  .audio-arrow-next {
    left: calc(100% + 1rem);
  }

  .audio-dots,
  .swipe-hint {
    display: flex;
  }

  .offer-panel {
    align-items: center;
    grid-template-columns: 0.92fr 1.08fr;
    padding: 1.2rem;
  }

  .offer-copy {
    padding: clamp(1rem, 3vw, 2.2rem);
  }

  .sticky-whatsapp {
    border-radius: 999px;
    bottom: 1.4rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(520px, calc(100% - 2.8rem));
  }
}

@media (max-width: 420px) {
  .top-strip {
    font-size: 0.72rem;
    gap: 0.4rem;
  }

  .top-strip span:not(:last-child)::after {
    margin-right: 0.4rem;
  }

  .nav-cta {
    display: none;
  }

  .nav-bar {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero {
    padding-top: 8.2rem;
  }
}

.site-header {
  display: none;
}

.image-hero {
  background: var(--black);
  display: block;
  min-height: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.image-hero,
.pain,
.before-after,
.solution,
.how-to {
  isolation: isolate;
  position: relative;
}

.image-hero::before,
.pain::before,
.before-after::before,
.solution::before,
.how-to::before {
  color: rgba(255, 255, 255, 0.18);
  content: "FARIS COSMETICS";
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(2.2rem, 8vw, 8rem);
  font-weight: 900;
  inset: 0;
  letter-spacing: 0.08em;
  opacity: 0.16;
  pointer-events: none;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-18deg);
  z-index: 3;
  display: grid;
  place-items: center;
}

.image-hero::after {
  display: none;
}

.image-hero picture,
.image-hero img {
  display: block;
  width: 100%;
}

.image-hero img {
  height: auto;
  object-fit: cover;
}

.hero-whatsapp-hit {
  border-radius: 8px;
  bottom: 5.15%;
  height: 5.25%;
  left: 14%;
  position: absolute;
  right: 14%;
  z-index: 4;
}

.hero-whatsapp-hit:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

@media (min-width: 700px) {
  .image-hero {
    display: block;
    min-height: auto;
    padding: 0;
  }

  .hero-whatsapp-hit {
    bottom: 11.2%;
    height: 8.2%;
    left: 5%;
    right: auto;
    width: 32.2%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

body,
main,
.section,
.reviews,
.faq,
.offer {
  background: var(--black);
}

.faq .section-heading h2,
.faq summary,
.offer h2 {
  color: var(--white);
}

.faq .section-heading p,
.faq p,
.offer-copy p {
  color: rgba(255, 255, 255, 0.74);
}

details,
.offer-panel {
  background: var(--black-soft);
  border-color: rgba(216, 164, 71, 0.28);
}

.offer-panel {
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.offer-lines {
  background: rgba(255, 255, 255, 0.06);
}
