:root {
  /* Colors */
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-light: #eff6ff;
  --color-dark: #111827;
  --color-text: #4b5563;
  --color-text-light: #9ca3af;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc; /* Crisp blue-ish gray for SaaS feel */
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-focus: rgba(37, 99, 235, 0.3);
  
  /* Shared Icon Colors */
  --color-icon-red: #ef4444;
  --color-icon-red-bg: #fef2f2;
  --color-icon-orange: #f97316;
  --color-icon-orange-bg: #fff7ed;
  --color-icon-yellow: #eab308;
  --color-icon-yellow-bg: #fefce8;
  --color-icon-purple: #8b5cf6;
  --color-icon-purple-bg: #f5f3ff;
  
  /* Shadows - Apple/Stripe inspired */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);
  
  /* Typography */
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Layout */
  --container-width: 1140px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

p {
  font-size: 1.125rem;
}

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

ul {
  list-style: none;
}

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

.section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.bg-gray {
  background-color: var(--color-bg-alt);
}

.text-center {
  text-align: center;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-3 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* Typography Options */
.text-gradient {
  background: linear-gradient(135deg, var(--color-primary), #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Fallback */
}

.section-header {
  max-width: 600px;
  margin: 0 auto 4rem auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.25rem;
  color: var(--color-text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background-color: white;
  color: var(--color-dark);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--color-border-focus);
  color: var(--color-primary);
  transform: translateY(-1px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-fast);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-dark);
}

.logo i {
  font-size: 1.75rem;
  color: var(--color-primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
}

.nav-links a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.hero {
  padding: 10rem 0 6rem 0;
  text-align: center;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, rgba(255,255,255,0) 70%);
  z-index: -1;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
}

.hero-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  font-size: 1.35rem;
  margin-bottom: 2.5rem;
  max-width: 650px;
}

.hero-audience {
  margin-top: 3rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* Generic Cards */
.card {
  background: var(--color-bg);
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  padding: 2rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

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

/* Problem Section */
.problem-grid .card {
  text-align: left;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.red-icon { background: var(--color-icon-red-bg); color: var(--color-icon-red); }
.orange-icon { background: var(--color-icon-orange-bg); color: var(--color-icon-orange); }
.yellow-icon { background: var(--color-icon-yellow-bg); color: var(--color-icon-yellow); }
.purple-icon { background: var(--color-icon-purple-bg); color: var(--color-icon-purple); }

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

.problem-card .card-text {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.5;
}

/* Solution Section */
.solution-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
}

.solution-text {
  flex: 1;
  min-width: 300px;
}

.badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.solution-text .section-title {
  margin-bottom: 1.5rem;
}

.solution-text .section-desc {
  margin-bottom: 2rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
}

.feature-list i {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Workflow Diagram Visual */
.solution-visual {
  flex: 1;
  min-width: 300px;
  position: relative;
  display: flex;
  justify-content: center;
}

.workflow-diagram {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 450px;
}

.wf-node {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  position: relative;
  width: 100%;
}

.wf-node i {
  font-size: 1.25rem;
  color: var(--color-text);
}

.wf-node.ai-node {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.wf-node.ai-node i {
  color: var(--color-primary);
}

.wf-node-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120%; height: 150%;
  background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, rgba(255,255,255,0) 70%);
  z-index: -1;
  pointer-events: none;
}

.wf-arrow {
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-border);
}

.wf-arrow i {
  font-size: 1.5rem;
  color: #cbd5e1;
}

.wf-split {
  height: 2.5rem;
  width: calc(100% - 2rem);
  position: relative;
  margin-top: -1px;
}

.wf-arrow-split {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  border-top: 2px dashed #cbd5e1;
}

.wf-arrow-split.left {
  left: 0;
  border-left: 2px dashed #cbd5e1;
  border-top-left-radius: 0.5rem;
}

.wf-arrow-split.right {
  right: 0;
  border-right: 2px dashed #cbd5e1;
  border-top-right-radius: 0.5rem;
}

.wf-branches {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.action-node {
  flex: 1;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  justify-content: center;
}

/* Services Section */
.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.service-card {
  position: relative;
  height: 100%;
  cursor: pointer;
}

.service-card.active {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
  z-index: 10;
}

.service-card.active:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: var(--color-primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-card .card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card .card-text {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  flex: 1; /* Pushes list to bottom */
}

.service-features {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text);
}

.service-features i {
  color: var(--color-primary);
  font-weight: bold;
}

/* Pricing Banner */
.pricing-banner {
  background: white;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  box-shadow: var(--shadow-sm);
}

.pricing-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.pricing-info p {
  font-size: 1rem;
  color: var(--color-text);
  max-width: 400px;
}

.pricing-figures {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.price-item {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.875rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.price-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
}

.price-divider {
  width: 1px;
  height: 3rem;
  background-color: var(--color-border);
}

/* Process Section */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background-color: var(--color-border);
  z-index: 0;
}

.step-card {
  display: flex;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: white;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px white;
}

.step-content {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 2rem;
  flex: 1;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.step-content:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--color-text);
  font-size: 1rem;
}

/* CTA Section */
.cta {
  padding: 8rem 0;
}

.cta-box {
  background: var(--color-dark);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(37,99,235,0.4) 0%, rgba(17,24,39,1) 70%);
  z-index: 0;
}

