/*
 Theme Name:   LawnPricing Child
 Theme URI:    https://lawnpricing.com
 Description:  LawnPricing child theme for GeneratePress
 Author:       Locally Known LLC
 Template:     generatepress
 Version:      1.0.0
*/

/* ================================================
   DESIGN TOKENS
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  /* Brand tokens */
  --green:       #2D5016;
  --green-light: #3d6b1f;
  --green-mist:  #eef4eb;
  --blue:        #155EEF;
  --blue-mid:    #1a4fd6;
  --orange:      #F79009;
  --orange-dark: #d97706;
  --charcoal:    #2B2D2F;
  --charcoal-90: rgba(43,45,47,0.9);
  --lgray:       #F8FAF9;
  --white:       #FFFFFF;
  --border:      rgba(43,45,47,0.10);
  --border-lt:   rgba(43,45,47,0.06);
  --text2:       #4a4e52;
  --muted:       #7a8285;

  /* Spacing */
  --s1: 0.5rem;  --s2: 1rem;   --s3: 1.5rem;
  --s4: 2rem;    --s5: 3rem;   --s6: 4.5rem;
  --s7: 6rem;    --s8: 8rem;

  /* Type scale */
  --f-xs:  0.72rem;
  --f-sm:  0.875rem;
  --f-md:  1rem;
  --f-lg:  1.125rem;
  --f-xl:  1.375rem;
  --f-2xl: 1.75rem;
  --f-3xl: 2.25rem;
  --f-4xl: 3rem;
  --f-5xl: 4rem;
  --f-6xl: 5.25rem;

  /* Shadows */
  --sh-xs: 0 1px 4px rgba(0,0,0,0.06);
  --sh-sm: 0 2px 10px rgba(0,0,0,0.08);
  --sh-md: 0 6px 24px rgba(0,0,0,0.10);
  --sh-lg: 0 14px 48px rgba(0,0,0,0.13);

  /* Radii */
  --r-sm: 4px; --r-md: 8px; --r-lg: 12px; --r-xl: 18px;

  --ease: 0.18s ease;
  --container: 1160px;
  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Barlow', system-ui, sans-serif;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  letter-spacing: -0.025em;
  line-height: 1.12;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ================================================
   LAYOUT
   ================================================ */
.lq-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s4);
}
@media (min-width: 768px) { .lq-wrap { padding: 0 var(--s5); } }

/* ================================================
   BUTTONS
   ================================================ */
.lq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--f-sm);
  letter-spacing: 0.01em;
  border-radius: var(--r-sm);
  padding: 13px 26px;
  cursor: pointer;
  border: none;
  transition: all var(--ease);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.lq-btn--cta {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(247,144,9,0.35);
}
.lq-btn--cta:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 24px rgba(247,144,9,0.45);
  transform: translateY(-1px);
}
.lq-btn--ghost {
  background: transparent;
  color: var(--charcoal);
  box-shadow: inset 0 0 0 1.5px var(--border);
}
.lq-btn--ghost:hover {
  box-shadow: inset 0 0 0 1.5px rgba(43,45,47,0.3);
  background: var(--lgray);
}
.lq-btn--ghost-white {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.3);
}
.lq-btn--ghost-white:hover {
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.55);
}
.lq-btn--blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(21,94,239,0.28);
}
.lq-btn--blue:hover {
  background: #1a4fd6;
  box-shadow: 0 6px 20px rgba(21,94,239,0.38);
  transform: translateY(-1px);
}
.lq-btn--lg  { padding: 16px 34px; font-size: var(--f-md); }
.lq-btn--full { width: 100%; }

/* ================================================
   HEADER
   ================================================ */
.lq-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-lt);
}
.lq-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  height: 60px;
}
.lq-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
  line-height: 1;
}
.lq-logo__lawn    { color: var(--blue); }
.lq-logo__pricing { color: var(--orange); }
.lq-logo__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  margin: 0 3px 0 4px;
  flex-shrink: 0;
}
.lq-nav ul {
  display: flex;
  align-items: center;
  gap: var(--s5);
  list-style: none;
}
.lq-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--f-sm);
  color: var(--text2);
  letter-spacing: 0.01em;
  transition: color var(--ease);
}
.lq-nav a:hover,
.lq-nav a.active { color: var(--charcoal); }
.lq-header__cta { padding: 9px 18px; font-size: var(--f-xs); letter-spacing: 0.04em; text-transform: uppercase; }
@media (max-width: 520px) { .lq-nav { display: none; } }

/* ================================================
   SECTION BASE
   ================================================ */
.lq-section { padding: var(--s7) 0; }
.lq-section--alt { background: var(--lgray); }

.lq-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--s2);
}
.lq-kicker::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--green);
  flex-shrink: 0;
}
.lq-kicker__text {
  font-family: var(--font-head);
  font-size: var(--f-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}
.lq-section-title {
  font-size: clamp(var(--f-2xl), 3.5vw, var(--f-4xl));
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--charcoal);
  margin-bottom: var(--s2);
}
.lq-section-intro {
  font-size: var(--f-lg);
  color: var(--text2);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: var(--s5);
}

/* ================================================
   HERO — HOME
   ================================================ */
.lq-hero {
  background: var(--charcoal);
  color: var(--white);
  padding: var(--s8) 0 0;
  overflow: hidden;
  position: relative;
}
.lq-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(45,80,22,0.04) 40px, rgba(45,80,22,0.04) 41px
  );
  pointer-events: none;
}
.lq-hero::after {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(45,80,22,0.22) 0%, transparent 60%);
  pointer-events: none;
}
.lq-hero > * { position: relative; z-index: 1; }

.lq-hero__body {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: var(--s7);
}
.lq-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: var(--f-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: var(--s3);
}
.lq-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: lq-blink 2.4s ease infinite;
}
@keyframes lq-blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.lq-hero h1 {
  font-size: clamp(var(--f-4xl), 7vw, var(--f-6xl));
  font-weight: 900;
  color: var(--white);
  line-height: 1.03;
  letter-spacing: -0.04em;
  margin-bottom: var(--s3);
  animation: lq-fadeUp 0.6s ease both;
}
.lq-hero h1 span { color: var(--orange); position: relative; }
.lq-hero h1 em { font-style: normal; color: var(--green-light); }

@keyframes lq-fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lq-hero__sub {
  font-size: var(--f-lg);
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto var(--s5);
  line-height: 1.7;
  font-weight: 400;
  animation: lq-fadeUp 0.6s 0.1s ease both;
}
.lq-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: var(--s4);
  animation: lq-fadeUp 0.6s 0.2s ease both;
}
.lq-hero__trust {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 24px;
  font-size: var(--f-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  margin-bottom: var(--s6);
  animation: lq-fadeUp 0.6s 0.3s ease both;
  list-style: none;
  padding: 0;
}
.lq-hero__trust li { display: flex; align-items: center; gap: 6px; }
.lq-hero__trust li::before {
  content: '';
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
/* Hero tray */
.lq-hero__tray {
  border-top: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.05) 100%);
  padding: var(--s5) var(--s5) 0;
  animation: lq-fadeUp 0.7s 0.35s ease both;
}
.lq-hero__tray-label {
  text-align: center;
  font-size: var(--f-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: var(--s3);
}
.lq-product-shell {
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 -8px 40px rgba(45,80,22,0.14),
    0 32px 80px rgba(0,0,0,0.5);
}
/* Mock dashboard */
.lq-mock-app {
  background: #151c14;
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 360px;
  font-family: var(--font-body);
}
.lq-mock-sidebar {
  background: #0f1610;
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lq-mock-logo-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 6px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 6px;
}
.lq-mock-logo-dot { width: 18px; height: 18px; border-radius: 3px; background: var(--green); flex-shrink: 0; }
.lq-mock-logo-text { width: 80px; height: 10px; background: rgba(255,255,255,0.15); border-radius: 2px; }
.lq-mock-nav-link {
  height: 30px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.05);
  position: relative; overflow: hidden;
}
.lq-mock-nav-link::before {
  content: ''; position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  width: 12px; height: 12px; border-radius: 2px; background: rgba(255,255,255,0.12);
}
.lq-mock-nav-link::after {
  content: ''; position: absolute; left: 30px; top: 50%; transform: translateY(-50%);
  width: 60px; height: 8px; border-radius: 2px; background: rgba(255,255,255,0.08);
}
.lq-mock-nav-link.is-active { background: rgba(45,80,22,0.28); box-shadow: inset 0 0 0 1px rgba(45,80,22,0.4); }
.lq-mock-nav-link.is-active::before { background: var(--green); }
.lq-mock-nav-link.is-active::after  { background: rgba(255,255,255,0.18); }
.lq-mock-main { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.lq-mock-topbar { display: flex; align-items: center; justify-content: space-between; }
.lq-mock-page-title { width: 140px; height: 14px; background: rgba(255,255,255,0.15); border-radius: 3px; }
.lq-mock-pill { height: 26px; width: 110px; border-radius: 100px; background: var(--orange); opacity: 0.8; }
.lq-mock-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.lq-mock-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  padding: 14px 16px;
}
.lq-mock-stat__val {
  font-family: var(--font-head); font-weight: 800; font-size: 1.5rem;
  color: var(--white); margin-bottom: 5px; letter-spacing: -0.04em;
}
.lq-mock-stat__val--orange { color: var(--orange); }
.lq-mock-stat__val--green  { color: #52a836; }
.lq-mock-stat__label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.3); font-weight: 600; }
.lq-mock-body-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; flex: 1; }
.lq-mock-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md); padding: 14px;
}
.lq-mock-card__head { height: 10px; width: 100px; background: rgba(255,255,255,0.12); border-radius: 2px; margin-bottom: 14px; }
.lq-mock-lead-list { display: flex; flex-direction: column; gap: 8px; }
.lq-mock-lead { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: var(--r-sm); background: rgba(255,255,255,0.04); }
.lq-mock-lead__avatar { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.lq-mock-lead__info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.lq-mock-lead__name { height: 9px; width: 90px; background: rgba(255,255,255,0.14); border-radius: 2px; }
.lq-mock-lead__sub  { height: 7px; width: 60px; background: rgba(255,255,255,0.07); border-radius: 2px; }
.lq-mock-lead__badge { font-size: 9px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 8px; border-radius: 100px; }
.lq-mock-lead__badge--new    { background: rgba(247,144,9,0.18); color: var(--orange); }
.lq-mock-lead__badge--quoted { background: rgba(21,94,239,0.15); color: #7aa8ff; }
.lq-mock-lead__badge--booked { background: rgba(45,80,22,0.3);   color: #7ec858; }
.lq-mock-chart { position: relative; overflow: hidden; }
.lq-mock-chart-inner {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  display: flex; align-items: flex-end; gap: 5px; height: 70px;
}
.lq-mb { flex: 1; border-radius: 2px 2px 0 0; background: rgba(45,80,22,0.22); }
.lq-mb--hi { background: rgba(45,80,22,0.55); }

/* ================================================
   PROOF STRIP
   ================================================ */
.lq-proof-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.lq-proof-strip__inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-left: 1px solid var(--border);
}
@media (max-width: 767px) { .lq-proof-strip__inner { grid-template-columns: repeat(2,1fr); } }
.lq-proof-metric {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--s4) var(--s3);
}
.lq-proof-metric__value {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 6px;
}
.lq-proof-metric__label {
  font-size: var(--f-sm);
  color: var(--text2);
  line-height: 1.5;
  font-weight: 500;
}
.lq-proof-metric__source { margin-top: 6px; font-size: var(--f-xs); color: var(--muted); letter-spacing: 0.04em; }

/* ================================================
   HOW IT WORKS — STEPS
   ================================================ */
.lq-steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: var(--s5);
  box-shadow: var(--sh-sm);
}
@media (max-width: 767px) { .lq-steps { grid-template-columns: 1fr; } }
.lq-step {
  padding: var(--s5) var(--s4);
  border-right: 1px solid var(--border);
  background: var(--white);
  transition: background var(--ease);
  position: relative;
  overflow: hidden;
}
.lq-step:last-child { border-right: none; }
.lq-step::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--green); transform: scaleX(0);
  transition: transform 0.3s ease; transform-origin: left;
}
.lq-step:hover { background: #f8fbf7; }
.lq-step:hover::after { transform: scaleX(1); }
.lq-step__num {
  font-family: var(--font-head); font-size: 5rem; font-weight: 900;
  line-height: 1; color: rgba(43,45,47,0.05); letter-spacing: -0.06em; margin-bottom: var(--s2);
}
.lq-step h3 { font-size: var(--f-xl); font-weight: 800; color: var(--charcoal); margin-bottom: 10px; }
.lq-step p  { font-size: var(--f-md); color: var(--text2); line-height: 1.7; }
.lq-outcome {
  display: flex; align-items: flex-start; gap: 10px;
  background: #f0f6ee; border: 1px solid rgba(45,80,22,0.15);
  border-radius: var(--r-sm); padding: 10px 14px; margin-top: var(--s3);
  font-size: var(--f-sm); color: var(--green); font-weight: 600;
}
.lq-outcome::before { content: '→'; font-weight: 800; flex-shrink: 0; font-size: var(--f-md); }

/* Proof cards */
.lq-proof-cards-title { font-size: var(--f-xl); font-weight: 800; letter-spacing: -0.03em; color: var(--charcoal); margin-bottom: var(--s4); }
.lq-proof-cards-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-sm);
}
@media (max-width: 767px) { .lq-proof-cards-grid { grid-template-columns: 1fr; } }
.lq-proof-card { background: var(--white); display: flex; flex-direction: column; transition: background var(--ease); }
.lq-proof-card:hover { background: #fafcfa; }
.lq-sc-frame {
  background: var(--lgray); border-bottom: 1px solid var(--border-lt);
  aspect-ratio: 16/10; display: flex; flex-direction: column;
  align-items: flex-start; padding: 12px; position: relative; overflow: hidden;
}
.lq-sc-chrome { display: flex; align-items: center; gap: 5px; margin-bottom: 8px; width: 100%; }
.lq-sc-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.lq-sc-dot--r { background: #ff5f57; }
.lq-sc-dot--y { background: #febc2e; }
.lq-sc-dot--g { background: #28c840; }
.lq-sc-url   { flex: 1; height: 14px; background: rgba(43,45,47,0.08); border-radius: 3px; }
.lq-sc-body {
  flex: 1; width: 100%; border-radius: var(--r-sm);
  background: rgba(43,45,47,0.04); display: flex; align-items: center;
  justify-content: center; border: 1px dashed rgba(43,45,47,0.15);
}
.lq-sc-annotation { font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(43,45,47,0.28); text-align: center; padding: 0 var(--s2); }
.lq-proof-card__body { padding: var(--s3); }
.lq-proof-card__step { font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.lq-proof-card__body h4 { font-size: var(--f-lg); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 8px; }
.lq-proof-card__body p  { font-size: var(--f-sm); color: var(--text2); line-height: 1.65; }

/* ================================================
   WHY GRID
   ================================================ */
.lq-why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm);
}
@media (max-width: 767px) { .lq-why-grid { grid-template-columns: 1fr; } }
.lq-why-card { background: var(--white); padding: var(--s5) var(--s4); position: relative; transition: background var(--ease); }
.lq-why-card:hover { background: #fafcfa; }
.lq-why-icon {
  width: 48px; height: 48px; background: #eef4eb;
  border: 1px solid rgba(45,80,22,0.14); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--s3);
}
.lq-why-icon svg { width: 22px; height: 22px; color: var(--green); }
.lq-why-card h3 { font-size: var(--f-xl); font-weight: 800; margin-bottom: 10px; }
.lq-why-card p  { font-size: var(--f-md); color: var(--text2); line-height: 1.7; }

/* ================================================
   OPERATOR STORY BLOCK
   ================================================ */
.lq-op-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm);
}
@media (max-width: 767px) { .lq-op-grid { grid-template-columns: 1fr; } }
.lq-op-card {
  background: var(--lgray); padding: var(--s4);
  display: flex; flex-direction: column; gap: var(--s2);
}
.lq-op-card--featured { background: var(--green); color: var(--white); }
.lq-op-card__type {
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.lq-op-card--featured .lq-op-card__type { color: rgba(255,255,255,0.5); }
.lq-op-card h3 { font-size: var(--f-xl); font-weight: 800; letter-spacing: -0.03em; }
.lq-op-card--featured h3 { color: var(--white); }
.lq-op-card p { font-size: var(--f-sm); color: var(--text2); line-height: 1.7; }
.lq-op-card--featured p { color: rgba(255,255,255,0.75); }
.lq-op-card__divider { height: 1px; background: var(--border); margin: 4px 0; }
.lq-op-card--featured .lq-op-card__divider { background: rgba(255,255,255,0.15); }
.lq-op-card__after { font-size: var(--f-sm); font-weight: 600; color: var(--charcoal); line-height: 1.6; }
.lq-op-card--featured .lq-op-card__after { color: rgba(255,255,255,0.92); }

/* ================================================
   SYSTEM BOUNDARY BLOCK
   ================================================ */
.lq-system-section {
  background: var(--charcoal);
  color: var(--white);
  padding: var(--s7) 0;
  position: relative; overflow: hidden;
}
.lq-system-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.lq-system-section .lq-kicker::before    { background: rgba(255,255,255,0.3); }
.lq-system-section .lq-kicker__text      { color: rgba(255,255,255,0.4); }
.lq-system-section .lq-section-title     { color: var(--white); }
.lq-system-section .lq-section-intro     { color: rgba(255,255,255,0.5); }
.lq-system-block { border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-lg); overflow: hidden; position: relative; z-index: 1; }
.lq-system-cols { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 767px) { .lq-system-cols { grid-template-columns: 1fr; } }
.lq-system-col { padding: var(--s5); }
.lq-system-col:first-child { border-right: 1px solid rgba(255,255,255,0.08); }
.lq-system-col__head { display: flex; align-items: center; gap: 12px; margin-bottom: var(--s3); }
.lq-system-col__icon {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lq-system-col__icon--yes { background: rgba(45,80,22,0.4); }
.lq-system-col__icon--no  { background: rgba(255,255,255,0.07); }
.lq-system-col__icon svg { width: 18px; height: 18px; }
.lq-system-col h3 { font-size: var(--f-lg); font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.lq-system-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.lq-system-list li {
  font-size: var(--f-md); color: rgba(255,255,255,0.72);
  padding-left: 18px; position: relative; line-height: 1.55;
}
.lq-system-list li::before {
  content: ''; position: absolute; left: 0; top: 0.52em;
  width: 7px; height: 7px; border-radius: 1px;
}
.lq-system-col--yes li::before { background: var(--green-light); }
.lq-system-col--no  li::before { background: rgba(255,255,255,0.2); }
.lq-system-footer {
  background: rgba(0,0,0,0.25); border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--s3) var(--s5);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--s2);
}
.lq-system-footer__label { font-size: var(--f-sm); color: rgba(255,255,255,0.45); font-weight: 500; }
.lq-system-footer__cta {
  font-size: var(--f-sm); font-weight: 700; color: var(--orange);
  letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--font-head); transition: opacity var(--ease);
}
.lq-system-footer__cta:hover { opacity: 0.75; }

