/* ================================================================
   QwikGlam — Services Page  ✦  La Belle Époque Edition
   ─────────────────────────────────────────────────────────────────
   Palette:
     Pearl White   #FDF6F8   — page soul, pure luxury canvas
     Baby Blush    #FAC8D8   — signature femininity
     Petal Pink    #F2ACC8   — depth + warmth
     Champagne     #C9A86C   — prestige gold accent
     Lavender Mist #D4C0F0   — ethereal elegance
     Deep Plum     #2A0E22   — authority typography
     Mauve Ink     #5A2E48   — body copy
   ─────────────────────────────────────────────────────────────────
   Philosophy: "Soft as a petal, warm as champagne, timeless as
                Parisian couture — a page girls fall in love with."
   ================================================================ */

/* ─── Keyframes ─── */
@keyframes qgSpin        { to { transform: rotate(360deg); } }
@keyframes qgDrift       { from { transform: translateY(0) rotate(0deg); } to { transform: translateY(-8%) rotate(3deg); } }
@keyframes qgHeroReveal  { from { opacity:0; transform:translateY(32px); } to { opacity:1; transform:none; } }
@keyframes qgHeroLine    { 0%,100%{opacity:.55} 50%{opacity:1} }
@keyframes qgShimmer     { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
@keyframes qgBounce      { 0%,100%{transform:translateX(-50%) translateY(0);opacity:1} 50%{transform:translateX(-50%) translateY(10px);opacity:.4} }
@keyframes qgCardIn      { from{opacity:0;transform:translateY(24px) scale(.98)} to{opacity:1;transform:none} }
@keyframes qgFloat       { 0%,100%{box-shadow:0 8px 32px rgba(212,84,122,.22),0 0 0 0 rgba(212,84,122,.12)} 50%{box-shadow:0 8px 32px rgba(212,84,122,.22),0 0 0 10px rgba(212,84,122,.0)} }
@keyframes qgModalIn     { from{opacity:0;transform:translateY(24px) scale(.97)} to{opacity:1;transform:none} }
@keyframes qgShineSweep  { 0%{transform:translateX(-100%) skewX(-20deg)} 100%{transform:translateX(300%) skewX(-20deg)} }
@keyframes qgPulse       { 0%,100%{opacity:.6} 50%{opacity:1} }
@keyframes qgGlow        { 0%,100%{opacity:.3;transform:scale(1)} 50%{opacity:.6;transform:scale(1.1)} }
@keyframes qgStepPulse   { 0%,100%{box-shadow:0 0 0 0 rgba(212,84,122,.3)} 50%{box-shadow:0 0 0 14px rgba(212,84,122,.0)} }
@keyframes qgBadgePing   { 0%{box-shadow:0 0 0 0 rgba(212,84,122,.55)} 100%{box-shadow:0 0 0 16px rgba(212,84,122,.0)} }
@keyframes qgProgressBar { from{width:0%} to{width:100%} }
@keyframes qgUrgencyBlink{ 0%,100%{color:#C05080} 50%{color:#B8924A} }
@keyframes qgRoseOrb     { 0%,100%{opacity:.25;transform:scale(1)} 50%{opacity:.45;transform:scale(1.1)} }
@keyframes qgLavOrb      { 0%,100%{opacity:.18;transform:scale(1)} 50%{opacity:.35;transform:scale(1.12)} }
@keyframes qgTransGlow   { 0%,100%{opacity:.6} 50%{opacity:1} }
@keyframes qgPhoneFloat  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes qgPetalDrift  { from{transform:translateY(0) rotate(0deg) scale(1)} to{transform:translateY(-6%) rotate(4deg) scale(1.02)} }


/* ================================================================
   BASE — La Belle Époque Light System
   ================================================================ */
/* ── CSS custom properties ──────────────────────────────────────
   FIX: Variables declared on :root so they are always available,
   regardless of which body class WordPress assigns to the page.
   Previously scoped to body.page-template-page-services only —
   if WP admin had "Default Template" selected, the body class was
   page-template-default and every variable resolved to 'initial',
   breaking all spacing, colours, shadows and grid layouts.
──────────────────────────────────────────────────────────────── */
:root {
  /* ── Couture Light Palette ── */
  --pearl:      #FDF6F8;
  --blush-0:    #FFF0F6;
  --blush-1:    #FAC8D8;
  --petal:      #F2ACC8;
  --rose:       #D4547A;
  --rose-dk:    #B03060;
  --gold:       #C9A86C;
  --gold-dk:    #B8924A;
  --gold-lt:    #F0DEB8;
  --lav:        #9B7EC8;
  --lav-lt:     #D4C0F0;
  --lav-bg:     #F4EFFF;
  --plum:       #2A0E22;
  --plum-dk:    #1A0818;
  --plum-mid:   #2D1240;
  --taupe:      #C8A99A;
  --mauve:      #5A2E48;
  --mauve-lt:   #9A6080;
  --cream:      #FFF9F5;

  /* Stroke & shadow */
  --stroke-rose: rgba(212,84,122,.12);
  --stroke-gold: rgba(201,168,108,.22);
  --stroke-lav:  rgba(155,126,200,.14);
  --shadow-soft: 0 8px 32px rgba(42,14,34,.08);
  --shadow-card: 0 6px 28px rgba(42,14,34,.11), 0 2px 8px rgba(42,14,34,.07), 0 1px 2px rgba(42,14,34,.05);
  --shadow-rose: 0 12px 40px rgba(212,84,122,.18);
  --shadow-hover: 0 20px 55px rgba(42,14,34,.12);
  --radius: 22px;
}

/* Canvas + font applied to BOTH possible body classes.
   page-template-page-services = WP assigned the template explicitly.
   page-template-default       = WP admin left "Default Template" but
                                 functions.php still loads page-services.php
                                 via template_include / is_page('services'). */
body.page-template-page-services,
body.page-id-services,
body.page-template-default:has(#qgHero) {
  background: #FDF6F8;
  color: #2A0E22;
  font-family: "DM Sans", "Poppins", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── WP theme resets (CRITICAL — override all WP backgrounds)
   Both selectors target the same page: one for when the template is
   explicitly assigned in WP admin, one for when it's loaded via the
   functions.php template_include filter with Default Template active. ── */
body.page-template-page-services,
body.page-template-default:has(#qgHero),
body.page-template-page-services .wp-site-blocks,
body.page-template-default:has(#qgHero) .wp-site-blocks,
body.page-template-page-services .site-main,
body.page-template-default:has(#qgHero) .site-main,
body.page-template-page-services main#main,
body.page-template-default:has(#qgHero) main#main,
body.page-template-page-services main,
body.page-template-default:has(#qgHero) main,
body.page-template-page-services .entry-content,
body.page-template-default:has(#qgHero) .entry-content,
body.page-template-page-services .post-content,
body.page-template-page-services .page-content,
body.page-template-page-services .has-global-padding,
body.page-template-default:has(#qgHero) .has-global-padding,
body.page-template-page-services .is-layout-flow,
body.page-template-default:has(#qgHero) .is-layout-flow,
body.page-template-page-services .is-layout-constrained,
body.page-template-default:has(#qgHero) .is-layout-constrained,
body.page-template-page-services .wp-block-group,
body.page-template-default:has(#qgHero) .wp-block-group,
body.page-template-page-services .wp-block-post-content,
body.page-template-default:has(#qgHero) .wp-block-post-content,
body.page-template-page-services #page,
body.page-template-default:has(#qgHero) #page,
body.page-template-page-services #content,
body.page-template-default:has(#qgHero) #content,
body.page-template-page-services #primary,
body.page-template-default:has(#qgHero) #primary {
  background: #FDF6F8 !important;
  color: #2A0E22 !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.page-template-page-services #qgServices,
body.page-template-default:has(#qgHero) #qgServices,
body.page-template-page-services .qg-services-wrapper,
body.page-template-default:has(#qgHero) .qg-services-wrapper,
body.page-template-page-services .qg-services-grid,
body.page-template-default:has(#qgHero) .qg-services-grid {
  background: #FFFBFD !important;
}


/* ================================================================
   HERO — stays cinematic (dark video bg, light sections below)
   ================================================================ */
.qg-hero {
  position: relative;
  min-height: 82vh;
  display: grid; place-items: center;
  overflow: hidden; isolation: isolate;
}
.qg-hero__video {
  position: absolute; inset: 0;
  width:100%; height:100%;
  object-fit: cover; object-position: center top; z-index: -3;
}
/* Veil: richer rose tints, fades to pearl at bottom for smooth transition */
.qg-hero__veil {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg,
      rgba(42,14,34,.52)   0%,
      rgba(42,14,34,.18)   22%,
      rgba(42,14,34,.35)   52%,
      rgba(42,14,34,.82)   80%,
      rgba(253,246,248,1)  100%),
    radial-gradient(ellipse 70% 55% at 72% 18%, rgba(212,84,122,.32), transparent 60%),
    radial-gradient(ellipse 50% 42% at 18% 28%, rgba(201,168,108,.22), transparent 55%),
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(155,126,200,.14), transparent 65%);
}
.qg-hero__particles {
  position: absolute; inset: 0; z-index: -1;
  pointer-events: none; overflow: hidden;
}
.qg-hero__particles::before {
  content: ""; position: absolute; inset: -20% -10%;
  background:
    radial-gradient(3px 6px at 12% 20%, rgba(250,200,216,.5)  30%, transparent 70%),
    radial-gradient(4px 7px at 35% 55%, rgba(201,168,108,.35) 30%, transparent 70%),
    radial-gradient(3px 5px at 58% 30%, rgba(250,200,216,.42) 30%, transparent 70%),
    radial-gradient(5px 9px at 78% 65%, rgba(218,192,232,.42) 30%, transparent 70%),
    radial-gradient(3px 5px at 92% 40%, rgba(201,168,108,.32) 30%, transparent 70%),
    radial-gradient(2px 4px at 48% 12%, rgba(250,200,216,.28) 30%, transparent 70%);
  animation: qgDrift 20s linear infinite; mix-blend-mode: screen;
}
.qg-hero__particles::after {
  content: ""; position: absolute; inset: -30% -10%;
  background:
    radial-gradient(3px 5px at 22% 48%, rgba(250,200,216,.24) 30%, transparent 70%),
    radial-gradient(4px 6px at 48% 72%, rgba(212,192,240,.25) 30%, transparent 70%),
    radial-gradient(3px 5px at 72% 28%, rgba(218,192,232,.3)  30%, transparent 70%);
  animation: qgDrift 28s linear infinite reverse; animation-delay: -10s; mix-blend-mode: screen;
}
.qg-hero::after {
  content: ""; position: absolute; top:0; left:0; right:0; height: 1px; z-index: 2;
  background: linear-gradient(90deg,
    transparent, rgba(250,180,200,.6), rgba(201,168,108,.7), rgba(200,180,240,.5), transparent);
  animation: qgHeroLine 6s ease-in-out infinite;
}

.qg-hero__content {
  position: relative; z-index: 2; text-align: center;
  max-width: 840px; padding: 0 1.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
  animation: qgHeroReveal 1.1s cubic-bezier(.22,1,.36,1) .4s both;
}
.qg-hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .44rem 1.15rem; border-radius: 9999px;
  background: rgba(253,246,248,.18);
  border: 1px solid rgba(253,246,248,.42);
  backdrop-filter: blur(12px);
  font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,230,240,.95);
}
.qg-hero__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.6rem, 7vw, 5.6rem); font-weight: 700;
  line-height: 1.06; color: #fff; margin: 0;
  text-shadow: 0 2px 30px rgba(42,14,34,.3);
}
.qg-hero__title em {
  display: block; font-style: italic;
  background: linear-gradient(135deg, #FFE0EE 15%, #F8D8A0 50%, #FFE0EE 85%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  background-size: 200%; animation: qgShimmer 5s ease-in-out infinite;
}
.qg-hero__subtitle {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 300; font-style: italic;
  color: rgba(255,230,240,.72); margin: 0; line-height: 1.78;
}
.qg-hero__cta {
  padding: 1rem 2.6rem; border-radius: 9999px;
  background: linear-gradient(135deg, #B03060 0%, #E07AA4 50%, #C9A86C 100%);
  background-size: 200%;
  border: none; color: #fff; font-weight: 700;
  font-size: .93rem; letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  box-shadow: 0 8px 36px rgba(176,48,96,.45), 0 1px 0 rgba(255,255,255,.22) inset;
  transition: all .4s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
  animation: qgShimmer 5s ease-in-out infinite;
}
.qg-hero__cta::after {
  content: ""; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left .5s ease;
}
.qg-hero__cta:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 48px rgba(176,48,96,.58); }
.qg-hero__cta:hover::after { left: 160%; }

.qg-scroll-cue {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  width: 24px; height: 38px; border-radius: 14px;
  border: 1.5px solid rgba(255,220,235,.5); background: transparent; cursor: pointer; z-index: 2;
}
.qg-scroll-cue span {
  display: block; width: 4px; height: 8px; border-radius: 3px;
  background: rgba(255,220,235,.8); margin: 6px auto 0;
  animation: qgBounce 2.2s ease-in-out infinite;
}


/* ================================================================
   CATEGORY BAR — FROSTED PEARL GLASS (sticky)
   ================================================================ */
.qg-category-bar {
  position: sticky; top: 0; z-index: 800;
  background: rgba(253,246,248,.96);
  backdrop-filter: blur(28px) saturate(220%);
  -webkit-backdrop-filter: blur(28px) saturate(220%);
  border-bottom: 1px solid rgba(212,84,122,.12);
  box-shadow: 0 4px 24px rgba(42,14,34,.06);
  padding: .9rem 0;
  /* Fade edges to hint scrollability */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 2.5rem,
    #000 calc(100% - 2.5rem),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 2.5rem,
    #000 calc(100% - 2.5rem),
    transparent 100%
  );
}
.qg-category-bar::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(212,84,122,.25), rgba(201,168,108,.2), rgba(155,126,200,.18), transparent);
}
.qg-category-bar::-webkit-scrollbar { display: none; }
.qg-category-bar-inner {
  display: flex; gap: .5rem; flex-wrap: nowrap;
  overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 0 2.5rem;    /* breathing room so first/last btn isn't masked */
  margin: 0 auto;
  max-width: 100%;
}
.qg-category-bar-inner::-webkit-scrollbar { display: none; }
.qg-category-bar-inner > .qg-category-btn {
  scroll-snap-align: start;
}

.qg-category-btn {
  flex-shrink: 0;
  border: 1px solid rgba(42,14,34,.1);
  background: rgba(255,255,255,.85);
  color: #5A2E48;
  padding: .52rem 1.2rem; border-radius: 9999px;
  font-weight: 600; font-size: .82rem; letter-spacing: .03em;
  cursor: pointer; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(42,14,34,.05);
  transition: all .35s cubic-bezier(.22,1,.36,1);
}
.qg-category-btn:hover {
  background: #fff;
  color: #D4547A;
  border-color: rgba(212,84,122,.28);
  box-shadow: 0 4px 16px rgba(212,84,122,.14);
  transform: translateY(-1px);
}
.qg-category-btn.active {
  background: linear-gradient(135deg, #B03060, #E07AA4, #C9A86C);
  border-color: transparent; color: #fff;
  box-shadow: 0 5px 22px rgba(176,48,96,.38), 0 1px 0 rgba(255,255,255,.22) inset;
}


/* ================================================================
   URGENCY AVAILABILITY STRIP — BLUSH PEARL
   ================================================================ */
.qg-urgency-strip {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  padding: .8rem clamp(1rem, 4vw, 3rem);
  background: linear-gradient(90deg, #FFF5F8, #FFFBFD, #FFF5F8);
  border-bottom: 1px solid rgba(212,84,122,.1);
  flex-wrap: wrap; position: relative; overflow: hidden;
}
.qg-urgency-strip::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,84,122,.18), rgba(201,168,108,.14), transparent);
}
.qg-urgency-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #28C872; box-shadow: 0 0 8px rgba(40,200,114,.55);
  animation: qgPulse 2s ease-in-out infinite; flex-shrink: 0;
}
.qg-urgency-text {
  font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: #5A2E48;
}
.qg-urgency-text strong { animation: qgUrgencyBlink 3s ease-in-out infinite; }
.qg-urgency-divider { width: 1px; height: 16px; background: rgba(42,14,34,.1); }
.qg-urgency-badges { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; }
.qg-urgency-badge {
  padding: .3rem .78rem; border-radius: 9999px; font-size: .72rem; font-weight: 700;
  letter-spacing: .04em;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(201,168,108,.28);
  color: #7A5030;
  box-shadow: 0 1px 4px rgba(42,14,34,.05);
}


/* ================================================================
   SERVICES WRAPPER + CONTROLS
   ================================================================ */
.qg-services-wrapper {
  padding: 3rem clamp(1rem, 5%, 4rem);
  max-width: 1340px; margin: 0 auto;
  background: #FFFBFD;
}
.qg-controls {
  display: flex; gap: 1rem;
  align-items: center; justify-content: center;
  flex-wrap: wrap; margin-bottom: 2.8rem;
}
.qg-controls input[type="search"],
.qg-controls input[type="text"],
.qg-controls input {
  min-width: 240px;
  background: #fff;
  border: 1.5px solid rgba(212,84,122,.22);
  color: #2A0E22;
  padding: .92rem 1.25rem;
  border-radius: 14px; outline: none;
  font-family: inherit; font-size: .9rem;
  -webkit-appearance: none; appearance: none;
  box-shadow: 0 2px 12px rgba(42,14,34,.05);
  transition: border-color .3s, box-shadow .3s;
}
.qg-controls input::placeholder { color: rgba(90,46,72,.42); }
.qg-controls input:focus {
  border-color: rgba(212,84,122,.55);
  box-shadow: 0 0 0 4px rgba(212,84,122,.08);
}
.qg-controls select {
  min-width: 200px;
  background: #fff;
  border: 1.5px solid rgba(212,84,122,.22);
  color: #2A0E22;
  padding: .92rem 2.8rem .92rem 1.25rem;
  border-radius: 14px; outline: none;
  font-family: inherit; font-size: .9rem;
  cursor: pointer; color-scheme: light;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1.5l6 6 6-6' fill='none' stroke='%23D4547A' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  box-shadow: 0 2px 12px rgba(42,14,34,.05);
  transition: border-color .3s, box-shadow .3s;
}
.qg-controls select:focus {
  border-color: rgba(212,84,122,.55);
  box-shadow: 0 0 0 4px rgba(212,84,122,.08);
}
.qg-controls select option { background: #fff; color: #2A0E22; }

.qg-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #fff;
  border: 1.5px solid rgba(212,84,122,.22);
  color: #2A0E22;
  padding: .78rem 1.25rem; border-radius: 9999px; cursor: pointer;
  transition: all .35s ease;
  box-shadow: 0 4px 18px rgba(42,14,34,.08);
  white-space: nowrap; text-decoration: none;
}
.qg-badge:hover {
  border-color: rgba(212,84,122,.5);
  box-shadow: 0 8px 28px rgba(212,84,122,.18);
  transform: translateY(-2px);
}
.qg-badge__count {
  background: linear-gradient(135deg, #B03060, #E07AA4);
  color:#fff; border-radius:9999px; min-width:26px; height:26px;
  display:grid; place-items:center; font-weight:800; font-size:.82rem;
  animation: qgBadgePing 2.5s cubic-bezier(.2,.6,.36,1) infinite;
}
.qg-badge__label { font-weight:700; font-size:.88rem; letter-spacing:.03em; color:#2A0E22; }


/* ================================================================
   SERVICES GRID
   ================================================================ */
.qg-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1100px) { .qg-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .qg-services-grid { grid-template-columns: 1fr; } }


/* ================================================================
   SERVICE CARDS — WHITE PEARL VITRINE
   Pure white glass with rose-gold trim, deep plum typography
   ================================================================ */
.qg-ultra-card {
  display: flex; flex-direction: column;
  position: relative; border-radius: 24px;
  overflow: hidden; isolation: isolate;
  background: #FFFFFF;
  border: 1.5px solid rgba(212,84,122,.14);
  box-shadow:
    0 2px 4px rgba(42,14,34,.04),
    0 8px 24px rgba(42,14,34,.09),
    0 20px 48px rgba(42,14,34,.07),
    0 0 0 0.5px rgba(212,84,122,.06);
  transition: transform .55s cubic-bezier(.22,1,.36,1),
              box-shadow .55s cubic-bezier(.22,1,.36,1),
              border-color .45s ease;
  animation: qgCardIn .65s cubic-bezier(.22,1,.36,1) both;
  cursor: pointer;
}
/* Rose-champagne shimmer border top on hover */
.qg-ultra-card::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 2px; z-index: 10;
  background: linear-gradient(90deg,
    transparent, rgba(212,84,122,.0) 10%,
    rgba(212,84,122,.8) 36%, rgba(201,168,108,.9) 55%,
    rgba(180,144,220,.7) 75%, transparent);
  opacity: 0; transition: opacity .45s ease;
}
/* Bottom warm glow */
.qg-ultra-card::after {
  content: ""; position: absolute;
  bottom: -30px; left: 50%; transform: translateX(-50%);
  width: 70%; height: 90px; border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(212,84,122,.14) 0%, rgba(201,168,108,.06) 50%, transparent 75%);
  filter: blur(20px); opacity: 0;
  transition: opacity .55s ease, transform .55s ease;
  pointer-events: none; z-index: 0;
}
.qg-ultra-card:hover {
  transform: translateY(-14px) scale(1.018);
  border-color: rgba(212,84,122,.35);
  box-shadow:
    0 0 0 1.5px rgba(212,84,122,.22),
    0 4px 8px rgba(42,14,34,.06),
    0 16px 40px rgba(42,14,34,.14),
    0 32px 80px rgba(42,14,34,.10),
    0 10px 30px rgba(212,84,122,.16),
    0 2px 8px rgba(201,168,108,.12);
}
.qg-ultra-card:hover::before { opacity: 1; }
.qg-ultra-card:hover::after  { opacity: 1; transform: translateX(-50%) translateY(-14px); }

/* ── Image zone ── */
.qg-ultra-media { height: 280px; overflow: hidden; position: relative; flex-shrink: 0; }
.qg-ultra-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
  transition: transform 1.4s cubic-bezier(.22,1,.36,1), filter .6s ease;
  filter: saturate(1.1) brightness(1.0);
}
.qg-ultra-card:hover .qg-ultra-media img {
  transform: scale(1.07);
  filter: saturate(1.2) brightness(1.03);
}
/* Subtle side vignette only — no bottom fade that hides faces */
.qg-ultra-media::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,252,254,.15) 0%, transparent 15%, transparent 85%, rgba(255,252,254,.15) 100%);
}
/* Duration badge */
.qg-ultra-duration {
  position: absolute; bottom: 10px; right: 10px; z-index: 5;
  padding: .3rem .7rem; border-radius: 9999px;
  background: rgba(255,255,255,.82); border: 1px solid rgba(201,168,108,.35);
  backdrop-filter: blur(8px);
  font-size: .68rem; font-weight: 700; letter-spacing: .04em; color: #7A5030;
  box-shadow: 0 2px 8px rgba(42,14,34,.1);
}

/* ── Offer badge ── */
.qg-ultra-offer {
  display: flex; justify-content: center;
  margin-top: -15px; position: relative; z-index: 5;
}
.qg-ultra-offer span {
  padding: 5px 18px; font-size: .66rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; border-radius: 9999px;
  background: linear-gradient(135deg, #B03060, #E07AA4 50%, #C9A86C);
  color: #fff;
  box-shadow: 0 6px 22px rgba(176,48,96,.35), inset 0 0 0 1px rgba(255,255,255,.2);
}

/* ── Body ── */
.qg-ultra-body {
  padding: 1rem 1.5rem 1.6rem; text-align: center;
  display: flex; flex-direction: column; flex: 1;
  position: relative; z-index: 2;
  background: #fff;
}
.qg-ultra-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.12rem; font-weight: 700; color: #2A0E22;
  margin: .4rem 0 .3rem; line-height: 1.3;
}

/* ── Star rating ── */
.qg-ultra-rating {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  margin-bottom: .5rem;
}
.qg-ultra-stars      { color: #C9A86C; font-size: .82rem; letter-spacing: .06em; }
.qg-ultra-rating-score { font-weight: 800; font-size: .82rem; color: #7A5030; }
.qg-ultra-rating-count { font-size: .75rem; color: rgba(90,46,72,.45); font-weight: 500; }

.qg-ultra-desc {
  font-size: .87rem; line-height: 1.62; color: #7A5868;
  margin: 0 0 .8rem; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.qg-ultra-meta {
  font-size: 1rem; font-weight: 800; color: #2A0E22; margin-bottom: .5rem;
  font-family: "Playfair Display", Georgia, serif;
}
.qg-ultra-meta span {
  font-weight: 400; font-size: .82rem; color: rgba(90,46,72,.48);
  margin-left: .3rem; font-family: "DM Sans", sans-serif;
}

/* ── Social proof ── */
.qg-ultra-proof {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  margin-bottom: .9rem;
}
.qg-ultra-proof-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #28C872; box-shadow: 0 0 5px rgba(40,200,114,.5);
}
.qg-ultra-proof-text { font-size: .73rem; color: rgba(90,46,72,.5); font-weight: 500; }

/* ── CTA Button — ghost rose fills on hover ── */
.qg-ultra-cta {
  width: 100%; padding: .85rem 0; border-radius: 9999px;
  border: 1.5px solid rgba(212,84,122,.3);
  background: rgba(253,246,248,.8);
  color: #D4547A;
  font-weight: 700; font-size: .86rem; letter-spacing: .06em;
  cursor: pointer; transition: all .4s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.qg-ultra-cta::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, #B03060, #E07AA4, #C9A86C);
  opacity: 0; transition: opacity .35s; border-radius: inherit;
}
.qg-ultra-cta::after {
  content: ""; position: absolute;
  top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.28), transparent);
}
.qg-ultra-cta:hover {
  border-color: transparent; color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(176,48,96,.4);
}
.qg-ultra-cta:hover::before { opacity: 1; }
.qg-ultra-cta:hover::after { animation: qgShineSweep .55s ease forwards; }
.qg-ultra-cta .label { position: relative; z-index: 1; }


/* ================================================================
   SHARED BUTTONS
   ================================================================ */
.qg-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .88rem 1.8rem; border-radius: 9999px;
  font-weight: 700; font-size: .9rem; cursor: pointer;
  transition: all .38s cubic-bezier(.22,1,.36,1); border: none;
  text-decoration: none;
}
.qg-btn-primary {
  background: linear-gradient(135deg, #B03060, #E07AA4, #C9A86C);
  color: #fff;
  box-shadow: 0 6px 24px rgba(176,48,96,.38), 0 1px 0 rgba(255,255,255,.22) inset;
}
.qg-btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 40px rgba(176,48,96,.55);
}
.qg-btn--ghost {
  background: rgba(255,255,255,.85);
  border: 1.5px solid rgba(212,84,122,.3);
  color: #D4547A;
  backdrop-filter: blur(8px);
}
.qg-btn--ghost:hover {
  background: #fff;
  border-color: rgba(212,84,122,.6);
  color: #B03060;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,84,122,.18);
}


/* ================================================================
   HOW IT WORKS — BLUSH MIST SECTION
   ================================================================ */
.qg-how-it-works {
  padding: clamp(4rem,7vw,6.5rem) clamp(1.5rem,5%,4rem);
  background: linear-gradient(160deg, #FFF5F8 0%, #FFF0F6 50%, #FFF5F8 100%);
  border-top: 1px solid rgba(212,84,122,.08);
  position: relative; overflow: hidden;
}
/* Blush center orb */
.qg-how-it-works::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at center,
    rgba(212,84,122,.06) 0%, rgba(201,168,108,.04) 45%, transparent 70%);
  filter: blur(60px); pointer-events: none;
}
/* Lavender top-right orb */
.qg-how-it-works::after {
  content: ""; position: absolute; top: -80px; right: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(155,126,200,.1), transparent 70%);
  filter: blur(55px); pointer-events: none;
  animation: qgLavOrb 10s ease-in-out infinite;
}

.qg-hiw-header {
  text-align: center; margin-bottom: 3.5rem; position: relative; z-index: 2;
}
/* ── Eyebrow — universal light style ── */
.qg-section-eyebrow {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: .67rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(176,48,96,.65);
  margin-bottom: 1rem;
}
.qg-section-eyebrow::before,
.qg-section-eyebrow::after {
  content: ""; display: block; width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,84,122,.45));
}
.qg-section-eyebrow::after {
  background: linear-gradient(90deg, rgba(212,84,122,.45), transparent);
}
.qg-hiw-header h2, .qg-trans-header h2, .qg-pledge-header h2,
.qg-reels-header h2, .qg-testimonials-header h2, .qg-app-copy h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700; margin: 0 0 .7rem; color: #2A0E22;
}
.qg-hiw-header h2 { font-size: clamp(2rem,4vw,3rem); }
.qg-hiw-header p {
  font-size: 1rem; color: #9A6080; max-width: 500px; margin: 0 auto; line-height: 1.78;
}