.cta-box h2 {
  color: white;
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-box p {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box .btn {
  position: relative;
  z-index: 1;
}

/* Footer */
.footer {
  background-color: white;
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.credibility-statement {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .nav-links { display: none; }
  .process-steps::before { left: 20px; }
  .step-number { width: 2.5rem; height: 2.5rem; font-size: 1rem; }
  .pricing-banner { flex-direction: column; align-items: flex-start; }
  .pricing-figures { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .price-divider { width: 100%; height: 1px; }
}
/* Audit Form */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  background: #fff;
  border-radius: 0.9rem;
  padding: 0.95rem 1rem;
  font-family: var(--font-family);
  font-size: 1rem;
  color: var(--color-dark);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: var(--color-text-light);
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
  transform: translateY(-1px);
}

.lead-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 0;
}

.audit-form-card {
  border: 1px solid rgba(37,99,235,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  background: linear-gradient(180deg,#ffffff,#fafcff);
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== Audit Page Conversion Layout ===== */

.audit-page .hero.section {
  padding-top: 1.5rem;
  padding-bottom: 1.2rem;
}

body.audit-page .navbar {
  position: sticky;
}

body.audit-page .hero.section {
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}

body.audit-page .hero-container {
  max-width: 900px;
}

body.audit-page .hero-title {
  font-size: 3.2rem;
  margin-bottom: 1rem;
}

body.audit-page .hero-subtitle {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

body.audit-page .section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

body.audit-page .section-header {
  margin-bottom: 2rem;
}

body.audit-page .section-title {
  margin-bottom: 0.75rem;
}

body.audit-page .card {
  border-radius: 1.25rem;
}

body.audit-page .audit-inline-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

body.audit-page .audit-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

body.audit-page .audit-benefit {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
}

body.audit-page .audit-benefit i {
  color: var(--color-primary);
  font-size: 1.35rem;
  margin-top: 0.1rem;
}

body.audit-page .audit-benefit h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

body.audit-page .audit-benefit p {
  font-size: 0.96rem;
  color: var(--color-text);
  margin: 0;
}

body.audit-page .audit-form-card {
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 96px;
}

body.audit-page .lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

body.audit-page .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

body.audit-page .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

body.audit-page .form-group label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-dark);
}

body.audit-page .lead-form input,
body.audit-page .lead-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  background: #fff;
  border-radius: 0.9rem;
  padding: 0.95rem 1rem;
  font-family: var(--font-family);
  font-size: 1rem;
  color: var(--color-dark);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

body.audit-page .lead-form input::placeholder,
body.audit-page .lead-form textarea::placeholder {
  color: var(--color-text-light);
}

body.audit-page .lead-form input:focus,
body.audit-page .lead-form textarea:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
  transform: translateY(-1px);
}

body.audit-page .lead-form textarea {
  min-height: 150px;
  resize: vertical;
}

body.audit-page .form-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

body.audit-page .form-note {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 0;
}

body.audit-page .audit-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}

body.audit-page .audit-pill {
  padding: 0.55rem 0.9rem;
  background: rgba(37, 99, 235, 0.07);
  color: var(--color-primary);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
}

@media (max-width: 960px) {
  body.audit-page .audit-inline-grid {
    grid-template-columns: 1fr;
  }

  body.audit-page .audit-form-card {
    position: static;
  }
}

@media (max-width: 768px) {
  body.audit-page .hero-title {
    font-size: 2.4rem;
  }

  body.audit-page .form-grid {
    grid-template-columns: 1fr;
  }

  body.audit-page .section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
/* Pricing highlight */

.pricing-box {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

.pricing-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #7b8794;
  text-transform: uppercase;
}

.pricing-value {
  font-size: 1.9rem;
  font-weight: 700;
  margin-top: 6px;

  background: linear-gradient(90deg,#2563eb,#3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: #8a94a6;
}
/* Chatbot Widget */
.chatbot-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
}

.chatbot-toggle {
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-window {
  position: absolute;
  right: 0;
  bottom: 84px;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: 520px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.16);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.chatbot-window.hidden {
  display: none;
}

.chatbot-header {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0f172a;
  color: white;
}

.chatbot-header p {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

.chatbot-close {
  border: none;
  background: transparent;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

.chatbot-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chatbot-message {
  max-width: 85%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.45;
  white-space: pre-wrap;
}

.chatbot-message.bot {
  align-self: flex-start;
  background: white;
  border: 1px solid #e2e8f0;
  color: #111827;
}

.chatbot-message.user {
  align-self: flex-end;
  background: #2563eb;
  color: white;
}

.chatbot-form {
  display: flex;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid #e5e7eb;
  background: white;
}

.chatbot-form input {
  flex: 1;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 12px 14px;
  font-size: 0.95rem;
  outline: none;
}

.chatbot-form input:focus {
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.chatbot-send {
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: #2563eb;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-typing {
  font-size: 0.9rem;
  color: #64748b;
}

@media (max-width: 640px) {
  .chatbot-widget {
    right: 16px;
    bottom: 16px;
  }

  .chatbot-window {
    width: 340px;
    height: 500px;
  }
}
.chatbot-audit-link {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #2563eb;
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.chatbot-audit-link:hover {
  background: #1d4ed8;
}

/* Dropdown Navigation */

/* Dropdown Navigation */
.nav-links .dropdown { position: relative; }
.nav-links .dropdown > a::after { content: " ▾"; font-size: 0.7rem; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 8px;
  z-index: 200;
  min-width: 220px;
}
.dropdown-menu-inner {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: #94a3b8 !important;
  font-size: 0.88rem;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: #1a1a1a; color: #e2e8f0 !important; }
.dropdown-menu a i { margin-right: 8px; color: #3b82f6; }
