/* ============================================
   RightShop Landing Page Styles
   Brand Colors, Typography, Layout
   ============================================ */

/* --- Font Faces --- */
@font-face {
  font-family: 'Newsreader';
  src: url('fonts/Newsreader/Newsreader-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Newsreader';
  src: url('fonts/Newsreader/Newsreader-Italic-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Zalando Sans';
  src: url('fonts/Zalando_Sans/ZalandoSans-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Zalando Sans';
  src: url('fonts/Zalando_Sans/ZalandoSans-Italic-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* --- CSS Custom Properties --- */
:root {
  /* Primary */
  --restorative-depth: #143E4F;
  --clear-balance: #1B9098;
  --fresh-recovery: #BFFAD0;

  /* Secondary */
  --daylight: #FEE443;
  --warmth: #F25840;
  --grounded: #A5AC1C;
  --boost: #B22660;

  /* Neutrals */
  --bare: #F7F7F5;
  --mineral: #464141;
  --overnight: #001523;

  /* Typography */
  --font-heading: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body: 'Zalando Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-max: 1600px;
  --container-padding: 0 60px;

  /* Transitions */
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--overnight);
  background-color: var(--bare);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

ul, ol {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
}

h1 {
  font-size: clamp(45px, 5vw, 72px);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(24px, 2.5vw, 36px);
}

h4 {
  font-size: clamp(18px, 1.5vw, 24px);
}

p {
  margin-bottom: 1em;
}

.text-italic {
  font-style: italic;
}

.accent-text {
  color: var(--clear-balance);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--overnight);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--clear-balance);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27, 144, 152, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--overnight);
  border: 1.5px solid var(--overnight);
}

.btn-secondary:hover {
  background-color: var(--overnight);
  color: #fff;
  transform: translateY(-2px);
}

.btn-light {
  background-color: #fff;
  color: var(--overnight);
}

.btn-light:hover {
  background-color: var(--fresh-recovery);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(191, 250, 208, 0.3);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
}

.btn:hover svg {
  transform: translateX(4px);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
}

.nav.scrolled {
  background: rgba(247, 247, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 28px;
  line-height: 1;
  color: #fff;
  transition: color var(--transition-base);
  display: flex;
  align-items: baseline;
  gap: 0;
}

.nav.scrolled .nav-logo {
  color: var(--overnight);
}

.nav-logo .right {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
}

.nav-logo .shop {
  font-family: var(--font-body);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-base);
}

.nav.scrolled .nav-links a {
  color: var(--mineral);
}

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

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

.nav-cta {
  font-size: 14px;
  padding: 12px 28px;
}

.nav .btn-ghost {
  border-color: rgba(255, 255, 255, 0.3);
}

.nav.scrolled .btn-ghost {
  border-color: var(--overnight);
  color: var(--overnight);
}

.nav.scrolled .btn-ghost:hover {
  background-color: var(--overnight);
  color: #fff;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all var(--transition-base);
  border-radius: 2px;
}

.nav.scrolled .nav-toggle span {
  background: var(--overnight);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: var(--overnight);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 21, 35, 0.7) 0%, rgba(20, 62, 79, 0.4) 50%, transparent 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  color: #fff;
  padding-top: 160px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fresh-recovery);
  margin-bottom: 28px;
}

.hero-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--fresh-recovery);
}

.hero h1 {
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  font-family: var(--font-heading);
}

.hero-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
  max-width: 680px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(14px, 1.3vw, 19px);
  letter-spacing: 0.02em;
  color: var(--fresh-recovery);
  margin-top: 0;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* --- Stats / The Real Deal --- */
.stats-section {
  padding: 100px 0;
  background: var(--overnight);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 144, 152, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.stats-content h2 {
  font-style: italic;
  margin-bottom: 24px;
  color: var(--fresh-recovery);
}

.stats-content p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.stats-source {
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
}

.stats-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-number {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 48px;
  color: var(--fresh-recovery);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* --- Why RightShop --- */
.why-section {
  padding: var(--section-padding);
  background: var(--bare);
  position: relative;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--fresh-recovery);
  opacity: 0.6;
  z-index: -1;
}

.why-content {
  padding: 20px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clear-balance);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--clear-balance);
}

.why-content h2 {
  margin-bottom: 28px;
  font-style: italic;
}

.why-content p {
  font-size: 17px;
  color: var(--mineral);
  margin-bottom: 20px;
}

.why-list {
  margin: 28px 0;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 16px;
  color: var(--mineral);
}

.why-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warmth);
  margin-top: 8px;
}

.why-highlight {
  margin-top: 32px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--restorative-depth), var(--clear-balance));
  border-radius: 16px;
  color: #fff;
}

