/* ==========================================================================
   LEGAL AD INFRASTRUCTURE — CORE STYLESHEET
   Aesthetic: High-Stakes Legal Dark Mode (Navy/Slate #0A0F1D, Gold #E5B869, Emerald #27F17B)
   ========================================================================== */

:root {
  --bg-darkest: #050811;
  --bg-main: #0A0F1D;
  --bg-surface: #0F172A;
  --bg-surface-elevated: #162238;
  --bg-surface-hover: #1E2D4A;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.15);
  --border-gold: rgba(229, 184, 105, 0.35);
  --border-emerald: rgba(39, 241, 123, 0.35);
  
  --gold-primary: #E5B869;
  --gold-light: #F4CE88;
  --gold-dark: #C29344;
  --gold-gradient: linear-gradient(135deg, #F4CE88 0%, #E5B869 50%, #B8852B 100%);
  --gold-glow: rgba(229, 184, 105, 0.15);

  --emerald-primary: #27F17B;
  --emerald-dark: #10B981;
  --emerald-glow: rgba(39, 241, 123, 0.2);
  --emerald-subtle: rgba(39, 241, 123, 0.1);

  --crimson-alert: #EF4444;
  --crimson-subtle: rgba(239, 68, 68, 0.12);
  
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-invert: #0A0F1D;

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', Menlo, Monaco, Consolas, monospace;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 24px rgba(229, 184, 105, 0.2);
  --shadow-emerald: 0 0 24px rgba(39, 241, 123, 0.2);
  
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  --container-max: 1240px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: 
    radial-gradient(circle at 50% 0%, rgba(22, 34, 56, 0.6) 0%, transparent 70%),
    radial-gradient(circle at 100% 20%, rgba(229, 184, 105, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 0% 80%, rgba(39, 241, 123, 0.03) 0%, transparent 40%),
    var(--bg-main);
  overflow-x: hidden;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.emerald-gradient-text {
  background: linear-gradient(135deg, #5EEAD4 0%, #27F17B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.mono {
  font-family: var(--font-mono);
}

/* Layout Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 29, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.1rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

.brand-shield {
  width: 34px;
  height: 34px;
  background: rgba(229, 184, 105, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
}

.brand-text span {
  color: var(--gold-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  font-size: 1.25rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-medium);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu.active {
  display: flex;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
  text-align: center;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.95rem 1.85rem;
  font-size: 1.05rem;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0A0F1D;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(229, 184, 105, 0.25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229, 184, 105, 0.45);
}

.btn-emerald {
  background: var(--emerald-primary);
  color: #0A0F1D;
  font-weight: 700;
  box-shadow: 0 4px 15px var(--emerald-glow);
}

.btn-emerald:hover {
  background: #3cfb8b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(39, 241, 123, 0.45);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-medium);
  color: var(--text-primary);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-gold {
  background: rgba(229, 184, 105, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
}

.badge-emerald {
  background: var(--emerald-subtle);
  border: 1px solid var(--border-emerald);
  color: var(--emerald-primary);
}

.badge-crimson {
  background: var(--crimson-subtle);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #FCA5A5;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--emerald-primary);
  box-shadow: 0 0 0 0 rgba(39, 241, 123, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(39, 241, 123, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(39, 241, 123, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(39, 241, 123, 0);
  }
}

/* Hero Section */
.hero {
  padding: 5rem 0 3.5rem;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 920px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.12;
  margin: 1.5rem 0 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Trust Bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  margin-top: 1rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem;
}

.trust-item-value {
  font-size: 1.75rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--gold-primary);
  line-height: 1.2;
}

.trust-item-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.35rem;
}

/* Cards & Grid */
.section {
  padding: 5.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  margin: 1rem 0 0.85rem;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 2rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--border-medium);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card-gold-highlight {
  border-color: var(--border-gold);
  background: linear-gradient(180deg, rgba(229, 184, 105, 0.05) 0%, var(--bg-surface) 100%);
}

.card-gold-highlight:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(229, 184, 105, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Auction Live Cards */
.auction-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.auction-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.auction-keyword {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
}

.auction-niche {
  font-size: 0.75rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.auction-metric-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.auction-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.auction-stat-value {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--gold-light);
}

.auction-stat-value.risk {
  color: #F87171;
}

/* Comparison Matrix */
.table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}

.table-matrix {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.table-matrix th, .table-matrix td {
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.table-matrix th {
  background: var(--bg-surface-elevated);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.table-matrix tr:last-child td {
  border-bottom: none;
}

.table-matrix td:first-child {
  font-weight: 600;
  color: var(--text-primary);
}

.col-standby {
  background: rgba(39, 241, 123, 0.04);
  border-left: 1px solid var(--border-emerald);
  border-right: 1px solid var(--border-emerald);
}

th.col-standby {
  background: rgba(39, 241, 123, 0.12);
  color: var(--emerald-primary);
  font-weight: 700;
}

/* FAQ Accordion */
.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-medium);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-icon {
  transition: transform var(--transition-normal);
  color: var(--gold-primary);
}

/* Calculator Specific Styles */
.calc-container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.calc-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2.25rem;
}

.calc-preset-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.preset-btn {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.5rem 0.95rem;
  border-radius: 6px;
  font-size: 0.82rem;
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.preset-btn:hover, .preset-btn.active {
  background: rgba(229, 184, 105, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.calc-group {
  margin-bottom: 1.75rem;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.calc-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
}

.calc-value-display {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--gold-light);
  font-size: 1.05rem;
}

.calc-slider {
  width: 100%;
  height: 6px;
  background: var(--bg-surface-elevated);
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-primary);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(229, 184, 105, 0.5);
  transition: transform var(--transition-fast);
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

/* Results Output Card */
.calc-results-card {
  background: linear-gradient(180deg, var(--bg-surface-elevated) 0%, #0c1424 100%);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  position: sticky;
  top: 6rem;
}

.results-header {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}

.results-main-loss {
  margin-bottom: 1.75rem;
}

.loss-number {
  font-family: var(--font-mono);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #F87171;
  line-height: 1.1;
  margin: 0.35rem 0;
}

.results-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.metric-box {
  background: rgba(10, 15, 29, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 1.1rem;
}

.metric-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.metric-val {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Floating WhatsApp Specialist Badge */
.wa-floating-badge {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(10, 15, 29, 0.95);
  border: 1px solid rgba(39, 241, 123, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(39, 241, 123, 0.25);
  border-radius: 9999px;
  padding: 0.6rem 1.25rem 0.6rem 0.6rem;
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.wa-floating-badge:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--emerald-primary);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7), 0 0 28px rgba(39, 241, 123, 0.45);
}

.wa-avatar-wrap {
  position: relative;
  width: 44px;
  height: 44px;
}

.wa-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #111b21;
  border: 2px solid var(--emerald-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-primary);
  font-weight: 800;
  font-size: 1.1rem;
}

.wa-avatar-status {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: var(--emerald-primary);
  border: 2px solid var(--bg-main);
  border-radius: 50%;
}

.wa-text-wrap {
  display: flex;
  flex-direction: column;
}

.wa-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.wa-status-text {
  font-size: 0.75rem;
  color: var(--emerald-primary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Compliance Guide Specifics */
.compliance-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.compliance-sidebar {
  position: sticky;
  top: 6rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.5rem;
}

.compliance-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.compliance-nav-link {
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.compliance-nav-link:hover, .compliance-nav-link.active {
  background: var(--bg-surface-elevated);
  color: var(--gold-primary);
}

.compliance-article {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 3rem;
}

.compliance-section {
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-subtle);
}

.compliance-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.checklist-item {
  display: flex;
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 8px;
  background: rgba(10, 15, 29, 0.4);
  border: 1px solid var(--border-subtle);
  margin-bottom: 0.85rem;
}

.checklist-icon {
  color: var(--emerald-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Footer */
.footer {
  margin-top: auto;
  background: var(--bg-darkest);
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin: 1rem 0 1.5rem;
  font-size: 0.92rem;
  max-width: 340px;
}

.footer-col-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-link:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .calc-container {
    grid-template-columns: 1fr;
  }
  .compliance-grid {
    grid-template-columns: 1fr;
  }
  .compliance-sidebar {
    display: none;
  }
  .pipeline-flow {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .wa-floating-badge {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
  }
  .results-metrics-grid {
    grid-template-columns: 1fr;
  }
}
