/* ============================================
   Fix My Compliance — Premium Real Estate Theme
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Premium Corporate Palette */
  --white: #ffffff;
  --off-white: #fcfcfd;
  --gray-50: #f4f5f7;
  --gray-100: #e5e7eb;
  --gray-200: #d1d5db;
  --gray-300: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --navy-900: #0a192f;
  
  /* Brand Accents (Gold / Bronze) */
  --gold-300: #fcd34d;
  --gold-500: #d4af37; /* Classic Gold */
  --gold-600: #b48608;
  --gold-light: rgba(212, 175, 55, 0.1);

  /* Primary (Trustworthy Navy) */
  --primary: var(--navy-900);
  --primary-light: #1e3a5f;
  --primary-lighter: #e6ebf1;
  --primary-ghost: rgba(10, 25, 47, 0.04);
  
  /* Severity */
  --green: #059669;
  --green-bg: #ecfdf5;
  --green-border: #a7f3d0;
  --red: #dc2626;
  --red-bg: #fef2f2;
  --red-border: #fecaca;
  --amber: #d97706;
  --amber-bg: #fffbeb;
  --amber-border: #fde68a;
  --blue: #2563eb;
  --blue-bg: #eff6ff;
  --blue-border: #bfdbfe;
  
  /* Missing Variables Fix */
  --accent: var(--gold-500);
  --text-primary: var(--navy-900);
  --text-secondary: var(--gray-500);
  --bg-secondary: var(--gray-50);
  --border-light: var(--gray-100);
  --fail: var(--red);
  
  /* Spacing & Structure */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius: 10px; /* Fallback */
  
  /* Elegant Shadows */
  --shadow-sm: 0 2px 4px rgba(10, 25, 47, 0.04), 0 1px 2px rgba(10, 25, 47, 0.02);
  --shadow-md: 0 8px 24px rgba(10, 25, 47, 0.06), 0 4px 8px rgba(10, 25, 47, 0.04);
  --shadow-lg: 0 16px 48px rgba(10, 25, 47, 0.08), 0 8px 16px rgba(10, 25, 47, 0.04);
  --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.15);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); color: var(--text-primary); background: var(--off-white); line-height: 1.6; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

a { color: var(--gold-600); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-500); }

/* --- Header --- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,0.98); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.3rem; color: var(--navy-900); }
.logo-icon { font-size: 1.5rem; }
.logo-accent { color: var(--gold-500); }

.nav { display: flex; gap: 32px; }
.nav-link { font-size: 0.95rem; font-weight: 500; color: var(--gray-500); transition: color 0.2s; }
.nav-link:hover { color: var(--navy-900); }

/* --- Hero --- */
.hero {
  position: relative; overflow: hidden;
  padding: 160px 0 100px;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 100%;
  background: radial-gradient(circle at 50% -20%, var(--gold-light) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner { text-align: center; position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--gold-500);
  color: var(--gold-600); font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 28px; box-shadow: var(--shadow-sm);
  animation: fadeInUp 0.6s ease-out;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500);
  animation: pulse-dot 2s infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.04em;
  margin-bottom: 24px; color: var(--navy-900);
  animation: fadeInUp 0.6s ease-out 0.1s both;
}
.title-highlight {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem; color: var(--gray-500); max-width: 700px; margin: 0 auto 48px;
  line-height: 1.6; animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* --- Audit Form --- */
.audit-form-wrapper { animation: fadeInUp 0.6s ease-out 0.3s both; }

.audit-form {
  display: flex; gap: 12px; max-width: 680px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: var(--shadow-lg);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.audit-form:focus-within {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-gold), 0 0 0 4px var(--gold-light);
}

.input-group {
  flex: 1; display: flex; align-items: center; gap: 16px; padding: 0 20px;
}
.input-icon { font-size: 1.4rem; color: var(--gray-300); }
.url-input {
  flex: 1; border: none; outline: none; background: none;
  font-family: var(--font); font-size: 1.1rem; color: var(--navy-900);
}
.url-input::placeholder { color: var(--gray-300); font-weight: 400; }

.btn-audit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 36px; border: none; border-radius: var(--radius-md);
  background: var(--navy-900); color: var(--white);
  font-family: var(--font); font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.btn-audit:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-audit:active { transform: translateY(0); }
.btn-audit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.btn-loader {
  display: none; width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3); border-top-color: white;
  border-radius: 50%; animation: spin 0.6s linear infinite;
}
.btn-audit.loading .btn-text { display: none; }
.btn-audit.loading .btn-loader { display: block; }