.qg-hiw-steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 2;
}
@media (max-width: 768px) { .qg-hiw-steps { grid-template-columns: 1fr; max-width: 420px; } }

/* Connecting rose-gold line */
.qg-hiw-steps::before {
  content: ""; position: absolute; top: 56px;
  left: calc(33.33%); right: calc(33.33%); height: 1px;
  background: linear-gradient(90deg,
    rgba(212,84,122,.2), rgba(212,84,122,.4), rgba(201,168,108,.25));
  z-index: 0;
}
@media (max-width: 768px) { .qg-hiw-steps::before { display: none; } }

.qg-hiw-step {
  text-align: center; position: relative; z-index: 2;
  background: rgba(255,255,255,.88);
  border: 1.5px solid rgba(212,84,122,.1);
  border-radius: 22px; padding: 2.2rem 1.8rem 2rem;
  box-shadow: var(--shadow-card);
  transition: all .45s cubic-bezier(.22,1,.36,1);
}
.qg-hiw-step:hover {
  background: #fff;
  border-color: rgba(212,84,122,.22);
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.qg-hiw-num {
  width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 1.4rem;
  background: linear-gradient(135deg, rgba(212,84,122,.12), rgba(201,168,108,.1));
  border: 1.5px solid rgba(212,84,122,.28);
  display: grid; place-items: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem; font-weight: 700; color: #D4547A;
  animation: qgStepPulse 3.5s ease-in-out infinite;
  position: relative; z-index: 2;
}
.qg-hiw-icon { font-size: 1.6rem; display: block; margin-bottom: 1.1rem; }
.qg-hiw-step h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem; font-weight: 700; color: #2A0E22; margin: 0 0 .5rem;
}
.qg-hiw-step p { font-size: .88rem; line-height: 1.7; color: #9A6080; margin: 0; }


/* ================================================================
   TRANSFORMATION — LAVENDER MIST SECTION
   ================================================================ */
.qg-transformation {
  padding: clamp(4rem,7vw,6.5rem) clamp(1.5rem,5%,4rem);
  background: linear-gradient(160deg, #F4EFFF 0%, #FAF5FF 55%, #F4EFFF 100%);
  border-top: 1px solid rgba(155,126,200,.12);
  border-bottom: 1px solid rgba(155,126,200,.1);
  position: relative; overflow: hidden;
}
.qg-transformation::before {
  content: ""; position: absolute; top: -80px; left: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,84,122,.1) 0%, transparent 65%);
  filter: blur(65px); pointer-events: none;
  animation: qgRoseOrb 8s ease-in-out infinite;
}
.qg-transformation::after {
  content: ""; position: absolute; bottom: -60px; right: -60px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,108,.1) 0%, transparent 65%);
  filter: blur(55px); pointer-events: none;
  animation: qgLavOrb 11s ease-in-out infinite;
}

