/** Shopify CDN: Minification failed

Line 1157:0 Unexpected "}"

**/
/* ════════════════════════════════════════════════
   SoundsLikeYou Shopify Theme — v2.0
   Mobile-first, fully responsive
   ════════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --bg:           #0d0d0d;
  --surface:      #161616;
  --surface2:     #1e1e1e;
  --border:       rgba(255,255,255,0.07);
  --border2:      rgba(255,255,255,0.13);
  --accent-start: #ff6b2b;
  --accent-mid:   #e8283a;
  --accent-end:   #d4006e;
  --accent-grad:  linear-gradient(135deg, #ff6b2b 0%, #e8283a 50%, #d4006e 100%);
  --accent-grad-h:linear-gradient(90deg,  #ff6b2b 0%, #e8283a 50%, #d4006e 100%);
  --text:         #f0f0f0;
  --text-muted:   #888;
  --text-dim:     rgba(240,240,240,0.4);
  --white:        #ffffff;
  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --nav-h:        70px;
  --section-pad:  80px 20px;
  --section-pad-wide: 100px 60px;
  --max-w:        1160px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img, video { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── UTILITIES ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.grad-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 14px;
}
.section-title em {
  font-style: normal;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 540px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent-grad);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 0 28px rgba(232,40,58,0.28);
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.87; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid var(--border2);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(13,13,13,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.header-left { display: flex; align-items: center; }
.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo img { height: 44px; width: auto; }
.header-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
}
.header-right { display: flex; justify-content: flex-end; align-items: center; }
.nav-cta {
  background: var(--accent-grad);
  color: #fff;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: opacity 0.2s;
  box-shadow: 0 0 18px rgba(232,40,58,0.28);
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.85; }

/* ── HERO MEDIA: separate mobile/desktop ── */
.hero-media-desktop { display: block; }
.hero-media-mobile  { display: none; }