/* ================================================
   PERSONA GRID
   ================================================ */
.lq-persona-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm);
}
@media (max-width: 900px) { .lq-persona-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 550px) { .lq-persona-grid { grid-template-columns: 1fr; } }
.lq-persona-card { background: var(--white); padding: var(--s4); transition: background var(--ease); }
.lq-persona-card:hover { background: #fafcfa; }
.lq-persona-tag {
  display: inline-flex; align-items: center;
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue);
  background: rgba(21,94,239,0.07); border-radius: var(--r-sm); padding: 4px 9px; margin-bottom: var(--s2);
}
.lq-persona-card h3 { font-size: var(--f-lg); font-weight: 800; margin-bottom: 9px; letter-spacing: -0.02em; }
.lq-persona-card p  { font-size: var(--f-sm); color: var(--text2); line-height: 1.7; }
.lq-persona-card a  { color: var(--blue); font-weight: 600; border-bottom: 1px solid rgba(21,94,239,0.3); transition: border-color var(--ease); }
.lq-persona-card a:hover { border-color: var(--blue); }

/* ================================================
   FAQ
   ================================================ */
.lq-faq-wrap { max-width: 780px; margin: 0 auto; }
.lq-faq-list { border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-xs); }
details.lq-faq { background: var(--white); border-bottom: 1px solid var(--border); }
details.lq-faq:last-child { border-bottom: none; }
details.lq-faq summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-head); font-weight: 700; font-size: var(--f-md); letter-spacing: -0.02em;
  padding: 18px var(--s4);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s3);
  transition: background var(--ease);
}
details.lq-faq summary::-webkit-details-marker { display: none; }
details.lq-faq summary:hover,
details.lq-faq[open] summary { background: var(--lgray); }
.lq-faq__icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--lgray); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background var(--ease), border-color var(--ease);
}
details.lq-faq[open] .lq-faq__icon { background: var(--green); border-color: var(--green); }
.lq-faq__icon::before { content: '+'; font-size: 14px; font-weight: 300; color: var(--text2); line-height: 1; }
details.lq-faq[open] .lq-faq__icon::before { content: '–'; color: var(--white); }
details.lq-faq p {
  padding: 14px var(--s4) 20px;
  font-size: var(--f-md); color: var(--text2); line-height: 1.75;
  border-top: 1px solid var(--border-lt);
}
details.lq-faq p a { color: var(--blue); font-weight: 600; border-bottom: 1px solid rgba(21,94,239,0.25); }

/* ================================================
   EARLY ACCESS FORM
   ================================================ */
.lq-form-section {
  background: var(--green); color: var(--white);
  padding: var(--s7) 0; position: relative; overflow: hidden;
}
.lq-form-section::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 32px, rgba(0,0,0,0.04) 32px, rgba(0,0,0,0.04) 33px);
  pointer-events: none;
}
.lq-form-layout {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s7); align-items: start;
}
@media (max-width: 900px) { .lq-form-layout { grid-template-columns: 1fr; gap: var(--s5); } }
.lq-form-section .lq-kicker::before { background: rgba(255,255,255,0.3); }
.lq-form-section .lq-kicker__text   { color: rgba(255,255,255,0.6); }
.lq-form__title {
  font-family: var(--font-head); font-size: clamp(var(--f-2xl), 3vw, var(--f-4xl));
  font-weight: 900; letter-spacing: -0.04em; color: var(--white); line-height: 1.08; margin-bottom: var(--s3);
}
.lq-form__desc { font-size: var(--f-lg); color: rgba(255,255,255,0.68); line-height: 1.7; margin-bottom: var(--s5); }
.lq-form__benefits { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.lq-form__benefits li { display: flex; align-items: flex-start; gap: 12px; font-size: var(--f-md); color: rgba(255,255,255,0.85); line-height: 1.55; }
.lq-form__benefits li::before { content: ''; width: 8px; height: 8px; border-radius: 1px; background: var(--orange); flex-shrink: 0; margin-top: 0.44em; }
.lq-form-card { background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--r-xl); padding: var(--s5); }
.lq-form__row { margin-bottom: var(--s3); }
.lq-form__label {
  display: block; font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 8px;
}
.lq-form__input {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-sm); color: var(--white);
  font-family: var(--font-body); font-size: var(--f-md);
  transition: all var(--ease); -webkit-appearance: none; appearance: none;
}
.lq-form__input::placeholder { color: rgba(255,255,255,0.28); }
.lq-form__input:focus {
  outline: none; border-color: var(--orange);
  background: rgba(255,255,255,0.11); box-shadow: 0 0 0 3px rgba(247,144,9,0.18);
}
.lq-form__submit { width: 100%; padding: 16px; font-size: var(--f-lg); font-weight: 900; letter-spacing: -0.01em; margin-top: var(--s2); border-radius: var(--r-sm); }
.lq-form__fine { text-align: center; font-size: var(--f-xs); color: rgba(255,255,255,0.38); margin-top: var(--s2); letter-spacing: 0.04em; }

/* ================================================
   INNER HERO (Pricing / Inner pages)
   ================================================ */
.lq-inner-hero {
  background: linear-gradient(160deg,#101726 0%,#1b2f12 60%,#0f1f0d 100%);
  color: var(--white); padding: var(--s7) 0 var(--s6); position: relative; overflow: hidden;
}
.lq-inner-hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-55deg, transparent, transparent 48px, rgba(45,80,22,0.06) 48px, rgba(45,80,22,0.06) 49px);
  pointer-events: none;
}
.lq-inner-hero::after {
  content: ''; position: absolute; bottom: -80px; left: -60px;
  width: 600px; height: 500px;
  background: radial-gradient(ellipse at 30% 70%, rgba(45,80,22,0.28) 0%, transparent 55%);
  pointer-events: none;
}
.lq-inner-hero > * { position: relative; z-index: 1; }
.lq-inner-hero__inner { max-width: 760px; }
.lq-inner-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: var(--s2);
}
.lq-inner-hero__eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--green-light); flex-shrink: 0; }
.lq-inner-hero h1 {
  font-size: clamp(var(--f-3xl), 4.5vw, 3.5rem); font-weight: 900; letter-spacing: -0.04em;
  color: var(--white); margin-bottom: var(--s3); line-height: 1.06;
}
.lq-inner-hero h1 em { font-style: normal; color: var(--orange); }
.lq-inner-hero__sub { font-size: var(--f-lg); color: rgba(255,255,255,0.58); line-height: 1.7; max-width: 560px; }
.lq-hero-confidence {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-md); overflow: hidden; margin-top: var(--s6);
}
@media (max-width: 767px) { .lq-hero-confidence { grid-template-columns: 1fr; } }
.lq-confidence-item { background: rgba(255,255,255,0.03); padding: var(--s3) var(--s4); }
.lq-confidence-item strong { display: block; font-family: var(--font-head); font-weight: 800; font-size: var(--f-md); color: var(--white); letter-spacing: -0.02em; margin-bottom: 6px; }
.lq-confidence-item span { font-size: var(--f-sm); color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ================================================
   PRICING TIERS
   ================================================ */
.lq-tier-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg);
}
@media (max-width: 900px) { .lq-tier-grid { grid-template-columns: 1fr; border-radius: var(--r-lg); } }
.lq-tier-card {
  background: var(--white); padding: var(--s5) var(--s4);
  border-right: 1px solid var(--border); display: flex; flex-direction: column; position: relative;
}
.lq-tier-card:last-child { border-right: none; }
.lq-tier-card--featured { background: var(--green); border-right: 1px solid rgba(255,255,255,0.12); }
.lq-tier-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white);
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 0 0 var(--r-sm) var(--r-sm); white-space: nowrap;
}
.lq-tier-name { font-family: var(--font-head); font-size: var(--f-2xl); font-weight: 900; letter-spacing: -0.04em; color: var(--charcoal); margin-bottom: 6px; margin-top: var(--s2); }
.lq-tier-card--featured .lq-tier-name { color: var(--white); }
.lq-tier-desc { font-size: var(--f-sm); color: var(--text2); line-height: 1.6; margin-bottom: var(--s4); min-height: 48px; }
.lq-tier-card--featured .lq-tier-desc { color: rgba(255,255,255,0.65); }
.lq-tier-price-block { display: flex; align-items: baseline; gap: 4px; margin-bottom: var(--s2); padding-bottom: var(--s3); border-bottom: 1px solid var(--border); }
.lq-tier-card--featured .lq-tier-price-block { border-color: rgba(255,255,255,0.15); }
.lq-tier-price { font-family: var(--font-head); font-size: clamp(2.5rem,3.5vw,3.2rem); font-weight: 900; letter-spacing: -0.06em; color: var(--charcoal); line-height: 1; }
.lq-tier-card--featured .lq-tier-price { color: var(--white); }
.lq-tier-period { font-size: var(--f-md); color: var(--muted); font-weight: 500; }
.lq-tier-card--featured .lq-tier-period { color: rgba(255,255,255,0.45); }
.lq-tier-price-note { font-size: var(--f-xs); color: var(--muted); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: var(--s4); padding-bottom: var(--s3); border-bottom: 1px solid var(--border); }
.lq-tier-card--featured .lq-tier-price-note { color: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.12); }
.lq-tier-features { list-style: none; flex: 1; margin-bottom: var(--s4); display: flex; flex-direction: column; gap: 10px; }
.lq-tier-features li { display: flex; align-items: flex-start; gap: 10px; font-size: var(--f-sm); color: var(--text2); line-height: 1.5; }
.lq-tier-card--featured .lq-tier-features li { color: rgba(255,255,255,0.82); }
.lq-tck {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; border-radius: 50%;
  background: var(--green-mist); border: 1px solid rgba(45,80,22,0.18);
  display: flex; align-items: center; justify-content: center;
}
.lq-tier-card--featured .lq-tck { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); }
.lq-tck svg { width: 9px; height: 9px; }
.lq-tck path { stroke: var(--green); stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.lq-tier-card--featured .lq-tck path { stroke: rgba(255,255,255,0.9); }
.lq-tier-cta-area { margin-top: auto; }
.lq-tier-note { margin-top: var(--s2); font-size: var(--f-xs); color: var(--muted); line-height: 1.55; text-align: center; }
.lq-tier-note a { color: var(--blue); font-weight: 600; border-bottom: 1px solid rgba(21,94,239,0.25); }
.lq-tier-card--featured .lq-tier-note { color: rgba(255,255,255,0.45); }
.lq-tier-card--featured .lq-tier-note a { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.3); }