.qg-trans-header { text-align: center; margin-bottom: 3.2rem; position: relative; z-index: 2; }
.qg-trans-header h2 { font-size: clamp(1.9rem,3.8vw,3rem); }
.qg-trans-header p {
  font-size: .96rem; color: #9A6080; max-width: 520px; margin: 0 auto; line-height: 1.78;
}

.qg-trans-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; max-width: 1160px; margin: 0 auto 3rem;
  position: relative; z-index: 2;
}
@media (max-width: 900px) { .qg-trans-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .qg-trans-grid { grid-template-columns: 1fr; } }

/* ── Transformation Card ── */
.qg-trans-card {
  position: relative; border-radius: 22px; overflow: hidden;
  aspect-ratio: 3/4;
  background: #1a0a14;           /* dark fallback so no white flash */
  border: 1.5px solid rgba(155,126,200,.2);
  box-shadow: 0 12px 45px rgba(42,14,34,.1), 0 3px 10px rgba(155,126,200,.08);
  cursor: ew-resize;
  transition: transform .5s cubic-bezier(.22,1,.36,1),
              box-shadow .5s cubic-bezier(.22,1,.36,1),
              border-color .4s ease;
  user-select: none;
}
.qg-trans-card::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 2px; z-index: 20;
  background: linear-gradient(90deg,
    transparent, rgba(212,84,122,.8), rgba(201,168,108,.7), rgba(155,126,200,.65), transparent);
  opacity: 0; transition: opacity .4s;
}
.qg-trans-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(212,84,122,.3);
  box-shadow: 0 28px 70px rgba(42,14,34,.15), 0 0 0 1px rgba(212,84,122,.15);
}
.qg-trans-card:hover::before { opacity: 1; }

