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

:root {
  --background: #ffffff;
  --foreground: #171717;
  --muted: #f5f5f5;
  --muted-foreground: #737373;
  --border: #e5e5e5;
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --primary-500: #3b82f6;
  --primary-600: #2564eb;
  --primary-700: #1d4ed8;
  --primary-bg: #e0edff;
  --red-500: #ef4444;
  --destructive: #ef4444;
  --destructive-light: rgba(239, 68, 68, 0.05);
  --yellow-500: #eab308;
  --yellow-light: rgba(234, 179, 8, 0.05);
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --orange-50: #fff7ed;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --radius: 0.75rem;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--primary-600);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-700);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary-600);
  color: var(--primary-600);
}

.btn-outline:hover {
  background: var(--primary-50);
}

.btn-secondary {
  background: white;
  color: var(--primary-700);
}

.btn-secondary:hover {
  background: var(--primary-50);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-600);
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

.header .logo img {
  height: 36px;
}

.nav {
  display: none;
  gap: 2rem;
}

.nav a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

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

.nav a.active {
  color: var(--foreground);
  font-weight: 600;
}

.header-actions {
  display: none;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  color: var(--muted-foreground);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a.active {
  color: var(--foreground);
  font-weight: 600;
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* global custom classes */
.bg-primary-light {
  background: var(--primary-bg);
}

.bg-blue {
  background: var(--primary-bg);
}

.max-width-42 {
  max-width: 42rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-24 {
  margin-bottom: 24px;
}

.bg-white {
  background: white;
}

.bg-primary {
  background: var(--primary-600);
}

.bg-black {
  background: #292929;
}

.pb-24 {
  padding-bottom: 24px;
}

.section-header-cases {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tracking-wide {
    letter-spacing: .025em;
}

.section-title-cases {
  font-size: 14px;
  font-weight: 600;
  color: var(--foreground);
  letter-spacing: .025em;
  text-transform: uppercase;
}

.py-48 {
  padding-top: 48px;
  padding-bottom: 48px;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
  .header-actions {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
}

/* Hero */
.hero {
  padding: 8rem 0 5rem;
}

/* Case Studies Page - Reduced Hero Padding */
.case-studies-page .hero {
  padding: 4rem 0;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

/* Hero content for non-homepage pages - centered with max-width */
.hero .hero-content {
  margin: 0 auto;
  text-align: center;
}

/* Center hero content for pricing and FAQ pages (direct children in container) */
.hero .container {
  text-align: center;
}

.hero .container > h1,
.hero .container > p,
.hero .container > .hero-badge {
  margin-left: auto;
  margin-right: auto;
}

/* Override for homepage which uses hero-grid */
.hero-grid {
  text-align: left;
}

.hero-grid .hero-content {
  max-width: none;
  text-align: left;
}

.hero-grid .container {
  text-align: left;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-bottom: 2.5rem;
}

.hero-bullet {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.hero-bullet.negative {
  color: var(--muted-foreground);
}

.hero-bullet.positive {
  color: var(--primary-700);
  font-weight: 500;
}

.hero-bullet .icon {
  width: 1rem;
  height: 1rem;
}

.hero-bullet .icon.x {
  color: var(--red-500);
}

.hero-bullet .icon.check {
  color: var(--primary-600);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: start;
  margin-bottom: 1.5rem;
}

.hero-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-graphic {
  display: none;
}

@media (min-width: 768px) {
  .hero {
    padding: 10rem 0 8rem;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid .hero-content {
    text-align: left;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
  .hero-bullets {
    justify-content: flex-start;
  }
  .hero-actions {
    flex-direction: row;
  }
  .hero-graphic {
    display: block;
  }
}

/* Problem & Solution */
.problem-solution {
  padding: 5rem 0;
  background: var(--primary-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

.showcase-image {
  max-width: 680px;
  margin: 0 auto 4rem;
  position: relative;
}

.showcase-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #dbeafe, #c7d2fe);
  border-radius: 1.5rem;
  transform: rotate(1deg) scale(1.02);
  opacity: 0.5;
  z-index: -1;
}

.showcase-image img {
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.comparison-grid {
  display: grid;
  gap: 2rem;
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  margin: 0 auto 3rem;
}

.comparison-col h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.comparison-col h3 .icon-circle {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-col h3 .icon-circle.red {
  background: #fee2e2;
}

.comparison-col h3 .icon-circle.green {
  background: var(--primary-100);
}

.comparison-col p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.comparison-list {
  list-style: none;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-list li svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

@media (min-width: 768px) {
  .problem-solution {
    padding: 8rem 0;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .comparison-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* How It Works */
.how-it-works {
  padding: 5rem 0;
  background: white;
}

.how-it-works-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.how-it-works-graphic {
  display: none;
}

.steps-grid {
  display: grid;
  gap: 1.5rem;
}

.step {
  position: relative;
}

.step-number {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary-600);
  margin-bottom: 0.75rem;
}

.step-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background: var(--primary-bg);
  border: 1px solid var(--primary-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.step-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary-600);
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.step p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .how-it-works {
    padding: 8rem 0;
  }
  .how-it-works-grid {
    grid-template-columns: 1fr 1fr;
  }
  .how-it-works-graphic {
    display: block;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Why Different */
.why-different {
  padding: 5rem 0;
  background: var(--primary-bg);
}

/* Old comparison-table style removed - using new full-width version */

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.comparison-header span {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
}

.comparison-header span:first-child {
  color: var(--primary-700);
}

.comparison-header span:last-child {
  color: var(--muted-foreground);
}

.comparison-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.comparison-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
}

.comparison-cell.positive {
  background: white;
  border: 1px solid var(--primary-200);
  font-weight: 500;
  color: var(--foreground);
}

.comparison-cell.negative {
  background: white;
  color: var(--muted-foreground);
}

.comparison-cell .icon-circle {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comparison-cell.positive .icon-circle {
  background: var(--primary-100);
}

.comparison-cell.negative .icon-circle {
  background: var(--muted);
}

@media (min-width: 768px) {
  .why-different {
    padding: 8rem 0;
  }
}

/* Who It's For */
.who-its-for {
  padding: 5rem 0;
  background: white;
}

.who-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.who-graphic {
  display: none;
}

.audience-grid {
  display: grid;
  gap: 1rem;
}

.audience-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--border);
}

.audience-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background: var(--primary-bg);
  border: 1px solid var(--primary-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.audience-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary-600);
}

.audience-card h3 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.audience-card p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .who-its-for {
    padding: 8rem 0;
  }
  .who-grid {
    grid-template-columns: 1fr 1fr;
  }
  .who-graphic {
    display: block;
  }
}

/* CTA */
.cta {
  padding: 5rem 0;
  background: var(--primary-600);
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta .btn {
  margin-bottom: 1.5rem;
}

.cta-note {
  font-size: 0.875rem;
  opacity: 0.75;
}

@media (min-width: 768px) {
  .cta {
    padding: 7rem 0;
  }
  .cta h2 {
    font-size: 2.5rem;
  }
}

/* Footer */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--foreground);
}

.footer-copy {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Icons (inline SVG) */
.icon-x {
  display: inline-block;
  width: 1rem;
  height: 1rem;
}

.icon-check {
  display: inline-block;
  width: 1rem;
  height: 1rem;
}

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

.animate-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--primary-600);
  color: white;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.2s;
  z-index: 40;
}

.back-to-top:hover {
  background: var(--primary-700);
  transform: translateY(-2px);
}

.back-to-top.visible {
  display: flex;
}

/* How It Works Page Specific Styles */
.steps {
  padding: 5rem 0;
}

.steps-content {
  max-width: 56rem;
  margin: 0 auto;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.step {
  display: block;
  gap: 2rem;
}

.step-how {
    display: flex;
    gap: 2rem;
  }

.step-icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: var(--primary-bg);
  border: 1px solid rgba(37, 100, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary-600);
}

.step-content {
  flex: 1;
}

.step-number {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-600);
  margin-bottom: 0.5rem;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.step-details {
  color: var(--muted-foreground);
}

/* Evaluation Section */
.evaluation {
  padding: 5rem 0;
  background: var(--primary-bg);
}

.evaluation-header {
  max-width: 42rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.evaluation-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.evaluation-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.evaluation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
  max-width: 56rem;
  margin: 0 auto;
}

.evaluation-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.evaluation-item svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-600);
  margin-top: 0.125rem;
}

.evaluation-item h3 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.evaluation-item p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Report Preview Section */
.report-preview {
  padding: 5rem 0;
}

.report-preview-content {
  max-width: 56rem;
  margin: 0 auto;
}

.report-preview-header {
  text-align: center;
  margin-bottom: 3rem;
}

.report-preview-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.report-preview-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

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

.report-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid;
}

.report-card.critical {
  background: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.2);
}

.report-card.medium {
  background: rgba(234, 179, 8, 0.05);
  border-color: rgba(234, 179, 8, 0.2);
}

.report-card.quick-wins {
  background: rgba(37, 100, 235, 0.05);
  border-color: rgba(37, 100, 235, 0.2);
}

.report-card-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.report-card.critical .report-card-title {
  color: var(--red-500);
}

.report-card.medium .report-card-title {
  color: var(--yellow-500);
}

.report-card.quick-wins .report-card-title {
  color: var(--primary-600);
}

.report-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* CTA Section (shared with index) */
.cta-content {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta .btn-secondary {
  background: white;
  color: var(--primary-700);
}

.cta .btn-secondary:hover {
  background: var(--primary-50);
}

/* Responsive for How It Works Page */
@media (max-width: 768px) {
  .step {
    flex-direction: column;
  }
  
  .evaluation-grid {
    grid-template-columns: 1fr;
  }
  
  .report-cards {
    grid-template-columns: 1fr;
  }
}

/* Why Us Page Specific Styles */
.stats {
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: white;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 3rem;
  }
}

/* Comparison Section (Why Us Page) */
.comparison {
  padding: 5rem 0;
}

.section-header {
  margin: 0 auto 4rem;
  text-align: center;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.section-header .highlight {
  font-size: 0.875rem;
  color: var(--primary-700);
  font-weight: 500;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
}

/* Old comparison-table style removed - using new full-width version */

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.comparison-header span {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
}

.comparison-header span:first-child {
  color: var(--foreground);
}

.comparison-header span:last-child {
  color: var(--muted-foreground);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
}

.comparison-item.positive {
  background: rgba(37, 100, 235, 0.05);
  border: 1px solid rgba(37, 100, 235, 0.2);
}

.comparison-item.negative {
    background: white;
    border: 1px solid #ef444442;
    border-radius: 0.75rem;
}

.comparison-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comparison-icon.positive {
  background: rgba(37, 100, 235, 0.2);
}

.comparison-icon.negative {
  background: var(--destructive-light);
}

.comparison-icon svg {
  width: 0.875rem;
  height: 0.875rem;
}

.comparison-icon.positive svg {
  color: var(--primary-600);
}

.comparison-icon.negative svg {
  color: var(--red-500);
}

.comparison-item span {
  font-size: 0.875rem;
  font-weight: 500;
}

.comparison-item.positive span {
  color: var(--foreground);
}

.comparison-item.negative span {
  color: var(--foreground);
}

/* Benefits Section */
.benefits {
  padding: 5rem 0;
  background: var(--primary-bg);
}

.benefits-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 70rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: white;
  border: 1px solid rgba(37, 100, 235, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.benefit-card:hover {
  border-color: rgba(37, 100, 235, 0.4);
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(37, 100, 235, 0.2);
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.benefit-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-600);
}

.benefit-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Testimonial Section */
.testimonial {
  padding: 5rem 0;
}

.testimonial-content {
  max-width: 54rem;
  margin: 0 auto;
  text-align: center;
}

.testimonial blockquote {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .testimonial blockquote {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(37, 100, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar span {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-700);
}

.testimonial-info {
  text-align: left;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* CTA Section (shared, but with btn-white variant) */
.btn-white {
  background: white;
  color: var(--primary-700);
}

.btn-white:hover {
  background: var(--primary-50);
}

/* Responsive for Why Us Page */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .comparison-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Pricing Page Specific Styles */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-bg);
  border: 1px solid rgba(37, 100, 235, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
}

.hero-badge svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary-600);
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-700);
}

/* Featured Card */
.featured-card {
  max-width: 56rem;
  margin: 2rem auto 4rem;
  background: linear-gradient(to right, rgba(219, 234, 254, 0.8), rgba(224, 237, 255, 0.8));
  border: 2px solid var(--primary-500);
  border-radius: 0.75rem;
  position: relative;
  overflow: hidden;
}

.featured-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary-600);
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-bottom-left-radius: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.featured-badge svg {
  width: 1rem;
  height: 1rem;
}

.featured-header {
  padding: 1.5rem 1.5rem 1rem;
}

.featured-header h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  color: var(--primary-700);
}

.featured-header h2 svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-600);
}

.featured-tagline {
  color: var(--muted-foreground);
  font-style: italic;
  margin-top: 0.25rem;
}

.featured-content {
  display: grid;
  gap: 2rem;
  padding: 0 1.5rem 1.5rem;
}

@media (min-width: 768px) {
  .featured-content {
    grid-template-columns: 1fr 1fr;
  }
}

.featured-price {
  margin-bottom: 1.5rem;
}

.featured-price .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-700);
}