/* ================================================
   COMPARE TABLE
   ================================================ */
.lq-compare-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--border); box-shadow: var(--sh-sm); background: var(--white); }
table.lq-ct { width: 100%; min-width: 640px; border-collapse: collapse; }
.lq-ct thead th {
  padding: 20px 20px 16px; font-family: var(--font-head); font-weight: 800;
  font-size: var(--f-sm); letter-spacing: -0.02em; text-align: left;
  border-bottom: 2px solid var(--border); background: var(--white);
}
.lq-ct thead th:first-child { color: var(--muted); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: var(--f-xs); }
.lq-ct thead th.lq-cf { background: var(--green); color: var(--white); border-color: rgba(255,255,255,0.1); }
.lq-ct tbody tr { border-bottom: 1px solid var(--border-lt); }
.lq-ct tbody tr:last-child { border-bottom: none; }
.lq-ct tbody tr:hover td { background: #f9fbf8; }
.lq-ct tbody tr:hover td.lq-cf { background: rgba(45,80,22,0.92); }
.lq-ct td { padding: 14px 20px; font-size: var(--f-sm); vertical-align: middle; color: var(--text2); transition: background var(--ease); }
.lq-ct td:first-child { font-family: var(--font-head); font-weight: 700; font-size: var(--f-sm); color: var(--charcoal); letter-spacing: -0.01em; }
.lq-ct td.lq-cf { background: var(--green); color: rgba(255,255,255,0.85); font-weight: 500; }
.lq-ct-yes { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--green); }
.lq-ct td.lq-cf .lq-ct-yes { color: var(--white); }
.lq-ct-dash { color: var(--muted); font-weight: 400; }

/* ================================================
   CHOOSE GUIDE
   ================================================ */
.lq-choose-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm);
}
@media (max-width: 767px) { .lq-choose-grid { grid-template-columns: 1fr; } }
.lq-choose-card { background: var(--white); border-right: 1px solid var(--border); padding: var(--s4); }
.lq-choose-card:last-child { border-right: none; }
.lq-choose-label {
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--white);
  background: var(--charcoal); display: inline-block; padding: 4px 10px; border-radius: var(--r-sm); margin-bottom: var(--s3);
}
.lq-choose-card:nth-child(2) .lq-choose-label { background: var(--green); }
.lq-choose-card:nth-child(3) .lq-choose-label { background: var(--blue); }
.lq-choose-card h3 { font-size: var(--f-lg); font-weight: 800; margin-bottom: 10px; letter-spacing: -0.025em; }
.lq-choose-card p  { font-size: var(--f-sm); color: var(--text2); line-height: 1.7; }
.lq-choose-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--f-xs); font-weight: 700; color: var(--muted);
  letter-spacing: 0.06em; text-transform: uppercase; margin-top: var(--s3);
}
.lq-choose-tag::before { content: '→'; color: var(--green); font-weight: 900; }

/* ================================================
   USAGE / OVERAGE DARK
   ================================================ */
.lq-usage-section {
  background: var(--charcoal); color: var(--white); padding: var(--s6) 0; position: relative; overflow: hidden;
}
.lq-usage-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.lq-usage-section .lq-kicker::before { background: rgba(255,255,255,0.25); }
.lq-usage-section .lq-kicker__text   { color: rgba(255,255,255,0.4); }
.lq-usage-section .lq-section-title  { color: var(--white); margin-bottom: var(--s5); }
.lq-usage-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg); overflow: hidden; position: relative; z-index: 1;
}
@media (max-width: 767px) { .lq-usage-block { grid-template-columns: 1fr; } }
.lq-usage-col { background: rgba(255,255,255,0.03); padding: var(--s5); }
.lq-usage-kicker { font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-bottom: var(--s2); }
.lq-usage-col h3 { font-size: var(--f-xl); font-weight: 800; letter-spacing: -0.03em; color: var(--white); margin-bottom: var(--s3); }
.lq-usage-col p  { font-size: var(--f-md); color: rgba(255,255,255,0.6); line-height: 1.75; }
.lq-usage-col p + p { margin-top: var(--s2); }
.lq-usage-col strong { color: rgba(255,255,255,0.85); font-weight: 600; }

/* ================================================
   AGENCY STRIP
   ================================================ */
.lq-agency-strip {
  background: var(--lgray); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: var(--s5) 0;
}
.lq-agency-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s4); flex-wrap: wrap; }
.lq-agency-strip__inner h3 { font-size: var(--f-xl); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 6px; }
.lq-agency-strip__inner p  { font-size: var(--f-md); color: var(--text2); max-width: 520px; }

/* ================================================
   CTA BANNER
   ================================================ */
.lq-cta-banner {
  background: var(--green); color: var(--white); padding: var(--s7) 0; text-align: center; position: relative; overflow: hidden;
}
.lq-cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 32px, rgba(0,0,0,0.04) 32px, rgba(0,0,0,0.04) 33px);
  pointer-events: none;
}
.lq-cta-banner > * { position: relative; z-index: 1; }
.lq-cta-banner h2 { font-size: clamp(var(--f-2xl),3.5vw,var(--f-3xl)); font-weight: 900; letter-spacing: -0.04em; color: var(--white); margin-bottom: var(--s2); }
.lq-cta-banner p  { font-size: var(--f-lg); color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto var(--s5); line-height: 1.7; }
.lq-cta-actions   { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ================================================
   FOOTER
   ================================================ */
.lq-footer { background: var(--charcoal); color: var(--white); padding: var(--s6) 0 var(--s5); }
.lq-footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: var(--s6); padding-bottom: var(--s5);
  border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: var(--s4);
}
@media (max-width: 767px) { .lq-footer__top { grid-template-columns: 1fr; gap: var(--s4); } }
.lq-footer__logo { display: flex; align-items: center; gap: 3px; font-family: var(--font-head); font-weight: 900; font-size: 1.15rem; letter-spacing: -0.04em; margin-bottom: var(--s3); }
.lq-footer__logo .l { color: var(--blue); }
.lq-footer__logo .p { color: var(--orange); }
.lq-footer__tagline { font-size: var(--f-sm); color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 300px; }
.lq-footer__col-head { font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: var(--s3); }
.lq-footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.lq-footer__links a { font-size: var(--f-sm); color: rgba(255,255,255,0.6); transition: color var(--ease); }
.lq-footer__links a:hover { color: var(--white); }
.lq-footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--s2); font-size: var(--f-xs); color: rgba(255,255,255,0.3); letter-spacing: 0.04em; }
.lq-footer__bottom a { color: rgba(255,255,255,0.4); transition: color var(--ease); }
.lq-footer__bottom a:hover { color: rgba(255,255,255,0.7); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 767px) {
  .lq-hero { padding: var(--s7) 0 0; }
  .lq-hero h1 { letter-spacing: -0.035em; }
  .lq-hero__tray { padding: var(--s4) var(--s3) 0; }
  .lq-mock-app { grid-template-columns: 1fr; min-height: auto; }
  .lq-mock-sidebar { display: none; }
  .lq-mock-stats { grid-template-columns: repeat(2,1fr); }
  .lq-mock-body-grid { grid-template-columns: 1fr; }
  .lq-section { padding: var(--s6) 0; }
}

/* ================================================
   ABOUT PAGE COMPONENTS
   ================================================ */

/* About Inner Hero — Charcoal, earthy/human */
.lq-about-hero {
  background: var(--charcoal);
  color: var(--white);
  padding: var(--s7) 0 var(--s6);
  position: relative; overflow: hidden;
}
.lq-about-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 62px, rgba(255,255,255,0.018) 62px, rgba(255,255,255,0.018) 63px),
    repeating-linear-gradient(90deg, transparent, transparent 62px, rgba(255,255,255,0.018) 62px, rgba(255,255,255,0.018) 63px);
  pointer-events: none;
}
.lq-about-hero::after {
  content: ''; position: absolute; bottom: -120px; right: -80px;
  width: 600px; height: 500px;
  background: radial-gradient(ellipse at 70% 80%, rgba(45,80,22,0.18) 0%, transparent 55%);
  pointer-events: none;
}
.lq-about-hero > * { position: relative; z-index: 1; }

.lq-about-hero__layout {
  display: grid; grid-template-columns: 1fr 380px;
  gap: var(--s7); align-items: center;
}
.lq-about-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); margin-bottom: var(--s2);
}
.lq-about-hero__eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--orange); flex-shrink: 0; }
.lq-about-hero h1 {
  font-size: clamp(var(--f-3xl), 4.5vw, 3.6rem);
  font-weight: 900; letter-spacing: -0.04em;
  color: var(--white); margin-bottom: var(--s3); line-height: 1.05;
}
.lq-about-hero h1 em { font-style: normal; color: var(--orange); }
.lq-about-hero__sub {
  font-size: var(--f-lg); color: rgba(255,255,255,0.55);
  line-height: 1.8; max-width: 540px;
}

/* Founder card */
.lq-founder-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-xl); overflow: hidden;
}
.lq-founder-photo {
  aspect-ratio: 4/3;
  background: #3a3d40;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.lq-founder-photo::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(45,80,22,0.12) 0%, rgba(21,94,239,0.06) 100%);
}
.lq-founder-photo img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.lq-founder-photo__placeholder {
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.2); text-align: center;
  position: relative; z-index: 1; padding: var(--s4);
}
.lq-founder-bio { padding: var(--s3); }
.lq-founder-bio__name {
  font-family: var(--font-head); font-size: var(--f-md); font-weight: 900;
  letter-spacing: -0.03em; color: var(--white); margin-bottom: 3px;
}
.lq-founder-bio__title {
  font-size: var(--f-xs); color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600;
  margin-bottom: var(--s2);
}
.lq-founder-bio__quote {
  font-size: var(--f-sm); color: rgba(255,255,255,0.58);
  line-height: 1.7; font-style: italic;
  border-left: 2px solid var(--orange); padding-left: 12px;
}

/* Origin Story */
.lq-origin { padding: var(--s7) 0; }
.lq-origin__layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s7); align-items: start;
}
.lq-origin__copy h2 {
  font-size: clamp(var(--f-2xl), 3vw, var(--f-3xl));
  font-weight: 900; letter-spacing: -0.04em;
  margin-bottom: var(--s4); line-height: 1.1;
}
.lq-origin__copy p {
  font-size: var(--f-lg); color: var(--text2);
  line-height: 1.8; margin-bottom: var(--s3);
}
.lq-origin__copy p:last-child { margin-bottom: 0; }
.lq-origin__copy strong { color: var(--charcoal); font-weight: 700; }