/* ── KEY FIX: Both images fill identically ── */
.qg-trans-before,
.qg-trans-after {
  position: absolute;
  inset: 0;
  overflow: hidden;   /* ensures clip-path edge is clean */
}
.qg-trans-before img,
.qg-trans-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;   /* align faces at top */
  display: block;
  pointer-events: none;
  /* Subtle filter to soften before image slightly */
  transition: filter .3s ease;
}
/* Make "before" feel a touch cooler/duller so "after" pops */
.qg-trans-before img {
  filter: saturate(0.85) brightness(0.97);
}
.qg-trans-after img {
  filter: saturate(1.08) brightness(1.01);
}

/* Clip-path split — JS overrides these inline */
.qg-trans-before { z-index: 1; clip-path: inset(0 50% 0 0); }
.qg-trans-after  { z-index: 2; clip-path: inset(0 0 0 50%); }

/* CSS-only hover fallback (when JS is off) */
.qg-trans-card:hover .qg-trans-before { clip-path: inset(0 68% 0 0); transition: clip-path .65s cubic-bezier(.22,1,.36,1); }
.qg-trans-card:hover .qg-trans-after  { clip-path: inset(0 0 0 32%); transition: clip-path .65s cubic-bezier(.22,1,.36,1); }
.qg-trans-card:focus .qg-trans-before { clip-path: inset(0 68% 0 0); }
.qg-trans-card:focus .qg-trans-after  { clip-path: inset(0 0 0 32%); }

/* When JS drag is active, remove CSS hover transition to avoid fighting */
.qg-trans-card.is-dragging .qg-trans-before,
.qg-trans-card.is-dragging .qg-trans-after  { transition: none !important; }

/* Divider line */
.qg-trans-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0) 0%, rgba(255,255,255,.9) 15%,
    rgba(201,168,108,1) 50%, rgba(255,255,255,.9) 85%, rgba(255,255,255,0) 100%);
  z-index: 10;
  pointer-events: auto;   /* handle captures events */
  cursor: ew-resize;
  animation: qgTransGlow 4s ease-in-out infinite;
  /* JS sets left inline, so disable left transition here */
  transition: none;
}