.featured-price .per-audit {
  color: var(--muted-foreground);
}

.featured-price .turnaround {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.includes-title {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.feature-list li svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.feature-list li svg.check-blue {
  color: var(--primary-600);
}

.feature-list li svg.check-green {
  color: var(--green-600);
}

.feature-list li svg.x-icon {
  color: var(--muted-foreground);
}

.best-for-box {
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.best-for-box.blue {
  background: rgba(37, 100, 235, 0.2);
}

.best-for-box.blue .title {
  color: var(--primary-700);
}

.best-for-box.blue li {
  color: var(--primary-700);
}

.best-for-box .title {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.best-for-box ul {
  list-style: none;
}

.best-for-box li {
  font-size: 0.875rem;
  display: flex;
  gap: 0.375rem;
}

.limitations-box {
  background: #f5f5f5;
  border-radius: 0.5rem;
  padding: 1rem;
}

.limitations-box .title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.limitations-box ul {
  list-style: none;
}

.limitations-box li {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.limitations-box li svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.featured-footer {
  padding: 0 1.5rem;
  text-align: center;
}

.featured-footer p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.featured-cta {
  padding: 1rem 1.5rem 1.5rem;
}

/* Divider */
.divider {
  position: relative;
  margin-bottom: 3rem;
}

.divider-line {
  border-top: 1px solid var(--border);
}

.divider-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 0 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

/* Plans Grid */
.plans-grid {
  display: grid;
  gap: 2rem;
  max-width: 70rem;
  margin: 0 auto 4rem;
}

@media (min-width: 768px) {
  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.plan-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  position: relative;
  transition: border-color 0.2s;
}

.plan-card:hover {
  border-color: rgba(37, 100, 235, 0.3);
}

.plan-card.popular {
  border: 2px solid var(--primary-500);
  box-shadow: 0 10px 40px -15px rgba(37, 100, 235, 0.2);
  transform: scale(1.02);
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-600);
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.plan-header {
  margin-bottom: 1.5rem;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.plan-tagline {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-style: italic;
}

.plan-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.plan-price {
  margin-bottom: 1.5rem;
}

.plan-price .price {
  font-size: 2.5rem;
  font-weight: 700;
}

.plan-price .per-audit {
  color: var(--muted-foreground);
}

.plan-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.plan-features li svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary-600);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.plan-best-for {
  background: rgba(37, 100, 235, 0.05);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.plan-best-for .title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-700);
  margin-bottom: 0.5rem;
}

.plan-best-for ul {
  list-style: none;
}

.plan-best-for li {
  font-size: 0.875rem;
  color: var(--primary-700);
  display: flex;
  gap: 0.375rem;
}

.btn-full {
  width: 100%;
}

.btn-blue {
  background: var(--primary-600);
  color: white;
}

.btn-blue:hover {
  background: var(--primary-700);
}

.btn-ghost-white {
  background: transparent;
  border: 1px solid white;
  color: white;
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  background: white;
}

.faq-item:first-child {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.faq-item:last-child {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  border-bottom: none;
}

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

.faq-question:hover {
  color: var(--primary-700);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

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

.faq-answer {
  display: none;
  padding: 0 1.5rem 1rem;
  color: var(--muted-foreground);
  white-space: pre-line;
}

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

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* Responsive for Pricing Page */
@media (max-width: 768px) {
  .featured-content {
    grid-template-columns: 1fr;
  }
  
  .plans-grid {
    grid-template-columns: 1fr;
  }
  
  .plan-card.popular {
    transform: none;
  }
}

/* Comparison Table Section */
.comparison-section {
  margin-bottom: 5rem;
}

.comparison-section .container {
  max-width: 72rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 1rem;
  width: 100%;
  display: block;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: var(--primary-bg);
  font-weight: 600;
  font-size: 0.875rem;
}

.comparison-table th:first-child {
  border-top-left-radius: 1rem;
}

.comparison-table th:last-child {
  border-top-right-radius: 1rem;
}

.comparison-table td {
  font-size: 0.875rem;
}

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

.comparison-table .feature-name {
  font-weight: 500;
}

.comparison-table .check {
  color: var(--primary-600);
}

.comparison-table .dash {
  color: var(--muted-foreground);
}

/* Add-ons Section */
.addons-section {
  margin-bottom: 5rem;
}

.addons-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.addon-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}

.addon-card:hover {
  border-color: var(--primary-600);
}

.addon-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.addon-info p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.addon-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-600);
  padding-left: 24px;
}

/* Plan Turnaround and Ideal For */
.plan-turnaround {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.plan-ideal {
  background: var(--muted);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.plan-ideal h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.plan-ideal p {
  font-size: 0.875rem;
}

.check-icon {
  color: var(--primary-600);
  flex-shrink: 0;
}

/* Case Studies Page Specific Styles */
.page-header {
  text-align: center;
  margin-bottom: 6rem;
  margin-top: 8rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(37, 100, 235, 0.1);
  color: var(--primary-700);
  border: 1px solid rgba(37, 100, 235, 0.2);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-header h1 {
    font-size: 3rem;
  }
}

.page-header p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

/* Case Studies */
.case-studies {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

/* Case Studies Section - Redesigned */
.case-studies-section {
  padding: 5rem 0;
}

.case-studies-grid {
  display: grid;
  gap: 4rem;
}

.case-study-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.case-study-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.case-study-header {
  background: var(--primary-bg);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(37, 100, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.case-number-badge {
  width: 3rem;
  height: 3rem;
  background: var(--primary-600);
  color: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.case-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.case-study-content {
  padding: 2rem;
}

.case-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.meta-item {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding: 0.375rem 0.75rem;
  background: var(--muted);
  border-radius: 0.375rem;
}

.case-section {
  margin-bottom: 2.5rem;
}

.case-section:last-child {
  margin-bottom: 0;
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--foreground);
}

.section-label svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-600);
  flex-shrink: 0;
}

.problem-content {
  background: rgba(234, 179, 8, 0.05);
  border: 1px solid rgba(234, 179, 8, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.problem-content p {
  margin-bottom: 1rem;
  color: var(--foreground);
}

.problem-content p:last-child {
  margin-bottom: 0;
}

.case-testimonial {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--primary-bg);
  position: relative;
}

.case-testimonial .testimonial-quote-icon {
  position: absolute;
  top: -0.75rem;
  left: 0;
  width: 2rem;
  height: 2rem;
  color: var(--primary-600);
  background: white;
  padding: 0.25rem;
}

.outcome-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.outcome-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--primary-50);
  border-radius: 0.5rem;
}

.outcome-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-600);
  flex-shrink: 0;
}

.outcome-item span {
  color: var(--foreground);
  font-weight: 500;
}

.result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.result-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--primary-50);
  border: 1px solid var(--primary-200);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-700);
}