/* Pull Quote */
.lq-pull-quote {
  background: var(--green);
  border-radius: var(--r-lg);
  padding: var(--s5); position: relative; overflow: hidden;
  margin-bottom: var(--s4);
}
.lq-pull-quote::before {
  content: '\201C';
  position: absolute; top: -20px; left: 16px;
  font-family: var(--font-head); font-size: 120px; font-weight: 900;
  color: rgba(255,255,255,0.07); line-height: 1; pointer-events: none;
}
.lq-pull-quote p {
  font-family: var(--font-head); font-size: var(--f-xl); font-weight: 700;
  letter-spacing: -0.03em; color: var(--white);
  line-height: 1.45; position: relative; z-index: 1; margin-bottom: var(--s3);
}
.lq-pull-quote__attr {
  display: flex; align-items: center; gap: 10px; position: relative; z-index: 1;
}
.lq-pull-quote__line { width: 24px; height: 2px; background: rgba(255,255,255,0.35); flex-shrink: 0; }
.lq-pull-quote__attr span {
  font-size: var(--f-xs); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5);
}

/* Product Moment Frame */
.lq-product-moment {
  background: var(--lgray);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-md);
}
.lq-product-moment__chrome {
  background: rgba(43,45,47,0.04); border-bottom: 1px solid var(--border-lt);
  padding: 10px 14px; display: flex; align-items: center; gap: 6px;
}
.lq-product-moment__dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.lq-product-moment__dot--r { background: #ff5f57; }
.lq-product-moment__dot--y { background: #febc2e; }
.lq-product-moment__dot--g { background: #28c840; }
.lq-product-moment__url { flex: 1; height: 16px; background: rgba(43,45,47,0.07); border-radius: 3px; margin-left: 8px; }
.lq-product-moment__body {
  aspect-ratio: 16/9;
  background: linear-gradient(160deg, var(--lgray) 0%, rgba(45,80,22,0.04) 100%);
  display: flex; align-items: center; justify-content: center;
}
.lq-product-moment__note {
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(43,45,47,0.22); text-align: center; padding: 0 var(--s4);
}
.lq-product-moment__caption {
  padding: 12px 16px; border-top: 1px solid var(--border-lt);
  font-size: var(--f-sm); color: var(--text2); line-height: 1.55;
}
.lq-product-moment__caption strong { color: var(--charcoal); font-weight: 700; }

/* Principles Grid */
.lq-principles-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0; border: 1px solid var(--border); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--sh-md);
}
.lq-principle-card {
  background: var(--white);
  padding: var(--s5);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background var(--ease);
}
.lq-principle-card:nth-child(2) { border-right: none; }
.lq-principle-card:nth-child(3) { border-bottom: none; border-right: 1px solid var(--border); }
.lq-principle-card:nth-child(4) { border-bottom: none; border-right: none; }
.lq-principle-card:hover { background: #fafcfa; }
.lq-principle-card__num {
  position: absolute; top: -8px; right: 16px;
  font-family: var(--font-head); font-size: 80px; font-weight: 900;
  color: rgba(43,45,47,0.04); line-height: 1; pointer-events: none;
  letter-spacing: -0.05em; transition: color var(--ease);
}
.lq-principle-card:hover .lq-principle-card__num { color: rgba(45,80,22,0.06); }
.lq-principle-card__icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--green-mist); border: 1px solid rgba(45,80,22,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s3);
}
.lq-principle-card__icon svg { width: 22px; height: 22px; }
.lq-principle-card h3 {
  font-size: var(--f-xl); font-weight: 900;
  letter-spacing: -0.03em; margin-bottom: var(--s2);
}
.lq-principle-card p {
  font-size: var(--f-md); color: var(--text2); line-height: 1.8; margin-bottom: var(--s2);
}
.lq-principle-card p:last-of-type { margin-bottom: 0; }

/* Serve Grid — Who We Serve */
.lq-serve-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-sm);
}
.lq-serve-card {
  background: var(--white);
  border-right: 1px solid var(--border);
  padding: var(--s4);
  transition: background var(--ease);
}
.lq-serve-card:last-child { border-right: none; }
.lq-serve-card:hover { background: #fafcfa; }
.lq-serve-card__icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: var(--green-mist); border: 1px solid rgba(45,80,22,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s3);
}
.lq-serve-card__icon svg { width: 20px; height: 20px; }
.lq-serve-card h3 {
  font-size: var(--f-md); font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 8px;
}
.lq-serve-card p { font-size: var(--f-sm); color: var(--text2); line-height: 1.65; }

/* About CTA Banner — charcoal + orange glow */
.lq-cta-banner--orange {
  background: var(--charcoal);
}
.lq-cta-banner--orange::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 32px, rgba(255,255,255,0.015) 32px, rgba(255,255,255,0.015) 33px);
  pointer-events: none;
}
.lq-cta-banner--orange::after {
  content: ''; position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(247,144,9,0.10) 0%, transparent 60%);
  pointer-events: none;
}

/* ================================================
   AGENCIES PAGE COMPONENTS
   ================================================ */

/* Agencies Inner Hero — Navy-to-forest gradient */
..lq-agencies-hero {
  background: linear-gradient(155deg, #0a1628 0%, #0f2318 55%, #162b0e 100%);
  color: var(--white);
  padding: var(--s7) 0 0;
  position: relative; overflow: hidden;
}
.lq-agencies-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(21,94,239,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,94,239,0.06) 1px, transparent 1px);
  background-size: 72px 72px; pointer-events: none;
}
.lq-agencies-hero::after {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 700px; height: 600px;
  background: radial-gradient(ellipse at 70% 30%, rgba(21,94,239,0.14) 0%, transparent 55%);
  pointer-events: none;
}
.lq-agencies-hero__green-glow {
  position: absolute; bottom: -60px; left: -80px;
  width: 500px; height: 400px;
  background: radial-gradient(ellipse at 30% 70%, rgba(45,80,22,0.22) 0%, transparent 55%);
  pointer-events: none;
}
.lq-agencies-hero > * { position: relative; z-index: 1; }
.lq-agencies-hero__layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s6); align-items: end; padding-bottom: 0;
}
.lq-agencies-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: var(--s2);
}
.lq-agencies-hero__eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--blue); flex-shrink: 0; }
.lq-agencies-hero h1 {
  font-size: clamp(var(--f-3xl), 4.5vw, 3.6rem);
  font-weight: 900; letter-spacing: -0.04em;
  color: var(--white); margin-bottom: var(--s3); line-height: 1.05;
}
.lq-agencies-hero h1 em { font-style: normal; color: var(--orange); }
.lq-agencies-hero__sub {
  font-size: var(--f-lg); color: rgba(255,255,255,0.58);
  line-height: 1.7; margin-bottom: var(--s5);
}
.lq-hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: var(--s5); }

/* Hero Economics Panel */
.lq-hero-economics {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: var(--s4); align-self: end;
}
.lq-hero-economics__head {
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: var(--s3);
}
.lq-econ-row {
  display: flex; align-items: flex-start; gap: var(--s3);
  padding: var(--s3) 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lq-econ-row:last-child { border-bottom: none; padding-bottom: 0; }
.lq-econ-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lq-econ-icon--blue  { background: rgba(21,94,239,0.2);  border: 1px solid rgba(21,94,239,0.3); }
.lq-econ-icon--green { background: rgba(45,80,22,0.3);   border: 1px solid rgba(45,80,22,0.4); }
.lq-econ-icon--orange{ background: rgba(247,144,9,0.15); border: 1px solid rgba(247,144,9,0.25); }
.lq-econ-icon svg { width: 20px; height: 20px; }
.lq-econ-copy strong {
  display: block; font-family: var(--font-head); font-size: var(--f-md); font-weight: 800;
  letter-spacing: -0.02em; color: var(--white); margin-bottom: 4px;
}
.lq-econ-copy span { font-size: var(--f-sm); color: rgba(255,255,255,0.5); line-height: 1.55; }

/* Agencies Proof Strip — blue metric values */
.lq-agencies-proof-strip {
  background: var(--white); border-bottom: 1px solid var(--border); padding: 0;
}
.lq-agencies-proof-strip__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border);
}
.lq-agencies-proof-metric {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--s4) var(--s3);
}
.lq-agencies-proof-metric__kicker {
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: var(--s1);
}
.lq-agencies-proof-metric__value {
  font-family: var(--font-head); font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 900; letter-spacing: -0.05em; line-height: 1;
  color: var(--blue); margin-bottom: 6px;
}
.lq-agencies-proof-metric__label { font-size: var(--f-sm); color: var(--text2); line-height: 1.5; font-weight: 500; }

/* Why Agencies — 2-col editorial + value stack */
.lq-why-agencies__layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s6); align-items: start;
}
.lq-why-agencies__copy h2 {
  font-size: clamp(var(--f-2xl), 3vw, var(--f-3xl));
  font-weight: 900; letter-spacing: -0.04em; margin-bottom: var(--s3); line-height: 1.1;
}
.lq-why-agencies__copy p {
  font-size: var(--f-lg); color: var(--text2); line-height: 1.75; margin-bottom: var(--s3);
}
.lq-why-agencies__copy p:last-child { margin-bottom: 0; }
.lq-value-stack { display: flex; flex-direction: column; gap: 2px; }
.lq-value-row {
  display: flex; align-items: flex-start; gap: var(--s3);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: var(--s3) var(--s4);
  transition: all var(--ease); position: relative; overflow: hidden;
}
.lq-value-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--blue); opacity: 0; transition: opacity var(--ease);
}
.lq-value-row:hover { transform: translateX(4px); box-shadow: var(--sh-sm); }
.lq-value-row:hover::before { opacity: 1; }
.lq-value-row__num {
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 900;
  letter-spacing: 0.08em; color: var(--blue);
  background: rgba(21,94,239,0.08); border-radius: var(--r-sm);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.lq-value-row h4 { font-size: var(--f-md); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.lq-value-row p { font-size: var(--f-sm); color: var(--text2); line-height: 1.6; }

/* Client Deliverables — 3-col proof cards */
.lq-client-deliverables {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-sm);
}
.lq-deliverable-card {
  background: var(--white); display: flex; flex-direction: column;
  transition: background var(--ease);
}
.lq-deliverable-card:hover { background: #fafcfa; }
.lq-deliverable-frame {
  background: var(--lgray); border-bottom: 1px solid var(--border-lt);
  aspect-ratio: 16/10; display: flex; flex-direction: column;
  align-items: flex-start; padding: 12px;
  position: relative; overflow: hidden;
}
.lq-deliverable-chrome { display: flex; align-items: center; gap: 5px; margin-bottom: 8px; width: 100%; }
.lq-deliverable-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.lq-deliverable-dot--r { background: #ff5f57; }
.lq-deliverable-dot--y { background: #febc2e; }
.lq-deliverable-dot--g { background: #28c840; }
.lq-deliverable-url { flex: 1; height: 14px; background: rgba(43,45,47,0.08); border-radius: 3px; }
.lq-deliverable-screen {
  flex: 1; width: 100%; border-radius: var(--r-sm);
  background: rgba(43,45,47,0.04);
  display: flex; align-items: center; justify-content: center;
  border: 1px dashed rgba(43,45,47,0.15);
}
.lq-deliverable-screen-note {
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(43,45,47,0.28); text-align: center; padding: 0 var(--s2);
}
.lq-deliverable-card__body { padding: var(--s3); }
.lq-deliverable-card__tag {
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px;
}
.lq-deliverable-card__body h4 { font-size: var(--f-lg); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 8px; }
.lq-deliverable-card__body p { font-size: var(--f-sm); color: var(--text2); line-height: 1.65; }
.lq-poc { display: flex; flex-direction: column; gap: 6px; margin-top: var(--s2); }
.lq-poc-row { display: flex; align-items: baseline; gap: 8px; font-size: var(--f-sm); }
.lq-poc-label {
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; flex-shrink: 0;
}
.lq-poc-label--prob { color: var(--muted); }
.lq-poc-label--out  { color: var(--green); }
.lq-poc-text { color: var(--text2); line-height: 1.5; }
.lq-poc-row--out .lq-poc-text { color: var(--charcoal); font-weight: 500; }

/* Delivery Flow — 4-step horizontal */
.lq-delivery-flow {
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.lq-delivery-flow::before {
  content: '';
  position: absolute; top: 32px;
  left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 8px, transparent 8px, transparent 16px);
}
.lq-delivery-step { padding: var(--s4); position: relative; }
.lq-delivery-step__num {
  width: 48px; height: 48px; border-radius: var(--r-md);
  border: 2px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: var(--f-lg); font-weight: 900;
  color: var(--charcoal); margin-bottom: var(--s3);
  position: relative; z-index: 1;
  transition: all var(--ease);
}
.lq-delivery-step:hover .lq-delivery-step__num {
  background: var(--blue); color: var(--white); border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(21,94,239,0.3);
}
.lq-delivery-step h3 { font-size: var(--f-lg); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 8px; }
.lq-delivery-step p { font-size: var(--f-sm); color: var(--text2); line-height: 1.7; }
.lq-delivery-step__tag {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: var(--s2);
  font-size: var(--f-xs); font-weight: 700;
  color: var(--blue); letter-spacing: 0.06em; text-transform: uppercase;
}
.lq-delivery-step__tag::before { content: '→'; font-weight: 900; color: var(--green); }

/* Fit + Scope — 3-col dark boundary */
.lq-fit-scope {
  background: var(--charcoal); color: var(--white);
  padding: var(--s7) 0; position: relative; overflow: hidden;
}
.lq-fit-scope::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.lq-fit-scope .lq-kicker::before { background: rgba(255,255,255,0.25); }
.lq-fit-scope .lq-kicker__text  { color: rgba(255,255,255,0.4); }
.lq-fit-scope .lq-section-title { color: var(--white); }
.lq-fit-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg); overflow: hidden; position: relative; z-index: 1;
}
.lq-fit-card { background: rgba(255,255,255,0.03); padding: var(--s5) var(--s4); }
.lq-fit-card--featured { background: rgba(21,94,239,0.12); }
.lq-fit-card__kicker {
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: var(--s2);
}
.lq-fit-card--featured .lq-fit-card__kicker { color: rgba(21,94,239,0.6); }
.lq-fit-card h3 { font-size: var(--f-xl); font-weight: 800; letter-spacing: -0.03em; color: var(--white); margin-bottom: var(--s2); }
.lq-fit-card p { font-size: var(--f-md); color: rgba(255,255,255,0.58); line-height: 1.75; }
.lq-fit-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: var(--s3); }
.lq-fit-list li {
  font-size: var(--f-sm); color: rgba(255,255,255,0.72);
  padding-left: 16px; position: relative; line-height: 1.55;
}
.lq-fit-list li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 7px; height: 7px; border-radius: 1px;
}
.lq-fit-list--good    li::before { background: var(--green-light); }
.lq-fit-list--neutral li::before { background: rgba(255,255,255,0.2); }

/* Agencies Pricing Callout */
.lq-pricing-callout { background: var(--lgray); }
.lq-pricing-callout__inner {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-sm);
}
.lq-pc-card { background: var(--white); padding: var(--s4); }
.lq-pc-card--featured { background: var(--green); }
.lq-pc-card__tier {
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: var(--s2);
}
.lq-pc-card--featured .lq-pc-card__tier { color: rgba(255,255,255,0.5); }
.lq-pc-card h3 { font-size: var(--f-xl); font-weight: 900; letter-spacing: -0.04em; margin-bottom: 6px; }
.lq-pc-card--featured h3 { color: var(--white); }
.lq-pc-card__price {
  font-family: var(--font-head); font-size: var(--f-3xl); font-weight: 900;
  letter-spacing: -0.06em; line-height: 1; color: var(--charcoal); margin-bottom: var(--s2);
}
.lq-pc-card__price sup { font-size: var(--f-xl); vertical-align: super; letter-spacing: 0; }
.lq-pc-card__price sub { font-size: var(--f-md); font-weight: 500; color: var(--muted); vertical-align: baseline; letter-spacing: 0; }
.lq-pc-card--featured .lq-pc-card__price { color: var(--white); }
.lq-pc-card--featured .lq-pc-card__price sub { color: rgba(255,255,255,0.5); }
.lq-pc-card__desc { font-size: var(--f-sm); color: var(--text2); line-height: 1.6; margin-bottom: var(--s3); }
.lq-pc-card--featured .lq-pc-card__desc { color: rgba(255,255,255,0.65); }
.lq-pc-card__note {
  font-size: var(--f-xs); color: var(--muted);
  border-top: 1px solid var(--border-lt); padding-top: var(--s2);
}
.lq-pc-card--featured .lq-pc-card__note { color: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.15); }
.lq-pc-card__note a { color: var(--blue); font-weight: 600; }
.lq-pc-card--featured .lq-pc-card__note a { color: rgba(255,255,255,0.7); }

