@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --color-bg: #0f0e0d;
  --color-bg-2: #1a1917;
  --color-bg-3: #2a2724;
  --color-primary: #ff6b2b;
  --color-primary-light: #ff8c5a;
  --color-primary-glow: rgba(255, 107, 43, 0.25);
  --color-cream: #f5ede3;
  --color-cream-muted: #e8d5c0;
  --color-text: rgba(245, 237, 227, 0.88);
  --color-text-muted: rgba(245, 237, 227, 0.55);
  --color-text-dim: rgba(245, 237, 227, 0.35);
  --color-border: rgba(245, 237, 227, 0.10);
  --color-border-strong: rgba(245, 237, 227, 0.20);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 50px;
  --shadow-glow: 0 0 40px rgba(255, 107, 43, 0.20);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.40);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.on-dark {
  color: rgba(245, 237, 227, 0.88);
}
.on-dark h1,
.on-dark h2,
.on-dark h3,
.on-dark h4 {
  color: var(--color-cream);
}
.on-dark p {
  color: rgba(245, 237, 227, 0.70);
}
.on-dark a:not(.btn) {
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  box-sizing: border-box;
}

.container--narrow {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

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

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

/* ─── PHOTO PLACEHOLDER ─── */
.photo-placeholder {
  background: linear-gradient(135deg, #ff6eb4, #ff3d9a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  min-height: 200px;
  border-radius: inherit;
}
.photo-placeholder__icon {
  font-size: 32px;
}
.photo-placeholder__label {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: sans-serif;
  text-align: center;
  padding: 0 16px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  overflow: hidden;
  text-decoration: none;
  position: relative;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 24px rgba(255, 107, 43, 0.35);
}
.btn--primary:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 107, 43, 0.50);
}
.btn--primary:active {
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  color: var(--color-cream);
  border: 1.5px solid var(--color-border-strong);
}
.btn--ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--lg {
  padding: 18px 44px;
  font-size: 17px;
}

.btn svg {
  flex-shrink: 0;
}

.btn.is-loading {
  pointer-events: none;
  opacity: 0.8;
}

/* ─── SPINNER ─── */
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  background: rgba(15, 14, 13, 0.96);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.50);
  backdrop-filter: blur(16px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-cream);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav__logo span {
  color: var(--color-primary);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.nav__links a:hover {
  color: var(--color-primary);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-cream);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── ADVERTORIAL BANNER ─── */
.advertorial-bar {
  background: var(--color-bg-3);
  border-bottom: 1px solid var(--color-border);
  padding: 8px 0;
  text-align: center;
  font-size: 12px;
  color: var(--color-text-dim);
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-top: 68px;
  position: relative;
  z-index: 1;
}
.advertorial-bar strong {
  color: var(--color-primary);
}

/* ─── MARQUEE ─── */
.marquee-section {
  background: var(--color-primary);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.marquee-dot {
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,0.55);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--color-bg);
}

.hero__bg-blob {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blob-morph 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.hero__bg-blob--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255, 107, 43, 0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.hero__bg-blob--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 107, 43, 0.08) 0%, transparent 70%);
  bottom: 0;
  left: -100px;
  animation-delay: -6s;
}

@keyframes blob-morph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25%       { border-radius: 40% 60% 60% 40% / 40% 60% 40% 60%; }
  50%       { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  75%       { border-radius: 60% 40% 40% 60% / 30% 70% 60% 40%; }
}

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

.hero__content {
  animation: fade-up 0.9s ease forwards;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.hero__eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.08;
  color: var(--color-cream);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: italic;
  color: var(--color-primary);
}