.form-hint { font-size: 0.85rem; color: var(--gray-500); margin-top: 16px; font-weight: 500; }

/* --- Scanning --- */
.scanning-section { padding: 100px 0; }
.scanning-card {
  text-align: center; padding: 80px 40px;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.5s ease-out; max-width: 600px; margin: 0 auto;
}

.scanner-animation {
  position: relative; width: 140px; height: 140px; margin: 0 auto 40px;
}
.scanner-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--gold-light);
  animation: scanner-pulse 2s ease-in-out infinite;
}
.ring-2 { inset: 16px; animation-delay: 0.4s; border-color: rgba(212, 175, 55, 0.2); }
.ring-3 { inset: 32px; animation-delay: 0.8s; border-color: rgba(212, 175, 55, 0.3); }
.scanner-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 3rem; text-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.scanning-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; color: var(--navy-900); }
.scanning-title span { color: var(--gold-600); }
.scanning-status { color: var(--gray-500); font-size: 1rem; margin-bottom: 32px; font-weight: 500; }

.progress-bar-track {
  max-width: 400px; height: 8px; margin: 0 auto 32px;
  background: var(--gray-100); border-radius: 100px; overflow: hidden;
}
.progress-bar-fill {
  height: 100%; width: 0%; border-radius: 100px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-500));
  transition: width 0.5s ease;
}

.scanning-checklist { display: flex; flex-direction: column; gap: 12px; max-width: 320px; margin: 0 auto; text-align: left; }
.check-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--gray-500); font-weight: 500;
  transition: color 0.3s;
}
.check-item.active { color: var(--navy-900); font-weight: 600; }
.check-item.done { color: var(--green); }
.check-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gray-200); flex-shrink: 0;
  transition: background 0.3s;
}
.check-item.active .check-dot { background: var(--gold-500); animation: pulse-dot 1s infinite; }
.check-item.done .check-dot { background: var(--green); }

/* --- Results --- */
.results-section { padding: 100px 0; animation: fadeInUp 0.5s ease-out; background: var(--off-white); }

.results-header {
  text-align: center; margin-bottom: 56px;
}

.result-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 32px; border-radius: 100px;
  font-size: 1.4rem; font-weight: 800; letter-spacing: 0.05em;
  margin-bottom: 20px; box-shadow: var(--shadow-md);
}
.result-badge.pass { background: var(--green); color: var(--white); border: 2px solid #047857; }
.result-badge.fail { background: var(--red); color: var(--white); border: 2px solid #b91c1c; }

.result-badge-icon { font-size: 1.6rem; }
.results-title { font-size: 2.2rem; font-weight: 800; margin-bottom: 10px; color: var(--navy-900); }
.results-subtitle { color: var(--gray-500); font-size: 1.1rem; margin-bottom: 28px; font-weight: 500; }

.btn-new-scan {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); background: var(--white);
  font-family: var(--font); font-size: 0.95rem; font-weight: 600;
  color: var(--navy-900); cursor: pointer; transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.btn-new-scan:hover { border-color: var(--navy-900); background: var(--gray-50); transform: translateY(-1px); }

/* Category Grid */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-bottom: 48px; }

.category-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all 0.3s; box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.category-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.category-card::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
}
.category-card.pass::before { background: var(--green); }
.category-card.fail::before { background: var(--red); }
.category-card.warn::before { background: var(--amber); }

.card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.card-icon { font-size: 1.8rem; }
.card-title { flex: 1; font-size: 1.25rem; font-weight: 800; color: var(--navy-900); }
.card-status {
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
}
.card-status.pass { background: var(--green-bg); color: var(--green); }
.card-status.fail { background: var(--red-bg); color: var(--red); }

.card-description { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }

.card-issues { margin-top: 16px; }
.card-issue-item {
  padding: 12px 16px; margin-top: 10px;
  background: var(--red-bg); border: 1px solid var(--red-border);
  border-radius: var(--radius-sm); font-size: 0.85rem; color: var(--gray-800); line-height: 1.5;
}
.card-issue-item .issue-severity {
  display: inline-block; padding: 3px 8px; border-radius: 4px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.03em; margin-right: 8px;
}
.issue-severity.critical { background: var(--red); color: white; }
.issue-severity.high { background: var(--amber); color: white; }
.issue-severity.medium { background: var(--blue); color: white; }

