/* =======================================================
   LifeQuest — Standalone Site Stylesheet
   A product of Amara.ai Ltd. (AmaraWealth.ai)
   Theme: Fire Orange · Quest Pink · Magic Purple
   Font: Nunito — rounded, friendly, legible for kids + adults
   ======================================================= */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Design Tokens ── */
:root {
  /* Brand palette */
  --lq-orange:  #FF6B35;
  --lq-pink:    #E91E8C;
  --lq-purple:  #6C27D3;
  --lq-violet:  #8B5CF6;
  --lq-gold:    #FFD700;
  --lq-cyan:    #22D3EE;

  /* Gradients */
  --lq-grad:      linear-gradient(135deg, #FF6B35 0%, #E91E8C 50%, #6C27D3 100%);
  --lq-grad-h:    linear-gradient(90deg, #FF6B35 0%, #E91E8C 50%, #6C27D3 100%);
  --lq-grad-rev:  linear-gradient(135deg, #6C27D3 0%, #E91E8C 50%, #FF6B35 100%);
  --lq-grad-soft: linear-gradient(135deg, rgba(255,107,53,.12) 0%, rgba(233,30,140,.10) 50%, rgba(108,39,211,.12) 100%);

  /* Backgrounds */
  --bg-deep:  #07050F;
  --bg-dark:  #0E0B1D;
  --bg-mid:   #151228;
  --bg-card:  #1C1834;
  --bg-card2: #231E3C;
  --bg-light: #F5F2FF;
  --bg-light2:#FAFAFE;
  --nav-bg:   rgba(7,5,15,0.96);

  /* Text */
  --text-white:    #FFFFFF;
  --text-body:     #C4BADD;
  --text-muted:    #7A6E9A;
  --text-dark:     #1A0F3C;
  --text-dark-sec: #3D3070;
  --text-dark-mut: #7A6EA0;

  /* Borders */
  --border-dark:   rgba(255,255,255,0.07);
  --border-purple: rgba(108,39,211,0.22);
  --border-orange: rgba(255,107,53,0.22);
  --border-pink:   rgba(233,30,140,0.22);
  --border-light:  rgba(0,0,0,0.08);

  /* Shadows */
  --shadow-card:  0 4px 20px rgba(0,0,0,0.45);
  --shadow-glow:  0 0 48px rgba(233,30,140,0.14);
  --shadow-hover: 0 8px 36px rgba(0,0,0,0.22);
  --shadow-light: 0 2px 12px rgba(0,0,0,0.06);

  /* Typography */
  --font: 'Nunito', 'Varela Round', 'Arial Rounded MT Bold', system-ui, sans-serif;

  /* Radius */
  --r-xs: 0.5rem;
  --r-sm: 1rem;
  --r-md: 1.25rem;
  --r-lg: 2rem;
  --r-xl: 3rem;

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 280ms ease;
}

/* ── Base ── */
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-dark);
}
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.25rem, 2.25rem + 2.5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 1.75rem + 1.25vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 1.1rem + 0.4vw, 1.4rem); }
h4 { font-size: 1rem; font-weight: 700; line-height: 1.35; }
p  { line-height: 1.75; }
main { padding-top: 68px; }

/* ── Layout ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 2.5rem); }
.lq-section { padding: clamp(4rem, 8vw, 7rem) 0; }
.lq-section-dark  { background: var(--bg-dark); }
.lq-section-deep  { background: var(--bg-deep); }
.lq-section-mid   { background: var(--bg-mid); }
.lq-section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}
.lq-section-light h2,
.lq-section-light h3,
.lq-section-light h4 { color: var(--text-dark); }
.lq-section-light p  { color: var(--text-dark-sec); }

/* ── Utility ── */
.lq-grad-text {
  background: var(--lq-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Badge ── */
.lq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.35rem 1rem;
  border-radius: 100vw;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: var(--lq-grad);
  color: #fff;
  margin-bottom: 1.25rem;
}
.lq-badge-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.35rem 1rem;
  border-radius: 100vw;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: transparent;
  border: 1.5px solid var(--lq-pink);
  color: var(--lq-pink);
  margin-bottom: 1.25rem;
}