/* Agencies CTA Banner — navy blue */
.lq-cta-banner--navy {
  background: linear-gradient(140deg, #0c1f42 0%, #1b3a6e 100%);
  text-align: center;
}
.lq-cta-banner--navy::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 32px, rgba(255,255,255,0.02) 32px, rgba(255,255,255,0.02) 33px);
  pointer-events: none;
}
.lq-cta-banner--navy::after {
  content: ''; position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(21,94,239,0.18) 0%, transparent 60%);
  pointer-events: none;
}

/* ================================================
   RESPONSIVE — ABOUT + AGENCIES
   ================================================ */
@media (max-width: 900px) {
  .lq-about-hero__layout   { grid-template-columns: 1fr; }
  .lq-founder-card         { display: none; }
  .lq-agencies-hero__layout{ grid-template-columns: 1fr; padding-bottom: var(--s6); }
  .lq-hero-economics       { border-radius: var(--r-lg); }
  .lq-delivery-flow        { grid-template-columns: repeat(2, 1fr); }
  .lq-delivery-flow::before{ display: none; }
  .lq-fit-grid             { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .lq-origin__layout        { grid-template-columns: 1fr; }
  .lq-principles-grid       { grid-template-columns: 1fr; }
  .lq-principle-card        { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .lq-principle-card:last-child { border-bottom: none !important; }
  .lq-serve-grid            { grid-template-columns: repeat(2, 1fr); }
  .lq-why-agencies__layout  { grid-template-columns: 1fr; }
  .lq-client-deliverables   { grid-template-columns: 1fr; }
  .lq-agencies-proof-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .lq-pricing-callout__inner{ grid-template-columns: 1fr; }
  .lq-fit-grid              { grid-template-columns: 1fr; }
}
@media (max-width: 550px) {
  .lq-serve-grid    { grid-template-columns: 1fr; }
  .lq-delivery-flow { grid-template-columns: 1fr; }
}

/* ================================================
   CONTACT PAGE
   ================================================ */

/* Charcoal inner hero (reusable — Contact, Features) */
.lq-charcoal-hero {
  background: var(--charcoal); color: var(--white);
  padding: var(--s7) 0 var(--s5);
  position: relative; overflow: hidden;
}
.lq-charcoal-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 62px, rgba(255,255,255,.018) 62px, rgba(255,255,255,.018) 63px),
    repeating-linear-gradient(90deg, transparent, transparent 62px, rgba(255,255,255,.018) 62px, rgba(255,255,255,.018) 63px);
  pointer-events: none;
}
.lq-charcoal-hero::after {
  content: ''; position: absolute; bottom: -100px; right: -60px;
  width: 600px; height: 500px;
  background: radial-gradient(ellipse at 70% 80%, rgba(247,144,9,.06) 0%, transparent 55%);
  pointer-events: none;
}
.lq-charcoal-hero > * { position: relative; z-index: 1; }
.lq-charcoal-hero h1 {
  font-size: clamp(var(--f-2xl), 4vw, 3.2rem);
  font-weight: 900; letter-spacing: -0.04em;
  color: var(--white); margin-bottom: var(--s3); line-height: 1.07;
}
.lq-charcoal-hero h1 em { font-style: normal; color: var(--orange); }
.lq-charcoal-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,.38); margin-bottom: var(--s2);
}
.lq-charcoal-hero__eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--orange); flex-shrink: 0; }
.lq-charcoal-hero__sub {
  font-size: var(--f-lg); color: rgba(255,255,255,.52); line-height: 1.75; max-width: 520px;
}

/* Audience selector */
.lq-audience-section {
  background: var(--lgray); border-bottom: 1px solid var(--border); padding: var(--s5) 0;
}
.lq-audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }
.lq-audience-card {
  background: var(--white); border: 2px solid var(--border); border-radius: var(--r-xl);
  padding: var(--s4); cursor: pointer; transition: all var(--ease);
  display: flex; align-items: flex-start; gap: var(--s3);
  position: relative; user-select: none;
}
.lq-audience-card:hover { border-color: rgba(43,45,47,.22); box-shadow: var(--sh-sm); }
.lq-audience-card.selected.lq-contractor { border-color: var(--green); background: rgba(45,80,22,.03); box-shadow: 0 0 0 4px rgba(45,80,22,.08); }
.lq-audience-card.selected.lq-agency     { border-color: var(--blue);  background: rgba(21,94,239,.03); box-shadow: 0 0 0 4px rgba(21,94,239,.06); }
.lq-audience-icon {
  width: 48px; height: 48px; border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 1px solid var(--border); background: var(--lgray); font-size: 22px;
  transition: all var(--ease);
}
.lq-audience-card.selected.lq-contractor .lq-audience-icon { background: var(--green-mist); border-color: rgba(45,80,22,.2); }
.lq-audience-card.selected.lq-agency     .lq-audience-icon { background: rgba(21,94,239,.08); border-color: rgba(21,94,239,.2); }
.lq-audience-copy h3 { font-size: var(--f-xl); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 6px; }
.lq-audience-copy p  { font-size: var(--f-sm); color: var(--text2); line-height: 1.6; }
.lq-audience-check {
  position: absolute; top: 14px; right: 14px;
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--ease); flex-shrink: 0;
}
.lq-audience-card.selected.lq-contractor .lq-audience-check { background: var(--green); border-color: var(--green); }
.lq-audience-card.selected.lq-agency     .lq-audience-check { background: var(--blue);  border-color: var(--blue); }
.lq-audience-check svg { width: 10px; height: 10px; opacity: 0; transition: opacity var(--ease); }
.lq-audience-card.selected .lq-audience-check svg { opacity: 1; }
.lq-audience-check path { stroke: var(--white); stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* Contact layout */
.lq-contact-section { padding: var(--s7) 0; }
.lq-contact-layout {
  display: grid; grid-template-columns: 1fr 420px;
  gap: var(--s6); align-items: start;
}

/* Form card */
.lq-contact-form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-2xl); box-shadow: var(--sh-md); overflow: hidden;
}
.lq-form-head {
  padding: var(--s4) var(--s5); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: var(--s2);
}
.lq-form-head-icon {
  width: 36px; height: 36px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px;
  background: var(--green-mist); border: 1px solid rgba(45,80,22,.15);
  transition: all var(--ease);
}
.lq-form-head-icon.agency-icon { background: rgba(21,94,239,.08); border-color: rgba(21,94,239,.2); }
.lq-form-head h2 { font-size: var(--f-xl); font-weight: 900; letter-spacing: -0.03em; }
.lq-form-head p  { font-size: var(--f-sm); color: var(--muted); margin-top: 2px; }
.lq-form-body  { padding: var(--s5); }

/* Fields */
.lq-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); margin-bottom: var(--s3); }
.lq-field-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--s3); }
.lq-field-group:last-of-type { margin-bottom: 0; }
.lq-label {
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal);
}
.lq-label .req { color: var(--orange); margin-left: 2px; }
.lq-label .opt { color: var(--muted); font-weight: 500; text-transform: none; letter-spacing: 0; font-size: .7rem; }
.lq-contact-form-card input[type=text],
.lq-contact-form-card input[type=email],
.lq-contact-form-card input[type=tel],
.lq-contact-form-card select,
.lq-contact-form-card textarea {
  font-family: var(--font-body); font-size: var(--f-md); color: var(--charcoal);
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-md); padding: 11px 14px; width: 100%;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none; appearance: none;
}
.lq-contact-form-card input:focus,
.lq-contact-form-card select:focus,
.lq-contact-form-card textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,80,22,.1); }
.lq-contact-layout.agency-mode .lq-contact-form-card input:focus,
.lq-contact-layout.agency-mode .lq-contact-form-card select:focus,
.lq-contact-layout.agency-mode .lq-contact-form-card textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,94,239,.08); }
.lq-contact-form-card textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.lq-contact-form-card select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8285' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.lq-contact-form-card ::placeholder { color: var(--muted); }
.lq-contractor-field { display: block; }
.lq-agency-field     { display: none; }
.lq-contact-layout.agency-mode .lq-contractor-field { display: none; }
.lq-contact-layout.agency-mode .lq-agency-field     { display: block; }
.lq-contact-layout.agency-mode .lq-field-group.lq-agency-field { display: flex; }
.lq-contact-layout.agency-mode .lq-field-row.lq-agency-field   { display: grid; }
.lq-hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* Tier selector */
.lq-tier-selector { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 8px; }
.lq-tier-radio { position: relative; }
.lq-tier-radio input { position: absolute; opacity: 0; width: 0; height: 0; }
.lq-tier-radio label {
  display: flex; flex-direction: column; align-items: center;
  border: 1.5px solid var(--border); border-radius: var(--r-lg);
  padding: 12px 8px; cursor: pointer; text-align: center;
  background: var(--white); transition: all var(--ease);
  text-transform: none; letter-spacing: 0; font-size: var(--f-xs);
  font-family: var(--font-head); font-weight: 700; color: var(--text2);
}
.lq-tier-radio input:checked + label { border-color: var(--green); background: var(--green-mist); color: var(--green); }
.lq-contact-layout.agency-mode .lq-tier-radio input:checked + label { border-color: var(--blue); background: rgba(21,94,239,.06); color: var(--blue); }
.lq-tier-price { font-size: 1.1rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1; margin-bottom: 3px; }
.lq-submit-area { margin-top: var(--s4); }
.lq-submit-btn {
  width: 100%; padding: 15px;
  font-family: var(--font-head); font-weight: 800; font-size: var(--f-md);
  letter-spacing: 0.01em; border-radius: var(--r-md);
  border: none; cursor: pointer; transition: all var(--ease);
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 16px rgba(247,144,9,.35);
}
.lq-submit-btn:hover { background: var(--orange-dark); box-shadow: 0 6px 24px rgba(247,144,9,.45); transform: translateY(-1px); }
.lq-submit-btn.agency-btn { background: var(--blue); box-shadow: 0 4px 16px rgba(21,94,239,.28); }
.lq-submit-btn.agency-btn:hover { background: var(--blue-mid); }
.lq-form-disclaimer { font-size: var(--f-xs); color: var(--muted); text-align: center; margin-top: 10px; line-height: 1.5; }