.result-tag svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .case-title {
    font-size: 2rem;
  }
  
  .case-study-content {
    padding: 2.5rem;
  }
  
  .case-study-header {
    padding: 2rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .case-studies-grid {
    gap: 5rem;
  }
}

/* Legacy case-study styles - keeping for backward compatibility */
.case-study {
  position: relative;
}

.case-number {
  display: none;
  position: absolute;
  left: -4rem;
  top: 0;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(37, 100, 235, 0.15);
  user-select: none;
}

@media (min-width: 768px) {
  .case-number {
    display: block;
  }
}

.card {
  background: var(--background);
  border: 1px solid rgba(229, 229, 229, 0.5);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card-header {
  background: linear-gradient(to right, rgba(37, 100, 235, 0.05), rgba(37, 100, 235, 0.1), rgba(37, 100, 235, 0.05));
  background-color: var(--primary-bg);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(37, 100, 235, 0.1);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.badge-secondary {
  background: rgba(37, 100, 235, 0.1);
  color: var(--primary-700);
  border: 1px solid rgba(37, 100, 235, 0.2);
}

.badge-outline {
  background: rgba(255, 255, 255, 0.5);
  color: var(--muted-foreground);
  border: 1px solid var(--border);
}

.card-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .card-header h2 {
    font-size: 1.5rem;
  }
}

.card-content {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Problem Section */
.problem-box {
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 0.5rem;
  padding: 1.25rem;
}

.problem-box-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.problem-icon {
  padding: 0.5rem;
  background: var(--yellow-light);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.problem-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--yellow-500);
}

.problem-content {
  flex: 1;
}

.problem-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #b45309;
  margin-bottom: 0.5rem;
}