/* ── HERO ── */
.hero-section {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 48px) 20px 64px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% 35%, rgba(232,40,58,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 85%, rgba(255,107,43,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 15%, rgba(212,0,110,0.07) 0%, transparent 60%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(232,40,58,0.1);
  border: 1px solid rgba(232,40,58,0.32);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  color: #ff8055;
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-section h1 {
  position: relative;
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  font-weight: 800;
  line-height: 1.06;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 22px;
  letter-spacing: -0.04em;
}
.hero-section h1 em {
  font-style: normal;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  position: relative;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-btns {
  position: relative;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}
.hero-media {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin-bottom: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border2);
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: auto;
  display: block;
}
.hero-stats {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 100%;
  max-width: 600px;
}
.hero-stat {
  flex: 1 1 120px;
  padding: 18px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hero-stat:nth-child(2n) { border-right: none; }
.hero-stat:nth-last-child(-n+2) { border-bottom: none; }
.stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ── SHARED SECTION WRAPPER ── */
.section-wrap {
  padding: var(--section-pad);
  max-width: var(--max-w);
  margin: 0 auto;
}
/* Wider side padding for occasions → FAQ sections */
.section-wrap.wide-pad {
  padding: 100px 60px;
}
.section-wrap.centered { text-align: center; }
.section-wrap.centered .section-sub { margin: 0 auto; }

/* Named sections that need extra spacing */
.occasions-section,
.pricing-section,
.reviews-section,
.faq-section {
  padding: 100px 60px;
  overflow: visible; 
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── AUDIO CARDS ── */
.audio-carousel-wrap {
  position: relative;
  margin-top: 40px;
}
.audio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
/* Dots (hidden on desktop) */
.audio-dots {
  display: none;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
}
.audio-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.audio-dot.active {
  background: var(--accent-mid);
  transform: scale(1.35);
}
.audio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.audio-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.audio-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.audio-card-image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(255,107,43,0.08), rgba(212,0,110,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.audio-card-body { padding: 18px; }
.audio-occasion {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 600;
}
.audio-title { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.audio-meta { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 14px; }
.audio-player-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.play-btn {
  width: 38px; height: 38px;
  background: var(--accent-grad);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  color: #fff;
  font-size: 0.8rem;
  transition: opacity 0.2s, transform 0.15s;
}
.play-btn:hover { opacity: 0.85; transform: scale(1.05); }
.audio-waveform {
  flex: 1;
  height: 28px;
  background: var(--surface2);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.audio-waveform::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,107,43,0.45) 0px,
    rgba(232,40,58,0.45) 2px,
    transparent 2px,
    transparent 6px
  );
}
.audio-native-player {
  width: 100%;
  margin-top: 12px;
  border-radius: 8px;
  accent-color: var(--accent-mid);
}
.audio-duration { font-size: 0.72rem; color: var(--text-muted); flex-shrink: 0; }

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.step-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.step-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.step-card-image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(255,107,43,0.06), rgba(212,0,110,0.06));
}
.step-card-body { padding: 28px 24px; }
.step-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(232,40,58,0.18);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.step-title { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.step-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.step-time {
  margin-top: 16px;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ── OCCASIONS ── */
.occasions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  margin-top: 40px;
}
.occasion-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 0.85rem;
  color: var(--text);
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: default;
}
.occasion-tag:hover {
  border-color: rgba(232,40,58,0.38);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,40,58,0.1);
}

/* ── COMPARISON ── */
.comp-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 40px;
}
.comp-col { padding: 28px 22px; border-right: 1px solid var(--border); }
.comp-col:last-child { border-right: none; }
.comp-col.highlight {
  background: #150a08;
  position: relative;
}
.comp-col.highlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent-grad-h);
}
.comp-col-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.comp-col.highlight .comp-col-label {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.comp-item {
  font-size: 0.84rem;
  color: var(--text-muted);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.comp-item:last-child { border-bottom: none; }
.comp-col.highlight .comp-item { color: rgba(240,240,240,0.68); border-color: rgba(232,40,58,0.1); }

/* ── PRICING CAROUSEL (mobile) ── */
.pricing-carousel-wrap {
  position: relative;
  margin-top: 40px;
  /* Extra space so the .popular-badge (top: -12px) is never clipped */
  padding-top: 40px;
  overflow: visible;
}
.pricing-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: visible; /* allow badge to show above the card */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.pricing-carousel::-webkit-scrollbar { display: none; }
.pricing-carousel .price-card {
  scroll-snap-align: center;
  flex: 0 0 82vw;
  max-width: 340px;
  overflow: visible; /* let the absolutely-positioned badge escape the card */
}
.pricing-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
}
.pricing-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border2);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.pricing-dot.active {
  background: var(--accent-mid);
  transform: scale(1.3);
}

/* ── PRICING GRID (desktop) ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
  margin-top: 40px;
  text-align: left;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 30px 26px;
  position: relative;
  overflow: visible;
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.28); }
.price-card.featured {
  background: #150a08;
  border-color: rgba(232,40,58,0.42);
  box-shadow: 0 0 36px rgba(232,40,58,0.1);
}
.price-card.featured:hover { box-shadow: 0 20px 50px rgba(232,40,58,0.18); }
.popular-badge {
  display: inline-block;
  margin-bottom: 12px;
  background: var(--accent-grad);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-name { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 6px; font-weight: 500; }
.price-duration { font-size: 0.76rem; color: var(--text-dim); margin-bottom: 18px; }
.price-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 5px;
}
.price-card.featured .price-amount {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-period { font-size: 0.76rem; color: var(--text-muted); margin-bottom: 24px; }
.price-features { margin-bottom: 24px; }
.price-features li {
  font-size: 0.84rem;
  color: rgba(240,240,240,0.62);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.price-features li:last-child { border-bottom: none; }
.price-card.featured .price-features li { border-color: rgba(232,40,58,0.1); }
.check {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  flex-shrink: 0;
}
.price-btn {
  width: 100%;
  padding: 13px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
  text-align: center;
  display: block;
}
.price-btn-outline {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text);
}
.price-btn-outline:hover { background: var(--surface2); }
.price-btn-pink {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 0 18px rgba(232,40,58,0.22);
}
.price-btn-pink:hover { opacity: 0.87; }
.pricing-note {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 22px;
  line-height: 1.65;
  text-align: center;
}
.pricing-note a { color: var(--accent-start); }

/* ── REVIEWS SHOW MORE ── */
.review-card.review-hidden { display: none; }
.reviews-show-more-wrap {
  display: none;
  justify-content: center;
  margin-top: 24px;
}
.reviews-show-more-btn {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text);
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-family: inherit;
}
.reviews-show-more-btn:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(232,40,58,0.38);
}

