/* ============================================
   HERZOGRECOVERY — MASSAGE GUN | GREEK SITE
   CSS v1.0 — style.css
   ============================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --cream:       #FDFAF5;
  --cream-warm:  #FFF7ED;
  --cream-deep:  #F0EBE3;
  --orange:      #FF6B00;
  --orange-light:#FF8C38;
  --orange-pale: #FFF0E5;
  --dark:        #1A1A2E;
  --dark-mid:    #2D2A3E;
  --brown:       #6B5B4E;
  --brown-light: #9C8678;
  --text:        #2A2420;
  --text-muted:  #7A6E68;
  --border:      #E8DDD5;
  --white:       #FDFAF5;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 2px 12px rgba(107,91,78,0.10);
  --shadow-md:   0 8px 32px rgba(107,91,78,0.14);
  --shadow-lg:   0 20px 60px rgba(107,91,78,0.18);

  --transition:  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 { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ── DARK SECTION SCOPING ── */
.on-dark { color: rgba(255,255,255,0.85); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }
.on-dark p { color: rgba(255,255,255,0.72); }
.on-dark a:not(.btn) { color: inherit; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

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

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

h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 62px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: clamp(18px, 2.5vw, 24px); }

p { font-family: var(--font-body); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.eyebrow--light {
  color: rgba(255,160,80,0.9);
}

/* ── 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 (B3 — Ghost + Fill) ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  border-radius: 8px;
  border: 2px solid var(--orange);
  background: transparent;
  color: var(--orange);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: 6px;
  z-index: 0;
}
.btn:hover::before { transform: scaleX(1); }
.btn:hover { color: #fff; box-shadow: 0 8px 24px rgba(255,107,0,0.30); }
.btn > * { position: relative; z-index: 1; }
.btn span { position: relative; z-index: 1; }

.btn--primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn--primary::before { background: #cc5500; }
.btn--primary:hover { color: #fff; }

.btn--dark {
  border-color: var(--dark);
  color: var(--dark);
}
.btn--dark::before { background: var(--dark); }
.btn--dark:hover { color: #fff; }

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

.btn--full { width: 100%; }

/* ── ADVERTORIAL LABEL ── */
.advertorial-bar {
  background: var(--orange-pale);
  border-bottom: 1px solid rgba(255,107,0,0.15);
  text-align: center;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--brown);
  position: sticky;
  top: 0;
  z-index: 999;
}
.advertorial-bar a { color: var(--orange); text-decoration: underline; }

/* ── NAV (V1 — Transparent → Frosted on scroll) ── */
.nav {
  position: fixed;
  top: 40px;
  left: 0; right: 0;
  z-index: 200;
  padding: 0;
  transition: top 0.3s ease;
}
.nav.nav--scrolled { top: 32px; }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding-inline: clamp(20px, 5vw, 48px);
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
  border-radius: var(--radius-xl);
  max-width: 1200px;
  margin-inline: auto;
}
.nav--scrolled .nav__inner {
  background: rgba(253,250,245,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(107,91,78,0.12);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 24px;
  color: #fff;
  transition: color var(--transition);
  text-decoration: none;
}
.nav--scrolled .nav__logo { color: var(--dark); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.nav--scrolled .nav__links a { color: var(--text); }
.nav__links a:hover { color: var(--orange); }

.nav__cta {
  font-size: 13px !important;
  padding: 10px 22px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: background var(--transition);
  border-radius: 2px;
}
.nav--scrolled .nav__toggle span { background: var(--dark); }

/* ── HERO (Variant B — Full Bleed Immersive with VIDEO bg) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(26,26,46,0.55) 0%,
    rgba(26,26,46,0.72) 60%,
    rgba(26,26,46,0.88) 100%
  );
  z-index: 1;
}

/* Organic blob decorations */
.hero__blob {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blob-morph 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.hero__blob--1 {
  width: 500px; height: 500px;
  top: -100px; right: -80px;
  background: rgba(255,107,0,0.12);
  animation-delay: 0s;
}
.hero__blob--2 {
  width: 300px; height: 300px;
  bottom: 100px; left: -60px;
  background: rgba(255,140,56,0.08);
  animation-delay: -3s;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(60px, 8vw, 100px);
  padding-top: 120px;
}
.hero__content .container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: flex-end; }

.hero__text { animation: slide-in-left 0.9s ease forwards; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.18);
  border: 1px solid rgba(255,107,0,0.35);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,200,150,0.95);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__title {
  color: #fff;
  font-size: clamp(52px, 7.5vw, 104px);
  line-height: 1.0;
  margin-bottom: 20px;
}
.hero__title .accent-first {
  font-size: 1.18em;
  color: var(--orange-light);
}
.hero__subtitle {
  color: rgba(255,255,255,0.72);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 300;
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__price-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.hero__price {
  font-family: var(--font-display);
  font-size: 48px;
  color: #fff;
}
.hero__price-note {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero__scroll-cue {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 40px;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

.hero__image-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  animation: fade-up 0.9s ease 0.25s forwards;
  opacity: 0;
}
.hero__img-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
}
.hero__img-wrap img {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.45));
  animation: float 5s ease-in-out infinite;
}
.hero__floating-badge {
  position: absolute;
  background: rgba(253,250,245,0.95);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  z-index: 10;
}
.hero__floating-badge--1 { top: 30px; left: -30px; }
.hero__floating-badge--2 { bottom: 60px; right: -20px; }
.hero__floating-badge .badge-icon {
  width: 32px; height: 32px;
  background: var(--orange-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hero__floating-badge .badge-icon svg { width: 16px; height: 16px; }

/* ── STAT STRIP (N4 — horizontal dark strip) ── */
.stat-strip {
  background: var(--dark);
  position: relative;
  z-index: 20;
  margin-top: -2px;
}
.on-dark { color: rgba(255,255,255,0.85); }
.stat-strip__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
  flex: 1 1 180px;
}
.stat-item:last-child { border-right: none; }
.stat-item__num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--orange-light);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item__label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--orange);
  overflow: hidden;
  padding: 12px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── SECTION OVERLAPS (S5) ── */