.hero__subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(245, 237, 227, 0.68);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 460px;
  font-weight: 400;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero__price-tag {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-cream);
}
.hero__price-tag span {
  font-size: 14px;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

/* ─── HERO IMAGE + FLOATING BADGES (Hero J) ─── */
.hero__visual {
  position: relative;
  animation: fade-up 0.9s ease 0.2s forwards;
  opacity: 0;
}

.hero__img-wrap {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.hero__img-wrap img {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.60));
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* Floating benefit cards */
.hero__badge {
  position: absolute;
  z-index: 10;
  background: rgba(42, 39, 36, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
  animation: fade-up 0.9s ease forwards;
  white-space: nowrap;
}
.hero__badge--1 { top: 5%;  left: -10%;  animation-delay: 0.5s; opacity: 0; }
.hero__badge--2 { top: 5%;  right: -8%; animation-delay: 0.7s; opacity: 0; }
.hero__badge--3 { bottom: 22%; left: -12%; animation-delay: 0.9s; opacity: 0; }
.hero__badge--4 { bottom: 22%; right: -10%; animation-delay: 1.1s; opacity: 0; }

.hero__badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__badge-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__badge-text {
  display: flex;
  flex-direction: column;
}
.hero__badge-label {
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 500;
}
.hero__badge-value {
  font-size: 14px;
  color: var(--color-cream);
  font-weight: 700;
}

/* ─── WAVE SVG DIVIDER ─── */
.wave-divider {
  position: relative;
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ─── STATS STRIP (N4) ─── */
.stats-strip {
  background: var(--color-bg-3);
  padding: 32px 0;
  position: relative;
  z-index: 2;
}

.stats-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.stats-strip__item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.stats-strip__item:not(:last-child) {
  border-right: 1px solid var(--color-border);
  padding-right: 32px;
}

.stats-strip__num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.stats-strip__info {
  display: flex;
  flex-direction: column;
}
.stats-strip__label {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 500;
}
.stats-strip__desc {
  font-size: 15px;
  color: var(--color-cream);
  font-weight: 600;
}

/* ─── SECTION HEADINGS ─── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--color-cream);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--color-primary);
}

.section-lead {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 600px;
}

/* ─── VIDEO SECTION ─── */
.video-section {
  padding: 80px 0;
  background: var(--color-bg-2);
  position: relative;
}

.video-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.video-section__content {
  order: 2;
}

.video-section__media {
  order: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.video-section__media video {
  width: 100%;
  height: auto;
  display: block;
}

.video-feature-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.video-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--color-text);
}
.video-feature-list__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.video-feature-list__icon svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── SPEC TABLE ─── */
.specs-section {
  padding: 100px 0;
  background: var(--color-bg);
  position: relative;
}

.table-scroll {
  max-width: 900px;
  margin: 48px auto 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(0,0,0,0.40);
  border: 1px solid var(--color-border);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  background: var(--color-bg-2);
}

.spec-table th,
.spec-table td {
  padding: 16px 24px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--color-text);
}

.spec-table thead th {
  background: var(--color-bg-3);
  color: var(--color-cream);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.spec-table__label {
  background: rgba(255, 107, 43, 0.06) !important;
  font-weight: 600;
  text-align: left !important;
  color: var(--color-cream) !important;
  font-size: 14px;
}

.spec-table__hl {
  background: rgba(255, 107, 43, 0.12) !important;
  color: var(--color-primary) !important;
  font-weight: 700 !important;
}

.spec-table thead th.spec-table__hl {
  background: var(--color-primary) !important;
  color: #fff !important;
}

.spec-table tbody tr:last-child td,
.spec-table tbody tr:last-child th {
  border-bottom: none;
}

.spec-table tbody tr:hover td,
.spec-table tbody tr:hover th {
  background: rgba(255, 107, 43, 0.04);
}

/* ─── FEATURE GRID ─── */
.features-section {
  padding: 100px 0;
  background: var(--color-bg-2);
  position: relative;
}

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

.feature-card {
  background: var(--color-bg-3);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,43,0.08), transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  border-color: rgba(255, 107, 43, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(255,107,43,0.20), rgba(255,107,43,0.08));
  border: 1px solid rgba(255,107,43,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 10px;
  line-height: 1.25;
}

.feature-card__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ─── COMPARISON TABLE ─── */
.comparison-section {
  padding: 100px 0;
  background: var(--color-bg);
  position: relative;
}

/* ─── GALLERY ─── */
.gallery-section {
  padding: 100px 0;
  background: var(--color-bg-2);
  position: relative;
}

.gallery-carousel {
  margin-top: 48px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-carousel__frame {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gallery-carousel__viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-bg-3);
  box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 10;
  touch-action: pan-y;
}

.gallery-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-carousel__slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gallery-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-sm);
}

.gallery-carousel__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border-strong);
  background: rgba(26, 25, 23, 0.85);
  color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  backdrop-filter: blur(8px);
}

.gallery-carousel__arrow svg {
  width: 22px;
  height: 22px;
}

.gallery-carousel__arrow:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.05);
}

.gallery-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.gallery-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--color-border-strong);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.gallery-carousel__dot.is-active {
  background: var(--color-primary);
  transform: scale(1.2);
}