/* ── Section header ── */
.lq-section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.lq-section-header h2 { color: var(--text-white); margin-bottom: 1rem; }
.lq-section-header p  { color: var(--text-body); font-size: 1.0625rem; }
.lq-section-light .lq-section-header h2 { color: var(--text-dark); }
.lq-section-light .lq-section-header p  { color: var(--text-dark-sec); }

/* Divider */
.lq-divider { width: 48px; height: 4px; border-radius: 2px; background: var(--lq-grad-h); margin: 1rem 0 1.5rem; }
.lq-section-header .lq-divider { margin: 0.875rem auto 1.25rem; }

/* ── Breadcrumb ── */
.lq-breadcrumb { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.lq-breadcrumb a { color: var(--text-muted); transition: color var(--t-fast); }
.lq-breadcrumb a:hover { color: var(--lq-pink); }
.lq-breadcrumb span { color: var(--text-body); }

/* ════════════════════════════════════
   NAVIGATION
════════════════════════════════════ */
#lq-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-dark);
  transition: box-shadow var(--t-base);
}
#lq-header.scrolled { box-shadow: 0 2px 28px rgba(0,0,0,0.55); }

.lq-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}
.lq-logo img { height: 67px; width: auto; display: block; }

.lq-main-nav { display: flex; align-items: center; gap: 0.125rem; }
.lq-main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--r-xs);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-body);
  transition: color var(--t-fast), background var(--t-fast);
}
.lq-main-nav a:hover,
.lq-main-nav a.active { color: var(--text-white); background: rgba(255,255,255,0.06); }
.lq-main-nav a.active { color: var(--lq-pink); }

.lq-nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.lq-mobile-toggle {
  display: none;
  padding: 0.375rem;
  color: var(--text-white);
  border-radius: var(--r-xs);
  align-items: center;
}

#lq-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg-deep);
  padding: 1.5rem clamp(1.25rem, 5vw, 2rem) 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--t-base);
}
#lq-mobile-menu.open { transform: translateX(0); }

.lq-mobile-close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  padding: 0.375rem;
}
.lq-m-nav-link {
  display: block;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border-dark);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-white);
}
.lq-m-cta { margin-top: 1.75rem; }

@media (max-width: 900px) {
  .lq-main-nav { display: none; }
  .lq-mobile-toggle { display: flex; }
  .lq-nav-actions .lq-btn-primary { display: none; }
}

/* ════════════════════════════════════
   BUTTONS
════════════════════════════════════ */
.lq-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  background: var(--lq-grad);
  white-space: nowrap;
  transition: opacity var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.lq-btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233,30,140,0.32);
}
.lq-btn-primary.lq-btn-sm  { padding: 0.5rem 1.125rem; font-size: 0.82rem; border-radius: var(--r-xs); }
.lq-btn-primary.lq-btn-lg  { padding: 1rem 2.25rem; font-size: 1rem; border-radius: var(--r-lg); }

.lq-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-white);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  white-space: nowrap;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.lq-btn-outline:hover {
  border-color: var(--lq-pink);
  background: rgba(233,30,140,0.08);
  transform: translateY(-2px);
}
.lq-btn-outline.lq-btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* ════════════════════════════════════
   HERO — LANDING PAGE
════════════════════════════════════ */
.lq-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(7rem, 14vw, 11rem) 0 clamp(5rem, 10vw, 8rem);
  background: var(--bg-deep);
}
.lq-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 15% 25%, rgba(255,107,53,0.20) 0%, transparent 65%),
    radial-gradient(ellipse 50% 65% at 85% 65%, rgba(108,39,211,0.24) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 55% 100%, rgba(233,30,140,0.14) 0%, transparent 70%);
  pointer-events: none;
}
/* dot grid overlay */
.lq-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.lq-hero-inner {
  position: relative; z-index: 1;
  max-width: 800px;
}
.lq-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.lq-hero-logo-by {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  border-left: 1px solid var(--border-dark);
  padding-left: 1rem;
}
.lq-hero-logo-by strong { color: var(--text-body); display: block; font-weight: 700; }
.lq-hero h1 {
  font-size: clamp(2.75rem, 2.75rem + 3vw, 4.5rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.03;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}
.lq-hero-sub {
  font-size: clamp(1rem, 1rem + 0.35vw, 1.125rem);
  color: var(--text-body);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 2.5rem;
}
.lq-hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-bottom: 3rem; }
.lq-hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.lq-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
}
.lq-hero-trust-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lq-grad);
  background: var(--lq-pink);
  flex-shrink: 0;
}

