/* =========================================================
   Houston Trade Pros — Premium Directory Design System
   css/redesign.css
   Loaded AFTER style.css. Full premium overhaul.
   ========================================================= */

/* ── Font Import ─────────────────────────────────────── */
@import url('https://cdn.jsdelivr.net/npm/@fontsource/open-sauce-sans@5.1.0/300.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/open-sauce-sans@5.1.0/400.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/open-sauce-sans@5.1.0/500.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/open-sauce-sans@5.1.0/600.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/open-sauce-sans@5.1.0/700.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/open-sauce-sans@5.1.0/800.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/open-sauce-sans@5.1.0/900.css');

/* ── Design Tokens ──────────────────────────────────── */
:root {
  --font-display: 'Open Sauce Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Open Sauce Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Brand palette */
  --brand-50: #fff7ed;
  --brand-100: #ffedd5;
  --brand-200: #fed7aa;
  --brand-300: #fdba74;
  --brand-400: #fb923c;
  --brand-500: #f97316;
  --brand-600: #ea580c;
  --brand-700: #c2410c;

  /* Neutrals */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;

  /* Surfaces */
  --surface-primary: #ffffff;
  --surface-elevated: #ffffff;
  --surface-sunken: var(--slate-50);
  --navy-deep: #070d1a;

  /* Spacing */
  --section-pad: 96px;
  --section-pad-mobile: 64px;

  /* Cards */
  --card-radius: 16px;
  --card-border: var(--slate-200);
  --card-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.02);
  --card-shadow-hover: 0 8px 30px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);

  /* Misc */
  --radius-pill: 9999px;
  --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Base ────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  background: var(--surface-primary);
  color: var(--slate-800);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--slate-900);
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.03em;
  color: var(--slate-900);
}
.section-subtitle {
  font-family: var(--font-body);
  color: var(--slate-500);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 12px;
  transition: all var(--transition-base);
  letter-spacing: -0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 2px 8px rgba(249,115,22,0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
  box-shadow: 0 6px 24px rgba(249,115,22,0.35);
  transform: translateY(-1px);
}
.form-input, .form-select, .form-textarea {
  font-family: var(--font-body);
  border-radius: 12px;
  border: 1.5px solid var(--slate-200);
  transition: all 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(249,115,22,0.08);
}
.badge {
  font-family: var(--font-display);
  border-radius: 8px;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
.site-nav {
  background: linear-gradient(180deg, #0a1628 0%, #0d1a2d 100%);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-inner { height: 72px; }
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.nav-logo .logo-icon {
  display: none;
}
.nav-logo .logo-svg {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
}
.nav-btn-outline {
  font-family: var(--font-display);
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.15);
}
.nav-btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.3);
}
.nav-btn-cta {
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  border-radius: 10px;
  padding: 9px 20px;
  font-weight: 700;
}
.nav-btn-cta:hover {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
  box-shadow: 0 4px 14px rgba(249,115,22,0.3);
}
.nav-dropdown {
  border-radius: 14px;
  border: 1px solid var(--slate-200);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.nav-item:hover .nav-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
/* Mega menu */
.nav-mega {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 680px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--slate-200);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 4px 16px rgba(0,0,0,0.05);
  padding: 20px 24px 12px;
  z-index: 999;
}
.nav-item:hover .nav-mega { display: block; }
.nav-mega::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.nav-mega-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate-700) !important;
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
}
.nav-mega-grid a:hover {
  background: var(--slate-50);
  color: var(--slate-900) !important;
}
.nav-mega-grid a svg {
  flex-shrink: 0;
  color: var(--slate-400);
  transition: color 0.12s;
}
.nav-mega-grid a:hover svg {
  color: var(--brand-500);
}
.nav-mega-footer {
  border-top: 1px solid var(--slate-100);
  margin-top: 8px;
  padding: 10px 0 4px;
  text-align: center;
}
.nav-dropdown-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600 !important;
  font-size: 0.88rem;
  color: var(--brand-500) !important;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.12s;
}
.nav-dropdown-all:hover {
  color: var(--brand-600) !important;
  background: var(--brand-50) !important;
}
.nav-dropdown-divider {
  height: 1px;
  background: var(--slate-100);
  margin: 4px 8px;
}
@media (max-width: 1024px) {
  .nav-mega { width: 560px; }
  .nav-mega-grid { grid-template-columns: repeat(2, 1fr); }
}
.nav-drawer {
  background: linear-gradient(180deg, #0a1628, #0d1a2d);
  padding-top: 90px;
}
.nav-drawer a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

/* ══════════════════════════════════════════════════════════
   HERO — Premium with particles + gradient text
   ══════════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(165deg, #0a1628 0%, #0f1d35 40%, #162544 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(249,115,22,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 40%, black 30%, transparent 75%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 700px; height: 500px;
  top: -150px; right: -200px;
  background: radial-gradient(ellipse, rgba(249,115,22,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 20px;
  color: #fff;
}
.hero-subtitle {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 540px;
}

/* Hero search — glassmorphic */
.hero-search {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  max-width: 680px;
  margin: 0 auto 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-search input {
  background: transparent;
  color: #ffffff;
  font-family: var(--font-body);
  padding: 18px 22px;
}
.hero-search input::placeholder { color: rgba(255,255,255,0.3); }
.hero-search input:focus { outline: none; }
.hero-search select {
  background: rgba(255,255,255,0.04);
  border-left: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  padding: 18px 16px;
}
.hero-search select option { color: var(--slate-800); background: #fff; }
.hero-search .btn {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  border-radius: 0;
  padding: 18px 36px;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
}
.hero-search .btn:hover {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
}

.trust-bar { gap: 36px; }
.trust-item {
  font-family: var(--font-display);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 600;
}
.trust-item svg { color: var(--brand-500); stroke: var(--brand-500); }

@media (max-width: 600px) {
  .hero { padding: 72px 0 56px; }
  .hero-search { flex-direction: column; border-radius: 14px; }
  .hero-search input { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hero-search select { border-left: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hero-search .btn { border-radius: 0 0 14px 14px; }
}

/* ══════════════════════════════════════════════════════════
   ANIMATED GRADIENT TEXT
   ══════════════════════════════════════════════════════════ */
.gradient-text-animated {
  background: linear-gradient(90deg, var(--brand-500), #fbbf24, var(--brand-500), var(--brand-400));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ══════════════════════════════════════════════════════════
   MARQUEE — Infinite scroll strip
   ══════════════════════════════════════════════════════════ */
.marquee-section {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #0f1d35 0%, var(--slate-50) 100%);
}
.marquee-track {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  overflow: hidden;
}
.marquee-track:hover .marquee-scroll {
  animation-play-state: paused;
}
.marquee-scroll {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  animation: marquee-flow 35s linear infinite;
}
@keyframes marquee-flow {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
.marquee-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s;
  text-decoration: none;
}
.marquee-chip:hover {
  background: rgba(249,115,22,0.12);
  border-color: rgba(249,115,22,0.3);
  color: var(--brand-400);
}
.marquee-chip svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ══════════════════════════════════════════════════════════
   CATEGORY GRID — Premium cards with spotlight hover
   ══════════════════════════════════════════════════════════ */
.categories-section {
  padding: var(--section-pad) 0;
  background: var(--surface-sunken);
}
.category-card {
  background: var(--surface-primary);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  padding: 32px 22px;
  box-shadow: var(--card-shadow);
  transition: all var(--transition-base);
  text-decoration: none;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(249,115,22,0.25);
}
.category-card .cat-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--brand-50), var(--brand-100));
  border-radius: 14px;
  border: 1px solid rgba(249,115,22,0.08);
}
.category-card h3 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--slate-900);
}
.category-card .cat-count {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--slate-400);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   FEATURED LISTINGS
   ══════════════════════════════════════════════════════════ */
.featured-section {
  padding: var(--section-pad) 0;
  background: var(--surface-primary);
}
.featured-card {
  background: var(--surface-primary);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  padding: 28px;
  box-shadow: var(--card-shadow);
  transition: all var(--transition-base);
}
.featured-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--slate-300);
}
.featured-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--slate-900);
}
.featured-card .fc-phone {
  font-family: var(--font-body);
}

