/**
 * ==========================================================================
 * HAPPYPIP HOMEPAGE — v2 Orange / Warm Theme
 * ==========================================================================
 * 
 * COLOR REFERENCE:
 *   Orange .......... #D4712A
 *   Orange Hover .... #C0641F
 *   Cream ........... #FAF7F2
 *   Peach ........... #FDF3EB
 *   Apricot ......... #FBE9D8
 *   Warm ............ #F8E4D0
 *   White ........... #FFFFFF
 *   Charcoal ........ #1C1C1C
 *   Text ............ #2E2E2E
 *   Text Light ...... #6F6F6F
 *   Text Muted ...... #A0A0A0
 *   Border .......... #E8E3DC
 * 
 * FONT: Google Sans (single family)
 * ==========================================================================
 */

:root {
    --hp-font: 'Google Sans', 'Product Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --hp-orange: #D4712A;
    --hp-orange-hover: #C0641F;
    --hp-bg-cream: #FAF7F2;
    --hp-bg-peach: #FDF3EB;
    --hp-bg-apricot: #FBE9D8;
    --hp-bg-warm: #F8E4D0;
    --hp-bg-white: #FFFFFF;
    --hp-charcoal: #1C1C1C;
    --hp-text: #2E2E2E;
    --hp-text-light: #6F6F6F;
    --hp-text-muted: #A0A0A0;
    --hp-border: #E8E3DC;
    --hp-border-light: #F0EBE4;
}



/* ══════════════════════════════════════════════════
   GLOBAL
   ══════════════════════════════════════════════════ */

.hp-homepage { font-family: var(--hp-font); width: 100%; }
.hp-homepage * { box-sizing: border-box; }

.hp-section { width: 100%; padding: 40px 48px 64px; }
.hp-section__inner { max-width: 1200px; margin: 0 auto; }
.hp-section__header { text-align: center; margin-bottom: 40px; }