/* ════════════════════════════════════
   PAGE HERO — inner pages
════════════════════════════════════ */
.lq-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 9rem) 0 clamp(4rem, 7vw, 6rem);
  background: var(--bg-deep);
}
.lq-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 0% 50%, rgba(255,107,53,0.16) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 100% 40%, rgba(108,39,211,0.20) 0%, transparent 65%);
  pointer-events: none;
}
.lq-page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.lq-page-hero-content { position: relative; z-index: 1; max-width: 760px; }
.lq-page-hero h1 {
  font-size: clamp(2rem, 2rem + 2.5vw, 3.25rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.lq-lead {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 2rem;
}
.lq-page-hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ════════════════════════════════════
   POWERED BY BAR
════════════════════════════════════ */
.lq-powered-bar {
  background: var(--bg-mid);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 1.125rem 0;
}
.lq-powered-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.lq-powered-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.lq-powered-logo { display: flex; align-items: center; gap: 0.75rem; }
.lq-powered-logo img { height: 30px; width: auto; opacity: 0.75; filter: brightness(1.1); }
.lq-powered-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.15); }

/* ════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════ */
.lq-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.lq-about-text h2 { color: var(--text-white); margin-bottom: 1.25rem; }
.lq-about-text p  { color: var(--text-body); margin-bottom: 1rem; }
.lq-about-text p:last-of-type { margin-bottom: 1.75rem; }
.lq-about-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-purple);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-glow);
}
.lq-about-stat-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.875rem; }
.lq-about-stat {
  background: var(--bg-card2);
  border-radius: var(--r-md);
  padding: 1.25rem;
  text-align: center;
}
.lq-about-stat-num {
  font-size: 1.75rem;
  font-weight: 900;
  background: var(--lq-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.lq-about-stat-label { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }
@media (max-width: 768px) { .lq-about-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════
   PRODUCT CARDS (landing)
════════════════════════════════════ */
.lq-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.lq-product-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border-dark);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.lq-product-card:hover { transform: translateY(-5px); }
.lq-product-card.lq-card-kids  { border-color: var(--border-orange); }
.lq-product-card.lq-card-kids:hover  { box-shadow: 0 14px 44px rgba(255,107,53,0.15); }
.lq-product-card.lq-card-plus  { border-color: var(--border-purple); }
.lq-product-card.lq-card-plus:hover  { box-shadow: 0 14px 44px rgba(108,39,211,0.18); }
.lq-product-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--lq-grad);
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.lq-product-card h3 { color: var(--text-white); }
.lq-product-card p  { color: var(--text-body); font-size: 0.915rem; }
.lq-product-feats   { display: flex; flex-direction: column; gap: 0.5rem; }
.lq-product-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.85rem;
  color: var(--text-body);
}
.lq-product-feat::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--lq-grad);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  background-color: var(--lq-pink);
  margin-top: 0.15rem;
}
.lq-product-card-footer { margin-top: auto; }
@media (max-width: 680px) { .lq-product-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════
   STATS BAND
════════════════════════════════════ */
.lq-stats-band {
  background: var(--bg-mid);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 3rem 0;
}
.lq-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.lq-stat-item  { text-align: center; }
.lq-stat-num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  background: var(--lq-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.05;
  margin-bottom: 0.375rem;
  letter-spacing: -0.04em;
}
.lq-stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 700; }
@media (max-width: 680px) { .lq-stats-grid { grid-template-columns: repeat(2,1fr); } }