.section-overlap-up {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

/* ── PRODUCT SECTION ── */
.product-section {
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
  background: var(--cream);
}
.product-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* Gallery */
.product-gallery { position: relative; }
.product-gallery__main {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--cream-deep);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 16px;
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-slow);
}
.product-gallery__main:hover img { transform: scale(1.04); }
.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.thumb {
  aspect-ratio: 1 / 1;
  background: var(--cream-deep);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.thumb.active, .thumb:hover { border-color: var(--orange); }

/* Product Info */
.product-info { padding-top: 12px; }
.product-info__name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.1;
}
.product-info__tagline {
  font-size: 16px;
  color: var(--brown);
  margin-bottom: 28px;
  font-style: italic;
}
.product-info__price {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--orange);
  margin-bottom: 8px;
  line-height: 1;
}
.product-info__price-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.product-info__cta { margin-bottom: 28px; }

.product-specs-mini {
  background: var(--cream-warm);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.spec-mini-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.spec-mini-item svg {
  width: 18px; height: 18px;
  color: var(--orange);
  flex-shrink: 0;
}
.spec-mini-item strong { font-weight: 600; }

.disclaimer-inline {
  margin-top: 20px;
  padding: 14px 18px;
  background: var(--orange-pale);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 12px;
  color: var(--brown);
  line-height: 1.5;
}

/* ── VIDEO SECTION ── */
.video-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--cream-warm);
}
.video-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.video-section__text .eyebrow { margin-bottom: 16px; display: block; }
.video-section__text h2 { margin-bottom: 20px; color: var(--dark); }
.video-section__text p { color: var(--brown); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.video-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.video-wrap video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
}

/* ── INGREDIENTS / ATTACHMENTS ── */
.attachments-section {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.attachments-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  background: rgba(255,107,0,0.06);
  top: -150px; right: -100px;
  animation: blob-morph 10s ease-in-out infinite;
  pointer-events: none;
}