.hp-sec--cream { background: var(--hp-bg-cream); }
.hp-sec--white { background: var(--hp-bg-white); }
.hp-sec--peach { background: var(--hp-bg-peach); }
.hp-sec--apricot { background: var(--hp-bg-apricot); }
.hp-sec--warm { background: var(--hp-bg-warm); }
.hp-sec--dark { background: var(--hp-charcoal); color: #fff; }

/* Shared typography */
.hp-ey { font-family: var(--hp-font); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--hp-orange); margin-bottom: 10px; text-align: center; }
.hp-st { font-family: var(--hp-font); font-size: clamp(26px, 4vw, 36px); font-weight: 700; letter-spacing: -0.3px; line-height: 1.15; margin-bottom: 10px; color: var(--hp-charcoal); text-align: center; }
.hp-st--light { color: #fff; }
.hp-ss { font-family: var(--hp-font); font-size: 16px; font-weight: 400; max-width: 460px; margin: 0 auto; line-height: 1.6; color: var(--hp-text-light); text-align: center; }
.hp-ss--light { color: rgba(255,255,255,.5); }

/* Shared buttons */
.hp-btn { font-family: var(--hp-font); font-weight: 700; letter-spacing: 0.5px; border: none; border-radius: 50px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; transition: all .3s ease; text-decoration: none; }
.hp-btn--primary { background: var(--hp-orange); color: #fff; padding: 14px 34px; }
.hp-btn--primary:hover { background: var(--hp-orange-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,113,42,0.18); }
.hp-btn--outline { background: transparent; color: var(--hp-text); border: 1.5px solid var(--hp-border); padding: 13px 30px; }
.hp-btn--outline:hover { border-color: var(--hp-orange); color: var(--hp-orange); }

.hp-pill-btn { font-family: var(--hp-font); display: inline-flex; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 11px 26px; border-radius: 50px; background: var(--hp-charcoal); color: #fff; text-decoration: none; transition: all .3s; }
.hp-pill-btn:hover { background: var(--hp-orange); }

/* Shared card placeholder */
.hp-homepage span:only-child { font-size: 10px; font-weight: 500; color: var(--hp-text-muted); opacity: .5; }


/* ══════════════════════════════════════════════════
   SECTION 1: HERO
   ══════════════════════════════════════════════════ */

.hp-hero { width: 100%; min-height: 80vh; display: flex; align-items: center; background: linear-gradient(165deg, var(--hp-bg-white) 0%, var(--hp-bg-cream) 40%, var(--hp-bg-peach) 100%); position: relative; overflow: hidden; }
.hp-hero::after { content: ''; position: absolute; top: -15%; right: -8%; width: 45vw; height: 45vw; border-radius: 50%; background: radial-gradient(circle, rgba(212,113,42,0.07) 0%, transparent 70%); pointer-events: none; }
.hp-hero__inner { width: 100%; max-width: 1200px; margin: 0 auto; padding: 40px 48px 80px; position: relative; z-index: 1; }
.hp-hero__ey { font-family: var(--hp-font); font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--hp-orange); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.hp-hero__ey::before { content: ''; width: 24px; height: 1.5px; background: var(--hp-orange); }
.hp-hero__title { font-family: var(--hp-font); font-size: clamp(70px, 11vw, 80px); font-weight: 900; color: var(--hp-charcoal); line-height: 0.95; margin-bottom: 28px; letter-spacing: 2px; max-width: 900px; text-transform: uppercase; }
.hp-hero__sub { font-size: 16px; color: var(--hp-text-light); line-height: 1.7; margin-bottom: 32px; max-width: 440px; }
.hp-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hp-hero__micro { font-size: 12px; color: var(--hp-text-muted); display: flex; gap: 20px; flex-wrap: wrap; }


/* ══════════════════════════════════════════════════
   SECTION 2: TRUST BAR
   ══════════════════════════════════════════════════ */

.hp-tb { width: 100%; background: #1c1c1c; border-top: 1px solid var(--hp-border); border-bottom: 1px solid var(--hp-border); padding: 16px 48px; }
.hp-tb__inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; }
.hp-tb__item { display: flex; align-items: center; gap: 8px; }
.hp-tb__item svg { width: 16px; height: 16px; stroke: var(--hp-orange); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.hp-tb__item span { font-size: 12px; font-weight: 700; color: #ffffff; letter-spacing: 0.2px; }
.hp-tb__div { width: 1px; height: 14px; background: var(--hp-border); }


/* ══════════════════════════════════════════════════
   SECTION 3: TIERS — v4 Carousel
   ══════════════════════════════════════════════════ */

/* Section wrapper — dynamic bg */
.hp-tiers { position: relative; width: 100%; padding: 80px 0 64px; overflow: hidden; transition: background-color 0.5s ease; }

/* Static bleed image — bottom left */
.hp-tiers__bg-img { position: absolute; top: 65%; transform: translateY(-50%); left: -15%; width: 380px; height: 380px; z-index: 0; pointer-events: none; overflow: visible; }
.hp-tiers__bg-img img { width: 100%; height: 100%; object-fit: contain; }
.hp-tiers .hp-section__inner { position: relative; z-index: 1; max-width: 100%; }

/* Carousel track */
.hp-tiers__track-wrap { position: relative; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); width: 100vw; padding: 0; }
.hp-tiers__track { display: flex; gap: 28px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding: 80px 0 24px; }
.hp-tiers__track::-webkit-scrollbar { display: none; }

/* Arrow buttons (desktop only) */
.hp-tiers__arrow { display: none; position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 4px 16px rgba(0,0,0,0.1); cursor: pointer; align-items: center; justify-content: center; transition: all 0.25s ease; padding: 0; }
.hp-tiers__arrow:hover { background: #fff; box-shadow: 0 6px 24px rgba(0,0,0,0.14); transform: translateY(-50%) scale(1.06); }
.hp-tiers__arrow:active { transform: translateY(-50%) scale(0.96); }
.hp-tiers__arrow--left { left: 12px; }
.hp-tiers__arrow--right { right: 12px; }
.hp-tiers__arrow svg { width: 20px; height: 20px; stroke: var(--hp-charcoal); stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* Card */
.hp-tier-card { flex: 0 0 300px; scroll-snap-align: center; position: relative; background: #FFFFFF; border-radius: 20px; padding: 0 28px 28px; text-align: center; transition: transform 0.35s ease, opacity 0.4s ease; cursor: pointer; border: 1px solid rgba(255,255,255,0.3); opacity: 0.55; }
.hp-tier-card:first-child { margin-left: calc(50vw - 150px); }
.hp-tier-card:last-child { margin-right: calc(50vw - 150px); }
.hp-tier-card:hover { transform: translateY(-6px); }
.hp-tier-card.is-active { transform: translateY(-6px) scale(1.02); opacity: 1; }

/* Best Seller badge */
.hp-tier-card__best-seller { display: none; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); z-index: 3; font-family: var(--hp-font); font-size: 9px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; background: var(--hp-orange); color: #fff; white-space: nowrap; box-shadow: 0 4px 12px rgba(212,113,42,0.3); }
.hp-tier-card--featured .hp-tier-card__best-seller { display: block; }

/* Nug image — bleeds above card */
.hp-tier-card__img { width: 180px; height: 180px; margin: -70px auto 16px; position: relative; z-index: 2; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.18)); transition: transform 0.4s ease; }
.hp-tier-card:hover .hp-tier-card__img { transform: scale(1.06) translateY(-4px); }
.hp-tier-card__img img { width: 100%; height: 100%; object-fit: contain; }
.hp-tier-card__img-ph { width: 100%; height: 100%; border-radius: 50%; opacity: 0.3; }

/* Tier name */
.hp-tier-card__name { font-family: var(--hp-font); font-size: 26px; font-weight: 800; text-transform: uppercase; letter-spacing: 4px; margin-bottom: 4px; }

/* Tagline */
.hp-tier-card__tagline { font-family: var(--hp-font); font-size: 13px; font-weight: 600; color: var(--hp-text-light); letter-spacing: 0.3px; margin-bottom: 20px; font-style: italic; }

/* Badge pill */
.hp-tier-card__badge-pill { display: inline-block; font-family: var(--hp-font); font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin: 0 auto 18px; color: #fff; }

/* Strain count */
.hp-tier-card__count { font-family: var(--hp-font); font-size: 11px; font-weight: 500; color: var(--hp-text-muted); margin-bottom: 6px; letter-spacing: 0.3px; }

/* Quality traits */
.hp-tier-card__traits { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.hp-tier-card__trait { font-family: var(--hp-font); font-size: 13px; font-weight: 500; color: var(--hp-text); display: flex; align-items: center; justify-content: center; gap: 8px; letter-spacing: 0.2px; }
.hp-tier-card__trait-marker { font-size: 8px; color: var(--hp-charcoal); flex-shrink: 0; line-height: 1; }

/* Price */
.hp-tier-card__price { display: flex; align-items: baseline; justify-content: center; gap: 3px; margin-bottom: 20px; }
.hp-tier-card__price-amt { font-family: var(--hp-font); font-size: 38px; font-weight: 800; line-height: 1; }
.hp-tier-card__price-unit { font-family: var(--hp-font); font-size: 13px; font-weight: 500; color: var(--hp-text-muted); }

/* CTA button */
.hp-tier-card__btn { font-family: var(--hp-font); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; padding: 12px 32px; border-radius: 50px; cursor: pointer; background: var(--hp-charcoal); color: #fff; border: none; text-decoration: none; transition: all 0.3s ease; width: 100%; }
.hp-tier-card__btn:hover { background: var(--hp-orange); color: var(--hp-charcoal); transform: translateY(-1px); }

/* Dot navigation */
.hp-tiers__dots { display: flex; justify-content: center; gap: 10px; margin-top: 32px; margin-bottom: 28px; }
.hp-tiers__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.15); transition: all 0.4s ease; cursor: pointer; border: none; padding: 0; }
.hp-tiers__dot.is-active { width: 28px; border-radius: 4px; }

/* Quiz CTA */
.hp-tiers__quiz { text-align: center; }
.hp-tiers__quiz .hp-btn--outline { border-color: var(--hp-charcoal); }
.hp-tiers__quiz .hp-btn--outline:hover { background: var(--hp-orange); border-color: var(--hp-orange); color: #fff; }

/* Desktop: larger cards + arrows */
@media (min-width: 901px) {
    .hp-tiers__arrow { display: flex; }
    .hp-tiers .hp-tier-card { flex: 0 0 340px; }
    .hp-tiers .hp-tier-card:first-child { margin-left: calc(50vw - 170px); }
    .hp-tiers .hp-tier-card:last-child { margin-right: calc(50vw - 170px); }
}


/* ══════════════════════════════════════════════════
   SECTION 4: PRE-ROLLS
   ══════════════════════════════════════════════════ */

.hp-prerolls__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.hp-prerolls__cta { text-align: center; }

.hp-preroll { background: var(--hp-bg-white); border: 1px solid var(--hp-border); border-radius: 14px; text-align: center; overflow: hidden; display: flex; flex-direction: column; transition: all .3s ease; }
.hp-preroll:hover { border-color: var(--hp-orange); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.05); }
.hp-preroll__img { width: 100%; aspect-ratio: 4/3; background: var(--hp-bg-peach); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hp-preroll__img img { width: 100%; height: 100%; object-fit: cover; }
.hp-preroll__info { padding: 16px 14px 20px; flex: 1; display: flex; flex-direction: column; align-items: center; }
.hp-preroll__acc { height: 2px; border-radius: 1px; width: 32px; margin-bottom: 10px; }
.hp-preroll__name { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--hp-charcoal); margin-bottom: 4px; }
.hp-preroll__desc { font-size: 13px; font-weight: 400; color: var(--hp-text-light); margin-bottom: 8px; }
.hp-preroll__price { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 14px; }
.hp-preroll__price-from { font-size: 11px; font-weight: 500; color: var(--hp-text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.hp-preroll__price-amt { font-size: 26px; font-weight: 700; color: var(--hp-orange); line-height: 1; }
.hp-preroll__btn { font-family: var(--hp-font); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 8px 18px; border-radius: 50px; border: none; cursor: pointer; margin-top: auto; background: var(--hp-charcoal); color: #fff; text-decoration: none; transition: all .3s; line-height: 1.4; text-align: center; display: inline-block; }
.hp-preroll__btn:hover { background: var(--hp-orange); }


/* ══════════════════════════════════════════════════
   SECTION 5: VIBES
   ══════════════════════════════════════════════════ */

.hp-vibes__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.hp-vibe { background: var(--hp-bg-white); border-radius: 14px; text-align: center; border: 1px solid var(--hp-border); display: flex; flex-direction: column; overflow: hidden; text-decoration: none; color: var(--hp-text); transition: all .3s ease; }
.hp-vibe:hover { border-color: var(--hp-orange); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.05); }
.hp-vibe__img { width: 100%; aspect-ratio: 4/3; background: var(--hp-bg-cream); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hp-vibe__img img { width: 100%; height: 100%; object-fit: cover; }
.hp-vibe__body { padding: 14px 12px 18px; flex: 1; display: flex; flex-direction: column; align-items: center; }
.hp-vibe__name { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--hp-charcoal); margin-bottom: 4px; }
.hp-vibe__desc { font-size: 13px; font-weight: 400; color: var(--hp-text-light); margin-bottom: 14px; }
.hp-vibe__btn { font-family: var(--hp-font); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 8px 18px; border-radius: 50px; margin-top: auto; background: var(--hp-charcoal); color: #fff; transition: all .3s; line-height: 1.4; text-align: center; display: inline-block; }
.hp-vibe__btn:hover { background: var(--hp-orange); }
.hp-vibe--all .hp-vibe__btn { background: var(--hp-orange); color: #fff; }
.hp-vibe--all .hp-vibe__btn:hover { background: var(--hp-orange-hover); }


/* ══════════════════════════════════════════════════
   SECTION 6: BEST SELLERS
   ══════════════════════════════════════════════════ */

.hp-bs__scroll { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 4px 0 20px; scrollbar-width: none; }
.hp-bs__scroll::-webkit-scrollbar { display: none; }

.hp-pc { background: var(--hp-bg-white); border-radius: 14px; overflow: hidden; border: 1px solid var(--hp-border); min-width: 240px; max-width: 240px; flex-shrink: 0; scroll-snap-align: start; display: flex; flex-direction: column; transition: all .3s ease; }
.hp-pc:hover { border-color: var(--hp-orange); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.05); }
.hp-pc__img { position: relative; width: 100%; aspect-ratio: 1/1; background: var(--hp-bg-cream); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hp-pc__img img { width: 100%; height: 100%; object-fit: cover; }
.hp-pc__ph { font-size: 11px; font-weight: 500; color: var(--hp-text-muted); opacity: .4; }
.hp-pc__badges { position: absolute; top: 8px; left: 8px; z-index: 3; display: flex; flex-direction: column; gap: 4px; }
.hp-pc__effects { position: absolute; bottom: 8px; left: 8px; right: 8px; z-index: 3; display: flex; gap: 4px; flex-wrap: wrap; }

/* Badges */
.hp-bdg { font-family: var(--hp-font); font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 8px; border-radius: 10px; white-space: nowrap; line-height: 1.3; }
.hp-bdg--tier { background: var(--hp-charcoal); color: #fff; }
.hp-bdg--thca { background: rgba(212,113,42,0.1); color: var(--hp-orange); }
.hp-bdg--bestseller { background: var(--hp-orange); color: #fff; }
.hp-bdg--new { background: #2ECC40; color: #fff; }
.hp-bdg--lowstock { background: #C0392B; color: #fff; }
.hp-bdg--soldout { background: #C0392B; color: #fff; }

/* Effect tags */
.hp-efx { font-family: var(--hp-font); font-size: 9px; font-weight: 700; padding: 3px 7px; border-radius: 12px; background: var(--hp-bg-white); color: var(--hp-text-light); border: 1px solid var(--hp-border); }
.hp-pc__info { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.hp-pc__name { font-size: 15px; font-weight: 700; color: var(--hp-charcoal); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 5px; line-height: 1.2; text-decoration: none; display: block; }
.hp-pc__meta { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.hp-pc__stars { color: var(--hp-orange); font-size: 12px; letter-spacing: 1px; }
.hp-pc__revs { font-size: 12px; color: var(--hp-text-muted); }
.hp-pc__bot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.hp-pc__price { font-size: 12px; color: var(--hp-text-muted); }
.hp-pc__price strong { font-size: 20px; font-weight: 700; color: var(--hp-orange); margin-right: 2px; }
.hp-pc__atc { font-family: var(--hp-font); background: var(--hp-charcoal); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 9px 18px; border-radius: 50px; border: none; cursor: pointer; transition: all .3s; text-decoration: none; display: inline-block; }
.hp-pc__atc:hover { background: var(--hp-orange); }
.hp-pc__atc--disabled { background: #A0A0A0; cursor: not-allowed; }


/* ══════════════════════════════════════════════════
   SECTION 7: WHY US
   ══════════════════════════════════════════════════ */

.hp-why__row { display: flex; justify-content: space-between; align-items: flex-start; }
.hp-why__item { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 8px; position: relative; }
.hp-why__item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 4px; bottom: 4px; width: 1px; background: rgba(255,255,255,.1); }
.hp-why__icon { width: 32px; height: 32px; margin-bottom: 10px; }
.hp-why__icon svg { width: 32px; height: 32px; stroke: var(--hp-orange); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.hp-why__title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: #fff; margin-bottom: 3px; }
.hp-why__desc { font-size: 11px; color: rgba(255,255,255,.4); line-height: 1.4; }


/* ══════════════════════════════════════════════════
   SECTION 8: NEWSLETTER
   ══════════════════════════════════════════════════ */

.hp-nl__inner { max-width: 540px; margin: 0 auto; text-align: center; }
.hp-nl__title { font-family: var(--hp-font); font-size: clamp(24px, 4vw, 32px); font-weight: 700; letter-spacing: -0.3px; line-height: 1.15; color: var(--hp-charcoal); margin-bottom: 8px; }
.hp-nl__sub { font-size: 15px; font-weight: 400; color: var(--hp-text-light); margin-bottom: 24px; }
.hp-nl__form { display: flex; align-items: center; background: var(--hp-bg-white); border: 1px solid var(--hp-border); border-radius: 50px; padding: 5px 5px 5px 22px; margin-bottom: 12px; }
.hp-nl__input { font-family: var(--hp-font); flex: 1; border: none; background: transparent; font-size: 14px; color: var(--hp-text); outline: none; padding: 10px 0; }
.hp-nl__input::placeholder { color: var(--hp-text-muted); }
.hp-nl__btn { font-family: var(--hp-font); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 11px 26px; border-radius: 50px; border: none; background: var(--hp-orange); color: #fff; cursor: pointer; white-space: nowrap; flex-shrink: 0; transition: all .3s; }
.hp-nl__btn:hover { background: var(--hp-orange-hover); }
.hp-nl__disc { font-size: 11px; color: var(--hp-text-muted); }


/* ══════════════════════════════════════════════════
   SECTION 9: TESTIMONIALS
   ══════════════════════════════════════════════════ */

.hp-test__stats { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 8px; }
.hp-test__stars-display { color: var(--hp-orange); font-size: 16px; letter-spacing: 2px; }
.hp-test__count { font-size: 13px; color: var(--hp-text-muted); }
.hp-test__scroll { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 4px 0 20px; scrollbar-width: none; }
.hp-test__scroll::-webkit-scrollbar { display: none; }

.hp-review { background: var(--hp-bg-white); border-radius: 14px; border: 1px solid var(--hp-border); padding: 24px; min-width: 300px; max-width: 300px; flex-shrink: 0; scroll-snap-align: start; display: flex; flex-direction: column; }
.hp-review__stars { color: var(--hp-orange); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.hp-review__text { font-size: 15px; font-weight: 400; color: var(--hp-text); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.hp-review__footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--hp-border-light); padding-top: 14px; }
.hp-review__name { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--hp-charcoal); display: block; }
.hp-review__product { font-size: 11px; color: var(--hp-text-muted); display: block; margin-top: 2px; }
.hp-review__verified { font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #2ECC40; background: rgba(46,204,64,.08); padding: 3px 9px; border-radius: 10px; white-space: nowrap; }


/* ══════════════════════════════════════════════════
   SECTION 10: FAQ
   ══════════════════════════════════════════════════ */

.hp-faq__inner { max-width: 720px; margin: 0 auto; }
.hp-faq__list { display: flex; flex-direction: column; }
.hp-faq__item { border-bottom: 1px solid var(--hp-border); }
.hp-faq__item:first-child { border-top: 1px solid var(--hp-border); }
.hp-faq__q { font-family: var(--hp-font); width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 18px 0; background: none; border: none; cursor: pointer; text-align: left; gap: 16px; font-size: 15px; font-weight: 700; color: var(--hp-charcoal); line-height: 1.3; transition: color .3s; }
.hp-faq__q:hover { color: var(--hp-orange); }
.hp-faq__icon { width: 26px; height: 26px; border-radius: 50%; background: var(--hp-bg-cream); border: 1px solid var(--hp-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; color: var(--hp-orange); transition: all .3s; }
.hp-faq__item.is-open .hp-faq__icon { background: var(--hp-orange); border-color: var(--hp-orange); color: #fff; transform: rotate(45deg); }
.hp-faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.hp-faq__item.is-open .hp-faq__a { max-height: 300px; }
.hp-faq__a p { font-size: 14px; color: var(--hp-text-light); line-height: 1.7; padding: 0 42px 18px 0; }
.hp-faq__contact { text-align: center; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--hp-border); }
.hp-faq__contact p { font-size: 14px; font-weight: 400; color: var(--hp-text-light); margin-bottom: 12px; }


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

@media (max-width: 1024px) {
    .hp-tiers { padding: 60px 0 48px; }
    .hp-tiers__track-wrap { padding: 0 24px; }
}

@media (max-width: 900px) {
    .hp-section { padding-left: 24px; padding-right: 24px; }
    .hp-hero__inner { padding: 40px 24px 60px; }
    .hp-tb { padding: 16px 24px; }
    .hp-tiers { padding: 60px 0 48px; }
    .hp-tiers__track-wrap { padding: 0 20px; }
    .hp-tier-card { flex: 0 0 270px; }
    .hp-tier-card:first-child { margin-left: calc(50vw - 135px); }
    .hp-tier-card:last-child { margin-right: calc(50vw - 135px); }
    .hp-prerolls__grid { grid-template-columns: repeat(2, 1fr); }
    .hp-vibes__grid { grid-template-columns: repeat(2, 1fr); }
    .hp-why__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 0; }
    .hp-why__item::after { display: none; }
    .hp-pc { min-width: 220px; max-width: 220px; }
}

@media (max-width: 540px) {
    .hp-section { padding-left: 20px; padding-right: 20px; }
    .hp-hero__inner { padding: 30px 20px 50px; }
    .hp-tb { padding: 16px 20px; }
    .hp-tb__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; justify-items: start; }
    .hp-tb__div { display: none; }
    .hp-hero { min-height: 65vh; }
    .hp-hero__title { font-size: 32px; }
    .hp-hero__btns { flex-direction: column; align-items: stretch; }
    .hp-btn { justify-content: center; }
    .hp-tiers { padding: 50px 0 40px; }
    .hp-tiers__track-wrap { padding: 0 16px; }
    .hp-tier-card { flex: 0 0 260px; padding: 0 24px 24px; }
    .hp-tier-card:first-child { margin-left: calc(50vw - 130px); }
    .hp-tier-card:last-child { margin-right: calc(50vw - 130px); }
    .hp-tier-card__img { width: 150px; height: 150px; margin-top: -60px; }
    .hp-tier-card__name { font-size: 18px; letter-spacing: 3px; }
    .hp-tier-card__price-amt { font-size: 32px; }
    .hp-tiers__dots { gap: 8px; }
    .hp-tiers__quiz .hp-btn--outline { font-size: 11px; padding: 11px 28px; }
    .hp-tiers__bg-img { width: 250px; height: 250px; left: -20%; }
    .hp-prerolls__grid, .hp-vibes__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .hp-why__row { grid-template-columns: 1fr 1fr; }
    .hp-nl__form { flex-direction: column; border-radius: 14px; padding: 4px; }
    .hp-nl__input { width: 100%; padding: 12px 18px; text-align: center; }
    .hp-nl__btn { width: 100%; padding: 12px; border-radius: 12px; }
}