/* ══════════════════════════════════════════════════════════
   HOW IT WORKS — Step cards with spotlight
   ══════════════════════════════════════════════════════════ */
.how-section {
  padding: var(--section-pad) 0;
  background: var(--surface-sunken);
}
.step-card {
  padding: 40px 28px;
  background: var(--surface-primary);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  transition: all var(--transition-base);
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}
.step-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(249,115,22,0.3);
}
.step-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--slate-900);
}
.step-card p {
  font-family: var(--font-body);
  color: var(--slate-500);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   STATS — Dark section with animated number tickers
   ══════════════════════════════════════════════════════════ */
.stats-section {
  padding: 72px 0;
  background: linear-gradient(165deg, #0a1628 0%, #0f1d35 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(249,115,22,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand-500), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   CTA BANNER — With light rays effect
   ══════════════════════════════════════════════════════════ */
.cta-section {
  padding: var(--section-pad) 0;
}
.cta-banner {
  background: linear-gradient(135deg, #0a1628 0%, #162544 100%);
  border-radius: 20px;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(249,115,22,0.08);
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(249,115,22,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 60% 70% at 60% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 60% 50%, black 20%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2, .cta-banner p, .cta-buttons {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
}
.cta-banner p {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}
.cta-buttons { margin-top: 32px; }
.cta-buttons .btn-primary {
  padding: 16px 36px;
  border-radius: 14px;
  font-size: 1rem;
}
.cta-buttons .btn-secondary {
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  padding: 16px 36px;
  border-radius: 14px;
}
.cta-buttons .btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

/* ══════════════════════════════════════════════════════════
   FOOTER — With retro grid background
   ══════════════════════════════════════════════════════════ */
.site-footer {
  background: linear-gradient(180deg, #060e1a 0%, #040a14 100%);
  padding: 56px 0 32px;
  border-top: 1px solid rgba(249,115,22,0.06);
  position: relative;
  overflow: hidden;
}
.footer-inner {
  margin-bottom: 36px;
}
.footer-grid-4 {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-brand .nav-logo {
  font-family: var(--font-display);
}
.footer-tagline {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  margin-top: 12px;
  line-height: 1.5;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin: 0 0 4px;
}
.footer-col a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--brand-400); }
.footer-col-connect .footer-contact-email,
.footer-col-connect .footer-contact-phone {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.footer-col-connect .footer-contact-email a {
  color: rgba(255,255,255,0.45);
}
.footer-col-connect .footer-social {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
}
.footer-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--brand-500); }
.footer-bottom {
  font-family: var(--font-body);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .footer-grid-4 {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 480px) {
  .footer-grid-4 {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.site-footer .footer-inner,
.site-footer .footer-bottom,
.site-footer .container {
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════
   RETRO GRID — Footer background
   ══════════════════════════════════════════════════════════ */
.retro-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  perspective: 300px;
  overflow: hidden;
}
.retro-grid::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotateX(55deg);
  width: 200%;
  height: 150%;
  background-image:
    linear-gradient(to right, rgba(249,115,22,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(249,115,22,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
  animation: retro-grid-scroll 20s linear infinite;
}
@keyframes retro-grid-scroll {
  from { background-position: 0 0; }
  to   { background-position: 0 60px; }
}

/* ══════════════════════════════════════════════════════════
   BUSINESS PROFILE PAGE
   ══════════════════════════════════════════════════════════ */
.business-page {
  padding: 36px 0 80px;
  background: var(--surface-sunken);
}
.breadcrumb { font-family: var(--font-body); }
.biz-header h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.biz-info-item {
  background: var(--surface-primary);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 16px;
  transition: box-shadow 0.2s;
}
.biz-info-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.biz-info-item .info-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--brand-50), var(--brand-100));
  border-radius: 12px;
}
.info-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--slate-400);
}
.info-value {
  font-family: var(--font-body);
  font-weight: 500;
}
.biz-description h2 { font-family: var(--font-display); }
.biz-description p { font-family: var(--font-body); line-height: 1.75; }
.biz-contact-form {
  background: var(--surface-primary);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--card-shadow);
}
.biz-contact-form h3 {
  font-family: var(--font-display);
  font-weight: 700;
}
.biz-claim-banner {
  border-radius: 16px;
  border: 1.5px solid var(--brand-200);
}

/* ══════════════════════════════════════════════════════════
   CLAIM PAGE
   ══════════════════════════════════════════════════════════ */
.claim-page {
  padding: 56px 0 80px;
  background: var(--surface-sunken);
  min-height: 80vh;
}
.claim-container {
  max-width: 620px;
  background: var(--surface-primary);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: var(--card-shadow);
}
.claim-container h1 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ══════════════════════════════════════════════════════════
   PARTICLES HOST
   ══════════════════════════════════════════════════════════ */
.particles-host {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: auto;
}

/* ══════════════════════════════════════════════════════════
   BLUR FADE — Entrance animation
   ══════════════════════════════════════════════════════════ */
.blur-fade {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(14px);
  transition: opacity 0.55s ease, filter 0.55s ease, transform 0.55s ease;
}
.blur-fade-in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════
   MAGIC CARD — Spotlight overlay
   ══════════════════════════════════════════════════════════ */
.magic-card { position: relative; overflow: hidden; }
.magic-card > *:not(.magic-card-spotlight) { position: relative; z-index: 2; }

/* ══════════════════════════════════════════════════════════
   BORDER BEAM — Animated light on card border
   ══════════════════════════════════════════════════════════ */
@keyframes border-beam-travel {
  0%   { offset-distance: 0%; }
  100% { offset-distance: 100%; }
}

/* ══════════════════════════════════════════════════════════
   LIGHT RAYS — CTA animated beams
   ══════════════════════════════════════════════════════════ */
.light-rays {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.light-rays::before,
.light-rays::after {
  content: '';
  position: absolute;
  top: -60%;
  width: 120px;
  height: 250%;
  background: linear-gradient(180deg, transparent, rgba(249,115,22,0.04) 40%, rgba(249,115,22,0.08) 50%, rgba(249,115,22,0.04) 60%, transparent);
  transform: rotate(15deg);
  animation: light-ray-sweep 8s ease-in-out infinite;
}
.light-rays::before { left: 15%; }
.light-rays::after { left: 55%; width: 80px; animation-delay: -3s; animation-duration: 10s; opacity: 0.7; }
@keyframes light-ray-sweep {
  0%, 100% { transform: rotate(15deg) translateX(-40px); opacity: 0.4; }
  50%      { transform: rotate(15deg) translateX(40px); opacity: 1; }
}

/* ══════════════════════════════════════════════════════════
   SCROLL PROGRESS — Right side vertical track
   ══════════════════════════════════════════════════════════ */
.scroll-progress-track {
  position: fixed;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 120px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.scroll-progress-thumb {
  width: 100%;
  height: 0%;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--brand-500), #fbbf24);
  transition: height 0.1s linear;
  box-shadow: 0 0 8px rgba(249,115,22,0.4);
}
@media (max-width: 768px) {
  .scroll-progress-track { display: none; }
}

/* ══════════════════════════════════════════════════════════
   GLOBAL ANIMATIONS
   ══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Subtle noise texture for content pages */
.claim-page,
.business-page {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-pad: var(--section-pad-mobile);
  }
}

/* ══════════════════════════════════════════════════════════
   HERO PILL — Animated badge above hero title
   ══════════════════════════════════════════════════════════ */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 9999px;
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.2);
  color: #fb923c;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f97316;
  position: relative;
  flex-shrink: 0;
}
.hero-pill-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(249,115,22,0.4);
  animation: hero-pill-pulse 2s ease-in-out infinite;
}
@keyframes hero-pill-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.8); opacity: 0; }
}