.gallery-carousel__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.gallery-carousel__thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: var(--color-bg-3);
  cursor: pointer;
  opacity: 0.55;
  transition: opacity var(--transition), border-color var(--transition), transform var(--transition);
}

.gallery-carousel__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-carousel__thumb:hover {
  opacity: 0.85;
}

.gallery-carousel__thumb.is-active {
  opacity: 1;
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* ─── FAQ ─── */
.faq-section {
  padding: 100px 0;
  background: var(--color-bg);
  position: relative;
}

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

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
  background: var(--color-bg-2);
}

.faq-item.faq--open {
  border-color: rgba(255, 107, 43, 0.40);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: color var(--transition);
}

.faq-item.faq--open .faq-trigger {
  color: var(--color-primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.faq--open .faq-icon {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--color-cream);
  stroke-width: 2.5;
  stroke-linecap: round;
}

.faq-item.faq--open .faq-icon svg {
  stroke: #fff;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.faq--open .faq-body {
  max-height: 400px;
}

.faq-body__inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ─── ORDER / PRODUCT BLOCK ─── */
.order-section {
  padding: 100px 0;
  background: var(--color-bg-3);
  position: relative;
  overflow: hidden;
}

.order-section__blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: radial-gradient(ellipse, rgba(255,107,43,0.10) 0%, transparent 70%);
  top: -100px;
  right: -150px;
  pointer-events: none;
  animation: blob-morph 14s ease-in-out infinite;
}

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

.order-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
}

.order-img-wrap img {
  width: 100%;
  object-fit: contain;
  display: block;
  padding: 24px;
}

.order-content {}

.order-content__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  color: var(--color-cream);
  line-height: 1.15;
  margin-bottom: 12px;
}

.order-content__sub {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.order-content__price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.order-content__price-note {
  font-size: 13px;
  color: var(--color-text-dim);
  margin-bottom: 28px;
}

.order-trust-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.order-trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-muted);
}
.order-trust-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── DISCLAIMER BLOCK ─── */
.disclaimer-block {
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: var(--color-text-dim);
  line-height: 1.6;
}
.disclaimer-block a {
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── FOOTER ─── */
.footer {
  background: #0a0908;
  border-top: 1px solid var(--color-border);
  padding: 60px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {}
.footer__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-cream);
  margin-bottom: 12px;
}
.footer__logo span {
  color: var(--color-primary);
}
.footer__tagline {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-dim);
}
.footer__contact a {
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.footer__contact a:hover {
  color: var(--color-primary);
}

.footer__col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-cream);
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.footer__links a:hover {
  color: var(--color-primary);
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--color-text-dim);
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 680px;
  background: var(--color-bg-2);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  z-index: 999;
  box-shadow: 0 16px 64px rgba(0,0,0,0.60);
  display: none;
}
.cookie-banner.visible {
  display: block;
}

.cookie-banner__text {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner__text a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.cookie-btn--accept {
  background: var(--color-primary);
  color: #fff;
}
.cookie-btn--accept:hover {
  background: var(--color-primary-light);
}
.cookie-btn--reject {
  background: var(--color-bg-3);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.cookie-btn--reject:hover {
  border-color: var(--color-border-strong);
  color: var(--color-cream);
}
.cookie-btn--configure {
  background: transparent;
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  padding-left: 0;
  padding-right: 0;
}
.cookie-btn--configure:hover {
  color: var(--color-cream);
}

.cookie-banner__config {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}
.cookie-banner__config.open {
  display: block;
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}
.cookie-toggle-label {
  font-size: 13px;
  color: var(--color-text);
  font-weight: 600;
}
.cookie-toggle-note {
  font-size: 12px;
  color: var(--color-text-dim);
}

.toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-track {
  position: absolute;
  inset: 0;
  background: var(--color-bg-3);
  border-radius: 11px;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  cursor: pointer;
}
.toggle-track::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: var(--color-text-dim);
  border-radius: 50%;
  transition: var(--transition);
}
input:checked + .toggle-track {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
input:checked + .toggle-track::before {
  left: 20px;
  background: #fff;
}
input:disabled + .toggle-track {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-btn--save {
  margin-top: 12px;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.cookie-btn--save:hover {
  background: var(--color-primary-light);
}

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--color-bg-2);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal-box {
  transform: translateY(0);
}
.modal-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,107,43,0.20), rgba(255,107,43,0.08));
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.modal-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 12px;
}
.modal-text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}
.modal-close {
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover {
  background: var(--color-primary-light);
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ─── CHECKOUT PAGE STYLES ─── */
.checkout-page {
  background: var(--color-bg);
  min-height: 100vh;
  padding: 100px 0 60px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

.checkout-form-wrap {
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.checkout-section-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-cream);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 13px 16px;
  background: var(--color-bg-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--color-primary);
  background: rgba(255,107,43,0.04);
}
.form-input.error,
.form-input.error-input {
  border-color: #c62828;
}
.form-input.valid-input {
  border-color: #FF8F00;
}
.form-input::placeholder {
  color: var(--color-text-dim);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-error {
  font-size: 12px;
  color: #e84040;
  margin-top: 4px;
  display: none;
}
.form-error.visible {
  display: block;
}

.form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}
.form-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.form-checkbox-label {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.checkout-submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 24px rgba(255,107,43,0.35);
  margin-top: 8px;
}
.checkout-submit-btn:hover:not(:disabled) {
  background: var(--color-primary-light);
  transform: translateY(-2px);
}
.checkout-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Order summary */
.order-summary-card {
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 100px;
}

.order-summary__product {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 20px;
}

.order-summary__img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-bg-3);
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}
.order-summary__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.order-summary__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 4px;
}
.order-summary__qty {
  font-size: 13px;
  color: var(--color-text-muted);
}