/* Advisories */
.advisories-section { margin-top: 40px; }
.advisories-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 20px; color: var(--navy-900); }
.advisory-item {
  padding: 20px 24px;
  background: var(--blue-bg); border: 1px solid var(--blue-border);
  border-radius: var(--radius-md); margin-bottom: 16px;
  font-size: 0.9rem; color: var(--gray-800); line-height: 1.6;
}
.advisory-item strong { color: var(--blue); font-weight: 700; }

/* --- Contact Info + Send Report (AGENT INFO SECTION) --- */
.send-report-section {
  margin-top: 48px;
}
.send-report-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.send-report-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-600));
}

.contact-info-header { text-align: center; margin-bottom: 32px; }
.contact-info-header h3 {
  font-size: 1.5rem; font-weight: 800; color: var(--navy-900); margin-bottom: 8px;
}
.contact-info-header p {
  color: var(--gray-500); font-size: 1rem;
}

.contact-detected {
  display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; justify-content: center;
}
.contact-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px; background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); font-size: 0.9rem;
}
.contact-label {
  color: var(--gray-500); font-weight: 700;
  text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.05em;
}
.contact-value { color: var(--navy-900); font-weight: 600; }

.send-form { max-width: 600px; margin: 0 auto; text-align: center; }
.send-input-group {
  display: flex; gap: 16px; align-items: stretch;
}
.send-email-input {
  flex: 1; padding: 16px 20px;
  border: 1px solid var(--gray-200); border-radius: var(--radius-md);
  font-family: var(--font); font-size: 1rem; color: var(--navy-900);
  background: var(--white); transition: all 0.2s;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
.send-email-input:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 4px var(--gold-light); }
.send-email-input::placeholder { color: var(--gray-300); }

.btn-send-report {
  padding: 16px 32px; background: var(--navy-900); color: var(--white);
  border: none; border-radius: var(--radius-md);
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  cursor: pointer; white-space: nowrap; display: flex; align-items: center; gap: 8px;
  transition: all 0.2s; box-shadow: var(--shadow-sm);
}
.btn-send-report:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-send-report:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.btn-send-loader {
  display: none; width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3); border-top-color: white;
  border-radius: 50%; animation: spin 0.6s linear infinite;
}
.btn-send-report.sending .btn-send-text { display: none; }
.btn-send-report.sending .btn-send-loader { display: inline-block; }

.send-status { margin-top: 16px; font-size: 0.9rem; font-weight: 600; min-height: 1.5em; }
.send-status.success { color: var(--green); }
.send-status.error { color: var(--red); }

/* --- Error --- */
.error-section { padding: 100px 0; }
.error-card {
  text-align: center; padding: 80px 40px; max-width: 600px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--red-border); box-shadow: var(--shadow-md);
  border-radius: var(--radius-xl); animation: fadeInUp 0.5s ease-out;
}
.error-icon { font-size: 3.5rem; display: block; margin-bottom: 16px; }
.error-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; color: var(--red); }
.error-message { color: var(--gray-700); margin-bottom: 32px; font-size: 1.1rem; }

/* --- How It Works --- */
.how-section { padding: 100px 0; background: var(--white); }
.section-title { font-size: 2.5rem; font-weight: 800; text-align: center; margin-bottom: 64px; letter-spacing: -0.02em; color: var(--navy-900); }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.step-card {
  background: var(--off-white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 40px 32px;
  box-shadow: var(--shadow-sm); transition: all 0.3s;
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step-number {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold-light); color: var(--gold-600);
  font-weight: 800; font-size: 1.2rem; margin-bottom: 24px;
}
.step-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 12px; color: var(--navy-900); }
.step-card p { font-size: 0.95rem; color: var(--gray-500); line-height: 1.6; }

/* --- What We Check --- */
.categories-section { padding: 100px 0; background: var(--off-white); }
.law-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.law-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 40px 32px;
  box-shadow: var(--shadow-sm); transition: all 0.3s;
}
.law-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.law-icon { font-size: 2.5rem; display: block; margin-bottom: 20px; }
.law-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; color: var(--navy-900); }
.law-card p { font-size: 0.95rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 24px; }
.law-fine {
  display: inline-block; padding: 6px 16px;
  background: var(--red-bg); color: var(--red);
  font-size: 0.85rem; font-weight: 700; border-radius: 100px;
}

