/* ============================================
   Vitalii Smart Ring — Landing Page Styles
   ============================================ */

/* --- Design Tokens --- */
:root {
  --color-primary: #1a7a7a;
  --color-primary-dark: #145e5e;
  --color-primary-light: #e0f4f4;
  --color-accent: #e8654a;
  --color-accent-hover: #d4533a;
  --color-dark: #1a1a2e;
  --color-text: #2d2d3f;
  --color-text-light: #6b7280;
  --color-bg: #ffffff;
  --color-bg-alt: #f8f9fa;
  --color-border: #e5e7eb;

  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  --max-width: 1200px;
  --nav-height: 72px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 50%;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-primary-dark);
}

/* --- Accessibility --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-dark);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  top: 0.5rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.required {
  color: var(--color-accent);
}

.optional {
  color: var(--color-text-light);
  font-size: 0.875rem;
  font-weight: 400;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
  text-decoration: none;
  line-height: 1.4;
}

.btn:active {
  transform: scale(0.98);
}

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

.btn--accent:hover {
  background: var(--color-accent-hover);
  color: #fff;
}

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

.btn--outline:hover {
  border-color: var(--color-text-light);
  background: var(--color-bg-alt);
  color: var(--color-text);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* --- Animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }

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

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 100;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
  height: 100%;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.nav.scrolled .nav__logo {
  color: var(--color-dark);
}

.nav__links {
  display: none;
  gap: 2rem;
}

.nav__link {
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav__link:hover {
  color: #fff;
}

.nav.scrolled .nav__link {
  color: var(--color-text);
}

.nav.scrolled .nav__link:hover {
  color: var(--color-primary);
}

.nav__cta {
  display: none;
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 48px;
  min-height: 48px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background 0.3s;
}

.nav.scrolled .nav__hamburger span {
  background: var(--color-dark);
}

/* Desktop Nav */
@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }

  .nav__cta {
    display: inline-flex;
  }

  .nav__hamburger {
    display: none;
  }
}

/* ============================================
   Mobile Menu
   ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__content {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--color-bg);
  padding: var(--space-md);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open .mobile-menu__content {
  transform: translateX(0);
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-text);
  cursor: pointer;
  margin-left: auto;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.mobile-menu__link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
}

.mobile-menu__link:last-child {
  border-bottom: none;
  margin-top: var(--space-sm);
  text-align: center;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--color-dark) 0%, #16213e 50%, #0f3460 100%);
  padding: calc(var(--nav-height) + var(--space-lg)) var(--space-sm) var(--space-lg);
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero__container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.hero__content {
  max-width: 600px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 7vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
  animation: fadeInUp 0.8s ease-out;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero__cta {
  width: 100%;
  max-width: 320px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-sm);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  animation: fadeInUp 0.8s ease-out 0.45s both;
}

.hero__trust-divider {
  opacity: 0.3;
}

.hero__image {
  max-width: 400px;
  width: 100%;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero__image img {
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  object-fit: cover;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .hero__container {
    flex-direction: row;
    text-align: left;
  }

  .hero__content {
    flex: 1;
  }

  .hero__cta {
    width: auto;
  }

  .hero__trust {
    justify-content: flex-start;
  }

  .hero__image {
    flex: 1;
    max-width: 500px;
  }
}

/* ============================================
   Trust Bar
   ============================================ */
.trust-bar {
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.trust-bar__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text);
}

.trust-bar__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .trust-bar__container {
    grid-template-columns: repeat(4, auto);
    justify-content: center;
    gap: var(--space-lg);
  }

  .trust-bar__item {
    font-size: 0.9375rem;
  }
}

/* ============================================
   Problem → Solution Section
   ============================================ */
.problem-solution {
  padding: var(--space-xl) 0;
}

.problem-solution__points {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.problem-solution__point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: var(--space-sm);
  background: #fff5f3;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
}

.problem-solution__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 2px;
}

.problem-solution__point p {
  font-size: 1rem;
  line-height: 1.5;
}

.problem-solution__solution {
  text-align: center;
}

.problem-solution__meet {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-dark);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.problem-solution__meet strong {
  color: var(--color-primary);
}

.problem-solution__image {
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  object-fit: cover;
}

/* ============================================
   Features Grid
   ============================================ */
.features {
  padding: var(--space-xl) 0;
  background: var(--color-bg-alt);
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.features__card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-sm);
}

.features__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.features__card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
}

.features__card-icon svg {
  width: 24px;
  height: 24px;
}

