/* ==========================================================================
   HighGrow Technologies — Design System
   Signature: "Live Audit Strip" — real report-style scorecards as proof,
   not generic marketing claims. Ties directly to the audit PDFs HighGrow
   actually delivers to clients.
   ========================================================================== */

:root {
  /* Color tokens */
  --teal-900: #0A0D10;
  --teal-800: #14181C;
  --teal-700: #21262B;
  --teal-600: #3A4046;
  --gold-500: #FF5A1F;
  --gold-400: #FF7A47;
  --cream-50: #FFFFFF;
  --cream-100: #F6F6F7;
  --line-200: #E6E7E9;
  --ink-900: #14181C;
  --ink-600: #52585F;
  --ink-400: #8B9198;
  --success-600: #1E7A4C;
  --success-100: #E2F1E7;
  --accent-blue: #2563EB;
  --accent-purple: #7C3AED;
  --accent-green: #059669;
  --accent-pink: #DB2777;
  --accent-amber: #D97706;
  --accent-cyan: #0891B2;

  --font-display: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-card: 0 1px 2px rgba(11,46,39,0.04), 0 8px 24px -12px rgba(11,46,39,0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; color: var(--teal-900); font-weight: 700; }
p { margin: 0 0 1rem 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--dark { background: var(--teal-900); color: var(--cream-50); }
.section--dark h2, .section--dark h3 { color: #fff; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 17px; letter-spacing: 0.01em;
  text-transform: none; color: var(--gold-500); font-weight: 700;
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 22px; height: 3px; background: var(--gold-500); display: inline-block; border-radius: 2px; }
.section--dark .eyebrow, .hero .eyebrow, .loc-hero .eyebrow, .closing-wrap .eyebrow { color: var(--gold-400); }

.h1 { font-size: clamp(42px, 6vw, 72px); line-height: 1.02; letter-spacing: -0.02em; }
.h1 em { font-style: normal; font-weight: 700; color: var(--gold-500); }
.h2 { font-size: clamp(30px, 3.8vw, 46px); line-height: 1.1; letter-spacing: -0.015em; }
.h3 { font-size: 22px; line-height: 1.3; }
.lede { font-size: 19px; color: var(--ink-600); max-width: 620px; line-height: 1.65; }
.section--dark .lede { color: #C9CCD0; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-200);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--teal-900); letter-spacing: -0.01em; }
.logo .mark { width: 42px; height: 42px; border-radius: 50%; background: var(--teal-800); display: flex; align-items: center; justify-content: center; color: var(--gold-500); font-family: var(--font-mono); font-weight: 700; font-size: 13px; overflow: hidden; }
.logo .mark img { width: 100%; height: 100%; object-fit: cover; }
.nav-links { display: flex; align-items: center; gap: 32px; font-size: 14.5px; font-weight: 500; }
.nav-links a { color: var(--ink-600); transition: color .15s; }
.nav-links a:hover { color: var(--teal-800); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.phone-link { font-family: var(--font-mono); font-size: 14px; color: var(--teal-800); font-weight: 600; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: var(--radius-sm); font-weight: 600; font-size: 15px;
  cursor: pointer; border: 1px solid transparent; transition: transform .15s, background .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold-500); color: #ffffff; }
.btn-primary:hover { background: var(--gold-400); box-shadow: 0 8px 20px -8px rgba(255,90,31,0.5); }
.btn-outline { background: transparent; border-color: var(--teal-800); color: var(--teal-800); }
.section--dark .btn-outline, .hero .btn-outline, .loc-hero .btn-outline, .closing-wrap .btn-outline { border-color: rgba(255,255,255,0.45); color: #fff; }
.btn-outline:hover { background: var(--teal-800); color: #fff; }
.section--dark .btn-outline:hover, .hero .btn-outline:hover, .loc-hero .btn-outline:hover, .closing-wrap .btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ---------------- Hero ---------------- */
@keyframes hgFadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hgWordIn { from { opacity: 0; transform: translateY(0.4em); } to { opacity: 1; transform: translateY(0); } }
.hero-home .eyebrow { animation: hgFadeUp .6s ease both; }
.hero-home .lede { animation: hgFadeUp .7s ease .6s both; }
.hero-home .hero-cta-row { animation: hgFadeUp .7s ease .72s both; }
.hero-home .audit-card { animation: hgFadeUp .8s ease .3s both; }
.hero-headline .word { display: inline-block; opacity: 0; transform: translateY(0.4em); animation: hgWordIn .55s ease forwards; }

.hero { background: linear-gradient(160deg, var(--teal-800) 0%, var(--teal-900) 100%); color: var(--cream-50); padding: 96px 0 0 0; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; padding-bottom: 72px; }
.hero h1 { color: #fff; }
.hero .lede { margin: 22px 0 34px 0; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Signature: Live Audit Strip */
.audit-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,90,31,0.3);
  border-radius: var(--radius-lg); padding: 22px;
}
.audit-card .audit-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: #4ADE80; margin-bottom: 16px; display: flex; align-items: center; justify-content: space-between; }
.audit-card .audit-title .dot { width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; display: inline-block; margin-right: 6px; box-shadow: 0 0 0 3px rgba(74,222,128,0.2); }
.audit-row { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-bottom: 1px dashed rgba(255,255,255,0.12); }
.audit-row:last-child { border-bottom: none; }
.audit-row .label { font-size: 13.5px; color: #C9CCD0; }
.audit-row .value { font-family: var(--font-mono); font-weight: 700; font-size: 15px; }
.audit-row .value.grade-a { color: #4ADE80; }
.audit-row .value.grade-gold { color: var(--gold-500); }

.proof-strip { background: #000000; border-top: 1px solid rgba(255,90,31,0.2); }
.proof-strip .wrap { display: flex; justify-content: space-between; padding: 34px 24px; flex-wrap: wrap; gap: 20px; }
.proof-item { text-align: center; flex: 1; min-width: 140px; border-right: 1px solid rgba(255,255,255,0.08); }
.proof-item:last-child { border-right: none; }
.proof-item .num { font-family: var(--font-mono); font-size: 34px; font-weight: 700; color: var(--gold-500); letter-spacing: -0.01em; }
.proof-item .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: #9CA3AB; margin-top: 6px; }

/* ---------------- Service cards ---------------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 44px; }
@media (max-width: 980px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } .hero .wrap { grid-template-columns: 1fr; } }

.svc-card {
  background: #fff; border: 1px solid var(--line-200); border-top: 4px solid var(--accent-blue); border-radius: var(--radius-lg);
  padding: 28px 24px; display: flex; flex-direction: column; box-shadow: var(--shadow-card);
  position: relative;
}
.svc-card:nth-child(2) { border-top-color: var(--accent-purple); }
.svc-card:nth-child(3) { border-top-color: var(--accent-green); }
.svc-card:nth-child(4) { border-top-color: var(--gold-500); }


.svc-card .price { font-family: var(--font-mono); font-size: 30px; font-weight: 700; color: var(--teal-800); margin: 10px 0 4px 0; }
.svc-card .price span { font-size: 14px; color: var(--ink-400); font-weight: 500; }
.svc-card h3 { font-size: 19px; margin-bottom: 6px; }
.svc-card .tag { font-size: 13px; color: var(--ink-600); margin-bottom: 18px; }
.svc-card ul { list-style: none; margin: 0 0 22px 0; padding: 0; flex: 1; }
.svc-card li { font-size: 14px; color: var(--ink-600); padding: 7px 0; padding-left: 22px; position: relative; }
.svc-card li::before { content: '✓'; position: absolute; left: 0; color: var(--success-600); font-weight: 700; }

/* ---------------- Process steps ---------------- */
.steps { counter-reset: step; margin-top: 56px; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
@media (max-width: 980px) { .steps { grid-template-columns: 1fr; gap: 36px; } .step::after { display: none !important; } }
.step { position: relative; padding: 0 24px 0 0; }
.step:first-child { padding-left: 0; }
.step::after { content: ""; position: absolute; top: 28px; right: -4px; width: 8px; height: 8px; border-top: 2px solid rgba(255,90,31,0.4); border-right: 2px solid rgba(255,90,31,0.4); transform: rotate(45deg); }
.step:last-child::after { display: none; }
.step .step-num {
  font-family: var(--font-display); font-size: 44px; color: var(--gold-500); font-weight: 700;
  margin-bottom: 18px; line-height: 1; letter-spacing: -0.02em;
}
.step .step-num .step-label { display: block; font-family: var(--font-mono); font-size: 11px; color: #9CA3AB; letter-spacing: 0.1em; font-weight: 600; margin-top: 8px; text-transform: uppercase; }
.step h4 { font-size: 19px; margin-bottom: 10px; color: var(--ink-900); font-weight: 700; }
.step p { font-size: 14.5px; color: var(--ink-600); margin: 0; line-height: 1.65; }
.section--dark .step h4 { color: #fff; }
.section--dark .step p { color: #C9CCD0; }
.section--dark .step .step-num .step-label { color: #9CA3AB; }

/* ---------------- Case study cards ---------------- */
.case-card { background: #fff; border: 1px solid var(--line-200); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-card); }
.case-card .case-meta { font-size: 12.5px; color: var(--ink-400); margin-bottom: 10px; font-family: var(--font-mono); }
.case-card h3 { font-size: 18px; margin-bottom: 14px; }
.case-stats { display: flex; gap: 18px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line-200); }
.case-stat .num { font-family: var(--font-mono); font-weight: 700; color: var(--teal-800); font-size: 20px; }
.case-stat .lbl { font-size: 11px; color: var(--ink-400); text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------------- Location grid / chips ---------------- */
.city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 36px; }
@media (max-width: 980px) { .city-grid { grid-template-columns: repeat(2, 1fr); } }
.city-chip { display: block; background: #fff; border: 1px solid var(--line-200); border-radius: var(--radius-md); padding: 14px 16px; font-size: 14.5px; font-weight: 600; color: var(--teal-800); transition: border-color .15s, transform .15s; }
.city-chip:hover { border-color: var(--gold-500); transform: translateY(-2px); }
.city-chip .state { display: block; font-size: 11.5px; color: var(--ink-400); font-weight: 500; margin-top: 2px; }

/* ---------------- FAQ ---------------- */
.faq-item { border-bottom: 1px solid var(--line-200); padding: 22px 0; }
.faq-item h4 { font-size: 16px; margin-bottom: 8px; color: var(--teal-900); }
.faq-item p { font-size: 14.5px; color: var(--ink-600); margin: 0; }

/* ---------------- CTA band ---------------- */
.cta-band { background: linear-gradient(160deg, var(--teal-800) 0%, var(--teal-900) 100%); color: #fff; border-radius: var(--radius-lg); padding: 56px; text-align: center; margin: 0 24px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #C9CCD0; max-width: 480px; margin: 14px auto 30px auto; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--teal-900); color: #C9CCD0; padding: 64px 0 28px 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h5 { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold-500); margin-bottom: 16px; }
.footer-grid a { display: block; font-size: 14px; color: #A6ACB3; padding: 5px 0; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; font-size: 12.5px; color: #6B7178; flex-wrap: wrap; gap: 10px; }

/* ---------------- Breadcrumb ---------------- */
.breadcrumb { font-size: 13px; color: var(--ink-400); padding: 18px 0; }
.breadcrumb a { color: var(--ink-600); }
.breadcrumb a:hover { color: var(--teal-800); }

/* ---------------- Location page hero variant ---------------- */
.loc-hero { background: linear-gradient(160deg, var(--teal-800) 0%, var(--teal-900) 100%); color: #fff; padding: 64px 0; }
.loc-hero h1 { color: #fff; }
.loc-badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.loc-badge { font-family: var(--font-mono); font-size: 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,90,31,0.32); color: var(--gold-500); padding: 6px 12px; border-radius: 20px; }
/* ---------------- Mega menu ---------------- */
.nav-item { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-item > a .caret { font-size: 10px; transition: transform .15s; }
.nav-item:hover > a .caret { transform: rotate(180deg); }
.mega-panel {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--line-200); border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 22px 26px; z-index: 60;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .12s ease, visibility .12s ease;
  margin-top: 0;
}
.nav-item::after {
  content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: 100%; min-width: 200px; height: 16px; background: transparent;
}
.nav-item:hover .mega-panel, .nav-item:focus-within .mega-panel { opacity: 1; visibility: visible; pointer-events: auto; }
.mega-panel.mega-services { width: 560px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }

/* Industries dropdown: icon rows, 2 columns, All Businesses pinned at bottom */
.mega-panel.mega-industries { width: 860px; max-height: 82vh; overflow-y: auto; }
.mega-ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px 18px; }
@media (max-width: 1300px) { .mega-ind-grid { grid-template-columns: repeat(3, 1fr); } }
.mega-ind-row { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: var(--radius-sm); font-size: 13px; color: var(--ink-600); }
.mega-ind-row:hover { background: var(--cream-100); color: var(--teal-800); }
.mega-ind-icon { width: 26px; height: 26px; min-width: 26px; border-radius: 7px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 11.5px; font-weight: 700; }
.mega-all-biz { grid-column: 1 / -1; margin-top: 10px; padding-top: 14px; border-top: 1px solid var(--line-200); font-weight: 700; color: var(--gold-500); }
.mega-all-biz:hover { color: var(--gold-400); background: none; }

/* Locations dropdown: state list with nested city flyout on hover */
.mega-panel.mega-locations { width: 260px; left: 0; transform: none; padding: 10px; overflow: visible; }
.state-row { position: relative; }
.state-row-link { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 12px; border-radius: var(--radius-sm); font-size: 13.5px; font-weight: 600; color: var(--ink-900); }
.state-row-link:hover { background: var(--cream-100); }
.state-arrow { color: var(--ink-400); font-size: 15px; }
.state-flyout {
  position: absolute; top: 0; left: 100%; margin-left: 0;
  background: #fff; border: 1px solid var(--line-200); border-radius: var(--radius-md); box-shadow: var(--shadow-card);
  padding: 14px 16px; width: 260px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px 14px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .12s ease, visibility .12s ease;
}
.state-row:hover .state-flyout { opacity: 1; visibility: visible; pointer-events: auto; }
.state-row.flip-up .state-flyout { top: auto; bottom: 0; }
.state-flyout a { display: block; font-size: 12.5px; color: var(--ink-600); padding: 5px 4px; border-radius: 6px; }
.state-flyout a:hover { color: var(--teal-800); background: var(--cream-100); }

.mega-svc-item { display: block; padding: 10px 12px; border-radius: var(--radius-sm); }
.mega-svc-item:hover { background: var(--cream-100); }
.mega-svc-item .n { font-size: 13.5px; font-weight: 600; color: var(--teal-900); }
.mega-svc-item .p { font-family: var(--font-mono); font-size: 12px; color: var(--gold-500); font-weight: 700; margin-top: 2px; }
@media (max-width: 1100px) {
  .mega-panel.mega-industries { width: 92vw; left: 50%; transform: translateX(-50%); }
  .mega-panel.mega-locations { width: 92vw; left: 50%; transform: translateX(-50%); }
  .state-flyout { position: static; opacity: 1; visibility: visible; pointer-events: auto; box-shadow: none; border: none; padding: 4px 0 4px 14px; width: auto; }
}

/* ---------------- Lead capture forms ---------------- */
.lead-form { text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 14px; display: flex; flex-direction: column; }
.form-field label { font-size: 12.5px; color: #C9CCD0; margin-bottom: 6px; font-weight: 600; }
.form-field input, .form-field select, .form-field textarea {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,90,31,0.3); border-radius: var(--radius-sm);
  padding: 11px 12px; color: #fff; font-family: var(--font-body); font-size: 14px;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: #6B7178; }
.form-field select option { color: #000; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 2px solid var(--gold-500); border-color: var(--gold-500); }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* ---------------- Case studies v2 ---------------- */
.case-card-v2 {
  background: #fff; border-radius: 16px;
  padding: 0; box-shadow: var(--shadow-card); overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.case-card-v2:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -12px rgba(20,24,28,0.22); }
.case-card-v2 .case-head { padding: 22px 24px 20px 24px; color: #fff; position: relative; }
.case-card-v2 .case-head::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.08); }
.case-card-v2 .case-head > * { position: relative; z-index: 1; }
.case-card-v2 .case-industry {
  display: inline-block; font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 11px; border-radius: 20px; margin-bottom: 12px;
  background: rgba(255,255,255,0.22); color: #fff;
}
.case-card-v2 h3 { font-size: 19px; margin-bottom: 6px; color: #fff; line-height: 1.3; }
.case-card-v2 .case-loc { font-size: 12px; color: rgba(255,255,255,0.85); font-weight: 500; }
.case-card-v2 .case-body { padding: 22px 24px 24px 24px; }
.case-card-v2 .case-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 18px; }
.case-card-v2 .case-stat-box { text-align: center; background: var(--cream-100); border-radius: 10px; padding: 14px 4px; }
.case-card-v2 .case-stat-box .n { font-family: var(--font-display); font-size: 24px; font-weight: 800; }
.case-card-v2 .case-stat-box .l { font-size: 9.5px; color: var(--ink-400); text-transform: uppercase; letter-spacing: 0.03em; margin-top: 4px; font-weight: 600; }
.case-card-v2 p.case-desc { font-size: 13.5px; color: var(--ink-600); line-height: 1.65; margin: 0; }

/* ---------------- Colorful industry cards ---------------- */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 36px; }
@media (max-width: 980px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
.industry-card {
  display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line-200);
  border-radius: 12px; padding: 16px 14px; transition: transform .15s, box-shadow .15s;
}
.industry-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.industry-card .ic { width: 38px; height: 38px; min-width: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: #fff; }
.industry-card .name { font-size: 13.5px; font-weight: 600; color: var(--ink-900); }
.industry-card.all-businesses { border: 2px dashed var(--gold-500); background: #FFF7F3; }
.industry-card.all-businesses .ic { background: var(--gold-500); }
.industry-card.all-businesses .name { color: var(--gold-500); font-weight: 700; }

/* ---------------- Colorful location chips ---------------- */
.location-grid-color { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 36px; }
@media (max-width: 980px) { .location-grid-color { grid-template-columns: repeat(2, 1fr); } }
.location-card {
  background: #fff; border: 1px solid var(--line-200); border-top: 4px solid var(--accent-blue);
  border-radius: 12px; padding: 16px 16px; transition: transform .15s, box-shadow .15s;
}
.location-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.location-card .lc-city { font-size: 15px; font-weight: 700; color: var(--ink-900); }
.location-card .lc-state { font-size: 12px; color: var(--ink-400); margin-top: 2px; }

/* ---------------- Contact / support badges ---------------- */
.support-badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.support-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; padding: 7px 13px; border-radius: 20px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,90,31,0.32); color: #fff; }
.reply-badge { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-600); display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.reply-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; display: inline-block; }

/* ---------------- Contact icons (footer) ---------------- */
.contact-block { margin-top: 16px; }
.contact-line { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.contact-icon { width: 30px; height: 30px; min-width: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; }
.contact-value { font-size: 16px; font-weight: 700; color: #fff; }
.app-icon-row { display: flex; gap: 8px; margin: 10px 0 4px 44px; }
.app-icon { width: 30px; height: 30px; border-radius: 9px; display: flex; align-items: center; justify-content: center; transition: transform .15s; }
.app-icon:hover { transform: translateY(-2px); }

/* ---------------- Review cards ---------------- */
.review-card { background: #fff; border: 1px solid var(--line-200); border-radius: 14px; padding: 24px 22px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.review-stars { font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.review-quote { font-size: 13.5px; color: var(--ink-600); line-height: 1.7; margin: 0 0 18px 0; flex: 1; }
.review-name { font-size: 14.5px; font-weight: 700; color: var(--ink-900); }
.review-tag { font-size: 12px; font-weight: 600; margin-top: 2px; }