.why-highlight p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 16px;
}

.why-highlight strong {
  color: var(--fresh-recovery);
}

/* --- How It Works --- */
.how-section {
  padding: var(--section-padding);
  background: #fff;
  position: relative;
  overflow: hidden;
}

.how-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(27, 144, 152, 0.1);
  pointer-events: none;
}

.how-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.how-header h2 {
  font-style: italic;
  margin-bottom: 16px;
}

.how-header p {
  font-size: 18px;
  color: var(--mineral);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.how-card {
  padding: 48px 36px;
  border-radius: 24px;
  background: var(--bare);
  border: 1px solid rgba(20, 62, 79, 0.06);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.how-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 21, 35, 0.08);
  border-color: rgba(27, 144, 152, 0.2);
}

.how-card-number {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 64px;
  color: var(--restorative-depth);
  line-height: 1;
  margin-bottom: 20px;
}

.how-card h3 {
  font-style: italic;
  margin-bottom: 8px;
  font-size: 24px;
}

.how-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--clear-balance);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.how-card p {
  font-size: 15px;
  color: var(--mineral);
  line-height: 1.7;
}

.how-card-list {
  margin-top: 16px;
}

.how-card-list li {
  font-size: 15px;
  color: var(--mineral);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.how-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clear-balance);
}

/* --- RightScore Section --- */
.score-section {
  padding: var(--section-padding);
  background: var(--restorative-depth);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.score-bg-element {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  opacity: 0.08;
}

.score-bg-element svg {
  width: 100%;
  height: 100%;
}

.score-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.score-content .section-label {
  color: var(--fresh-recovery);
}

.score-content .section-label::before {
  background: var(--fresh-recovery);
}

.score-content h2 {
  font-style: italic;
  margin-bottom: 24px;
}

.score-content > p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.score-content .sub-note {
  font-size: 16px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

.score-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.score-pillar {
  padding: 32px 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-base);
}

.score-pillar:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(191, 250, 208, 0.3);
}

.score-pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(191, 250, 208, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--fresh-recovery);
  font-size: 22px;
}

.score-pillar h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
}

.score-pillar p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.6;
}

/* --- Features / What You Can Do --- */
.features-section {
  padding: var(--section-padding);
  background: var(--bare);
  position: relative;
}

.features-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.features-header h2 {
  font-style: italic;
  margin-bottom: 16px;
}

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

.feature-card {
  padding: 40px 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(20, 62, 79, 0.06);
  text-align: center;
  transition: all var(--transition-slow);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 21, 35, 0.08);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.feature-icon.scan {
  background: rgba(27, 144, 152, 0.1);
  color: var(--clear-balance);
}

.feature-icon.swap {
  background: rgba(191, 250, 208, 0.4);
  color: var(--restorative-depth);
}

.feature-icon.flag {
  background: rgba(254, 228, 67, 0.25);
  color: var(--grounded);
}

.feature-icon.shop {
  background: rgba(178, 38, 96, 0.08);
  color: var(--boost);
}

.feature-card h4 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--mineral);
  margin: 0;
}

/* --- Testimonials / RightVoices --- */
.voices-section {
  padding: var(--section-padding);
  background: #fff;
  overflow: hidden;
}

.voices-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.voices-header h2 {
  font-style: italic;
  margin-bottom: 12px;
}

.voices-header p {
  color: var(--mineral);
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.voice-card {
  padding: 40px 32px;
  border-radius: 24px;
  background: var(--bare);
  border: 1px solid rgba(20, 62, 79, 0.04);
  transition: all var(--transition-slow);
}

.voice-card:hover {
  box-shadow: 0 12px 40px rgba(0, 21, 35, 0.06);
}

.voice-card-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--overnight);
  margin-bottom: 28px;
  position: relative;
  padding-top: 32px;
}

.voice-card-quote::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 0;
  font-size: 56px;
  color: var(--clear-balance);
  opacity: 0.4;
  font-family: var(--font-heading);
  line-height: 1;
}

.voice-card-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.voice-card-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.voice-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-card-name {
  font-weight: 600;
  font-size: 15px;
}

.voice-card-role {
  font-size: 13px;
  color: var(--mineral);
}

/* --- Privacy Section --- */
.privacy-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--restorative-depth) 0%, var(--clear-balance) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.privacy-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.privacy-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.privacy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.privacy-content h2 {
  font-style: italic;
  margin-bottom: 24px;
}

.privacy-content > p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}

.privacy-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.privacy-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(191, 250, 208, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fresh-recovery);
  font-size: 18px;
}