.features__card-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}

.features__card-desc {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .features__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-md) var(--space-sm);
  }
}

@media (min-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   How It Works
   ============================================ */
.how-it-works {
  padding: var(--space-xl) 0;
}

.how-it-works__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.how-it-works__step {
  text-align: center;
  max-width: 280px;
}

.how-it-works__number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
}

.how-it-works__step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.how-it-works__step-desc {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.how-it-works__connector {
  width: 2px;
  height: 40px;
  background: var(--color-border);
}

@media (min-width: 768px) {
  .how-it-works__steps {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }

  .how-it-works__connector {
    width: 80px;
    height: 2px;
    margin-top: 28px;
  }
}

/* ============================================
   Product Showcase
   ============================================ */
.showcase {
  padding: var(--space-xl) 0;
  background: var(--color-bg-alt);
}

.showcase__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

/* Gallery */
.showcase__main-image {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #f3f4f6;
}

.showcase__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

.showcase__thumbnails {
  display: flex;
  gap: 0.5rem;
  margin-top: var(--space-sm);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.showcase__thumb {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: #f3f4f6;
  padding: 0;
  scroll-snap-align: start;
  transition: border-color 0.2s;
}

.showcase__thumb.active {
  border-color: var(--color-primary);
}

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

/* Options */
.showcase__price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}

.showcase__price-note {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-light);
  margin-top: 0.25rem;
}

.showcase__selector {
  margin-bottom: var(--space-md);
}

.showcase__selector-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.showcase__selector-label span {
  font-weight: 400;
}

/* Color swatches */
.showcase__colors {
  display: flex;
  gap: 0.75rem;
}

.showcase__color-swatch {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-border);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.showcase__color-swatch.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-primary-light);
}

/* Size buttons */
.showcase__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.showcase__size-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  background: var(--color-bg);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}

.showcase__size-btn:hover {
  border-color: var(--color-primary);
}

.showcase__size-btn.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* Sizing guide */
.showcase__sizing-guide {
  display: inline-block;
  margin-top: 0.5rem;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  font-family: var(--font-body);
  padding: 4px 0;
}

.showcase__sizing-chart {
  margin-top: 0.75rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
}

.showcase__sizing-chart table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.showcase__sizing-chart th,
.showcase__sizing-chart td {
  padding: 0.375rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.showcase__sizing-chart th {
  font-weight: 600;
  color: var(--color-dark);
}

.showcase__sizing-tip {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: 0.5rem;
}

/* Buy button */
.showcase__buy-btn {
  width: 100%;
  margin-bottom: var(--space-md);
}

/* Specs */
.showcase__specs {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.showcase__specs summary {
  padding: 0.75rem var(--space-sm);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.showcase__specs summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--color-text-light);
}

.showcase__specs[open] summary::after {
  content: '−';
}

.showcase__specs-content {
  padding: 0 var(--space-sm) var(--space-sm);
}

.showcase__specs-content dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.showcase__specs-content dl div {
  display: flex;
  justify-content: space-between;
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9375rem;
}

.showcase__specs-content dt {
  font-weight: 500;
  color: var(--color-text-light);
}

.showcase__specs-content dd {
  font-weight: 600;
  color: var(--color-dark);
}

/* In the box */
.showcase__inbox {
  padding: var(--space-sm);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.showcase__inbox h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.showcase__inbox ul {
  list-style: none;
}

.showcase__inbox li {
  font-size: 0.875rem;
  color: var(--color-text-light);
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.showcase__inbox li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .showcase__layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .showcase__thumb {
    width: 80px;
    height: 80px;
  }
}

/* ============================================
   Comparison Table
   ============================================ */
.compare {
  padding: var(--space-xl) 0;
}

.compare__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.compare__table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.compare__table thead {
  background: var(--color-dark);
  color: #fff;
}

.compare__table th {
  padding: 1rem 0.75rem;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

.compare__table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.compare__table tbody tr:last-child td {
  border-bottom: none;
}

.compare__table tbody tr:nth-child(even) {
  background: var(--color-bg-alt);
}

.compare__highlight {
  background: var(--color-primary-light) !important;
}

.compare__table thead .compare__highlight {
  background: var(--color-primary) !important;
}

/* Sticky first column on mobile */
.compare__table th:first-child,
.compare__table td:first-child {
  position: sticky;
  left: 0;
  background: inherit;
  font-weight: 500;
  z-index: 1;
}

.compare__table thead th:first-child {
  background: var(--color-dark);
}

.compare__table tbody tr:nth-child(even) td:first-child {
  background: var(--color-bg-alt);
}

.compare__table tbody tr:nth-child(odd) td:first-child {
  background: var(--color-bg);
}

/* ============================================
   Reviews / Social Proof
   ============================================ */
.reviews {
  padding: var(--space-xl) 0;
  background: var(--color-bg-alt);
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.reviews__card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.reviews__stars {
  color: #f59e0b;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.reviews__quote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  font-style: normal;
}

.reviews__author {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: normal;
  font-weight: 500;
}

@media (min-width: 768px) {
  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
  padding: var(--space-xl) 0;
}

.faq__list {
  max-width: 768px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  text-align: left;
  gap: var(--space-sm);
  min-height: 48px;
}

.faq__question:hover {
  color: var(--color-primary);
}

.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--color-text-light);
}

.faq__item.open .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq__answer p {
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.faq__answer a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* No-JS fallback: FAQ expanded by default */
noscript ~ .faq__list .faq__answer,
.faq__item:target .faq__answer {
  max-height: none;
}

/* ============================================
   Order Form
   ============================================ */
.order {
  padding: var(--space-xl) 0;
  background: var(--color-bg-alt);
}

.order__wrapper {
  max-width: 560px;
  margin: 0 auto;
}

.order__form {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
}

.order__field {
  margin-bottom: var(--space-sm);
}

.order__field label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.375rem;
}

.order__field input,
.order__field select {
  width: 100%;
  padding: 0.75rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.2s;
}

.order__field input:focus,
.order__field select:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.order__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.order__submit {
  width: 100%;
  margin-top: var(--space-sm);
}

.order__trust {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-top: var(--space-sm);
  line-height: 1.5;
}

/* Success state */
.order__success {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.order__success-icon {
  width: 64px;
  height: 64px;
  color: var(--color-primary);
  margin: 0 auto var(--space-sm);
}

.order__success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.order__success p {
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================
   Final CTA
   ============================================ */
.final-cta {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--color-dark) 0%, #16213e 100%);
  text-align: center;
  color: #fff;
}

.final-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fff;
}

.final-cta__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-md);
}