.order-summary__line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}
.order-summary__line--total {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-cream);
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  margin-top: 4px;
}
.order-summary__line--total .price-val {
  color: var(--color-primary);
}

/* Seller block on checkout */
.seller-block {
  background: rgba(255,107,43,0.06);
  border: 1px solid rgba(255,107,43,0.20);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 24px;
}
.seller-block__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.seller-block__info {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.seller-block__info a {
  color: var(--color-primary);
}

.order-terms-note {
  font-size: 12px;
  color: var(--color-text-dim);
  line-height: 1.6;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}
.order-terms-note a {
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cod-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,43,0.10);
  border: 1px solid rgba(255,107,43,0.25);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.cod-badge svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* select */
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ff6b2b' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

select.form-input option {
  background: var(--color-bg-2);
  color: var(--color-cream);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero {
    text-align: center;
    padding: 120px 0 60px;
  }
  .hero__subtitle {
    margin-inline: auto;
  }
  .hero__cta-group {
    justify-content: center;
  }
  .hero__img-wrap img {
    max-width: 380px;
  }
  .hero__badge--1,
  .hero__badge--3 {
    left: 0;
  }
  .hero__badge--2,
  .hero__badge--4 {
    right: 0;
  }
  .stats-strip__inner {
    flex-wrap: wrap;
    gap: 20px;
  }
  .stats-strip__item {
    flex: 0 0 calc(50% - 10px);
  }
  .stats-strip__item:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .video-section__inner {
    grid-template-columns: 1fr;
  }
  .video-section__content { order: 1; }
  .video-section__media { order: 2; }
  .order-inner {
    grid-template-columns: 1fr;
  }
  .gallery-carousel__arrow {
    width: 40px;
    height: 40px;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .order-summary-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--color-bg-2);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    z-index: 99;
  }
  .nav__links.nav__links--open {
    transform: translateY(0);
    opacity: 1;
  }
  .nav__hamburger {
    display: flex;
  }
  .hero__badge {
    display: none;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .gallery-carousel__frame {
    gap: 8px;
  }
  .gallery-carousel__arrow {
    width: 36px;
    height: 36px;
  }
  .gallery-carousel__arrow svg {
    width: 18px;
    height: 18px;
  }
  .gallery-carousel__slide {
    padding: 12px;
  }
  .gallery-carousel__thumb {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
  }
  .footer__top {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .checkout-form-wrap {
    padding: 24px 20px;
  }
  .stats-strip__item {
    flex: 0 0 100%;
  }
  .hero__img-wrap img {
    max-width: 280px;
  }
  .table-scroll {
    border-radius: var(--radius-sm);
  }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Progressive-enhancement safety (injected by builder): scroll-reveal blocks stay VISIBLE
   unless JS confirms it can animate them by adding .js-anim to <html>. Guarantees a
   truncated page or a failed script can never leave content permanently hidden. */
html:not(.js-anim) .reveal,
html:not(.js-anim) .reveal-left,
html:not(.js-anim) .reveal-right,
html:not(.js-anim) .reveal-scale,
html:not(.js-anim) .stagger-child {
  opacity: 1 !important;
  transform: none !important;
}