/* Success state */
.lq-form-success {
  display: none; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: var(--s7) var(--s5); gap: var(--s3);
}
.lq-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green-mist); border: 2px solid rgba(45,80,22,.2);
  display: flex; align-items: center; justify-content: center;
}
.lq-success-icon svg { width: 28px; height: 28px; }
.lq-success-icon path { stroke: var(--green); stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.lq-success-title { font-family: var(--font-head); font-size: var(--f-2xl); font-weight: 900; letter-spacing: -0.04em; }
.lq-success-sub   { font-size: var(--f-lg); color: var(--text2); max-width: 340px; line-height: 1.7; }

/* Context panel */
.lq-context-panel { display: flex; flex-direction: column; gap: var(--s3); }
.lq-next-steps {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xs);
}
.lq-next-steps__head {
  padding: 16px var(--s4); border-bottom: 1px solid var(--border);
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal);
}
.lq-next-step {
  display: flex; align-items: flex-start; gap: var(--s3);
  padding: 16px var(--s4); border-bottom: 1px solid var(--border-lt);
}
.lq-next-step:last-child { border-bottom: none; }
.lq-next-step__num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-mist); border: 1px solid rgba(45,80,22,.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 900;
  color: var(--green); flex-shrink: 0; margin-top: 1px; transition: all var(--ease);
}
.lq-contact-layout.agency-mode .lq-next-step__num { background: rgba(21,94,239,.08); border-color: rgba(21,94,239,.2); color: var(--blue); }
.lq-next-step__copy strong { display: block; font-family: var(--font-head); font-size: var(--f-sm); font-weight: 800; letter-spacing: -0.01em; margin-bottom: 3px; }
.lq-next-step__copy span  { font-size: var(--f-sm); color: var(--text2); line-height: 1.55; }
.lq-ctx-contractor { display: block; }
.lq-ctx-agency     { display: none; }
.lq-contact-layout.agency-mode .lq-ctx-contractor { display: none; }
.lq-contact-layout.agency-mode .lq-ctx-agency     { display: block; }

/* Direct contact strip */
.lq-direct-strip {
  background: var(--charcoal); border-radius: var(--r-xl);
  padding: var(--s4); display: flex; flex-direction: column; gap: var(--s3);
}
.lq-direct-head { font-family: var(--font-head); font-size: var(--f-xs); font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.lq-direct-item { display: flex; align-items: center; gap: 12px; }
.lq-direct-icon {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px;
}
.lq-direct-item strong { display: block; font-family: var(--font-head); font-size: var(--f-sm); font-weight: 800; color: var(--white); margin-bottom: 2px; }
.lq-direct-item span   { font-size: var(--f-sm); color: rgba(255,255,255,.5); }
.lq-direct-item a      { color: rgba(255,255,255,.7); font-weight: 600; }

/* Trust strip */
.lq-trust-strip {
  display: flex; flex-direction: column; gap: 10px;
  padding: var(--s3) var(--s4);
  background: var(--lgray); border: 1px solid var(--border); border-radius: var(--r-lg);
}
.lq-trust-item { display: flex; align-items: center; gap: 10px; font-size: var(--f-sm); color: var(--text2); }
.lq-trust-check {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--green-mist); border: 1px solid rgba(45,80,22,.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lq-trust-check svg  { width: 8px; height: 8px; }
.lq-trust-check path { stroke: var(--green); stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ================================================
   FEATURES PAGE
   ================================================ */

/* Feature nav pills (in hero) */
.lq-feature-nav {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--s5);
}
.lq-fnav-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px; padding: 7px 14px;
  transition: all var(--ease);
}
.lq-fnav-pill:hover { background: rgba(255,255,255,.12); color: var(--white); }
.lq-fnav-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-light); flex-shrink: 0; }

/* Sticky feature subnav */
.lq-feature-subnav {
  position: sticky; top: 60px; z-index: 800;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.lq-subnav-inner {
  display: flex; align-items: center; gap: 4px;
  overflow-x: auto; scrollbar-width: none; padding: 0;
  height: 48px;
}
.lq-subnav-inner::-webkit-scrollbar { display: none; }
.lq-subnav-link {
  display: flex; align-items: center; height: 100%;
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text2); padding: 0 16px;
  border-bottom: 2px solid transparent;
  transition: all var(--ease); white-space: nowrap;
}
.lq-subnav-link:hover { color: var(--charcoal); }
.lq-subnav-link.active { color: var(--green); border-bottom-color: var(--green); }

/* Feature sections */
.lq-feature-section { padding: var(--s7) 0; }
.lq-feature-section--alt  { background: var(--lgray); }
.lq-feature-section--dark { background: var(--charcoal); color: var(--white); }
.lq-feature-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s7); align-items: center;
}
.lq-feature-layout--flip .lq-feature-copy { order: 2; }
.lq-feature-layout--flip .lq-feature-frame { order: 1; }

.lq-feature-copy h2 {
  font-size: clamp(var(--f-xl), 2.8vw, var(--f-3xl));
  font-weight: 900; letter-spacing: -0.04em; margin-bottom: var(--s2); line-height: 1.1;
}
.lq-feature-section--dark .lq-feature-copy h2 { color: var(--white); }
.lq-feature-copy p { font-size: var(--f-md); color: var(--text2); line-height: 1.8; margin-bottom: var(--s3); }
.lq-feature-section--dark .lq-feature-copy p { color: rgba(255,255,255,.6); }

/* Tier badge */
.lq-tier-badge-row { margin-bottom: var(--s3); }
.lq-tier-badge {
  display: inline-flex; align-items: center;
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 100px; padding: 4px 12px;
}
.lq-tier-badge--all  { background: var(--green-mist); color: var(--green); border: 1px solid rgba(45,80,22,.15); }
.lq-tier-badge--pro  { background: rgba(21,94,239,.07); color: var(--blue); border: 1px solid rgba(21,94,239,.15); }
.lq-tier-badge--dark { background: rgba(255,255,255,.08); color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.12); }

/* Feature bullets */
.lq-feature-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--s4); }
.lq-feature-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: var(--f-md); line-height: 1.6; }
.lq-fb-check {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: var(--green-mist); border: 1px solid rgba(45,80,22,.15);
  display: flex; align-items: center; justify-content: center;
}
.lq-fb-check svg { width: 8px; height: 8px; }
.lq-fb-check path { stroke: var(--green); stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.lq-feature-section--dark .lq-feature-bullets li { color: rgba(255,255,255,.75); }
.lq-feature-section--dark .lq-fb-check { background: rgba(45,80,22,.3); border-color: rgba(45,80,22,.5); }
.lq-feature-section--dark .lq-fb-check path { stroke: var(--green-light); }

/* Outcome callout */
.lq-outcome-callout {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--lgray); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--s3);
  border-left: 3px solid var(--green);
}
.lq-feature-section--dark .lq-outcome-callout { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); border-left-color: var(--green-light); }
.lq-oc-label {
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green); flex-shrink: 0; margin-top: 1px;
}
.lq-feature-section--dark .lq-oc-label { color: var(--green-light); }
.lq-oc-text { font-size: var(--f-sm); color: var(--text2); line-height: 1.65; }
.lq-feature-section--dark .lq-oc-text { color: rgba(255,255,255,.55); }

/* Screenshot frame */
.lq-sc-frame {
  background: var(--lgray); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md);
}
.lq-sc-chrome { display: flex; align-items: center; gap: 5px; padding: 10px 14px; background: rgba(43,45,47,.04); border-bottom: 1px solid var(--border-lt); }
.lq-scd { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.lq-scd--r { background: #ff5f57; } .lq-scd--y { background: #febc2e; } .lq-scd--g { background: #28c840; }
.lq-sc-url { flex: 1; height: 16px; background: rgba(43,45,47,.07); border-radius: 3px; margin-left: 8px; }
.lq-sc-body { aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; padding: var(--s3); }
.lq-sc-body--dash { background: linear-gradient(160deg, #f0f4f0 0%, rgba(45,80,22,.04) 100%); }
.lq-sc-body--sat  { background: #1a2e1a; }
.lq-sc-body--dark { background: var(--charcoal); }
.lq-sc-caption { padding: 12px 16px; border-top: 1px solid var(--border-lt); font-size: var(--f-sm); color: var(--text2); line-height: 1.55; }
.lq-sc-caption strong { color: var(--charcoal); font-weight: 700; }
.lq-feature-section--dark .lq-sc-frame { border-color: rgba(255,255,255,.08); }
.lq-feature-section--dark .lq-sc-chrome { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.06); }
.lq-feature-section--dark .lq-sc-caption { color: rgba(255,255,255,.45); border-color: rgba(255,255,255,.06); }
.lq-feature-section--dark .lq-sc-caption strong { color: rgba(255,255,255,.75); }

/* Mock UI elements inside frames */
.lq-mock-bar { height: 8px; border-radius: 100px; background: rgba(43,45,47,.08); }
.lq-mock-bar--accent { background: rgba(45,80,22,.15); }
.lq-mock-stat {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 10px;
  display: flex; flex-direction: column; gap: 4px; text-align: center;
}
.lq-mnum { font-family: var(--font-head); font-size: 1.2rem; font-weight: 900; letter-spacing: -0.04em; color: var(--green); }
.lq-mlbl { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }

/* Satellite mock */
.lq-mock-polygon {
  width: 140px; height: 100px;
  background: rgba(61,107,31,.55);
  clip-path: polygon(20% 0%, 80% 5%, 95% 35%, 85% 75%, 55% 95%, 15% 85%, 5% 50%);
  border: 2px solid rgba(82,168,54,.7); filter: blur(0.5px);
}
.lq-mock-map { background: #1a2e1a; border-radius: var(--r-sm); flex: 1; width: 100%; display: flex; align-items: center; justify-content: center; min-height: 160px; }

/* Configurator section */
.lq-configurator-section { background: var(--lgray); padding: var(--s7) 0; }
.lq-config-callout {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); background: rgba(21,94,239,.08);
  border: 1px solid rgba(21,94,239,.15); border-radius: 100px;
  padding: 5px 14px; margin-bottom: var(--s2);
}
.lq-config-callout::before { content: '●'; font-size: 7px; color: var(--blue); animation: lq-blink 1.2s ease-in-out infinite; }
@keyframes lq-blink { 0%,100%{opacity:1} 50%{opacity:.2} }
.lq-config-layout { display: grid; grid-template-columns: 340px 1fr; gap: var(--s5); margin-top: var(--s5); }
.lq-ctrl-panel {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-sm);
}
.lq-ctrl-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--s3); border-bottom: 1px solid var(--border);
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal);
}
.lq-ctrl-live {
  font-size: 9px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); background: var(--green); border-radius: 100px;
  padding: 3px 8px;
}
.lq-ctrl-group { padding: var(--s3); border-bottom: 1px solid var(--border-lt); }
.lq-ctrl-group:last-child { border-bottom: none; }
.lq-ctrl-group-label { font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.lq-ctrl-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.lq-ctrl-chip {
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700;
  border: 1.5px solid var(--border); border-radius: 100px;
  padding: 6px 14px; cursor: pointer; background: var(--white);
  color: var(--text2); transition: all var(--ease);
}
.lq-ctrl-chip:hover { border-color: rgba(43,45,47,.25); }
.lq-ctrl-chip.on { border-color: var(--green); background: var(--green-mist); color: var(--green); }
.lq-flow-preview {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-sm);
}
.lq-flow-preview-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--s3); border-bottom: 1px solid var(--border);
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal);
}
.lq-flow-summary-text { font-family: var(--font-body); font-size: var(--f-sm); font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--text2); }
.lq-flow-steps { display: flex; flex-direction: column; gap: 0; padding: var(--s2) 0; }
.lq-flow-step {
  display: flex; align-items: center; gap: var(--s3);
  padding: 12px var(--s3); border-bottom: 1px solid var(--border-lt);
  opacity: .35; transition: opacity var(--ease);
}
.lq-flow-step.active { opacity: 1; }
.lq-flow-step:last-child { border-bottom: none; }
.lq-flow-step-bubble {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-mist); border: 1.5px solid rgba(45,80,22,.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 11px; font-weight: 900; color: var(--green);
}
.lq-flow-step-label { font-family: var(--font-head); font-size: var(--f-sm); font-weight: 800; flex: 1; letter-spacing: -0.01em; }
.lq-flow-step-value { font-size: var(--f-xs); color: var(--muted); letter-spacing: 0.04em; }
.lq-flow-metrics { display: flex; gap: var(--s3); padding: var(--s3); border-top: 1px solid var(--border); background: var(--lgray); }
.lq-flow-metric { flex: 1; text-align: center; }
.lq-fm-label { font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.lq-fm-value { font-family: var(--font-head); font-size: var(--f-md); font-weight: 900; letter-spacing: -0.03em; color: var(--charcoal); }
.lq-fm-value--green { color: var(--green); }

/* Integration grid */
.lq-int-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; margin-top: var(--s5); }
.lq-int-tile { background: var(--white); padding: var(--s4); transition: background var(--ease); }
.lq-int-tile:hover { background: #fafcfa; }
.lq-int-tile-icon { font-size: 24px; margin-bottom: var(--s2); }
.lq-int-tile h4 { font-size: var(--f-md); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 8px; }
.lq-int-tile p  { font-size: var(--f-sm); color: var(--text2); line-height: 1.65; margin-bottom: var(--s2); }
.lq-int-status {
  display: inline-flex; font-family: var(--font-head); font-size: var(--f-xs); font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; border-radius: 100px; padding: 3px 10px;
}
.lq-int-status--live { background: var(--green-mist); color: var(--green); border: 1px solid rgba(45,80,22,.15); }
.lq-int-status--soon { background: rgba(247,144,9,.08); color: var(--orange); border: 1px solid rgba(247,144,9,.2); }
.lq-int-status--plan { background: rgba(21,94,239,.07); color: var(--blue); border: 1px solid rgba(21,94,239,.15); }

/* ================================================
   BLOG PAGE
   ================================================ */

.lq-blog-hero { background: var(--charcoal); color: var(--white); padding: var(--s7) 0 var(--s6); position: relative; overflow: hidden; }
.lq-blog-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 62px, rgba(255,255,255,.018) 62px, rgba(255,255,255,.018) 63px),
    repeating-linear-gradient(90deg, transparent, transparent 62px, rgba(255,255,255,.018) 62px, rgba(255,255,255,.018) 63px);
  pointer-events: none;
}
.lq-blog-hero::after {
  content: ''; position: absolute; bottom: -80px; right: -60px; width: 500px; height: 400px;
  background: radial-gradient(ellipse at 70% 80%, rgba(45,80,22,.12) 0%, transparent 55%); pointer-events: none;
}
.lq-blog-hero > * { position: relative; z-index: 1; }
.lq-blog-hero-inner {
  display: grid; grid-template-columns: 1fr 320px;
  gap: var(--s6); align-items: end;
}
.lq-blog-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: var(--s2);
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,.38);
}
.lq-blog-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--green-light); flex-shrink: 0; }
.lq-blog-hero h1 { font-size: clamp(var(--f-2xl), 4vw, 3.2rem); font-weight: 900; letter-spacing: -0.04em; color: var(--white); margin-bottom: var(--s3); line-height: 1.07; }
.lq-blog-hero-sub { font-size: var(--f-lg); color: rgba(255,255,255,.52); line-height: 1.75; }
.lq-blog-search {
  display: flex; gap: 0; border-radius: var(--r-md); overflow: hidden;
  border: 1.5px solid rgba(255,255,255,.15); background: rgba(255,255,255,.07);
}
.lq-blog-search input {
  flex: 1; background: transparent; border: none; outline: none;
  font-family: var(--font-body); font-size: var(--f-md);
  color: var(--white); padding: 12px 16px;
}
.lq-blog-search input::placeholder { color: rgba(255,255,255,.35); }
.lq-blog-search button {
  background: rgba(255,255,255,.08); border: none; border-left: 1px solid rgba(255,255,255,.1);
  padding: 0 16px; cursor: pointer; color: rgba(255,255,255,.5); transition: all var(--ease);
}
.lq-blog-search button svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; }
.lq-blog-search button:hover { background: rgba(255,255,255,.14); color: var(--white); }