.problem-text {
  color: rgba(10, 10, 10, 0.8);
}

.problem-bullets {
  margin-top: 0.75rem;
  list-style: none;
}

.problem-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(10, 10, 10, 0.7);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.problem-bullets li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  background: #eab308;
  border-radius: 9999px;
  flex-shrink: 0;
}

.problem-note {
  margin-top: 0.75rem;
  font-style: italic;
  font-size: 0.875rem;
  color: #b45309;
}

/* Section Headers */
.section-header {
  display: block;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.section-icon {
  padding: 0.375rem;
  background: rgba(37, 100, 235, 0.1);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary-600);
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--foreground);
}

/* Reviewed Tags */
.reviewed-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.reviewed-tag {
  padding: 0.375rem 0.75rem;
  background: rgba(245, 245, 245, 0.5);
  border: 1px solid rgba(229, 229, 229, 0.5);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Findings */
.findings-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.finding-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(245, 245, 245, 0.3);
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.finding-item:hover {
  background: rgba(245, 245, 245, 0.5);
}

.finding-number {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--yellow-light);
  color: var(--yellow-500);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.finding-text {
  color: var(--muted-foreground);
}

/* Delivered */
.delivered-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.delivered-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem;
}

.delivered-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-600);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.delivered-text {
  color: var(--muted-foreground);
}