/* ══════════════════════════════════════════════════════════
   SOCIAL PROOF STRIP
   ══════════════════════════════════════════════════════════ */
.social-proof-strip {
  padding: 48px 0;
  background: var(--surface-primary);
  border-bottom: 1px solid var(--slate-200);
}
.proof-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.proof-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-50), var(--brand-100));
  border: 1px solid rgba(249,115,22,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-600);
}
.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--slate-900);
  margin-bottom: 2px;
}
.proof-item span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--slate-500);
  line-height: 1.4;
}
@media (max-width: 900px) {
  .proof-items { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 500px) {
  .proof-items { grid-template-columns: 1fr; gap: 20px; }
}

/* ══════════════════════════════════════════════════════════
   CATEGORY BENEFIT LINE
   ══════════════════════════════════════════════════════════ */
.category-card .cat-benefit {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--slate-500);
  font-weight: 500;
  line-height: 1.4;
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════
   FOOTER CTA SECTION — Pre-footer conversion block
   ══════════════════════════════════════════════════════════ */
.footer-cta-section {
  padding: 48px 0 0;
  background: transparent;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, #0a1628 0%, #162544 100%);
  border-radius: 20px;
  padding: 48px 56px;
  margin-bottom: -24px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(249,115,22,0.08);
  overflow: hidden;
}
.footer-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(249,115,22,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.footer-cta-text {
  position: relative;
  z-index: 1;
}
.footer-cta-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 8px;
}
.footer-cta-text p {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem;
  margin: 0;
}
.footer-cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
  background: transparent;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
@media (max-width: 768px) {
  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
  }
  .footer-cta-actions { justify-content: center; }
}