.final-cta__btn {
  margin-bottom: var(--space-md);
}

.final-cta__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.final-cta__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}

.final-cta__badge svg {
  color: var(--color-accent);
}

.final-cta__payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.final-cta__payment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 0.75rem;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.footer__tagline {
  font-size: 0.875rem;
  margin-top: 0.25rem;
  color: rgba(255,255,255,0.5);
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.footer__col-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.footer__col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.footer__col a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.footer__copyright {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

@media (min-width: 768px) {
  .footer__top {
    grid-template-columns: 1.5fr 2fr;
  }
}

/* ============================================
   Mobile Sticky CTA
   ============================================ */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--color-accent);
  padding: 0;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}

.mobile-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.25px;
}

@media (min-width: 768px) {
  .mobile-cta {
    display: none !important;
  }
}

/* ============================================
   Cookie Consent Banner
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: var(--space-sm);
}

.cookie-banner__content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-banner__content > p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.cookie-banner__manage {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  font-family: var(--font-body);
  padding: 4px;
}

.cookie-banner__preferences {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.cookie-banner__option {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--color-text);
  cursor: pointer;
}

.cookie-banner__option input {
  accent-color: var(--color-primary);
}

/* ============================================
   Legal Pages (shared)
   ============================================ */
.legal {
  padding: calc(var(--nav-height) + var(--space-lg)) var(--space-sm) var(--space-xl);
  max-width: 768px;
  margin: 0 auto;
}

.legal h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.legal .legal__updated {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.legal h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-top: var(--space-md);
  margin-bottom: 0.75rem;
}

.legal p {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
  color: var(--color-text);
}

.legal ul,
.legal ol {
  margin-bottom: var(--space-sm);
  padding-left: 1.5rem;
}

.legal li {
  margin-bottom: 0.375rem;
  line-height: 1.6;
  color: var(--color-text);
}

.legal a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ============================================
   Legal Page Nav (simplified)
   ============================================ */
.nav--legal {
  background: var(--color-bg);
  box-shadow: var(--shadow-sm);
}

.nav--legal .nav__logo {
  color: var(--color-dark);
}

.nav--legal .nav__link {
  color: var(--color-text);
}

.nav--legal .nav__link:hover {
  color: var(--color-primary);
}

.nav--legal .nav__hamburger span {
  background: var(--color-dark);
}