/* Outcome Metrics */
.outcome-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .outcome-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
}

.metric-card {
  text-align: center;
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid;
}

.metric-card.total {
  background: linear-gradient(to bottom right, rgba(245, 245, 245, 0.5), rgba(245, 245, 245, 0.3));
  border-color: rgba(229, 229, 229, 0.5);
}

.metric-card.high-risk {
  background: linear-gradient(to bottom right, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
  border-color: rgba(239, 68, 68, 0.2);
}

.metric-card.fix-time {
  background: linear-gradient(to bottom right, rgba(37, 100, 235, 0.1), rgba(37, 100, 235, 0.05));
  border-color: rgba(37, 100, 235, 0.2);
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.metric-card.high-risk .metric-value {
  color: var(--red-500);
}

.metric-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

.metric-fix {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  margin-bottom: 0.25rem;
}

.metric-fix svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-600);
}

.metric-fix span {
  font-size: 1.125rem;
  font-weight: 700;
}

/* Outcome List */
.outcome-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem;
}

.outcome-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-600);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Result Tags */
.result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.result-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 100, 235, 0.1);
  border: 1px solid rgba(37, 100, 235, 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.result-tag svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary-600);
}

/* Testimonial (Case Studies) */
.testimonial {
  position: relative;
  margin-top: 2rem;
  padding-top: 2rem;
}