/* ══════════════════════════════════════════════════════════
   HERO TITLE — Line break fix
   ══════════════════════════════════════════════════════════ */
.hero-title-line2 {
  display: block;
}

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════ */
.about-page {
  padding: var(--section-pad) 0;
}
.about-header {
  text-align: center;
  margin-bottom: 56px;
}
.about-header h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.about-lead {
  font-family: var(--font-body);
  color: var(--slate-500);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.about-card {
  background: var(--surface-primary);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  padding: 32px;
  transition: box-shadow var(--transition-base);
}
.about-card:hover {
  box-shadow: var(--card-shadow-hover);
}
.about-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--brand-50);
  margin-bottom: 20px;
}
.about-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.about-card p {
  font-family: var(--font-body);
  color: var(--slate-500);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}
.about-values {
  max-width: 720px;
  margin: 0 auto;
}
.about-values h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 40px;
}
.values-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--card-radius);
  border: 1px solid var(--slate-100);
  transition: border-color var(--transition-base);
}
.value-item:hover {
  border-color: var(--brand-200);
}
.value-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--brand-500);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.value-item strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: block;
  margin-bottom: 6px;
}
.value-item p {
  font-family: var(--font-body);
  color: var(--slate-500);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════ */
.contact-page {
  padding: var(--section-pad) 0;
}
.contact-header {
  text-align: center;
  margin-bottom: 48px;
}
.contact-header h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.contact-lead {
  font-family: var(--font-body);
  color: var(--slate-500);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}
.contact-form-wrap {
  background: var(--surface-primary);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  padding: 36px;
}
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-card {
  background: var(--surface-primary);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-info-item strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 2px;
}
.contact-info-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--slate-500);
}
.contact-cta-card {
  background: linear-gradient(135deg, #0a1628 0%, #162544 100%);
  border-radius: var(--card-radius);
  padding: 28px;
  text-align: center;
}
.contact-cta-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}
.contact-cta-card p {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   PRICING PAGE
   ══════════════════════════════════════════════════════════ */
.pricing-page {
  padding: var(--section-pad) 0;
}
.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}
.pricing-header h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.pricing-lead {
  font-family: var(--font-body);
  color: var(--slate-500);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 80px;
  align-items: start;
}
.pricing-card {
  background: var(--surface-primary);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-base);
}
.pricing-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}
.pricing-card-popular {
  border: 2px solid var(--brand-500);
  box-shadow: 0 8px 32px rgba(249,115,22,0.12);
  transform: scale(1.03);
}
.pricing-card-popular:hover {
  transform: scale(1.03) translateY(-4px);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.pricing-card-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--slate-100);
}
.pricing-card-header h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--slate-900);
}
.pricing-period {
  font-family: var(--font-body);
  color: var(--slate-400);
  font-size: 0.95rem;
}
.pricing-desc {
  font-family: var(--font-body);
  color: var(--slate-500);
  font-size: 0.9rem;
  margin: 0;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.pricing-features li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--slate-700);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li svg {
  flex-shrink: 0;
}
.pricing-feature-disabled {
  color: var(--slate-400) !important;
}

/* FAQ */
.pricing-faq {
  max-width: 900px;
  margin: 0 auto;
}
.pricing-faq h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.faq-item {
  padding: 24px;
  border-radius: var(--card-radius);
  border: 1px solid var(--slate-100);
  transition: border-color var(--transition-base);
}
.faq-item:hover {
  border-color: var(--brand-200);
}
.faq-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.faq-item p {
  font-family: var(--font-body);
  color: var(--slate-500);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card-popular { transform: none; }
  .pricing-card-popular:hover { transform: translateY(-4px); }
  .faq-grid { grid-template-columns: 1fr; }
}