/* Category filter */
.lq-cat-filter { background: var(--white); border-bottom: 1px solid var(--border); }
.lq-cat-filter-inner { display: flex; align-items: center; gap: 4px; overflow-x: auto; scrollbar-width: none; padding: 12px 0; }
.lq-cat-filter-inner::-webkit-scrollbar { display: none; }
.lq-cat-btn {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text2); background: transparent;
  border: 1.5px solid var(--border); border-radius: 100px;
  padding: 7px 14px; cursor: pointer; transition: all var(--ease);
}
.lq-cat-btn:hover { border-color: rgba(43,45,47,.25); color: var(--charcoal); }
.lq-cat-btn.active { border-color: var(--green); background: var(--green-mist); color: var(--green); }
.lq-cat-count { font-size: .65rem; opacity: .7; }

/* Featured post */
.lq-featured-section { background: var(--lgray); border-bottom: 1px solid var(--border); padding: var(--s5) 0; }
.lq-featured-card {
  display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--r-xl);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--sh-md); transition: box-shadow var(--ease);
  background: var(--white); text-decoration: none; color: inherit;
}
.lq-featured-card:hover { box-shadow: var(--sh-lg); }
.lq-fc-image {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  min-height: 280px; position: relative; overflow: hidden;
}
.lq-fc-image-inner { position: absolute; inset: 0; padding: var(--s4); display: flex; flex-direction: column; justify-content: space-between; }
.lq-fc-stat-card {
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-lg);
  padding: var(--s3); display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  max-width: 200px;
}
.lq-fc-stat-num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 900; letter-spacing: -0.06em; color: var(--white); line-height: 1; }
.lq-fc-stat-lbl { font-size: var(--f-sm); color: rgba(255,255,255,.7); line-height: 1.4; }
.lq-fc-read-time { font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.lq-fc-copy { padding: var(--s5); display: flex; flex-direction: column; }
.lq-fc-featured-tag { display: inline-block; font-family: var(--font-head); font-size: var(--f-xs); font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.lq-fc-cat { font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: var(--s2); }
.lq-fc-copy h2 { font-size: clamp(var(--f-xl), 2vw, var(--f-2xl)); font-weight: 900; letter-spacing: -0.035em; margin-bottom: var(--s2); line-height: 1.2; }
.lq-fc-excerpt { font-size: var(--f-md); color: var(--text2); line-height: 1.8; flex: 1; margin-bottom: var(--s4); }
.lq-fc-meta { display: flex; align-items: center; gap: var(--s3); flex-wrap: wrap; }
.lq-fc-author { display: flex; align-items: center; gap: 10px; }
.lq-author-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 10px; font-weight: 900; color: var(--white); flex-shrink: 0; }
.lq-fc-author-copy strong { display: block; font-family: var(--font-head); font-size: var(--f-xs); font-weight: 800; letter-spacing: -0.01em; }
.lq-fc-author-copy span { font-size: var(--f-xs); color: var(--muted); }
.lq-fc-date { font-size: var(--f-xs); color: var(--muted); margin-left: auto; }
.lq-fc-read-cta { font-family: var(--font-head); font-size: var(--f-xs); font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green); }

/* Post grid */
.lq-posts-section { padding: var(--s6) 0; }
.lq-posts-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--s4); }
.lq-posts-section-label { font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.lq-view-toggle { display: flex; gap: 2px; border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden; }
.lq-vt-btn { background: var(--white); border: none; padding: 7px 10px; cursor: pointer; color: var(--muted); transition: all var(--ease); }
.lq-vt-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; display: block; }
.lq-vt-btn.on  { background: var(--charcoal); color: var(--white); }
.lq-posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s4); }
.lq-post-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xs); transition: box-shadow var(--ease), transform var(--ease); }
.lq-post-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.lq-post-card.hidden { display: none; }
.lq-pc-image {
  height: 120px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 12px;
}
.lq-pc-image--green   { background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%); }
.lq-pc-image--blue    { background: linear-gradient(135deg, #0c3494 0%, var(--blue) 100%); }
.lq-pc-image--charcoal{ background: linear-gradient(135deg, #1a1c1e 0%, var(--charcoal) 100%); }
.lq-pc-image--teal    { background: linear-gradient(135deg, #0c4a4a 0%, #0d7878 100%); }
.lq-pc-image-label { font-family: var(--font-head); font-size: var(--f-xs); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.lq-pc-body { padding: var(--s3); }
.lq-pc-meta-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.lq-pc-cat { display: inline-flex; font-family: var(--font-head); font-size: .6rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 100px; padding: 3px 10px; }
.lq-pc-cat.pricing    { background: var(--green-mist); color: var(--green); }
.lq-pc-cat.lead-capture { background: rgba(21,94,239,.07); color: var(--blue); }
.lq-pc-cat.operations { background: rgba(43,45,47,.07); color: var(--charcoal); }
.lq-pc-cat.product    { background: rgba(247,144,9,.08); color: var(--orange); }
.lq-pc-cat.industry   { background: rgba(13,120,120,.08); color: #0d7878; }
.lq-pc-read-time { font-size: var(--f-xs); color: var(--muted); }
.lq-pc-title { font-size: var(--f-md); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 8px; line-height: 1.35; }
.lq-pc-excerpt { font-size: var(--f-sm); color: var(--text2); line-height: 1.65; margin-bottom: var(--s3); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.lq-pc-footer { display: flex; align-items: center; justify-content: space-between; padding-top: var(--s2); border-top: 1px solid var(--border-lt); }
.lq-pc-author-small { display: flex; align-items: center; gap: 8px; }
.lq-pa-av { width: 22px; height: 22px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 8px; font-weight: 900; color: var(--white); flex-shrink: 0; }
.lq-pc-author-small span { font-size: var(--f-xs); color: var(--muted); font-weight: 600; }
.lq-pc-date { font-size: var(--f-xs); color: var(--muted); }

/* List view */
.lq-posts-grid.list-view { grid-template-columns: 1fr; }
.lq-posts-grid.list-view .lq-post-card { display: flex; }
.lq-posts-grid.list-view .lq-pc-image  { width: 200px; height: auto; flex-shrink: 0; }
.lq-posts-grid.list-view .lq-pc-image-label { writing-mode: vertical-rl; }

/* Inline CTA */
.lq-inline-cta {
  background: var(--charcoal); border-radius: var(--r-xl);
  padding: var(--s4) var(--s5); display: flex; align-items: center;
  justify-content: space-between; gap: var(--s4);
}
.lq-icta-copy h3 { font-size: var(--f-xl); font-weight: 900; letter-spacing: -0.03em; color: var(--white); margin-bottom: 6px; }
.lq-icta-copy p  { font-size: var(--f-sm); color: rgba(255,255,255,.5); }
.lq-icta-btn {
  display: inline-flex; align-items: center; white-space: nowrap;
  font-family: var(--font-head); font-size: var(--f-sm); font-weight: 800;
  letter-spacing: 0.01em; color: var(--white);
  background: var(--orange); border-radius: var(--r-sm);
  padding: 12px 24px; box-shadow: 0 4px 16px rgba(247,144,9,.35);
  transition: all var(--ease);
}
.lq-icta-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* Load more */
.lq-load-more-wrap { text-align: center; margin-top: var(--s5); }
.lq-load-more-btn {
  font-family: var(--font-head); font-size: var(--f-sm); font-weight: 700;
  letter-spacing: 0.04em; color: var(--text2); background: var(--white);
  border: 1.5px solid var(--border); border-radius: 100px;
  padding: 12px 28px; cursor: pointer; transition: all var(--ease);
}
.lq-load-more-btn:hover { border-color: rgba(43,45,47,.25); color: var(--charcoal); }

/* Topics section */
.lq-topics-section { background: var(--lgray); border-top: 1px solid var(--border); padding: var(--s5) 0; }
.lq-topics-kicker { display: flex; align-items: center; gap: 12px; margin-bottom: var(--s4); }
.lq-topics-kicker::before { content: ''; width: 24px; height: 2px; background: var(--green); flex-shrink: 0; }
.lq-topics-kicker span { font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); }
.lq-topics-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: var(--s3); }
.lq-topic-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--s3); text-align: center; cursor: pointer; transition: all var(--ease);
}
.lq-topic-card:hover { border-color: rgba(43,45,47,.2); box-shadow: var(--sh-sm); transform: translateY(-1px); }
.lq-topic-icon  { font-size: 24px; margin-bottom: 8px; }
.lq-topic-name  { font-family: var(--font-head); font-size: var(--f-sm); font-weight: 800; letter-spacing: -0.01em; margin-bottom: 4px; }
.lq-topic-count { font-size: var(--f-xs); color: var(--muted); }

/* Newsletter */
.lq-newsletter-section { background: var(--white); border-top: 1px solid var(--border); padding: var(--s7) 0; text-align: center; }
.lq-nl-inner { max-width: 500px; margin: 0 auto; }
.lq-nl-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: var(--s2); }
.lq-nl-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--green); flex-shrink: 0; }
.lq-nl-inner h2 { font-size: clamp(var(--f-xl), 2.5vw, var(--f-2xl)); font-weight: 900; letter-spacing: -0.04em; margin-bottom: var(--s2); }
.lq-nl-inner p  { font-size: var(--f-md); color: var(--text2); line-height: 1.75; margin-bottom: var(--s4); }
.lq-nl-form { display: flex; gap: 0; border-radius: var(--r-md); overflow: hidden; border: 1.5px solid var(--border); box-shadow: var(--sh-xs); max-width: 420px; margin: 0 auto var(--s2); }
.lq-nl-input { flex: 1; font-family: var(--font-body); font-size: var(--f-md); border: none; outline: none; padding: 12px 16px; background: var(--white); }
.lq-nl-submit {
  font-family: var(--font-head); font-size: var(--f-sm); font-weight: 800;
  background: var(--green); color: var(--white); border: none; padding: 12px 20px; cursor: pointer; transition: background var(--ease);
}
.lq-nl-submit:hover { background: var(--green-light); }
.lq-nl-fine { font-size: var(--f-xs); color: var(--muted); }

/* ================================================
   ROADMAP PAGE
   ================================================ */

.lq-roadmap-hero { background: var(--charcoal); color: var(--white); padding: var(--s7) 0 var(--s5); position: relative; overflow: hidden; }
.lq-roadmap-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 62px, rgba(255,255,255,.018) 62px, rgba(255,255,255,.018) 63px),
    repeating-linear-gradient(90deg, transparent, transparent 62px, rgba(255,255,255,.018) 62px, rgba(255,255,255,.018) 63px);
  pointer-events: none;
}
.lq-roadmap-hero > * { position: relative; z-index: 1; }
.lq-roadmap-hero__layout { display: grid; grid-template-columns: 1fr auto; gap: var(--s6); align-items: center; }
.lq-roadmap-hero h1 { font-size: clamp(var(--f-2xl), 4vw, 3.2rem); font-weight: 900; letter-spacing: -0.04em; color: var(--white); margin-bottom: var(--s3); line-height: 1.07; }
.lq-roadmap-hero h1 em { font-style: normal; color: var(--green-light); }
.lq-roadmap-hero__sub { font-size: var(--f-lg); color: rgba(255,255,255,.52); line-height: 1.75; max-width: 540px; }
.lq-last-updated {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl); padding: var(--s4); text-align: right; flex-shrink: 0;
}
.lq-lu-label { font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 4px; }
.lq-lu-date  { font-family: var(--font-head); font-size: var(--f-xl); font-weight: 900; letter-spacing: -0.04em; color: var(--white); margin-bottom: 4px; }
.lq-lu-note  { font-size: var(--f-xs); color: rgba(255,255,255,.3); }