.testimonial-quote-icon {
  position: absolute;
  top: -1rem;
  left: 0;
  width: 2rem;
  height: 2rem;
  color: rgba(37, 100, 235, 0.2);
}

.testimonial blockquote {
  padding-left: 1.5rem;
}

.testimonial-text {
  font-size: 1.125rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .testimonial-text {
    font-size: 1.25rem;
  }
}

.testimonial-footer {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(to bottom right, rgba(37, 100, 235, 0.2), rgba(37, 100, 235, 0.1));
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar span {
  color: var(--primary-700);
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-author {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

/* CTA Section (Case Studies) */
.cta-section {
  margin-top: 6rem;
  text-align: center;
}

.cta-card {
  background: linear-gradient(to bottom right, rgba(37, 100, 235, 0.05), rgba(37, 100, 235, 0.1), rgba(37, 100, 235, 0.05));
  border: 1px solid rgba(37, 100, 235, 0.2);
  border-radius: 0.75rem;
  padding: 2rem;
}

@media (min-width: 768px) {
  .cta-card {
    padding: 3rem;
  }
}

.cta-content {
  max-width: 42rem;
  margin: 0 auto;
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 1.875rem;
  }
}

.cta-text {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-note {
  font-size: 0.875rem;
  color: white;
  margin-top: 1.5rem;
}

/* Responsive for Case Studies Page */
@media (max-width: 768px) {
  .case-number {
    display: none;
  }
  
  .card-content {
    padding: 1rem 1.5rem;
  }
  
  .card-header {
    padding: 1rem 1.5rem;
  }
}

/* FAQs Page Specific Styles */
.faq-category {
  margin-bottom: 3rem;
}

.faq-category h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-700);
  margin-bottom: 1.5rem;
}

.faq-item {
  transition: background 0.2s;
}

.faq-item:hover {
  background: white;
}

/* Still Have Questions Section */
.questions-section {
  padding: 5rem 0;
  background: var(--primary-bg);
}

.questions-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-card {
  background: white;
  border: 1px solid var(--primary-200);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.2s;
}

.contact-card:hover {
  border-color: var(--primary-600);
}

.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--primary-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-600);
}