.privacy-item h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}

.privacy-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.privacy-badge {
  text-align: center;
  padding: 48px;
}

.privacy-badge-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(191, 250, 208, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.privacy-badge-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 18px;
  text-align: center;
  line-height: 1.3;
}

.privacy-standards {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* --- Categories Section --- */
.categories-section {
  padding: var(--section-padding);
  background: var(--bare);
}

.categories-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.categories-image {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1/1;
  position: relative;
}

.categories-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.categories-content h2 {
  font-style: italic;
  margin-bottom: 24px;
}

.categories-content > p {
  font-size: 17px;
  color: var(--mineral);
  margin-bottom: 28px;
}

.categories-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.category-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 500;
  color: var(--overnight);
}

.category-item .tag-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.category-item:nth-child(1) .tag-dot { background: var(--clear-balance); }
.category-item:nth-child(2) .tag-dot { background: var(--boost); }
.category-item:nth-child(3) .tag-dot { background: var(--grounded); }
.category-item:nth-child(4) .tag-dot { background: var(--daylight); }

.categories-coming {
  font-size: 14px;
  color: var(--mineral);
  font-style: italic;
}

/* --- Built for Trust --- */
.trust-section {
  padding: 80px 0;
  background: var(--overnight);
  color: #fff;
  text-align: center;
}

.trust-section h2 {
  font-style: italic;
  margin-bottom: 16px;
}

.trust-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin: 0 auto;
}

/* --- FAQ Section --- */
.faq-section {
  padding: var(--section-padding);
  background: #fff;
}

.faq-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.faq-header h2 {
  font-style: italic;
  margin-bottom: 12px;
}

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

.faq-item {
  border-bottom: 1px solid rgba(20, 62, 79, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 20px;
  color: var(--overnight);
  transition: color var(--transition-base);
}

.faq-question:hover {
  color: var(--clear-balance);
}

.faq-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(20, 62, 79, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-base);
  color: var(--overnight);
}

.faq-item.active .faq-icon {
  background: var(--clear-balance);
  border-color: var(--clear-balance);
}

.faq-item.active .faq-icon svg {
  transform: rotate(45deg);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer-inner {
  padding: 0 0 28px;
  font-size: 16px;
  color: var(--mineral);
  line-height: 1.8;
  max-width: 680px;
}

/* --- CTA / Get Access Section --- */
.cta-section {
  padding: var(--section-padding);
  background: var(--overnight);
  position: relative;
  overflow: hidden;
}

.cta-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(27, 144, 152, 0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(191, 250, 208, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  color: #fff;
}

.cta-inner h2 {
  font-style: italic;
  margin-bottom: 20px;
}

.cta-inner > p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
}

.cta-perks {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.cta-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.cta-perk-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fresh-recovery);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* --- The RightDose Section --- */
.rightdose-section {
  padding: 80px 0;
  background: var(--bare);
}

.rightdose-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 56px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(20, 62, 79, 0.06);
}

.rightdose-content h3 {
  font-style: italic;
  margin-bottom: 12px;
}

.rightdose-content p {
  font-size: 16px;
  color: var(--mineral);
  margin: 0;
  max-width: 480px;
}

/* --- Footer --- */
.footer {
  padding: 80px 0 40px;
  background: var(--overnight);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
  font-size: 24px;
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-social a:hover {
  background: var(--clear-balance);
  border-color: var(--clear-balance);
  color: #fff;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-base);
}

.footer-col ul li a:hover {
  color: var(--fresh-recovery);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
    --container-padding: 0 28px;
  }

  .stats-inner,
  .why-inner,
  .score-inner,
  .privacy-inner,
  .categories-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .voices-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .score-pillars {
    grid-template-columns: 1fr 1fr;
  }

  .rightdose-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
    --container-padding: 0 20px;
  }

  body {
    font-size: 16px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overnight);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
  }

  .nav-links .btn {
    font-size: 16px;
    padding: 14px 32px;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

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

  .hero-content {
    padding-top: 100px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-scroll {
    display: none;
  }

  .stats-numbers {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-number {
    font-size: 36px;
  }

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

  .score-pillars {
    grid-template-columns: 1fr;
  }

  .cta-perks {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .privacy-badge {
    padding: 24px;
  }

  .why-image {
    aspect-ratio: 16/10;
  }

  .categories-image {
    aspect-ratio: 16/10;
  }

  .categories-inner {
    direction: ltr;
  }

  .categories-inner > .categories-image {
    order: 2;
  }

  .categories-inner > .categories-content {
    order: 1;
  }
}

@media (max-width: 480px) {
  .stats-numbers {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}