/* Filter bar */
.lq-filter-bar { background: var(--white); border-bottom: 1px solid var(--border); }
.lq-filter-inner { display: flex; align-items: center; gap: 4px; overflow-x: auto; scrollbar-width: none; padding: 12px 0; }
.lq-filter-inner::-webkit-scrollbar { display: none; }
.lq-filter-tab {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text2); background: transparent;
  border: 1.5px solid var(--border); border-radius: 100px;
  padding: 7px 14px; cursor: pointer; transition: all var(--ease);
}
.lq-filter-tab:hover { border-color: rgba(43,45,47,.25); color: var(--charcoal); }
.lq-filter-tab.active { border-color: var(--charcoal); background: var(--charcoal); color: var(--white); }
.lq-filter-tab.shipped.active    { border-color: var(--green); background: var(--green-mist); color: var(--green); }
.lq-filter-tab.building.active   { border-color: var(--blue); background: rgba(21,94,239,.07); color: var(--blue); }
.lq-filter-tab.planned.active    { border-color: var(--orange); background: rgba(247,144,9,.08); color: var(--orange); }
.lq-filter-tab.considering.active{ border-color: var(--muted); background: rgba(122,130,133,.08); color: var(--muted); }
.lq-tab-count { font-size: .65rem; opacity: .7; }

/* Roadmap layout */
.lq-roadmap-body { background: var(--lgray); padding: var(--s5) 0 var(--s7); }
.lq-roadmap-layout { display: grid; grid-template-columns: 1fr 300px; gap: var(--s5); align-items: start; }

/* Items section head */
.lq-items-section-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: var(--s3); margin-top: var(--s5);
}
.lq-items-section-head:first-child { margin-top: 0; }
.lq-ish-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.lq-ish-label { font-family: var(--font-head); font-size: var(--f-xs); font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--charcoal); }
.lq-ish-line { flex: 1; height: 1px; background: var(--border); }
.lq-status-building .lq-ish-dot  { background: var(--blue); }
.lq-status-planned .lq-ish-dot   { background: var(--orange); }
.lq-status-shipped .lq-ish-dot   { background: var(--green); }
.lq-status-considering .lq-ish-dot{ background: var(--muted); }

/* Item cards */
.lq-item-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-xs); margin-bottom: var(--s2);
  transition: box-shadow var(--ease);
}
.lq-item-card:hover { box-shadow: var(--sh-sm); }
.lq-item-card.hidden { display: none; }
.lq-item-card-body { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s4); padding: var(--s4); }
.lq-item-main { flex: 1; }
.lq-item-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: var(--s2); }
.lq-status-pill {
  display: inline-flex; font-family: var(--font-head); font-size: var(--f-xs); font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; border-radius: 100px; padding: 3px 10px;
}
.lq-sp-building   { background: rgba(21,94,239,.08);  color: var(--blue);    border: 1px solid rgba(21,94,239,.15); }
.lq-sp-planned    { background: rgba(247,144,9,.08);  color: var(--orange);  border: 1px solid rgba(247,144,9,.2); }
.lq-sp-shipped    { background: var(--green-mist);    color: var(--green);   border: 1px solid rgba(45,80,22,.15); }
.lq-sp-considering{ background: rgba(122,130,133,.08);color: var(--muted);   border: 1px solid rgba(122,130,133,.2); }
.lq-cat-pill { display: inline-flex; font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: var(--lgray); border: 1px solid var(--border); border-radius: 100px; padding: 3px 10px; color: var(--text2); }
.lq-ship-date { font-size: var(--f-xs); color: var(--muted); letter-spacing: 0.04em; }
.lq-item-main h3 { font-size: var(--f-lg); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 8px; }
.lq-item-main p  { font-size: var(--f-sm); color: var(--text2); line-height: 1.7; }
.lq-vote-block { display: flex; flex-direction: column; align-items: center; gap: 4px; flex-shrink: 0; }
.lq-vote-btn {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--lgray); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--ease);
}
.lq-vote-btn svg { width: 12px; height: 8px; stroke: var(--muted); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.lq-vote-btn:hover { border-color: var(--blue); background: rgba(21,94,239,.06); }
.lq-vote-btn:hover svg { stroke: var(--blue); }
.lq-vote-btn.voted { background: rgba(21,94,239,.1); border-color: var(--blue); }
.lq-vote-btn.voted svg { stroke: var(--blue); }
.lq-vote-count { font-family: var(--font-head); font-size: var(--f-sm); font-weight: 900; color: var(--charcoal); }
.lq-item-card-footer {
  display: flex; align-items: center; gap: var(--s3);
  padding: 12px var(--s4); border-top: 1px solid var(--border-lt);
  background: #fafcfa;
}
.lq-expand-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text2); background: none; border: none; cursor: pointer;
  transition: color var(--ease);
}
.lq-expand-btn svg { width: 12px; height: 8px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--ease); }
.lq-expand-btn:hover { color: var(--charcoal); }
.lq-expand-btn.open svg { transform: rotate(180deg); }
.lq-message-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--blue); background: none; border: none; cursor: pointer;
  transition: color var(--ease);
}
.lq-message-btn svg { width: 16px; height: 14px; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.lq-message-btn:hover { color: var(--blue-mid); }
.lq-shipped-label { font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green); }
.lq-item-detail {
  display: none; padding: var(--s4);
  border-top: 1px solid var(--border-lt); background: var(--lgray);
}
.lq-item-detail.open { display: block; }
.lq-detail-section { margin-bottom: var(--s3); }
.lq-detail-section:last-child { margin-bottom: 0; }
.lq-detail-label { font-family: var(--font-head); font-size: var(--f-xs); font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.lq-detail-section p { font-size: var(--f-sm); color: var(--text2); line-height: 1.7; }
.lq-detail-section ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.lq-detail-section ul li { font-size: var(--f-sm); color: var(--text2); padding-left: 16px; position: relative; line-height: 1.55; }
.lq-detail-section ul li::before { content: '→'; position: absolute; left: 0; color: var(--green); font-size: 10px; font-weight: 900; }

/* Sidebar */
.lq-sidebar { display: flex; flex-direction: column; gap: var(--s3); }
.lq-sidebar-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xs);
}
.lq-sidebar-head {
  padding: 14px var(--s3); border-bottom: 1px solid var(--border);
  font-family: var(--font-head); font-size: var(--f-xs); font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal);
}
.lq-stats-grid { display: grid; grid-template-columns: 1fr 1fr; }
.lq-stat-cell {
  padding: var(--s3); text-align: center;
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.lq-stat-cell:nth-child(2),.lq-stat-cell:nth-child(4) { border-right: none; }
.lq-stat-cell:nth-child(3),.lq-stat-cell:nth-child(4) { border-bottom: none; }
.lq-stat-num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; letter-spacing: -0.05em; color: var(--charcoal); }
.lq-stat-num--green { color: var(--green); }
.lq-stat-num--blue  { color: var(--blue); }
.lq-stat-label { font-size: var(--f-xs); color: var(--muted); margin-top: 2px; font-weight: 600; }
.lq-how-item { display: flex; align-items: flex-start; gap: var(--s2); padding: 14px var(--s3); border-bottom: 1px solid var(--border-lt); }
.lq-how-item:last-child { border-bottom: none; }
.lq-hi-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.lq-hi-copy strong { display: block; font-family: var(--font-head); font-size: var(--f-sm); font-weight: 800; margin-bottom: 3px; }
.lq-hi-copy span   { font-size: var(--f-sm); color: var(--text2); line-height: 1.55; }
.lq-changelog-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px var(--s3); border-bottom: 1px solid var(--border-lt); }
.lq-changelog-item:last-child { border-bottom: none; }
.lq-cl-date { font-family: var(--font-head); font-size: var(--f-xs); font-weight: 800; color: var(--muted); flex-shrink: 0; width: 40px; }
.lq-cl-copy strong { display: block; font-family: var(--font-head); font-size: var(--f-sm); font-weight: 800; margin-bottom: 3px; }
.lq-cl-copy span   { font-size: var(--f-xs); color: var(--text2); line-height: 1.55; }
.lq-cl-badge { display: inline-flex; font-size: .6rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 100px; padding: 2px 6px; margin-left: 5px; vertical-align: middle; }
.lq-cl-badge--new { background: rgba(21,94,239,.08); color: var(--blue); }
.lq-cl-badge--imp { background: var(--green-mist); color: var(--green); }
.lq-cl-badge--fix { background: rgba(247,144,9,.08); color: var(--orange); }
.lq-sidebar-cta {
  background: var(--green); border-radius: var(--r-xl);
  padding: var(--s4); text-align: center;
}
.lq-sidebar-cta h4 { font-size: var(--f-md); font-weight: 900; letter-spacing: -0.025em; color: var(--white); margin-bottom: 8px; }
.lq-sidebar-cta p  { font-size: var(--f-sm); color: rgba(255,255,255,.65); line-height: 1.65; margin-bottom: var(--s3); }
.lq-sidebar-cta-btn {
  width: 100%; font-family: var(--font-head); font-size: var(--f-sm); font-weight: 800;
  background: rgba(255,255,255,.15); color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3); border-radius: var(--r-md);
  padding: 11px; cursor: pointer; transition: all var(--ease);
}
.lq-sidebar-cta-btn:hover { background: rgba(255,255,255,.25); }

/* Modal */
.lq-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px); z-index: 9999;
  display: none; align-items: center; justify-content: center; padding: var(--s4);
}
.lq-modal-overlay.open { display: flex; }
.lq-modal {
  background: var(--white); border-radius: var(--r-2xl);
  width: 100%; max-width: 480px; box-shadow: var(--sh-lg);
  overflow: hidden;
}
.lq-modal-header { padding: var(--s4) var(--s5); border-bottom: 1px solid var(--border); }
.lq-modal-header h3 { font-size: var(--f-xl); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 4px; }
.lq-modal-feature-name { font-size: var(--f-sm); color: var(--muted); }
.lq-modal-close {
  position: absolute; top: var(--s3); right: var(--s3);
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--lgray); border: 1px solid var(--border);
  cursor: pointer; font-size: 18px; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--ease);
}
.lq-modal-close:hover { background: var(--charcoal); color: var(--white); }
.lq-modal-header { position: relative; }
.lq-modal-body { padding: var(--s4) var(--s5) var(--s5); }
.lq-modal-body label { display: block; font-family: var(--font-head); font-size: var(--f-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 6px; }
.lq-modal-body input[type=email],
.lq-modal-body textarea {
  width: 100%; font-family: var(--font-body); font-size: var(--f-md); color: var(--charcoal);
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-md);
  padding: 11px 14px; outline: none; transition: border-color var(--ease), box-shadow var(--ease);
  margin-bottom: var(--s3);
}
.lq-modal-body input:focus,
.lq-modal-body textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,80,22,.1); }
.lq-modal-body textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.lq-modal-body ::placeholder { color: var(--muted); }
.lq-modal-submit {
  width: 100%; padding: 13px; font-family: var(--font-head); font-weight: 800;
  font-size: var(--f-md); border: none; border-radius: var(--r-md); cursor: pointer;
  background: var(--green); color: var(--white);
  box-shadow: 0 4px 16px rgba(45,80,22,.3); transition: all var(--ease);
}
.lq-modal-submit:hover { background: var(--green-light); transform: translateY(-1px); }
.lq-modal-success { display: none; padding: var(--s6) var(--s5); text-align: center; flex-direction: column; align-items: center; gap: var(--s2); }
.lq-modal-success.show { display: flex; }

/* ================================================
   RESPONSIVE — CONTACT + FEATURES + BLOG + ROADMAP
   ================================================ */
@media (max-width: 960px) {
  .lq-contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .lq-feature-layout { grid-template-columns: 1fr; }
  .lq-feature-layout--flip .lq-feature-copy { order: unset; }
  .lq-feature-layout--flip .lq-feature-frame { order: unset; }
  .lq-config-layout { grid-template-columns: 1fr; }
  .lq-int-grid { grid-template-columns: repeat(2,1fr); }
  .lq-roadmap-layout { grid-template-columns: 1fr; }
  .lq-roadmap-hero__layout { grid-template-columns: 1fr; }
  .lq-last-updated { display: none; }
  .lq-blog-hero-inner { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .lq-audience-grid { grid-template-columns: 1fr; }
  .lq-field-row { grid-template-columns: 1fr; }
  .lq-featured-card { grid-template-columns: 1fr; }
  .lq-fc-image { min-height: 180px; }
  .lq-posts-grid { grid-template-columns: 1fr; }
  .lq-topics-grid { grid-template-columns: repeat(3,1fr); }
  .lq-int-grid { grid-template-columns: 1fr 1fr; }
  .lq-inline-cta { flex-direction: column; gap: var(--s3); }
}
@media (max-width: 550px) {
  .lq-topics-grid { grid-template-columns: repeat(2,1fr); }
  .lq-int-grid { grid-template-columns: 1fr; }
}