/* ════════════════════════════════════
   TIER CARDS
════════════════════════════════════ */
.lq-tier-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.lq-tier-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border-dark);
  padding: 1.75rem;
  transition: border-color var(--t-base), transform var(--t-base);
}
.lq-tier-card:hover { transform: translateY(-4px); border-color: var(--border-pink); }
.lq-tier-badge {
  display: inline-block;
  padding: 0.3rem 0.875rem;
  border-radius: 100vw;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  background: var(--lq-grad);
  color: #fff;
}
.lq-tier-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: rgba(233,30,140,0.1);
  border: 1px solid rgba(233,30,140,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--lq-pink);
  margin-bottom: 1.25rem;
}
.lq-tier-card h3    { color: var(--text-white); margin-bottom: 0.625rem; font-size: 1.1rem; }
.lq-tier-desc       { color: var(--text-body); font-size: 0.875rem; margin-bottom: 1.25rem; }
.lq-tier-feats      { display: flex; flex-direction: column; gap: 0.5rem; }
.lq-tier-feats li   { font-size: 0.82rem; color: var(--text-body); padding-left: 1.125rem; position: relative; }
.lq-tier-feats li::before {
  content: '◆';
  position: absolute; left: 0;
  font-size: 0.5rem;
  line-height: 1.8;
  background: var(--lq-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) { .lq-tier-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════
   PAIN + FEATURE CARDS
════════════════════════════════════ */
.lq-pain-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.lq-pain-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--r-md);
  padding: 1.5rem;
}
.lq-pain-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-xs);
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--lq-orange);
  margin-bottom: 1rem;
}
.lq-pain-card h4 { color: var(--text-white); margin-bottom: 0.5rem; }
.lq-pain-card p  { color: var(--text-body); font-size: 0.855rem; }

.lq-features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.lq-feature-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--r-md);
  padding: 1.75rem;
  transition: border-color var(--t-base), transform var(--t-base);
}
.lq-feature-card:hover { border-color: var(--border-pink); transform: translateY(-3px); }
.lq-section-light .lq-feature-card {
  background: #fff;
  border-color: var(--border-light);
  box-shadow: var(--shadow-light);
}
.lq-section-light .lq-feature-card h4 { color: var(--text-dark); }
.lq-section-light .lq-feature-card p  { color: var(--text-dark-sec); font-size: 0.9rem; }
.lq-section-light .lq-feature-card:hover { border-color: rgba(233,30,140,0.3); }
.lq-feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-xs);
  background: var(--lq-grad-soft);
  border: 1px solid rgba(233,30,140,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--lq-pink);
  margin-bottom: 1.125rem;
}
.lq-feature-card h4 { color: var(--text-white); margin-bottom: 0.5rem; }
.lq-feature-card p  { color: var(--text-body); font-size: 0.875rem; }
.lq-features-grid-2 { grid-template-columns: repeat(2,1fr); }

@media (max-width: 900px) {
  .lq-pain-grid { grid-template-columns: repeat(2,1fr); }
  .lq-features-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 580px) {
  .lq-pain-grid { grid-template-columns: 1fr; }
  .lq-features-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════
   SPLIT BLOCK
════════════════════════════════════ */
.lq-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.lq-split + .lq-split { margin-top: 4rem; }
.lq-split.reverse .lq-split-visual { order: -1; }
.lq-split-text h2 { color: var(--text-white); margin-bottom: 1rem; }
.lq-split-text h3 { color: var(--text-white); margin-bottom: 1rem; }
.lq-split-text p  { color: var(--text-body); margin-bottom: 1.25rem; }
.lq-section-light .lq-split-text h2 { color: var(--text-dark); }
.lq-section-light .lq-split-text h3 { color: var(--text-dark); }
.lq-section-light .lq-split-text p  { color: var(--text-dark-sec); }
@media (max-width: 768px) {
  .lq-split { grid-template-columns: 1fr; }
  .lq-split.reverse .lq-split-visual { order: unset; }
}

/* ════════════════════════════════════
   CHECK LIST
════════════════════════════════════ */
.lq-check-list { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 1.75rem; }
.lq-check-list li {
  display: flex; align-items: flex-start; gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-body);
}
.lq-check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--lq-pink);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  margin-top: 3px;
}
.lq-section-light .lq-check-list li { color: var(--text-dark-sec); }

/* ════════════════════════════════════
   STEPS GRID
════════════════════════════════════ */
.lq-steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.lq-step-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--r-md);
  padding: 1.75rem 1.5rem;
}
.lq-step-num {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--lq-grad);
  color: #fff; font-size: 1rem; font-weight: 900;
  margin-bottom: 1.125rem;
}
.lq-step-card h4 { color: var(--text-white); margin-bottom: 0.5rem; font-size: 0.95rem; }
.lq-step-card p  { color: var(--text-body); font-size: 0.855rem; }
@media (max-width: 780px) { .lq-steps-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .lq-steps-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════
   VISUAL CARDS (inside split blocks)
════════════════════════════════════ */
.lq-visual-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-purple);
  border-radius: var(--r-lg);
  padding: 2rem;
}
.lq-visual-title {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.25rem;
}
.lq-revenue-list { display: flex; flex-direction: column; gap: 0.875rem; }
.lq-revenue-item {
  padding: 0.875rem;
  background: rgba(233,30,140,0.06);
  border: 1px solid rgba(233,30,140,0.12);
  border-radius: var(--r-sm);
}
.lq-revenue-item-title { font-size: 0.875rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.25rem; }
.lq-revenue-item-desc  { font-size: 0.8rem; color: var(--text-muted); }