/* Drop shadow behind divider line for crispness */
.qg-trans-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: 0 0 8px 2px rgba(0,0,0,0.18);
  pointer-events: none;
}

/* Drag handle */
.qg-trans-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #E07AA4, #C9A86C, #9B7EC8);
  box-shadow: 0 4px 20px rgba(42,14,34,.35), 0 0 0 3px rgba(255,255,255,.6);
  display: grid; place-items: center;
  color: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
  pointer-events: none;
}
.qg-trans-card.is-dragging .qg-trans-handle {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 6px 28px rgba(176,48,96,.5), 0 0 0 5px rgba(255,255,255,.7);
}

/* Labels */
.qg-trans-labels {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; z-index: 15; pointer-events: none;
}
.qg-trans-label {
  flex: 1; padding: .55rem 0;
  text-align: center;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.qg-trans-label--before {
  background: rgba(20,8,16,.55);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,.75);
  border-top: 1px solid rgba(255,255,255,.1);
}
.qg-trans-label--after {
  background: linear-gradient(135deg, rgba(176,48,96,.82), rgba(201,168,108,.65));
  backdrop-filter: blur(6px);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.15);
}

/* Service pill */
.qg-trans-service {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  padding: .32rem 1rem; border-radius: 9999px; z-index: 15;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(201,168,108,.3);
  backdrop-filter: blur(10px);
  font-size: .7rem; font-weight: 700; letter-spacing: .07em; color: #7A5030;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(42,14,34,.1);
  pointer-events: none;
}

.qg-trans-cta-row { text-align: center; position: relative; z-index: 2; }


/* ================================================================
   PLEDGE — WARM CREAM ROSE SECTION
   ================================================================ */
.qg-pledge {
  padding: clamp(4rem,7vw,6rem) clamp(1.5rem,5%,4rem);
  background: linear-gradient(160deg, #FFF5F0 0%, #FFF8F5 50%, #FFF5F0 100%);
  border-top: 1px solid rgba(201,168,108,.12);
  border-bottom: 1px solid rgba(201,168,108,.1);
  position: relative; overflow: hidden;
}
.qg-pledge::before {
  content: ""; position: absolute; top: -100px; left: 50%;
  transform: translateX(-50%); width: 800px; height: 450px;
  background: radial-gradient(ellipse, rgba(212,84,122,.07) 0%, transparent 65%);
  filter: blur(70px); pointer-events: none;
}
.qg-pledge::after {
  content: ""; position: absolute; bottom: -60px; right: -60px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,108,.08), transparent 70%);
  filter: blur(50px); pointer-events: none;
}

.qg-pledge-header { text-align: center; margin-bottom: 3rem; position: relative; z-index: 2; }
.qg-pledge-header h2 { font-size: clamp(2rem,4vw,3.2rem); }
.qg-pledge-header h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #C9A86C, #B8924A);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.qg-pledge-header p { font-size: 1rem; color: #9A6080; max-width: 540px; margin: 0 auto; line-height: 1.78; }

.qg-pledge-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.5rem; max-width: 1100px; margin: 0 auto; position: relative; z-index: 2;
}
@media (max-width: 1000px) { .qg-pledge-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px)  { .qg-pledge-grid { grid-template-columns: 1fr; max-width: 380px; } }

.qg-pledge-card {
  background: #fff;
  border: 1.5px solid rgba(212,84,122,.1);
  border-radius: 20px; padding: 1.8rem 1.5rem;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all .45s cubic-bezier(.22,1,.36,1);
  animation: qgCardIn .6s cubic-bezier(.22,1,.36,1) both;
}
.qg-pledge-card:nth-child(1) { animation-delay: .05s }
.qg-pledge-card:nth-child(2) { animation-delay: .12s }
.qg-pledge-card:nth-child(3) { animation-delay: .20s }
.qg-pledge-card:nth-child(4) { animation-delay: .28s }
.qg-pledge-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,
    transparent, rgba(212,84,122,.7), rgba(201,168,108,.65), transparent);
  opacity: 0; transition: opacity .4s;
}
.qg-pledge-card:hover {
  border-color: rgba(212,84,122,.22);
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}
.qg-pledge-card:hover::before { opacity: 1; }
.qg-pledge-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.qg-pledge-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: .95rem; font-weight: 700; color: #2A0E22; margin: 0 0 .5rem;
}
.qg-pledge-card p { font-size: .82rem; line-height: 1.7; color: #9A6080; margin: 0; }
.qg-pledge-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: .9rem; padding: .3rem .78rem; border-radius: 9999px;
  background: rgba(40,200,114,.08);
  border: 1px solid rgba(40,200,114,.25);
  font-size: .68rem; font-weight: 700; letter-spacing: .05em;
  color: #1A9050;
}


/* ================================================================
   ARTIST STRIP — PEARL WHITE + ROSE ACCENTS
   ================================================================ */
.qg-artist-strip {
  padding: clamp(3rem,5vw,4.5rem) clamp(1.5rem,5%,4rem);
  background: #FFFBFD;
  border-top: 1px solid rgba(212,84,122,.07);
  position: relative; overflow: hidden;
}
.qg-artist-strip::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    transparent 0%, rgba(212,84,122,.03) 50%, transparent 100%);
  pointer-events: none;
}
.qg-artist-strip::after {
  content: ""; position: absolute; top: -60px; right: -60px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(155,126,200,.08), transparent 70%);
  filter: blur(50px); pointer-events: none;
}

.qg-artist-strip-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; position: relative; z-index: 2;
}
@media (max-width: 768px) { .qg-artist-strip-inner { grid-template-columns: 1fr; gap: 2rem; } }

.qg-artist-copy h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 700; color: #2A0E22; margin: 0 0 1rem;
}
.qg-artist-copy h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #D4547A, #C9A86C);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.qg-artist-copy p { font-size: .96rem; line-height: 1.8; color: #9A6080; margin: 0 0 1.5rem; }
.qg-artist-creds { display: flex; flex-direction: column; gap: .7rem; }
.qg-artist-cred {
  display: flex; align-items: center; gap: .75rem;
  font-size: .88rem; color: #5A2E48;
}
.qg-artist-cred-icon { font-size: 1rem; }