.attachments-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.attachments-header .eyebrow { margin-bottom: 16px; display: block; }
.attachments-header h2 { color: #fff; margin-bottom: 16px; }
.attachments-header p { color: rgba(255,255,255,0.6); max-width: 560px; margin-inline: auto; }

.attachments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.attachment-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.attachment-card:hover {
  background: rgba(255,107,0,0.10);
  border-color: rgba(255,107,0,0.30);
  transform: translateY(-4px);
}
.attachment-card__visual {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.attachment-card__visual svg {
  width: 28px; height: 28px;
  stroke: var(--orange-light);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.attachment-card__name {
  font-family: var(--font-display);
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}
.attachment-card__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.how-section {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--cream);
  position: relative;
}
.how-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.how-header .eyebrow { display: block; margin-bottom: 16px; }
.how-header h2 { color: var(--dark); }
.how-header p { color: var(--brown); max-width: 520px; margin-inline: auto; margin-top: 16px; font-size: 16px; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 50%, var(--orange) 100%);
  z-index: 0;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px 40px;
  position: relative;
  z-index: 1;
}
.how-step__number {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-size: 32px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(255,107,0,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.how-step:hover .how-step__number {
  transform: scale(1.08);
  box-shadow: 0 12px 36px rgba(255,107,0,0.45);
}
.how-step__title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 12px;
}
.how-step__desc {
  font-size: 15px;
  color: var(--brown);
  line-height: 1.7;
}

/* ── BENEFITS ── */
.benefits-section {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}
.benefits-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  bottom: -80px; right: -60px;
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  background: rgba(255,107,0,0.07);
  animation: blob-morph 12s ease-in-out infinite;
  pointer-events: none;
}

.benefits-header {
  margin-bottom: clamp(48px, 6vw, 72px);
}
.benefits-header .eyebrow { display: block; margin-bottom: 16px; }
.benefits-header h2 { color: var(--dark); max-width: 560px; }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.benefit-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  z-index: 1;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.benefit-card__icon {
  width: 52px; height: 52px;
  background: var(--orange-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.benefit-card__icon svg {
  width: 24px; height: 24px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-card__body h4 {
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 20px;
}
.benefit-card__body p {
  font-size: 14px;
  color: var(--brown);
  line-height: 1.65;
}

/* ── DELIVERY SECTION ── */
.delivery-section {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.delivery-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  top: -100px; left: -120px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: rgba(255,107,0,0.05);
  animation: blob-morph 14s ease-in-out infinite;
  pointer-events: none;
}

.delivery-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 64px);
}
.delivery-header .eyebrow { display: block; margin-bottom: 16px; }
.delivery-header h2 { color: #fff; margin-bottom: 16px; }
.delivery-header p { color: rgba(255,255,255,0.6); max-width: 480px; margin-inline: auto; }

.delivery-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.delivery-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}
.delivery-card:hover {
  background: rgba(255,107,0,0.08);
  border-color: rgba(255,107,0,0.25);
}
.delivery-card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,107,0,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.delivery-card__icon svg {
  width: 26px; height: 26px;
  stroke: var(--orange-light);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.delivery-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
}
.delivery-card__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}

.delivery-order-box {
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.delivery-order-box__left h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  color: #fff;
  margin-bottom: 12px;
}
.delivery-order-box__left p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  margin-bottom: 20px;
}
.delivery-price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}
.delivery-price {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--orange-light);
  line-height: 1;
}
.delivery-price-note {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.delivery-order-box__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.delivery-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}
.delivery-trust-item svg {
  width: 20px; height: 20px;
  stroke: var(--orange-light);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── FAQ ── */
.faq-section {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--cream);
}
.faq-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 64px);
}
.faq-header .eyebrow { display: block; margin-bottom: 16px; }
.faq-header h2 { color: var(--dark); }