.contact-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.btn-outline-blue {
  background: transparent;
  border: 1px solid var(--primary-600);
  color: var(--primary-600);
}

.btn-outline-blue:hover {
  background: var(--primary-50);
}

/* Logo text for Pixel Debt */
.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-600);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Amber/Orange button styles for legacy support */
.btn-amber {
  background: #d97706;
  color: white;
}

.btn-amber:hover {
  background: #b45309;
}

.check-amber {
  color: #d97706;
}

/* Vibe-coder styles (legacy support) */
.vibe-coder-card {
  max-width: 56rem;
  margin: 2rem auto 4rem;
  background: linear-gradient(to right, rgba(255, 251, 235, 0.8), rgba(255, 247, 237, 0.8));
  border: 2px solid #fbbf24;
  border-radius: 0.75rem;
  position: relative;
  overflow: hidden;
}

.vibe-coder-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #f59e0b;
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-bottom-left-radius: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.vibe-coder-badge svg {
  width: 1rem;
  height: 1rem;
}

.vibe-coder-header {
  padding: 1.5rem 1.5rem 1rem;
}

.vibe-coder-header h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  color: #b45309;
}

.vibe-coder-header h2 svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #d97706;
}

.vibe-coder-tagline {
  color: var(--muted-foreground);
  font-style: italic;
  margin-top: 0.25rem;
}

.vibe-coder-content {
  display: grid;
  gap: 2rem;
  padding: 0 1.5rem 1.5rem;
}

@media (min-width: 768px) {
  .vibe-coder-content {
    grid-template-columns: 1fr 1fr;
  }
}

.vibe-coder-price {
  margin-bottom: 1.5rem;
}

.vibe-coder-price .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #b45309;
}

.vibe-coder-price .per-audit {
  color: var(--muted-foreground);
}

.vibe-coder-price .turnaround {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.best-for-box.amber {
  background: rgba(251, 191, 36, 0.2);
}

.best-for-box.amber .title {
  color: #b45309;
}

.best-for-box.amber li {
  color: #b45309;
}

.vibe-coder-footer {
  padding: 0 1.5rem;
  text-align: center;
}

.vibe-coder-footer p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.vibe-coder-cta {
  padding: 1rem 1.5rem 1.5rem;
}

@media (max-width: 768px) {
  .vibe-coder-content {
    grid-template-columns: 1fr;
  }
}

/* Figma-specific styling */
.figma-icon {
  color: var(--primary-600);
}

/* Debt tracking specific styles */
.debt-severity-critical {
  color: var(--red-500);
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.debt-severity-high {
  color: var(--amber-600);
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.debt-severity-medium {
  color: var(--primary-600);
  background: rgba(37, 100, 235, 0.1);
  border: 1px solid rgba(37, 100, 235, 0.2);
}

.debt-severity-low {
  color: var(--green-600);
  background: rgba(22, 197, 94, 0.1);
  border: 1px solid rgba(22, 197, 94, 0.2);
}