.qg-artist-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.qg-artist-stat {
  background: #fff;
  border: 1.5px solid rgba(212,84,122,.1);
  border-radius: 18px; padding: 1.8rem 1.5rem; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all .45s cubic-bezier(.22,1,.36,1);
}
.qg-artist-stat::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,
    transparent, rgba(212,84,122,.7), rgba(201,168,108,.65), transparent);
  opacity: 0; transition: opacity .4s;
}
.qg-artist-stat:hover {
  border-color: rgba(212,84,122,.2);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.qg-artist-stat:hover::before { opacity: 1; }
.qg-artist-stat-num {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 700;
  background: linear-gradient(135deg, #D4547A, #C9A86C);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1.1; margin-bottom: .4rem;
}
.qg-artist-stat-label {
  display: block; font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #9A6080;
}


/* ================================================================
   FEATURE STRIP — WHY 10,000+ — LAVENDER BLUSH
   ================================================================ */
.qg-feature-strip {
  padding: clamp(4rem,7vw,6rem) clamp(1.5rem,5%,4rem);
  background: linear-gradient(160deg, #F5EFFF 0%, #FFF5FA 50%, #F5EFFF 100%);
  border-top: 1px solid rgba(155,126,200,.12);
  position: relative; overflow: hidden;
}
.qg-feature-strip::before {
  content: ""; position: absolute; bottom: -80px; left: 50%;
  transform: translateX(-50%); width: 900px; height: 350px;
  background: radial-gradient(ellipse, rgba(155,126,200,.08), transparent 65%);
  filter: blur(60px); pointer-events: none;
}

/* Inline h2 override for the feature strip (uses inline styles but ensure color) */
.qg-feature-strip h2 { color: #2A0E22 !important; }
.qg-feature-strip em {
  background: linear-gradient(135deg, #D4547A, #C9A86C) !important;
  -webkit-background-clip: text !important; background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.qg-feature-cards-row {
  display: flex; gap: 1.4rem;
  max-width: 1240px; margin: 0 auto 3rem;
  flex-wrap: wrap; justify-content: center;
}
.qg-feature-card {
  flex: 1; min-width: 200px; max-width: 240px;
  background: rgba(255,255,255,.85);
  border: 1.5px solid rgba(155,126,200,.14);
  border-radius: 22px; padding: 2rem 1.5rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0;
  box-shadow: var(--shadow-card);
  transition: all .45s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.qg-feature-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,
    transparent, rgba(212,84,122,.7), rgba(201,168,108,.65), rgba(155,126,200,.6), transparent);
  opacity: 0; transition: opacity .4s;
}
.qg-feature-card:hover {
  background: #fff;
  border-color: rgba(212,84,122,.22);
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.qg-feature-card:hover::before { opacity: 1; }
.qg-feature-icon {
  width: 52px; height: 52px; border-radius: 16px; margin-bottom: .8rem;
  background: linear-gradient(135deg, rgba(212,84,122,.1), rgba(155,126,200,.1));
  border: 1px solid rgba(212,84,122,.2);
  display: grid; place-items: center;
  transition: all .4s ease;
}
.qg-feature-card:hover .qg-feature-icon {
  background: linear-gradient(135deg, rgba(212,84,122,.18), rgba(155,126,200,.16));
  border-color: rgba(212,84,122,.38);
  box-shadow: 0 8px 24px rgba(212,84,122,.16);
}
.qg-feature-icon svg { width: 22px; height: 22px; fill: #D4547A; }
.qg-feature-divider {
  display: block; width: 30px; height: 1px; margin: .9rem auto;
  background: linear-gradient(90deg, transparent, rgba(212,84,122,.4), transparent);
}
.qg-feature-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: .98rem; font-weight: 700; color: #2A0E22; margin: 0 0 .45rem;
}
.qg-feature-card p { font-size: .82rem; line-height: 1.68; color: #9A6080; margin: 0; }

/* ── Trust counter panel ── */
.qg-feature-trust {
  max-width: 1100px; margin: 0 auto 3rem;
  display: flex; align-items: center; justify-content: center; gap: 2rem;
  flex-wrap: wrap;
  padding: 2.2rem 2.5rem;
  background: #fff;
  border: 1.5px solid rgba(212,84,122,.12);
  border-radius: 22px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-card);
}
.qg-feature-trust::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,
    transparent, rgba(212,84,122,.7), rgba(201,168,108,.65), rgba(155,126,200,.5), transparent);
}
.qg-trust-number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.8rem,5vw,4.2rem); font-weight: 700;
  background: linear-gradient(135deg, #D4547A, #C9A86C);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.qg-trust-meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.qg-trust-label { font-size: .88rem; font-weight: 600; color: #5A2E48; }
.qg-trust-separator { color: rgba(212,84,122,.3); }
.qg-trust-secondary { font-size: .88rem; color: #9A6080; }
.qg-trust-secondary strong { color: #5A2E48; }

/* ── Press logos ── */
.qg-featured-logos { text-align: center; position: relative; z-index: 2; }
.qg-featured-logos > span {
  display: block; font-size: .68rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(90,46,72,.45); margin-bottom: 1.4rem;
}
.qg-logo-row {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.qg-logo-text {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700; letter-spacing: .12em;
  color: rgba(90,46,72,.3);
  transition: color .3s ease;
}
.qg-logo-text:hover { color: rgba(212,84,122,.6); }
.qg-logo-vogue  { font-size: 1.2rem; }
.qg-logo-elle   { font-size: 1.1rem; }
.qg-logo-gq     { font-size: 1.3rem; }
.qg-logo-forbes { font-size: 1rem; }


/* ================================================================
   REELS EXPERIENCE — WARM PETAL SECTION
   Video cards remain dark for proper video display
   ================================================================ */
.qg-reels-experience {
  padding: clamp(4rem,7vw,6rem) 0;
  background: linear-gradient(180deg, #FFF8FA 0%, #FFF2F6 100%);
  border-top: 1px solid rgba(212,84,122,.08);
  overflow: hidden; position: relative;
}
.qg-reels-experience::before {
  content: ""; position: absolute; top: -60px; left: 50%;
  transform: translateX(-50%); width: 700px; height: 300px;
  background: radial-gradient(ellipse, rgba(212,84,122,.08), transparent 70%);
  filter: blur(50px); pointer-events: none;
}
.qg-reels-header {
  text-align: center; padding: 0 1.5rem; margin-bottom: 2.5rem; position: relative; z-index: 2;
}
.qg-reels-header h2 { font-size: clamp(1.9rem,3.5vw,2.8rem); }
.qg-reels-header p { font-size: .96rem; color: #9A6080; max-width: 480px; margin: 0 auto .8rem; }
.qg-reels-hint {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(212,84,122,.55);
}

.qg-reels-grid {
  display: flex; gap: 1.4rem;
  padding: .5rem 1.5rem 2.5rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  max-width: 100%;
}
.qg-reels-grid::-webkit-scrollbar { display: none; }

/* Video cards: dark for proper video contrast */
.qg-reel-card {
  flex-shrink: 0; scroll-snap-align: start;
  min-width: 240px; max-width: 240px; height: 428px;
  border-radius: 22px; overflow: hidden; position: relative;
  background: #1A0828;
  border: 1px solid rgba(212,84,122,.18);
  box-shadow: 0 16px 50px rgba(42,14,34,.2);
  cursor: pointer;
  transition: all .45s cubic-bezier(.22,1,.36,1);
}
.qg-reel-card:hover {
  transform: scale(1.03) translateY(-6px);
  border-color: rgba(212,84,122,.38);
  box-shadow: 0 28px 65px rgba(42,14,34,.25);
}
.qg-reel-card video { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.qg-reel-play {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(0deg, rgba(42,14,34,.55) 0%, transparent 40%);
  display: flex; align-items: center; justify-content: center;
  transition: background .35s;
}
.qg-reel-card:hover .qg-reel-play { background: linear-gradient(0deg, rgba(42,14,34,.7) 0%, transparent 40%); }
.qg-reel-play::before {
  content: "▶"; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.18); backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,.3);
  display: grid; place-items: center;
  font-size: .9rem; color: #fff;
  transition: all .35s; opacity: 0;
}
.qg-reel-card:hover .qg-reel-play::before,
.qg-reel-card.is-playing .qg-reel-play::before { opacity: 1; }
.qg-reel-progress {
  position: absolute; bottom: 0; left: 0; height: 3px; z-index: 6;
  background: linear-gradient(90deg, #E07AA4, #C9A86C);
  width: 0; transition: width .1s linear; border-radius: 3px;
}
.qg-reel-tag {
  position: absolute; bottom: 14px; left: 14px; z-index: 5;
  padding: .3rem .78rem; border-radius: 9999px; font-size: .72rem;
  font-weight: 700; letter-spacing: .07em;
  background: rgba(255,255,255,.18); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25); color: #fff;
}
.qg-reel-close {
  position: absolute; top: .8rem; right: .8rem; width: 34px; height: 34px;
  border-radius: 50%; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: .85rem; display: grid; place-items: center;
  cursor: pointer; z-index: 10; backdrop-filter: blur(6px); transition: all .3s;
}
.qg-reel-close:hover { background: rgba(196,80,128,.55); }

/* Always show play icon on reel cards */
.qg-reel-play::before { opacity: 0.6; }
.qg-reel-card:hover .qg-reel-play::before,
.qg-reel-card.is-playing .qg-reel-play::before { opacity: 1; transform: scale(1.12); }

/* ── Reel Fullscreen Modal ── */
#qgReelModal {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,0,18,.9); backdrop-filter: blur(18px);
  align-items: center; justify-content: center;
}
#qgReelModal .qg-reel-modal-inner {
  position: relative; width: min(92vw, 390px); max-height: 92vh;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,.65), 0 0 0 1.5px rgba(212,84,122,.35);
  background: #0A0012;
}
#qgReelModal video, #qgReelPlayer {
  width: 100%; max-height: 88vh;
  object-fit: contain; display: block;
  border-radius: 24px;
}
#qgReelModal [data-close-reel] {
  position: absolute; top: 12px; right: 12px; z-index: 999;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.18); border: 1.5px solid rgba(255,255,255,.35);
  color: #fff; font-size: 1.1rem; display: grid; place-items: center;
  cursor: pointer; backdrop-filter: blur(10px); transition: background .3s;
}
#qgReelModal [data-close-reel]:hover { background: rgba(212,84,122,.65); }



/* ================================================================
   TESTIMONIALS — CHAMPAGNE CREAM SECTION
   ================================================================ */
.qg-testimonials {
  padding: clamp(4rem,7vw,6rem) clamp(1rem,5%,4rem);
  background: linear-gradient(160deg, #FFFAF2 0%, #FFF8F5 100%);
  border-top: 1px solid rgba(201,168,108,.1);
  position: relative; overflow: hidden;
}
.qg-testimonials::before {
  content: ""; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(201,168,108,.08), transparent 70%);
  filter: blur(60px); pointer-events: none;
}

.qg-testimonials-header { text-align: center; margin-bottom: 3rem; position: relative; z-index: 2; }
.qg-testimonials-header h2 { font-size: clamp(1.9rem,3.5vw,2.8rem); }
.qg-google-rating {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(201,168,108,.28);
  border-radius: 9999px; padding: .5rem 1.2rem; margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(42,14,34,.06);
}
.qg-google-stars { color: #C9A86C; font-size: 1rem; letter-spacing: .05em; }
.qg-google-score { font-family: "Playfair Display", Georgia, serif; font-size: 1.1rem; font-weight: 700; color: #2A0E22; }
.qg-google-count { font-size: .82rem; color: #9A6080; }
.qg-reviews-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #C9A86C; text-decoration: none;
  border-bottom: 1px solid rgba(201,168,108,.4); padding-bottom: .15rem; transition: all .3s;
}
.qg-reviews-cta:hover { color: #B8924A; border-color: rgba(201,168,108,.8); }

.qg-t-list {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(min(280px,100%),1fr));
  gap: 1.8rem; max-width: 1100px; margin: 0 auto; position: relative; z-index: 2;
}
.qg-t-card {
  background: #fff;
  border: 1.5px solid rgba(201,168,108,.14);
  border-radius: 22px; padding: 2rem 1.8rem; position: relative;
  box-shadow: var(--shadow-card);
  animation: qgCardIn .7s cubic-bezier(.22,1,.36,1) both;
  transition: all .5s cubic-bezier(.22,1,.36,1);
}
.qg-t-card:nth-child(1) { animation-delay:.08s }
.qg-t-card:nth-child(2) { animation-delay:.20s }
.qg-t-card:nth-child(3) { animation-delay:.32s }
.qg-t-card:hover {
  border-color: rgba(201,168,108,.32);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.qg-t-card::before {
  content: "\201C"; position: absolute; top: 1rem; right: 1.4rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.5rem; line-height: 1; color: rgba(212,84,122,.07); pointer-events: none;
}
.qg-stars { color: #C9A86C; font-size: .95rem; letter-spacing: .06em; margin-bottom: .9rem; }
.qg-t-card p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic; font-size: 1.06rem; line-height: 1.75;
  color: #5A2E48; margin: 0 0 1.2rem;
}
.qg-author { font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #9A6080; }


/* ================================================================
   SERVICE BOOKING MODAL — ELEGANT WHITE
   ================================================================ */
.qg2-modal[aria-hidden="true"] { display: none !important; visibility: visible !important; }
#qg2Modal { visibility: visible; opacity: 1; }
.qg2-modal { position: fixed; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 99000; padding: 1rem; }
.qg2-backdrop {
  position: absolute; inset: 0;
  background: rgba(42,14,34,.55);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.qg2-window {
  position: relative; z-index: 2;
  background: #fff;
  border: 1.5px solid rgba(212,84,122,.15);
  border-radius: 26px;
  width: min(540px,94vw); max-height: 90dvh; overflow-y: auto; overflow-x: hidden;
  scrollbar-width: none;
  box-shadow: 0 30px 80px rgba(42,14,34,.2), 0 0 0 1px rgba(212,84,122,.06) inset;
  animation: qgModalIn .4s cubic-bezier(.22,1,.36,1);
}
.qg2-window::-webkit-scrollbar { display: none; }
.qg2-window::before {
  content: ""; position: sticky; top: 0; display: block; width: 100%; height: 2px;
  background: linear-gradient(90deg,
    transparent, rgba(212,84,122,.7), rgba(201,168,108,.65), rgba(155,126,200,.5), transparent);
}
.qg2-service-img { width: 100%; height: 260px; object-fit: cover; display: block; }
.qg2-service-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem; font-weight: 700; color: #2A0E22;
  padding: 1.4rem 1.6rem .3rem; margin: 0; display: block;
}
.qg2-service-desc { font-size: .9rem; line-height: 1.7; color: #7A5868; padding: 0 1.6rem; margin: 0 0 .6rem; display: block; }
.qg2-service-price { display: block; font-family: "Playfair Display", Georgia, serif; font-size: 1.05rem; font-weight: 700; color: #B8924A; padding: 0 1.6rem .5rem; margin: 0; }
.qg2-addons {
  margin: .5rem 1.6rem 1rem;
  background: #FDF6F8;
  border: 1.5px solid rgba(212,84,122,.1);
  border-radius: 16px; padding: 1.1rem;
}
.qg2-addon {
  display: flex; align-items: center; gap: .7rem;
  font-size: .88rem; color: #5A2E48;
  padding: .5rem 0; cursor: pointer;
  border-bottom: 1px solid rgba(212,84,122,.07);
  transition: color .3s;
}
.qg2-addon:last-child { border-bottom: none; }
.qg2-addon:hover { color: #D4547A; }
.qg2-addon input[type="checkbox"] { accent-color: #D4547A; width: 16px; height: 16px; cursor: pointer; flex-shrink: 0; }
.qg2-addon-price { margin-left: auto; font-size: .82rem; color: #B8924A; font-weight: 600; }

/* ── Total price row ── */
.qg2-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.6rem;
  margin: 0 -1.6rem;
  background: linear-gradient(135deg, rgba(201,168,108,.08), rgba(212,84,122,.06));
  border-top: 1px solid rgba(201,168,108,.2);
  border-bottom: 1px solid rgba(201,168,108,.1);
  animation: qgFadeIn .25s ease;
}
.qg2-total-label {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(58,28,48,.55);
  font-weight: 600;
}
.qg2-total-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: #C9A86C;
  letter-spacing: .02em;
}
@keyframes qgFadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

.qg2-actions {
  position: sticky; bottom: 0; display: flex; gap: .9rem; justify-content: center; align-items: center;
  padding: 1.1rem 1.6rem 1.4rem;
  background: linear-gradient(0deg, rgba(255,255,255,1) 60%, rgba(255,255,255,0));
  border-top: 1px solid rgba(212,84,122,.08);
  backdrop-filter: blur(8px); z-index: 5;
}


/* ================================================================
   APP DOWNLOAD CTA — SIGNATURE ROSE GRADIENT
   ================================================================ */
.qg-app-cta {
  padding: clamp(5rem,9vw,8rem) clamp(1.5rem,5%,4rem);
  background: linear-gradient(145deg,
    #1A0828 0%, #2E0A40 25%, #3A1030 55%, #1C0620 80%, #0E0018 100%);
  border-top: 1px solid rgba(212,84,122,.15);
  position: relative; overflow: hidden;
}
/* Ethereal floating orbs */
.qg-app-cta::before {
  content: ""; position: absolute; top: -120px; left: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,84,122,.22) 0%, rgba(176,48,96,.08) 45%, transparent 70%);
  filter: blur(70px); pointer-events: none;
  animation: qgGlow 8s ease-in-out infinite;
}
.qg-app-cta::after {
  content: ""; position: absolute; bottom: -100px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(155,126,200,.2) 0%, rgba(100,80,180,.06) 50%, transparent 70%);
  filter: blur(60px); pointer-events: none;
  animation: qgGlow 10s ease-in-out 2s infinite;
}
.qg-app-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; position: relative; z-index: 2;
}
@media (max-width: 860px) { .qg-app-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; } }

/* Eyebrow label */
.qg-app-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .38rem 1rem; border-radius: 9999px;
  background: rgba(212,84,122,.15); border: 1px solid rgba(212,84,122,.3);
  font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(250,200,216,.85); margin-bottom: .8rem;
}

.qg-app-copy h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem,4.5vw,3.4rem); font-weight: 700;
  color: #fff; margin: 0 0 1rem; line-height: 1.1;
  text-shadow: 0 2px 30px rgba(212,84,122,.2);
}
.qg-app-copy h2 em {
  font-style: italic; display: block;
  background: linear-gradient(135deg, #FAC8D8 10%, #F0DEB8 55%, #D4C0F0 90%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  background-size: 200%; animation: qgShimmer 5s ease-in-out infinite;
}
.qg-app-copy p { font-size: .98rem; line-height: 1.85; color: rgba(200,160,180,.75); margin: 0 0 1.8rem; }

/* Feature pills — now glowing on dark bg */
.qg-app-features { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
@media (max-width: 860px) { .qg-app-features { justify-content: center; } }
.qg-app-feature {
  padding: .38rem 1rem; border-radius: 9999px; font-size: .77rem; font-weight: 600;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(212,84,122,.25);
  color: rgba(250,200,216,.85);
  box-shadow: 0 2px 12px rgba(212,84,122,.08);
  transition: all .35s;
}
.qg-app-feature:hover {
  background: rgba(212,84,122,.15); border-color: rgba(212,84,122,.5);
  color: #FAC8D8;
}

/* Stats row */
.qg-app-stats {
  display: flex; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap;
}
@media (max-width: 860px) { .qg-app-stats { justify-content: center; } }
.qg-app-stat-item { display: flex; flex-direction: column; gap: .2rem; }
.qg-app-stat-num {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem; font-weight: 700;
  background: linear-gradient(135deg, #FAC8D8, #C9A86C);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.qg-app-stat-label { font-size: .7rem; color: rgba(200,160,180,.6); letter-spacing: .08em; }

.qg-app-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 860px) { .qg-app-buttons { justify-content: center; } }
.qg-app-btn {
  display: inline-flex; align-items: center; gap: .8rem;
  padding: 1rem 1.8rem; border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.18);
  color: #fff; text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.1);
  transition: all .4s cubic-bezier(.22,1,.36,1);
  backdrop-filter: blur(10px);
}
.qg-app-btn:hover {
  background: rgba(212,84,122,.2);
  border-color: rgba(212,84,122,.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(212,84,122,.25), inset 0 1px 0 rgba(255,255,255,.15);
}
.qg-app-btn-icon { font-size: 1.6rem; line-height: 1; }
.qg-app-btn-text { display: flex; flex-direction: column; }
.qg-app-btn-text small { font-size: .66rem; color: rgba(200,160,180,.6); font-weight: 500; }
.qg-app-btn-text strong { font-size: .95rem; font-weight: 700; color: #fff; }

/* ================================================================
   APP VISUAL — Premium Dark CSS Phone Mockup
   ================================================================ */
.qg-app-visual {
  text-align: center; position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 520px;
}

/* Multi-layer ambient glow behind phone */
.qg-app-visual::before {
  content: "";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 480px;
  background:
    radial-gradient(ellipse, rgba(212,84,122,.3) 0%, rgba(155,126,200,.15) 40%, transparent 70%);
  filter: blur(50px); z-index: 0;
  animation: qgPhoneFloat 7s ease-in-out infinite;
}

/* Floating ring decorations */
.qg-app-visual::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 380px; height: 540px; border-radius: 50%;
  border: 1px solid rgba(212,84,122,.12);
  z-index: 0; animation: qgPhoneFloat 9s ease-in-out 1s infinite reverse;
}

.qg-app-phone {
  position: relative; z-index: 2;
  width: 250px; height: 510px;
  border-radius: 48px; margin: 0 auto;
  background: linear-gradient(165deg, #1A0828 0%, #0E0018 100%);
  border: 7px solid rgba(255,255,255,.08);
  box-shadow:
    0 0 0 1px rgba(201,168,108,.4),
    0 0 0 3px rgba(201,168,108,.12),
    0 50px 120px rgba(0,0,0,.6),
    0 10px 30px rgba(212,84,122,.15),
    inset 0 2px 6px rgba(255,255,255,.06);
  animation: qgPhoneFloat 6s ease-in-out infinite;
  overflow: hidden;
}

/* Screen gradient */
.qg-app-phone::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    #FDF6F8 0%,
    #FFF2F8 40%,
    #FFF8F2 75%,
    #FDF6F8 100%);
  border-radius: 42px;
  z-index: 0;
}

/* Notch */
.qg-app-phone::after {
  content: "";
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 72px; height: 20px; border-radius: 10px;
  background: #0E0018; z-index: 10;
  box-shadow: 0 0 0 1px rgba(201,168,108,.2);
}

/* ── Inner phone screen content ── */
.qg-phone-screen {
  position: absolute; inset: 0; border-radius: 42px;
  overflow: hidden; z-index: 1;
  display: flex; flex-direction: column; padding: 48px 10px 14px;
  gap: 7px;
}

/* App header bar */
.qg-phone-topbar {
  background: linear-gradient(135deg, #B03060 0%, #D4547A 60%, #C9A86C 100%);
  border-radius: 14px; padding: 10px 14px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 6px 20px rgba(176,48,96,.4);
}
.qg-phone-topbar-brand {
  font-family: "Playfair Display", serif; font-size: .73rem;
  font-weight: 700; color: #fff; letter-spacing: .06em;
}
.qg-phone-topbar-badge {
  background: rgba(255,255,255,.28); border-radius: 9999px;
  padding: 2px 8px; font-size: .56rem; font-weight: 700;
  color: #fff; letter-spacing: .07em;
}

/* Artist card on screen */
.qg-phone-card {
  background: #fff; border-radius: 14px; padding: 10px 12px;
  box-shadow: 0 6px 20px rgba(42,14,34,.12);
  border: 1px solid rgba(212,84,122,.14);
}
.qg-phone-card-header {
  display: flex; align-items: center; gap: 8px; margin-bottom: 7px;
}
.qg-phone-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, #FAC8D8, #D4C0F0);
  border: 2px solid rgba(201,168,108,.4); flex-shrink: 0;
}
.qg-phone-name { font-size: .66rem; font-weight: 700; color: #2A0E22; }
.qg-phone-sub  { font-size: .57rem; color: #9A6080; margin-top: 1px; }
.qg-phone-rating {
  margin-left: auto; font-size: .61rem; font-weight: 700;
  color: #C9A86C; background: rgba(201,168,108,.12);
  padding: 3px 7px; border-radius: 7px;
}
.qg-phone-bar {
  height: 4px; border-radius: 2px;
  background: rgba(42,14,34,.08); overflow: hidden;
}
.qg-phone-bar-fill {
  height: 100%; width: 78%; border-radius: 2px;
  background: linear-gradient(90deg, #D4547A, #C9A86C);
  animation: qgProgressBar 2.5s ease infinite alternate;
}

/* ETA chip */
.qg-phone-eta {
  background: linear-gradient(135deg, rgba(40,200,114,.1), rgba(40,200,114,.05));
  border: 1px solid rgba(40,200,114,.2);
  border-radius: 10px; padding: 6px 10px;
  display: flex; align-items: center; justify-content: space-between;
}
.qg-phone-eta-label { font-size: .58rem; color: #2A6040; font-weight: 600; }
.qg-phone-eta-time  { font-size: .7rem; color: #1A4030; font-weight: 800; }
.qg-phone-eta-dot   {
  width: 6px; height: 6px; border-radius: 50%;
  background: #28C872; animation: qgPulse 1.8s ease-in-out infinite;
}

/* CTA on screen */
.qg-phone-cta-row {
  margin-top: 2px; padding: 8px 12px; border-radius: 12px;
  background: linear-gradient(135deg, #B03060, #D4547A);
  text-align: center;
  font-size: .65rem; font-weight: 700; color: #fff;
  letter-spacing: .08em; cursor: pointer;
  box-shadow: 0 4px 14px rgba(176,48,96,.35);
}

/* Floating notification badges (positioned outside phone) */
.qg-app-notif {
  position: absolute; z-index: 10;
  background: #fff; border-radius: 14px; padding: 6px 12px 6px 8px;
  box-shadow: 0 8px 28px rgba(42,14,34,.15);
  border: 1px solid rgba(201,168,108,.2);
  display: flex; align-items: center; gap: 7px;
  white-space: nowrap;
  animation: qgPhoneFloat 5s ease-in-out infinite;
}
.qg-app-notif-icon { font-size: .9rem; }
.qg-app-notif-text { font-size: .62rem; font-weight: 700; color: #2A0E22; }
.qg-app-notif-sub  { font-size: .56rem; color: #9A6080; margin-top: 1px; }
.qg-app-notif--1 { top: 8%; left: -30%; animation-delay: 0s; }
.qg-app-notif--2 { bottom: 22%; right: -25%; animation-delay: -2.5s; }
.qg-app-notif--3 { top: 48%; left: -28%; animation-delay: -1.2s; }
@media (max-width: 860px) {
  .qg-app-notif { display: none; }
  .qg-app-visual { min-height: 340px; }
  .qg-app-phone  { width: 200px; height: 410px; }
}


/* ================================================================
   CONCIERGE BUTTON — ROSE GOLD FAB
   ================================================================ */
.qg-concierge {
  position: fixed; right: 22px; bottom: 90px;
  width: 56px; height: 56px; border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #B03060, #E07AA4, #C9A86C);
  color: #fff; font-size: 1.2rem;
  display: grid; place-items: center; cursor: pointer; z-index: 8500;
  box-shadow: 0 8px 28px rgba(176,48,96,.38);
  transition: all .4s cubic-bezier(.22,1,.36,1);
  animation: qgFloat 4s ease-in-out infinite;
}
.qg-concierge:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 14px 40px rgba(176,48,96,.52);
}

/* ================================================================
   TOAST — ROSE PEARL
   ================================================================ */
.qg-toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: #fff;
  border: 1.5px solid rgba(212,84,122,.28);
  color: #2A0E22;
  padding: .9rem 1.4rem; border-radius: 14px;
  font-size: .88rem; font-weight: 600;
  box-shadow: 0 10px 36px rgba(42,14,34,.14);
  opacity: 0; pointer-events: none; z-index: 99999; transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
}
.qg-toast.show { opacity: 1; transform: translateY(0); }


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
  .qg-hero { min-height: 74vh; }
  .qg-services-wrapper { padding: 2rem 1rem; }
  .qg-ultra-media { height: 200px; }
  .qg-feature-trust { padding: 1.8rem 1rem; }
  .qg-t-list { gap: 1rem; }
  .qg2-window { border-radius: 20px; }
  .qg-reel-card { min-width: 215px; max-width: 215px; height: 385px; }
  .qg-concierge { right: 14px; bottom: 80px; }
  .qg-toast { right: 1rem; bottom: 70px; left: 1rem; max-width: none; }
  .qg2-actions { flex-direction: column; gap: .7rem; }
  .qg2-actions .qg-btn { width: 100%; }
  .qg-controls { gap: .7rem; flex-direction: column; align-items: stretch; }
  .qg-controls input, .qg-controls select { min-width: unset; width: 100%; }
  .qg-badge { align-self: center; }
  .qg-urgency-divider { display: none; }
  .qg-hiw-steps { max-width: 400px; margin: 0 auto; }
  .qg-trans-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto 2rem; }
  .qg-pledge-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .qg-feature-cards-row { flex-direction: column; align-items: center; }
  .qg-feature-card { min-width: 100%; max-width: 100%; }
}

@media (max-width: 480px) {
  .qg-artist-stats { grid-template-columns: 1fr; }
  .qg-hiw-steps { grid-template-columns: 1fr; }
  .qg-pledge-grid { grid-template-columns: 1fr; }
}