.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.faq--open {
  box-shadow: var(--shadow-md);
  border-color: rgba(255,107,0,0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}
.faq-question__text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  transition: color var(--transition);
}
.faq-item.faq--open .faq-question__text { color: var(--orange); }
.faq-icon {
  width: 32px; height: 32px;
  background: var(--cream-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.faq-item.faq--open .faq-icon {
  background: var(--orange);
  transform: rotate(45deg);
}
.faq-icon svg {
  width: 14px; height: 14px;
  stroke: var(--brown);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.faq-item.faq--open .faq-icon svg { stroke: #fff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.faq--open .faq-answer { max-height: 300px; }
.faq-answer__inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--brown);
  line-height: 1.7;
}

/* ── EMAIL SUBSCRIBE ── */
.subscribe-section {
  padding: clamp(80px, 10vw, 120px) 0;
  background: linear-gradient(135deg, var(--orange) 0%, #cc5500 100%);
  position: relative;
  overflow: hidden;
}
.subscribe-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  top: -200px; right: -100px;
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  background: rgba(255,255,255,0.08);
  animation: blob-morph 9s ease-in-out infinite;
  pointer-events: none;
}
.subscribe-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.subscribe-inner .eyebrow { color: rgba(255,255,255,0.7); margin-bottom: 16px; display: block; }
.subscribe-inner h2 {
  color: #fff;
  margin-bottom: 16px;
  font-size: clamp(32px, 4.5vw, 56px);
}
.subscribe-inner p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 36px;
}
.subscribe-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin-inline: auto;
  flex-wrap: wrap;
}
.subscribe-input {
  flex: 1 1 240px;
  padding: 14px 20px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.subscribe-input::placeholder { color: rgba(255,255,255,0.6); }
.subscribe-input:focus {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.2);
}
.subscribe-btn {
  flex-shrink: 0;
  background: #fff;
  color: var(--orange);
  border: 2px solid #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.subscribe-btn:hover { background: var(--dark); color: #fff; border-color: var(--dark); }
.subscribe-success {
  display: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-top: 16px;
}
.subscribe-success.visible { display: block; }
.subscribe-note {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ── SUPPORT / CONTACT ── */
.contact-section {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--cream-warm);
}
.contact-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 64px);
}
.contact-header .eyebrow { display: block; margin-bottom: 16px; }
.contact-header h2 { color: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-item__icon {
  width: 48px; height: 48px;
  background: var(--orange-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item__icon svg {
  width: 22px; height: 22px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-info-item__text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-info-item__text span, .contact-info-item__text a {
  font-size: 15px;
  color: var(--brown);
}
.contact-info-item__text a { transition: color var(--transition); }
.contact-info-item__text a:hover { color: var(--orange); }

.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream-warm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.10);
}
.form-input.error, .form-textarea.error { border-color: #e03030; }
.form-error {
  display: none;
  font-size: 12px;
  color: #e03030;
  margin-top: 4px;
}
.form-error.visible { display: block; }
.form-textarea { resize: vertical; min-height: 120px; }

/* ── SPINNER ── */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}
.spinner--dark {
  border-color: rgba(0,0,0,0.2);
  border-top-color: var(--orange);
}

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.65);
  backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px);
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: fade-up 0.4s ease forwards;
}
.modal-box__icon {
  width: 72px; height: 72px;
  background: var(--orange-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.modal-box__icon svg {
  width: 36px; height: 36px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.modal-box h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 12px;
}
.modal-box p {
  font-size: 15px;
  color: var(--brown);
  line-height: 1.65;
  margin-bottom: 28px;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--cream-deep);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--brown);
  font-size: 20px;
  transition: background var(--transition);
}
.modal-close:hover { background: var(--border); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 720px;
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner a { color: var(--orange-light); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: opacity var(--transition);
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn--accept { background: var(--orange); color: #fff; }
.cookie-btn--reject { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }
.cookie-btn--config { background: none; color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.18); }
.cookie-config-panel {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cookie-config-panel.open { display: block; }
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cookie-toggle-row label {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.cookie-toggle-row input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--orange); }
.cookie-save-btn {
  margin-top: 12px;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
}

/* ── FOOTER ── */
.footer {
  background: var(--dark-mid);
  padding: clamp(60px, 8vw, 100px) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
  margin-bottom: 12px;
}
.footer__brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 16px;
}
.footer__contact-info {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.footer__contact-info a {
  color: var(--orange-light);
  transition: color var(--transition);
}
.footer__contact-info a:hover { color: var(--orange); }

.footer__col-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: #fff; }

.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer__legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer__legal-links a:hover { color: rgba(255,255,255,0.65); }

/* ── 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); }

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.revealed { opacity: 1; transform: translateY(0); }

.stagger-visible { opacity: 1 !important; transform: none !important; }

/* ── KEYFRAMES ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes blob-morph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}
@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── TABLE ── */
.table-scroll {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  background: var(--cream-warm);
}
.spec-table th, .spec-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-family: var(--font-body);
}
.spec-table thead th {
  background: var(--dark);
  color: #fff;
  font-weight: 700;
  font-family: var(--font-body);
}
.spec-table__label {
  background: var(--cream-deep) !important;
  font-weight: 600;
  text-align: left;
  color: var(--dark);
}
.spec-table tbody th.spec-table__label { text-align: left; }
.spec-table__hl {
  background: var(--orange) !important;
  color: #fff !important;
  font-weight: 700;
}
.spec-table thead th.spec-table__hl { background: var(--orange) !important; }
.spec-table td:not(.spec-table__hl) { color: var(--text); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero__content .container { grid-template-columns: 1fr; }
  .hero__image-side { display: none; }
  .product-section__grid { grid-template-columns: 1fr; }
  .attachments-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: 1fr; }
  .how-steps::before { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .delivery-cards { grid-template-columns: repeat(2, 1fr); }
  .delivery-order-box { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .video-section__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 100;
  }
  .nav__links.nav__links--open { display: flex; }
  .nav__links a { font-size: 22px; color: #fff; }
  .nav__toggle { display: flex; z-index: 200; }

  .hero__title { font-size: clamp(40px, 10vw, 72px); }
  .attachments-grid { grid-template-columns: 1fr; }
  .delivery-cards { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .product-gallery__thumbs { grid-template-columns: repeat(4, 1fr); }
  .stat-strip__inner { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child { border-bottom: none; }
  .product-specs-mini { grid-template-columns: 1fr; }
  .delivery-cards { grid-template-columns: 1fr; }
  .subscribe-form { flex-direction: column; }
  .subscribe-input, .subscribe-btn { width: 100%; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .delivery-order-box { padding: 24px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* 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;
}