/* Journey steps */
.lq-journey-step { display: flex; align-items: center; gap: 0.875rem; margin-bottom: 0.875rem; }
.lq-journey-step:last-child { margin-bottom: 0; }
.lq-j-dot {
  width: 28px; height: 28px; border-radius: 50%;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.lq-j-dot.done   { background: var(--lq-pink); }
.lq-j-dot.active { background: transparent; border: 2px solid var(--lq-pink); }
.lq-j-dot.active::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--lq-pink); }
.lq-j-dot.pending { background: rgba(255,255,255,0.06); border: 1px solid var(--border-dark); }
.lq-j-label       { font-size: 0.875rem; color: var(--text-white); }
.lq-j-label.pending { color: var(--text-muted); }

/* Goals grid */
.lq-goals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }
.lq-goal-tile  { padding: 1.125rem; border-radius: var(--r-sm); text-align: center; }
.lq-goal-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.lq-goal-meta  { font-size: 0.68rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.lq-goal-pct   { font-size: 1.5rem; font-weight: 900; color: var(--text-white); }
.lq-goal-status { font-size: 0.68rem; margin-top: 0.2rem; }

/* Mini pill badge inside sections */
.lq-mini-badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.3rem 0.75rem; border-radius: 100vw;
  font-size: 0.72rem; font-weight: 700; margin-bottom: 0.875rem;
}

/* ════════════════════════════════════
   CTA SECTION
════════════════════════════════════ */
.lq-cta-section {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-dark);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.lq-cta-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-purple);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  max-width: 720px; margin: 0 auto;
  box-shadow: var(--shadow-glow);
  position: relative; overflow: hidden;
}
.lq-cta-card::before {
  content: '';
  position: absolute; top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 320px; height: 160px;
  background: radial-gradient(ellipse, rgba(233,30,140,0.2), transparent 70%);
  pointer-events: none;
}
.lq-cta-card h2 { color: var(--text-white); margin-bottom: 0.875rem; }
.lq-cta-card p  { color: var(--text-body); margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.lq-cta-btns    { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.lq-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-dark);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}
.lq-footer-logos {
  display: flex; align-items: center; gap: 2.5rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 2.5rem;
}
.lq-footer-logos-info { line-height: 1.45; }
.lq-footer-logos-info strong {
  display: block;
  font-size: 0.875rem; font-weight: 800; color: var(--text-body); margin-bottom: 0.2rem;
}
.lq-footer-logos-info span { font-size: 0.75rem; color: var(--text-muted); }
.lq-footer-logos-div  { width: 1px; height: 48px; background: var(--border-dark); flex-shrink: 0; }
.lq-footer-logos-amara { margin-left: auto; }

.lq-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.lq-footer-brand p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; margin-top: 0.875rem; }
.lq-footer-heading {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem;
}
.lq-footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.lq-footer-links li a { font-size: 0.875rem; color: var(--text-body); transition: color var(--t-fast); }
.lq-footer-links li a:hover { color: var(--lq-pink); }
.lq-social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.lq-social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.lq-social-links a:hover { color: var(--lq-pink); border-color: var(--border-pink); }

.lq-footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.lq-footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.lq-footer-legal { display: flex; gap: 1.25rem; }
.lq-footer-legal a { font-size: 0.78rem; color: var(--text-muted); transition: color var(--t-fast); }
.lq-footer-legal a:hover { color: var(--text-body); }

@media (max-width: 900px) { .lq-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .lq-footer-grid { grid-template-columns: 1fr; }
  .lq-footer-logos-div { display: none; }
  .lq-footer-logos-amara { margin-left: 0; }
  .lq-footer-bottom { flex-direction: column; text-align: center; }
}