/* --- FAQ --- */
.faq-section { padding: 100px 0; background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--off-white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); margin-bottom: 16px;
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: all 0.2s;
}
.faq-item:hover { background: var(--white); box-shadow: var(--shadow-md); }
.faq-item summary {
  padding: 24px 32px; cursor: pointer;
  font-weight: 700; font-size: 1.05rem; color: var(--navy-900);
  list-style: none; display: flex; align-items: center; justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--gold-500); transition: transform 0.3s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 32px 24px; font-size: 0.95rem; color: var(--gray-500); line-height: 1.7; }

/* --- Footer --- */
.footer {
  padding: 60px 0; border-top: 1px solid var(--gray-100);
  text-align: center; background: var(--off-white);
}
.footer-top { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 24px; }
@media (min-width: 768px) { .footer-top { flex-direction: row; justify-content: space-between; } .footer-brand { margin-bottom: 0; } }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.9rem; color: var(--gray-500); transition: color 0.2s; }
.footer-links a:hover { color: var(--navy-900); text-decoration: underline; }

.footer-brand { font-size: 0.95rem; color: var(--gray-500); margin-bottom: 8px; }
.footer-brand a { font-weight: 700; color: var(--navy-900); }
.footer-brand a:hover { color: var(--gold-500); }
.footer-legal { font-size: 0.85rem; color: var(--gray-400); }

/* --- Trust Section --- */
.trust-section { padding: 60px 0; background: var(--white); border-bottom: 1px solid var(--gray-100); text-align: center; }
.trust-title { font-size: 0.9rem; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 32px; }
.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; align-items: center; }
.trust-logo { font-size: 1.4rem; font-weight: 800; color: var(--gray-300); filter: grayscale(100%); opacity: 0.7; transition: all 0.3s; cursor: default; }
.trust-logo:hover { filter: grayscale(0); opacity: 1; color: var(--navy-900); }

/* --- Cookie Banner --- */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy-900); color: var(--white); padding: 16px 24px; z-index: 1000; display: flex; justify-content: center; box-shadow: 0 -4px 12px rgba(0,0,0,0.1); transform: translateY(100%); transition: transform 0.4s ease-out; }
.cookie-banner.show { transform: translateY(0); }
.cookie-content { max-width: 900px; width: 100%; display: flex; flex-direction: column; gap: 16px; align-items: center; text-align: center; }
@media (min-width: 768px) { .cookie-content { flex-direction: row; justify-content: space-between; text-align: left; } }
.cookie-content p { font-size: 0.9rem; color: var(--gray-200); line-height: 1.5; margin: 0; flex: 1; }
.cookie-content a { color: var(--gold-500); text-decoration: underline; }
.cookie-content a:hover { color: var(--gold-600); }
.btn-cookie-accept { padding: 10px 24px; background: var(--gold-500); color: var(--navy-900); border: none; border-radius: var(--radius-sm); font-weight: 700; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.btn-cookie-accept:hover { background: var(--gold-600); }

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}
@keyframes scanner-pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav { display: none; }
  .hero { padding: 140px 0 80px; }
  .audit-form { flex-direction: column; padding: 16px; }
  .btn-audit { width: 100%; padding: 18px; }
  .category-grid, .steps-grid, .law-grid { grid-template-columns: 1fr; }
  .send-input-group { flex-direction: column; }
  .btn-send-report { width: 100%; justify-content: center; padding: 18px; }
  .help-cta-actions { flex-direction: column; }
  .help-cta-btn { width: 100%; justify-content: center; }
}

/* --- Help CTA Section --- */
.help-cta-section {
  margin-top: 40px;
  margin-bottom: 32px;
}

.help-cta-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.help-cta-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.help-cta-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.help-cta-text {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 24px;
}

.help-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.help-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.help-cta-btn.primary {
  background: linear-gradient(135deg, #c8a84e, #b8942d);
  color: #0f172a;
}

.help-cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(200, 168, 78, 0.4);
}

.help-cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.help-cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.help-cta-subtext {
  font-size: 13px;
  color: #94a3b8;
}

.help-cta-subtext a {
  color: #60a5fa;
  text-decoration: none;
}

.help-cta-subtext a:hover {
  text-decoration: underline;
}