/* ── REVIEWS GRID ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 40px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: border-color 0.2s;
}
.review-card:hover { border-color: var(--border2); }
.review-stars {
  font-size: 0.88rem;
  margin-bottom: 10px;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.review-text {
  font-size: 0.875rem;
  color: rgba(240,240,240,0.78);
  line-height: 1.65;
  margin-bottom: 14px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 32px; height: 32px;
  background: rgba(232,40,58,0.1);
  border: 1px solid rgba(232,40,58,0.38);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--accent-start);
  font-weight: 600;
  flex-shrink: 0;
}
.review-name { font-size: 0.82rem; font-weight: 600; color: var(--white); }
.review-meta { font-size: 0.72rem; color: var(--text-muted); }

/* ── FAQ ── */
.faq-list { margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  padding: 18px 0;
  -webkit-tap-highlight-color: transparent;
}
.faq-q-text { font-size: 0.92rem; font-weight: 500; color: var(--white); line-height: 1.4; }
.faq-toggle {
  width: 26px; height: 26px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--accent-start);
  transition: transform 0.25s, background 0.2s;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: rgba(232,40,58,0.1);
  border-color: rgba(232,40,58,0.38);
}
.faq-answer {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 18px; }
.faq-answer a { color: var(--accent-start); }

/* ── FINAL CTA ── */
.final-cta {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(232,40,58,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta h2 {
  position: relative;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta h2 em {
  font-style: normal;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.final-cta p {
  position: relative;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.final-cta-media {
  max-width: 680px;
  margin: 0 auto 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border2);
}
.final-cta-media img,
.final-cta-media video { width: 100%; height: auto; }

/* ── FOOTER ── */
.site-footer {
  padding: 36px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-logo img { height: 28px; width: auto; }
.footer-logo-text { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 0.8rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.75rem; color: var(--text-dim); }

/* ── PAGE TEMPLATE (FAQ / Examples / General) ── */
.page-hero {
  padding: calc(var(--nav-h) + 56px) 20px 48px;
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 14px;
}
.page-hero h1 em {
  font-style: normal;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── EXAMPLES PAGE ── */
.examples-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}
.filter-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: rgba(232,40,58,0.1);
  border-color: rgba(232,40,58,0.38);
  color: var(--white);
}
.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.example-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.example-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.example-card-cover {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.example-card-cover-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, rgba(255,107,43,0.1), rgba(212,0,110,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.example-card-body { padding: 16px; }
.example-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 600;
}
.example-title { font-size: 0.92rem; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.example-meta { font-size: 0.76rem; color: var(--text-muted); margin-bottom: 12px; }
.example-player { display: flex; align-items: center; gap: 10px; }
.example-native-player {
  width: 100%;
  margin-top: 10px;
  accent-color: var(--accent-mid);
}

/* ── RICH TEXT / PAGE CONTENT ── */
.rte { max-width: 720px; margin: 0 auto; }
.rte h1, .rte h2, .rte h3 {
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 1.5em 0 0.6em;
}
.rte h1 { font-size: 1.8rem; }
.rte h2 { font-size: 1.4rem; }
.rte h3 { font-size: 1.1rem; }
.rte p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1em; }
.rte a { color: var(--accent-start); }
.rte ul, .rte ol { padding-left: 1.4em; margin-bottom: 1em; }
.rte li { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0.4em; }
.rte strong { color: var(--white); font-weight: 600; }
.rte blockquote {
  border-left: 3px solid var(--accent-mid);
  padding-left: 1em;
  color: var(--text-muted);
  font-style: italic;
  margin: 1.5em 0;
}

/* ══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════ */

/* Tablet: 768px and below */
@media (max-width: 768px) {
  :root {
    --section-pad: 60px 20px;
  }

  /* Section spacing — reduce wide-pad on mobile */
  .occasions-section,
  .pricing-section,
  .reviews-section,
  .faq-section {
    padding: 60px 20px;
    overflow: visible; 
  }

  /* Header: back to flex on mobile, logo left */
  .site-header {
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
  }
  .header-left { display: none; }
  .header-logo img { height: 34px; }
  .nav-cta { padding: 8px 16px; font-size: 0.78rem; }

  /* Hero media: show mobile image, hide desktop */
  .hero-media-desktop { display: none; }
  .hero-media-mobile  { display: block; }

  /* Pricing: show carousel, hide grid */
  .pricing-grid { display: none; }
  .pricing-carousel-wrap { display: block; }

  /* Reviews: show-more button visible */
  .reviews-show-more-wrap { display: flex; }

  /* Hero */
  .hero-section { padding: calc(var(--nav-h) + 70px) 16px 48px; }
  .hero-section h1 { font-size: clamp(2rem, 9vw, 3.2rem); }
  .hero-btns { flex-direction: column; align-items: center; width: 100%; }
  .hero-btns .btn-primary,
  .hero-btns .btn-ghost { width: 100%; max-width: 320px; }
  .hero-stats { max-width: 100%; }
  .hero-stat { flex: 1 1 50%; }
  .hero-stat:nth-child(2n) { border-right: none; }
  .hero-stat:nth-child(odd) { border-right: 1px solid var(--border); }

  /* Audio: swipe carousel on mobile */
  .audio-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .audio-grid::-webkit-scrollbar { display: none; }
  .audio-card {
    flex: 0 0 82vw;
    max-width: 320px;
    scroll-snap-align: center;
  }
  .audio-dots { display: flex; }

  /* Grids → single column */
  .steps-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .examples-grid { grid-template-columns: 1fr; }

  /* Comparison table → stacked */
  .comp-table { grid-template-columns: 1fr; }
  .comp-col { border-right: none; border-bottom: 1px solid var(--border); }
  .comp-col:last-child { border-bottom: none; }

  /* Footer */
  .site-footer { flex-direction: column; text-align: center; padding: 28px 16px; }
  .footer-links { justify-content: center; }
}

/* Small mobile: 480px and below */
@media (max-width: 480px) {
  .hero-stat { flex: 1 1 100%; border-right: none !important; }
  .hero-stat:last-child { border-bottom: none; }
  .section-title { font-size: 1.6rem; }
  .price-amount { font-size: 2.4rem; }
  .final-cta h2 { font-size: 1.8rem; }
}

/* Desktop: pricing grid visible, carousel hidden */
@media (min-width: 769px) {
  .pricing-carousel-wrap { display: none; }
  .pricing-grid { display: grid; }
  .reviews-show-more-wrap { display: none !important; }
  .review-card.review-hidden { display: block !important; }
}

/* Large screens: 1200px and above */
@media (min-width: 1200px) {
  :root { --section-pad: 100px 40px; }
  .audio-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-stat { flex: 1 1 0; }
  .hero-stat:nth-child(2n) { border-right: 1px solid var(--border); }
  .hero-stat:nth-last-child(-n+2) { border-bottom: none; }
  .hero-stat:last-child { border-right: none; }
}

.sly-announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #ff6a00, #e91e8c);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  padding: 0 20px;
}
.site-header { top: 38px !important; }


}
