/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Montserrat:wght@600;700;800&display=swap');

/* CSS Variables - Strickland Branding */
:root {
  --strickland-blue: #2ea3f2;
  --strickland-dark: #32373c;
  --strickland-gray: #666666;
  --strickland-light-gray: #e2e2e2;
  --strickland-bg: #ffffff;
  --strickland-accent: #1e93e2;
}

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

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #374151;
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 50%, #ffffff 100%);
  min-height: 100vh;
  position: relative;
}

/* Smooth section transitions */
section {
  position: relative;
}

section + section {
  border-top: none;
}

/* Alternating section backgrounds for visual flow */
section:nth-child(even) {
  background: linear-gradient(180deg, #f3f7fc 0%, #e8f1fa 50%, #f3f7fc 100%);
}

section:nth-child(odd) {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

/* Utility Classes */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .section-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-container {
    padding: 0 2rem;
  }
}

/* Typography */
.strickland-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--strickland-dark);
  letter-spacing: -0.01em;
  word-spacing: 0.05em;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--strickland-dark);
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 48rem;
  margin: 0 auto;
}

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

/* Colors */
.text-strickland-blue {
  color: var(--strickland-blue);
}

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

.border-strickland-blue {
  border-color: var(--strickland-blue);
}

.text-strickland-dark {
  color: var(--strickland-dark);
}

.bg-strickland-dark {
  background-color: var(--strickland-dark);
}

/* Modern Flat Buttons - 2025 Design */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--strickland-blue) 0%, var(--strickland-accent) 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--strickland-accent) 0%, #1a7dc9 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46, 163, 242, 0.35);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2563eb;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-white:hover {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Outline button variant */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--strickland-blue);
  background: transparent;
  border: 2px solid var(--strickland-blue);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--strickland-blue);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46, 163, 242, 0.3);
}

/* Large button variant */
.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

/* Header button - smaller */
.btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--strickland-blue) 0%, var(--strickland-accent) 100%);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-header:hover {
  background: linear-gradient(135deg, var(--strickland-accent) 0%, #1a7dc9 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46, 163, 242, 0.3);
}

/* Legacy button styles - kept for compatibility */
.strickland-button {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  background: linear-gradient(135deg, var(--strickland-blue) 0%, var(--strickland-accent) 100%);
  color: white;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.strickland-button:hover {
  background: linear-gradient(135deg, var(--strickland-accent) 0%, #1a7dc9 100%);
  transform: translateY(-1px);
}

.strickland-button-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  background-color: var(--strickland-dark);
  color: white;
  font-weight: 600;
  transition: background-color 0.2s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.strickland-button-secondary:hover {
  background-color: #23282d;
}

/* Inputs */
.strickland-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  background-color: white;
  color: #1f2937;
  transition: all 0.2s ease;
}

.strickland-input::placeholder {
  color: #9ca3af;
}

.strickland-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Cards */
.feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(46, 163, 242, 0.08);
  border: 1px solid #e8f1fa;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--strickland-blue), var(--strickland-accent));
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 20px 30px rgba(46, 163, 242, 0.12);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.strickland-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

/* Stats */
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--strickland-blue), var(--strickland-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding: 0.25rem 0;
  line-height: 1.1;
}

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

/* Navigation */
nav {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.96) 100%);
  backdrop-filter: blur(12px);
}

.nav-blur {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.96) 100%);
  backdrop-filter: blur(12px);
}

/* Grid Layout */
.grid {
  display: grid;
  gap: 2rem;
}

/* Small screens (640px+) */
@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .sm\:gap-4 {
    gap: 1rem;
  }

  .sm\:gap-5 {
    gap: 1.25rem;
  }

  .sm\:gap-6 {
    gap: 1.5rem;
  }

  .sm\:gap-8 {
    gap: 2rem;
  }

  .sm\:gap-12 {
    gap: 3rem;
  }

  .sm\:text-base {
    font-size: 1rem;
  }

  .sm\:text-lg {
    font-size: 1.125rem;
  }

  .sm\:text-xl {
    font-size: 1.25rem;
  }

  .sm\:text-2xl {
    font-size: 1.5rem;
  }

  .sm\:text-3xl {
    font-size: 1.875rem;
  }

  .sm\:text-5xl {
    font-size: 3rem;
  }

  .sm\:text-6xl {
    font-size: 3.75rem;
  }

  .sm\:p-6 {
    padding: 1.5rem;
  }

  .sm\:p-8 {
    padding: 2rem;
  }

  .sm\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .sm\:mb-4 {
    margin-bottom: 1rem;
  }

  .sm\:mb-8 {
    margin-bottom: 2rem;
  }

  .sm\:mb-16 {
    margin-bottom: 4rem;
  }

  .sm\:mb-20 {
    margin-bottom: 5rem;
  }

  .sm\:w-5 {
    width: 1.25rem;
  }

  .sm\:h-5 {
    height: 1.25rem;
  }

  .sm\:w-6 {
    width: 1.5rem;
  }

  .sm\:h-6 {
    height: 1.5rem;
  }

  .sm\:w-12 {
    width: 3rem;
  }

  .sm\:h-12 {
    height: 3rem;
  }

  .sm\:rounded-xl {
    border-radius: 0.75rem;
  }

  .sm\:rounded-2xl {
    border-radius: 1rem;
  }
}

/* Medium screens (768px+) */
@media (min-width: 768px) {
  .grid.md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid.md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid.md\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .md\:gap-8 {
    gap: 2rem;
  }

  .md\:gap-12 {
    gap: 3rem;
  }
}

/* Large screens (1024px+) */
@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .lg\:gap-8 {
    gap: 2rem;
  }

  .lg\:gap-12 {
    gap: 3rem;
  }

  .lg\:gap-16 {
    gap: 4rem;
  }

  .lg\:text-3xl {
    font-size: 1.875rem;
  }

  .lg\:text-4xl {
    font-size: 2.25rem;
  }

  .lg\:text-5xl {
    font-size: 3rem;
  }

  .lg\:text-6xl {
    font-size: 3.75rem;
  }

  .lg\:text-7xl {
    font-size: 4.5rem;
  }

  .lg\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .lg\:p-8 {
    padding: 2rem;
  }

  .lg\:p-10 {
    padding: 2.5rem;
  }
}

/* Flexbox utilities */
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

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

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.flex-col {
  flex-direction: column;
}

.flex-1 {
  flex: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

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

  .sm\:inline {
    display: inline;
  }
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:block {
    display: block;
  }
}

/* Spacing */
.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

/* Positioning */
.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.bottom-6 {
  bottom: 1.5rem;
}

.right-6 {
  right: 1.5rem;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.-z-10 {
  z-index: -10;
}

/* Text alignment */
.text-center {
  text-align: center;
}

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

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

/* Widths and heights */
.w-full {
  width: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-7xl {
  max-width: 80rem;
}

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

/* Padding and Margin */
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pt-32 {
  padding-top: 8rem;
}

.pt-36 {
  padding-top: 9rem;
}

.pt-40 {
  padding-top: 10rem;
}

.pt-44 {
  padding-top: 11rem;
}

@media (min-width: 768px) {
  .md\:pt-40 {
    padding-top: 10rem;
  }
  .md\:pt-44 {
    padding-top: 11rem;
  }
}

.pb-20 {
  padding-bottom: 5rem;
}

.p-4 {
  padding: 1rem;
}

.p-8 {
  padding: 2rem;
}

.p-10 {
  padding: 2.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

/* Border */
.border {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-t {
  border-top-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}

.border-gray-100 {
  border-color: #f3f4f6;
}

.border-gray-200 {
  border-color: #e5e7eb;
}

.border-gray-300 {
  border-color: #d1d5db;
}

.border-gray-700 {
  border-color: #374151;
}

.border-blue-200 {
  border-color: #bfdbfe;
}

.border-green-200 {
  border-color: #bbf7d0;
}

.border-purple-200 {
  border-color: #e9d5ff;
}

.border-amber-200 {
  border-color: #fde68a;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-t-2xl {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

/* Shadows */
.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.shadow-md {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.shadow-2xl {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

/* Colors - Text */
.text-white {
  color: white;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-500 {
  color: #6b7280;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-700 {
  color: #374151;
}

.text-gray-800 {
  color: #1f2937;
}

.text-green-600 {
  color: #16a34a;
}

.text-blue-100 {
  color: #dbeafe;
}

.text-blue-200 {
  color: #bfdbfe;
}

.text-blue-800 {
  color: #1e40af;
}

.text-amber-800 {
  color: #92400e;
}

/* Colors - Background */
.bg-white {
  background-color: white;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.bg-gray-800 {
  background-color: #1f2937;
}

.bg-blue-50 {
  background-color: #eff6ff;
}

.bg-blue-100 {
  background-color: #dbeafe;
}

.bg-green-100 {
  background-color: #dcfce7;
}

.bg-purple-100 {
  background-color: #f3e8ff;
}

.bg-amber-50 {
  background-color: #fffbeb;
}

.bg-red-50 {
  background-color: #fef2f2;
}

.border-red-200 {
  border-color: #fecaca;
}

.text-red-800 {
  color: #991b1b;
}

/* Gradients */
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-blue-50 {
  --tw-gradient-from: #eff6ff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0));
}

.to-indigo-50 {
  --tw-gradient-to: #eef2ff;
}

.from-blue-500 {
  --tw-gradient-from: #3b82f6;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0));
}

.to-blue-600 {
  --tw-gradient-to: #2563eb;
}

.to-blue-700 {
  --tw-gradient-to: #1d4ed8;
}

.from-purple-500 {
  --tw-gradient-from: #a855f7;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0));
}

.to-purple-600 {
  --tw-gradient-to: #9333ea;
}

.from-green-500 {
  --tw-gradient-from: #22c55e;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 197, 94, 0));
}

.to-green-600 {
  --tw-gradient-to: #16a34a;
}

.from-gray-50 {
  --tw-gradient-from: #f9fafb;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0));
}

.to-blue-50 {
  --tw-gradient-to: #eff6ff;
}

/* Font sizes */
.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

@media (min-width: 768px) {
  .md\:text-2xl {
    font-size: 1.5rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
  }

  .md\:text-7xl {
    font-size: 4.5rem;
  }
}

/* Font weight */
.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

/* Leading */
.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

/* Prose styles for chat messages */
.prose-chat {
  color: #1f2937;
}

.prose-chat strong {
  font-weight: 700;
  color: var(--strickland-dark);
}

.prose-chat em {
  font-style: italic;
  color: #4b5563;
}

.prose-chat ul,
.prose-chat ol {
  margin: 0.5rem 0;
  margin-left: 1rem;
}

.prose-chat ul {
  list-style-type: disc;
}

.prose-chat ol {
  list-style-type: decimal;
}

.prose-chat li {
  color: #374151;
  margin: 0.25rem 0;
}

.prose-chat p {
  margin-bottom: 0.5rem;
  color: #374151;
}

.prose-chat p:last-child {
  margin-bottom: 0;
}

.prose-chat h1,
.prose-chat h2,
.prose-chat h3,
.prose-chat h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--strickland-dark);
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

.prose-chat a {
  color: var(--strickland-blue);
  text-decoration: none;
}

.prose-chat a:hover {
  text-decoration: underline;
}

.prose-chat code {
  background-color: #f3f4f6;
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
  color: #1f2937;
  border: 1px solid #d1d5db;
  font-size: 0.875em;
}

.prose-chat blockquote {
  border-left: 2px solid var(--strickland-blue);
  padding-left: 0.75rem;
  font-style: italic;
  color: #4b5563;
}

/* Hidden class - can be overridden by responsive display utilities */
.hidden {
  display: none;
}

/* Responsive overrides for hidden class */
@media (min-width: 768px) {
  .hidden.md\:flex {
    display: flex;
  }
  .hidden.md\:block {
    display: block;
  }
}

@media (min-width: 640px) {
  .hidden.sm\:block {
    display: block;
  }
  .hidden.sm\:flex {
    display: flex;
  }
}

@media (min-width: 768px) {
  .md\:hidden {
    display: none;
  }
}

/* Transitions */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Hover states */
.hover\:text-white:hover {
  color: white;
}

.hover\:text-strickland-blue:hover {
  color: var(--strickland-blue);
}

.hover\:bg-gray-50:hover {
  background-color: #f9fafb;
}

.hover\:bg-gray-100:hover {
  background-color: #f3f4f6;
}

.hover\:bg-blue-50:hover {
  background-color: #eff6ff;
}

.hover\:shadow-2xl:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:-translate-y-1:hover {
  transform: translateY(-0.25rem);
}

.hover\:underline:hover {
  text-decoration: underline;
}

/* Cursor */
.cursor-pointer {
  cursor: pointer;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

/* Transform utilities */
.-translate-x-1\/2 {
  transform: translateX(-50%);
}

.-translate-y-1\/2 {
  transform: translateY(-50%);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.animate-slide-down {
  animation: slideDown 0.4s ease-out;
}

.animate-bounce {
  animation: bounce 1s infinite;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* FAQ specific styles */
.faq-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

.faq-question {
  background: none;
  border: none;
  font: inherit;
}

.faq-item:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f3f7ff 100%);
}

.faq-chevron {
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Calculator Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(50, 55, 60, 0.6);
  backdrop-filter: blur(8px);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 1.25rem;
  box-shadow: 0 25px 50px rgba(46, 163, 242, 0.15);
  border: 1px solid #e8f1fa;
  max-width: 56rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Chat Widget */
.chat-widget-button,
button#chat-toggle-btn {
  position: fixed !important;
  bottom: 1.5rem !important;
  right: 1.5rem !important;
  z-index: 50 !important;
  width: 70px !important;
  height: 70px !important;
  min-width: 70px !important;
  min-height: 70px !important;
  border-radius: 50% !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, var(--strickland-blue), #3b82f6, #8b5cf6) !important;
  border: 3px solid transparent !important;
  background-clip: padding-box !important;
  box-shadow: 0 8px 32px rgba(46, 163, 242, 0.4) !important;
  cursor: pointer !important;
}

button#chat-toggle-btn::before,
.chat-widget-button::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50% !important;
  padding: 3px;
  background: linear-gradient(135deg, var(--strickland-blue), #3b82f6, #8b5cf6, var(--strickland-blue));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotate-gradient 3s linear infinite;
  z-index: -1;
}

@keyframes rotate-gradient {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

button#chat-toggle-btn:hover,
.chat-widget-button:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 12px 48px rgba(46, 163, 242, 0.6) !important;
}

button#chat-toggle-btn svg,
.chat-widget-button svg {
  width: 30px !important;
  height: 30px !important;
  color: white !important;
  flex-shrink: 0 !important;
}

.chat-widget-button .hidden {
  display: none !important;
}

/* Override any button defaults */
button#chat-toggle-btn span {
  display: none !important;
}

/* Override strickland-button styles for chat widget */
button#chat-toggle-btn.strickland-button {
  border-radius: 50% !important;
  padding: 0 !important;
  width: 70px !important;
  height: 70px !important;
}

button#chat-toggle-btn.strickland-button:hover {
  padding: 0 !important;
}

.chat-window {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 90vw;
  max-width: 28rem;
  height: 600px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e7eb;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
}

.chat-message {
  display: flex;
  margin-bottom: 1rem;
}

.chat-message.user {
  justify-content: flex-end;
}

.chat-message.assistant {
  justify-content: flex-start;
}

.chat-bubble {
  max-width: 80%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.chat-bubble.user {
  background-color: var(--strickland-blue);
  color: white;
}

.chat-bubble.assistant {
  background-color: white;
  border: 1px solid #e5e7eb;
  color: #1f2937;
}

/* Responsive Typography */
@media (max-width: 640px) {
  .text-5xl {
    font-size: 2.5rem;
  }

  .text-4xl {
    font-size: 2rem;
  }

  .text-3xl {
    font-size: 1.75rem;
  }
}

/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }
}

/* Accessibility */
*:focus-visible {
  outline: 2px solid var(--strickland-blue);
  outline-offset: 2px;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only:focus,
.focus\:not-sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  padding: inherit;
  margin: inherit;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* Scrollbar styles */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #f1f1f1 0%, #e5e7eb 100%);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--strickland-blue) 0%, var(--strickland-accent) 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--strickland-accent) 0%, #1a7dc9 100%);
}

/* Loading spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid #f3f4f6;
  border-top-color: var(--strickland-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Icon sizing */
svg {
  flex-shrink: 0;
}

.w-3 {
  width: 0.75rem;
  height: 0.75rem;
}

.w-4 {
  width: 1rem;
  height: 1rem;
}

.w-5 {
  width: 1.25rem;
  height: 1.25rem;
}

.w-6 {
  width: 1.5rem;
  height: 1.5rem;
}

.w-7 {
  width: 1.75rem;
  height: 1.75rem;
}

.w-8 {
  width: 2rem;
  height: 2rem;
}

.w-10 {
  width: 2.5rem;
  height: 2.5rem;
}

.w-12 {
  width: 3rem;
  height: 3rem;
}

.w-14 {
  width: 3.5rem;
  height: 3.5rem;
}

.w-16 {
  width: 4rem;
  height: 4rem;
}

.h-3 {
  height: 0.75rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-7 {
  height: 1.75rem;
}

.h-8 {
  height: 2rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-14 {
  height: 3.5rem;
}

.h-16 {
  height: 4rem;
}

/* Ensure SVGs respect their container size */
svg.w-4, svg.h-4 {
  width: 1rem;
  height: 1rem;
}

svg.w-5, svg.h-5 {
  width: 1.25rem;
  height: 1.25rem;
}

svg.w-6, svg.h-6 {
  width: 1.5rem;
  height: 1.5rem;
}

svg.w-7, svg.h-7 {
  width: 1.75rem;
  height: 1.75rem;
}

svg.w-8, svg.h-8 {
  width: 2rem;
  height: 2rem;
}

/* Subtle gradient enhancements */

/* Hero section subtle gradient overlay */
.hero-gradient-bg {
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.5) 0%, rgba(238, 242, 255, 0.3) 50%, rgba(255, 255, 255, 0.5) 100%);
}

/* Subtle gradient borders for cards */
.gradient-border {
  position: relative;
}

.gradient-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--strickland-blue), transparent);
  opacity: 0.5;
}

/* Subtle section dividers with gradients - only on main content sections */
section.with-divider::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 800px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 163, 242, 0.1), transparent);
  pointer-events: none;
}

/* Subtle gradient for white backgrounds */
.bg-white {
  background: linear-gradient(180deg, #ffffff 0%, #fefefe 100%);
}

/* Ensure proper contrast - no white text on light backgrounds */
.text-white {
  color: white;
}

/* Override white text when used on light backgrounds */
.bg-white .text-white,
.bg-gray-50 .text-white,
.bg-blue-50 .text-white,
section:nth-child(odd) .text-white:not(.btn-primary):not(.btn-secondary):not(.btn-header):not([class*="bg-gradient"]):not([class*="bg-strickland"]):not([class*="bg-blue-"]):not([class*="bg-green-"]):not([class*="bg-purple-"]) {
  color: var(--strickland-dark);
}

/* Subtle gradient hover for content links */
.section-container a:not(.btn-primary):not(.btn-secondary):not(.btn-white):not(.btn-header):not([class*="text-gray"]):hover {
  background: linear-gradient(180deg, transparent 0%, rgba(46, 163, 242, 0.05) 100%);
  border-radius: 4px;
}

/* Enhanced step number circles with gradient */
.step-number {
  background: linear-gradient(135deg, var(--strickland-blue) 0%, #1d4ed8 100%);
}

/* Two column layout for image + content section */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .two-col-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Two column section - optimized for side-by-side display */
.two-col-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .two-col-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .two-col-section > div:first-child {
    order: 2;
  }
  
  .two-col-section > div:last-child {
    order: 1;
  }
}

/* Hero Section - Professional Sizing */
.hero-section {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-section {
    padding-top: 110px;
    padding-bottom: 100px;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

/* Hero Headline - Professional Sizing */
.hero-headline {
  font-size: 2.5rem;
  line-height: 1.1;
}

@media (min-width: 640px) {
  .hero-headline {
    font-size: 3.25rem;
  }
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-headline {
    font-size: 4.5rem;
  }
}

@media (min-width: 1280px) {
  .hero-headline {
    font-size: 5rem;
  }
}

/* Hero Buttons */
.hero-btn {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
  gap: 0.625rem;
}

@media (min-width: 1024px) {
  .hero-btn {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
    gap: 0.75rem;
  }
}

/* ============================================
   ENHANCED CHAT DEMO ANIMATIONS
   Sophisticated, cinematic demo experience
   ============================================ */

/* Demo Section Spacing */
#strickland-gpt-demo {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  #strickland-gpt-demo {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

/* Slow Pulse for Background Elements */
@keyframes pulse-slow {
  0%, 100% {
    opacity: 0.15;
    transform: scale(1);
  }
  50% {
    opacity: 0.25;
    transform: scale(1.05);
  }
}

.animate-pulse-slow {
  animation: pulse-slow 4s ease-in-out infinite;
}

/* Demo Message Animations - Sophisticated Timing */
.demo-msg {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.demo-msg.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Individual Message Entrance Animations - 5 second gaps */
.demo-msg-1 {
  animation: messageFadeInBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.5s;
}

.demo-msg-2 {
  animation: messageFadeInBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 5.5s;
}

.demo-msg-3 {
  animation: messageFadeInBounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 10.5s;
}

.demo-msg-4 {
  animation: messageFadeInBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 15.5s;
}

/* Thinking/Typing Indicator Special Handling - Shows for 5 seconds */
.demo-msg-typing {
  animation: messageFadeInBounce 0.3s ease forwards 10.5s,
             messageFadeOutUp 0.3s ease forwards 15.5s;
}

/* Message Animation Keyframes */
@keyframes messageFadeInBounce {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  60% {
    transform: translateY(-4px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes messageFadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
}

/* ============================================
   3D RING PRELOADER - Thinking Animation
   ============================================ */

.strickland-preloader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 55px;
  perspective: 200px;
  animation: stricklandTiltSpin 12s linear infinite;
  transform-style: preserve-3d;
}

.strickland-preloader__ring {
  animation: stricklandSpin 10s linear infinite;
  transform-style: preserve-3d;
  position: relative;
  height: 16px;
  width: 9px;
}

.strickland-preloader__ring:nth-child(even) {
  animation-direction: reverse;
}

.strickland-preloader__sector {
  font-weight: 700;
  font-size: 10px;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  color: #3B82F6;
  display: inline-block;
  width: 100%;
  height: 100%;
  transform: translateZ(28px);
  line-height: 1;
}

.strickland-preloader__sector:empty::before {
  background: linear-gradient(transparent 45%, #3B82F6 45% 55%, transparent 55%);
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
}

/* Sector rotations for 3D ring - balanced size */
.strickland-preloader__sector:nth-child(1) { transform: rotateY(0deg) translateZ(28px); }
.strickland-preloader__sector:nth-child(2) { transform: rotateY(15deg) translateZ(28px); }
.strickland-preloader__sector:nth-child(3) { transform: rotateY(30deg) translateZ(28px); }
.strickland-preloader__sector:nth-child(4) { transform: rotateY(45deg) translateZ(28px); }
.strickland-preloader__sector:nth-child(5) { transform: rotateY(60deg) translateZ(28px); }
.strickland-preloader__sector:nth-child(6) { transform: rotateY(75deg) translateZ(28px); }
.strickland-preloader__sector:nth-child(7) { transform: rotateY(90deg) translateZ(28px); }
.strickland-preloader__sector:nth-child(8) { transform: rotateY(105deg) translateZ(28px); }
.strickland-preloader__sector:nth-child(9) { transform: rotateY(120deg) translateZ(28px); }
.strickland-preloader__sector:nth-child(10) { transform: rotateY(135deg) translateZ(28px); }
.strickland-preloader__sector:nth-child(11) { transform: rotateY(150deg) translateZ(28px); }
.strickland-preloader__sector:nth-child(12) { transform: rotateY(165deg) translateZ(28px); }
.strickland-preloader__sector:nth-child(13) { transform: rotateY(180deg) translateZ(28px); }
.strickland-preloader__sector:nth-child(14) { transform: rotateY(195deg) translateZ(28px); }
.strickland-preloader__sector:nth-child(15) { transform: rotateY(210deg) translateZ(28px); }
.strickland-preloader__sector:nth-child(16) { transform: rotateY(225deg) translateZ(28px); }
.strickland-preloader__sector:nth-child(17) { transform: rotateY(240deg) translateZ(28px); }
.strickland-preloader__sector:nth-child(18) { transform: rotateY(255deg) translateZ(28px); }
.strickland-preloader__sector:nth-child(19) { transform: rotateY(270deg) translateZ(28px); }
.strickland-preloader__sector:nth-child(20) { transform: rotateY(285deg) translateZ(28px); }
.strickland-preloader__sector:nth-child(21) { transform: rotateY(300deg) translateZ(28px); }
.strickland-preloader__sector:nth-child(22) { transform: rotateY(315deg) translateZ(28px); }
.strickland-preloader__sector:nth-child(23) { transform: rotateY(330deg) translateZ(28px); }
.strickland-preloader__sector:nth-child(24) { transform: rotateY(345deg) translateZ(28px); }

@keyframes stricklandTiltSpin {
  from { transform: rotateY(0) rotateX(30deg); }
  to { transform: rotateY(1turn) rotateX(30deg); }
}

.strickland-preloader {
  animation: stricklandTiltSpin 16s linear infinite;
}

@keyframes stricklandSpin {
  from { transform: rotateY(0); }
  to { transform: rotateY(1turn); }
}

/* Message Hover Effects */
.demo-msg > div:last-child {
  transition: all 0.3s ease;
}

.demo-msg:hover > div:last-child {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Replay Button - Simple hover effect */
#demo-replay-btn {
  outline: none !important;
}

#demo-replay-btn:focus {
  outline: none !important;
}

#demo-replay-btn svg {
  transition: transform 0.5s ease;
  outline: none !important;
}

#demo-replay-btn:hover svg {
  transform: rotate(-180deg);
}

/* Add extra padding to input area to accommodate replay button */
#strickland-gpt-demo .bg-white.border-t {
  padding-bottom: 1.5rem !important;
}

/* Smooth Scroll for Demo Container */
#demo-messages-container {
  scroll-behavior: smooth;
  position: relative;
}

/* Subtle glow on hover */
.demo-chat-container::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, rgba(46, 163, 242, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  border-radius: 1rem;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.demo-chat-container:hover::before {
  opacity: 1;
}

/* ============================================
   DEMO SIMULATION STYLES
   ============================================ */

/* Suggested button animations */
.demo-suggested-btn {
  transform-origin: center;
  transition: all 0.3s ease;
  outline: none !important;
}

.demo-suggested-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(46, 163, 242, 0.15);
  border-color: var(--strickland-blue);
  outline: none !important;
}

.demo-suggested-btn:focus {
  outline: none !important;
  box-shadow: 0 4px 12px rgba(46, 163, 242, 0.15);
}

.demo-suggested-btn.clicked {
  background-color: var(--strickland-blue) !important;
  background-image: none !important;
  color: #ffffff !important;
  border-color: var(--strickland-blue) !important;
  transform: scale(0.98);
  box-shadow: 0 4px 12px rgba(46, 163, 242, 0.4) !important;
  outline: none !important;
}

/* Typing animation */
.typing-text::after {
  content: '|';
  animation: blink 1s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Remove all outlines and borders from demo section buttons and icons */
#strickland-gpt-demo button,
#strickland-gpt-demo input,
#strickland-gpt-demo svg,
#strickland-gpt-demo a,
#demo-open-chat,
#demo-replay-btn,
.demo-suggested-btn {
  outline: none !important;
}

#strickland-gpt-demo button:focus,
#strickland-gpt-demo input:focus,
#strickland-gpt-demo a:focus,
#demo-open-chat:focus,
#demo-replay-btn:focus,
.demo-suggested-btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

#strickland-gpt-demo button:focus-visible,
#demo-replay-btn:focus-visible,
#strickland-gpt-demo input:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* Specifically target SVG icons to remove any borders */
#strickland-gpt-demo svg,
#strickland-gpt-demo svg * {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Input and button in demo - no borders/outlines/shadows */
#strickland-gpt-demo input,
#strickland-gpt-demo button {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

#strickland-gpt-demo input:focus,
#strickland-gpt-demo button:focus,
#strickland-gpt-demo input:active,
#strickland-gpt-demo button:active {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Override any global focus styles */
#strickland-gpt-demo *:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* Remove ALL borders and outlines from demo icons and buttons */
#strickland-gpt-demo svg,
#strickland-gpt-demo svg *,
#strickland-gpt-demo path {
  border: none !important;
  outline: none !important;
}

#strickland-gpt-demo button {
  outline: none !important;
  border: 0 !important;
}

#strickland-gpt-demo button:focus,
#strickland-gpt-demo button:active {
  outline: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

#strickland-gpt-demo input {
  outline: none !important;
  border: 0 !important;
}

#strickland-gpt-demo input:focus {
  outline: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Speech Bubble Tails */

/* Bot message bubble - tail pointing LEFT */
.demo-bot-bubble::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 12px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid white;
}

/* User message bubble - tail pointing RIGHT */
.demo-user-bubble::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 12px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid var(--strickland-blue);
}

/* Demo Message Styling - Good readable size */
#demo-messages-area p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #1f2937;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Ensure last message has padding before input area */
#demo-messages-area > div:last-child {
  margin-bottom: 2rem;
}

/* ============================================
   LARGE BACKGROUND ANIMATION - Left Column
   Positioned like chat demo message
   ============================================ */

.strickland-bg-preloader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 650px;
  height: 320px;
  perspective: 1300px;
  animation: bgTiltSpin 50s linear infinite;
  transform-style: preserve-3d;
}

.strickland-bg-ring {
  animation: bgSpin 35s linear infinite;
  transform-style: preserve-3d;
  position: relative;
  height: 100px;
  width: 50px;
}

.strickland-bg-ring:nth-child(even) {
  animation-direction: reverse;
}

.strickland-bg-sector {
  font-weight: 800;
  font-size: 65px;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  color: var(--strickland-blue);
  display: inline-block;
  width: 100%;
  height: 100%;
  transform: translateZ(180px);
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
}

.strickland-bg-sector:empty::before {
  background: linear-gradient(transparent 45%, var(--strickland-blue) 45% 55%, transparent 55%);
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
}

/* Sector rotations for large background ring */
.strickland-bg-sector:nth-child(1) { transform: rotateY(0deg) translateZ(180px); }
.strickland-bg-sector:nth-child(2) { transform: rotateY(15deg) translateZ(180px); }
.strickland-bg-sector:nth-child(3) { transform: rotateY(30deg) translateZ(180px); }
.strickland-bg-sector:nth-child(4) { transform: rotateY(45deg) translateZ(180px); }
.strickland-bg-sector:nth-child(5) { transform: rotateY(60deg) translateZ(180px); }
.strickland-bg-sector:nth-child(6) { transform: rotateY(75deg) translateZ(180px); }
.strickland-bg-sector:nth-child(7) { transform: rotateY(90deg) translateZ(180px); }
.strickland-bg-sector:nth-child(8) { transform: rotateY(105deg) translateZ(180px); }
.strickland-bg-sector:nth-child(9) { transform: rotateY(120deg) translateZ(180px); }
.strickland-bg-sector:nth-child(10) { transform: rotateY(135deg) translateZ(180px); }
.strickland-bg-sector:nth-child(11) { transform: rotateY(150deg) translateZ(180px); }
.strickland-bg-sector:nth-child(12) { transform: rotateY(165deg) translateZ(180px); }
.strickland-bg-sector:nth-child(13) { transform: rotateY(180deg) translateZ(180px); }
.strickland-bg-sector:nth-child(14) { transform: rotateY(195deg) translateZ(180px); }
.strickland-bg-sector:nth-child(15) { transform: rotateY(210deg) translateZ(180px); }
.strickland-bg-sector:nth-child(16) { transform: rotateY(225deg) translateZ(180px); }
.strickland-bg-sector:nth-child(17) { transform: rotateY(240deg) translateZ(180px); }
.strickland-bg-sector:nth-child(18) { transform: rotateY(255deg) translateZ(180px); }
.strickland-bg-sector:nth-child(19) { transform: rotateY(270deg) translateZ(180px); }
.strickland-bg-sector:nth-child(20) { transform: rotateY(285deg) translateZ(180px); }
.strickland-bg-sector:nth-child(21) { transform: rotateY(300deg) translateZ(180px); }
.strickland-bg-sector:nth-child(22) { transform: rotateY(315deg) translateZ(180px); }
.strickland-bg-sector:nth-child(23) { transform: rotateY(330deg) translateZ(180px); }
.strickland-bg-sector:nth-child(24) { transform: rotateY(345deg) translateZ(180px); }

/* ============================================
   SCROLL-BASED PRELOADER - Section Transition
   No auto-animation, controlled by scroll
   ============================================ */

.strickland-preloader-scroll {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 450px;
  height: 225px;
  perspective: 900px;
  transform-style: preserve-3d;
  transition: transform 0.1s linear;
}

.strickland-preloader__ring-scroll {
  transform-style: preserve-3d;
  position: relative;
  height: 75px;
  width: 40px;
  transition: transform 0.1s linear;
}

.strickland-preloader__sector-scroll {
  font-weight: 700;
  font-size: 48px;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  color: #3B82F6;
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 1;
}

.strickland-preloader__sector-scroll:empty::before {
  background: linear-gradient(transparent 45%, #3B82F6 45% 55%, transparent 55%);
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
}

/* Sector rotations for scroll-based ring - even larger */
.strickland-preloader__sector-scroll:nth-child(1) { transform: rotateY(0deg) translateZ(130px); }
.strickland-preloader__sector-scroll:nth-child(2) { transform: rotateY(15deg) translateZ(130px); }
.strickland-preloader__sector-scroll:nth-child(3) { transform: rotateY(30deg) translateZ(130px); }
.strickland-preloader__sector-scroll:nth-child(4) { transform: rotateY(45deg) translateZ(130px); }
.strickland-preloader__sector-scroll:nth-child(5) { transform: rotateY(60deg) translateZ(130px); }
.strickland-preloader__sector-scroll:nth-child(6) { transform: rotateY(75deg) translateZ(130px); }
.strickland-preloader__sector-scroll:nth-child(7) { transform: rotateY(90deg) translateZ(130px); }
.strickland-preloader__sector-scroll:nth-child(8) { transform: rotateY(105deg) translateZ(130px); }
.strickland-preloader__sector-scroll:nth-child(9) { transform: rotateY(120deg) translateZ(130px); }
.strickland-preloader__sector-scroll:nth-child(10) { transform: rotateY(135deg) translateZ(130px); }
.strickland-preloader__sector-scroll:nth-child(11) { transform: rotateY(150deg) translateZ(130px); }
.strickland-preloader__sector-scroll:nth-child(12) { transform: rotateY(165deg) translateZ(130px); }
.strickland-preloader__sector-scroll:nth-child(13) { transform: rotateY(180deg) translateZ(130px); }
.strickland-preloader__sector-scroll:nth-child(14) { transform: rotateY(195deg) translateZ(130px); }
.strickland-preloader__sector-scroll:nth-child(15) { transform: rotateY(210deg) translateZ(130px); }
.strickland-preloader__sector-scroll:nth-child(16) { transform: rotateY(225deg) translateZ(130px); }
.strickland-preloader__sector-scroll:nth-child(17) { transform: rotateY(240deg) translateZ(130px); }
.strickland-preloader__sector-scroll:nth-child(18) { transform: rotateY(255deg) translateZ(130px); }
.strickland-preloader__sector-scroll:nth-child(19) { transform: rotateY(270deg) translateZ(130px); }
.strickland-preloader__sector-scroll:nth-child(20) { transform: rotateY(285deg) translateZ(130px); }
.strickland-preloader__sector-scroll:nth-child(21) { transform: rotateY(300deg) translateZ(130px); }
.strickland-preloader__sector-scroll:nth-child(22) { transform: rotateY(315deg) translateZ(130px); }
.strickland-preloader__sector-scroll:nth-child(23) { transform: rotateY(330deg) translateZ(130px); }
.strickland-preloader__sector-scroll:nth-child(24) { transform: rotateY(345deg) translateZ(130px); }

/* Auto-expanding textarea */
#demo-input-field {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.5;
}

#demo-input-container {
  transition: all 0.2s ease;
}

/* User message text */
#demo-messages-area .text-white {
  color: #ffffff;
}

/* Only actual hyperlinks should be blue and underlined */
#demo-messages-area a {
  color: var(--strickland-blue);
  text-decoration: underline;
  font-weight: normal;
}

/* Bold text should be BLACK, not blue */
#demo-messages-area strong {
  font-weight: 700;
  color: #000000;
}

/* Bold text in user messages should be white */
#demo-messages-area .text-white strong {
  color: #ffffff;
}

/* ============================================
   INLINE 45F CALCULATOR STYLES
   ============================================ */

.inline-calc-input {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--strickland-dark);
  font-size: 0.9375rem;
  outline: none;
  transition: all 0.2s ease;
}

.inline-calc-input::placeholder {
  color: #9ca3af;
}

.inline-calc-input:focus {
  border-color: var(--strickland-blue);
  box-shadow: 0 0 0 3px rgba(46, 163, 242, 0.1);
}

.inline-calc-option {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #e8f1fa;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.inline-calc-option:hover {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  border-color: #bfdbfe;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46, 163, 242, 0.1);
}

.inline-calc-option.selected {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-color: var(--strickland-blue);
  box-shadow: 0 4px 12px rgba(46, 163, 242, 0.15);
}

.inline-calc-radio {
  width: 16px;
  height: 16px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  background: white;
}

.inline-calc-option.selected .inline-calc-radio {
  border-color: var(--strickland-blue);
  background: var(--strickland-blue);
}

.inline-calc-option.selected .inline-calc-radio::after {
  content: '✓';
  color: white;
  font-size: 10px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#inline-results {
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact specialist link in demo - smaller with visible text */
.contact-specialist-link {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: var(--strickland-blue);
  color: #ffffff !important;
  text-decoration: none !important;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.75rem;
  transition: all 0.2s ease;
}

.contact-specialist-link:hover {
  background: var(--strickland-accent);
  color: #ffffff !important;
  transform: translateX(2px);
}

/* Smooth scrolling */
#demo-messages-area {
  scroll-behavior: smooth;
  overflow-y: auto;
}

/* Fixed height chat content container - bigger for more spacing */
.demo-chat-content {
  height: 560px;
  position: relative;
  overflow: hidden;
}

/* Welcome screen - absolute positioned, fills container */
#demo-welcome-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.3s ease;
}

#demo-welcome-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

#demo-welcome-screen a {
  color: var(--strickland-blue);
  text-decoration: underline;
}

/* Messages area - absolute positioned, fills same space */
#demo-messages-area {
  overflow-y: auto;
  scroll-behavior: smooth;
  transition: opacity 0.3s ease;
}

#demo-messages-area.fade-in {
  opacity: 1;
}

/* Slim scrollbar */
#demo-messages-area::-webkit-scrollbar {
  width: 4px;
}

#demo-messages-area::-webkit-scrollbar-track {
  background: transparent;
}

#demo-messages-area::-webkit-scrollbar-thumb {
  background: rgba(46, 163, 242, 0.3);
  border-radius: 4px;
}

#demo-messages-area::-webkit-scrollbar-thumb:hover {
  background: rgba(46, 163, 242, 0.5);
}

/* Demo Click-to-Chat Button Pulse */
#demo-click-to-chat {
  position: relative;
  overflow: hidden;
}

#demo-click-to-chat::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(46, 163, 242, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

#demo-click-to-chat:hover::before {
  width: 300px;
  height: 300px;
}

/* Responsive Demo Adjustments */
@media (max-width: 1023px) {
  .demo-msg {
    transform: translateY(15px) scale(0.97);
  }
  
  .demo-chat-container:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 639px) {
  .demo-msg-1, .demo-msg-2, .demo-msg-3, 
  .demo-msg-4, .demo-msg-5, .demo-msg-6 {
    animation-duration: 0.4s;
  }
  
  #demo-messages-container {
    min-height: 400px !important;
  }
  
  /* Faster animations on mobile */
  .demo-msg-1 { animation-delay: 0.3s; }
  .demo-msg-2 { animation-delay: 1.8s; }
  .demo-msg-3 { animation-delay: 2.8s; }
  .demo-msg-4 { animation-delay: 4s; }
  .demo-msg-5 { animation-delay: 6s; }
  .demo-msg-6 { animation-delay: 7s; }
  
  /* Faster timing on mobile but keep 5 second gaps */
  .demo-msg-1 { animation-delay: 0.3s; }
  .demo-msg-2 { animation-delay: 4.3s; }
  .demo-msg-3 { animation-delay: 8.3s; }
  .demo-msg-4 { animation-delay: 12.3s; }
  
  .demo-msg-typing {
    animation: messageFadeInBounce 0.3s ease forwards 8.3s,
               messageFadeOutUp 0.2s ease forwards 12.3s;
  }
}

/* Accessibility - Reduce Motion */
@media (prefers-reduced-motion: reduce) {
  .demo-msg-1, .demo-msg-2, .demo-msg-3,
  .demo-msg-4, .demo-msg-5, .demo-msg-6,
  .demo-msg-typing {
    animation: simpleFadeIn 0.3s ease forwards;
  }
  
  @keyframes simpleFadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  
  .demo-chat-container:hover {
    transform: none;
  }
  
  #demo-replay-btn {
    animation: none;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  animation: subtleBounce 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-indicator svg {
  color: #9ca3af;
}

/* Scroll indicator animation */
@keyframes subtleBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* Subtle glass effect for white cards on colored backgrounds */
.glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.9) 100%);
  backdrop-filter: blur(10px);
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   Mobile-first approach with breakpoints:
   - Mobile: < 640px
   - Tablet: 640px - 1023px
   - Desktop: 1024px+
   ============================================ */

/* --- MOBILE STYLES (< 640px) --- */
@media (max-width: 639px) {
  /* Base typography adjustments - 16px prevents iOS auto-zoom */
  body {
    font-size: 16px;
    line-height: 1.7;
  }

  /* Section containers - tighter padding on mobile */
  .section-container {
    padding: 0 1rem;
  }

  /* Section padding adjustments */
  section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .py-20 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .py-24 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  /* Hero section mobile */
  .pt-28 {
    padding-top: 5.5rem;
  }

  .pb-16 {
    padding-bottom: 2.5rem;
  }

  /* Typography scaling for mobile */
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }

  .section-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Hero heading mobile */
  h1.text-5xl,
  .text-5xl {
    font-size: 2rem;
    line-height: 1.15;
  }

  /* Stats numbers mobile */
  .text-6xl,
  .text-7xl {
    font-size: 2.5rem;
  }

  /* Cards mobile */
  .feature-card {
    padding: 1.5rem;
  }

  .feature-card h3 {
    font-size: 1.25rem;
  }

  /* Grid single column on mobile */
  .grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Stats grid - 2 columns on mobile */
  .grid.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Buttons mobile - full width and stacked */
  .btn-primary,
  .btn-secondary,
  .btn-white {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    justify-content: center;
  }

  .btn-lg {
    padding: 1.125rem 1.75rem;
    font-size: 1.0625rem;
  }

  /* Button containers */
  .flex.flex-col.sm\:flex-row {
    gap: 0.75rem;
  }

  /* Feature icons smaller on mobile */
  .w-14.h-14,
  .w-14 {
    width: 3rem;
    height: 3rem;
  }

  .w-14 .w-7,
  .w-14 svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  /* Step numbers */
  .w-12.h-12 {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }

  /* Trust stats mobile */
  .text-5xl {
    font-size: 2rem;
  }

  /* Testimonial cards mobile */
  .p-8,
  .md\:p-10 {
    padding: 1.25rem;
  }

  /* Who benefits cards mobile */
  .p-10 {
    padding: 1.5rem;
  }

  .p-10 h3 {
    font-size: 1.5rem;
  }

  /* Contact form mobile */
  .space-y-4 > * + * {
    margin-top: 0.75rem;
  }

  /* FAQ items mobile */
  .faq-question {
    padding: 1rem;
  }

  .faq-question span {
    font-size: 1rem;
    line-height: 1.5;
  }

  .faq-answer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Modal mobile */
  .modal-content {
    margin: 0.5rem;
    max-height: calc(100vh - 1rem);
    border-radius: 0.75rem;
  }

  /* Chat widget mobile */
  .chat-window {
    width: calc(100vw - 1rem);
    max-width: none;
    height: calc(100vh - 6rem);
    max-height: 500px;
    bottom: 5rem;
    right: 0.5rem;
    left: 0.5rem;
    border-radius: 1rem;
  }

  .chat-widget-button,
  button#chat-toggle-btn {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    bottom: 1rem !important;
    right: 1rem !important;
  }

  button#chat-toggle-btn svg,
  .chat-widget-button svg {
    width: 24px !important;
    height: 24px !important;
  }

  /* Footer mobile */
  footer .grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  footer .flex.flex-col.md\:flex-row {
    text-align: center;
  }

  footer .flex.gap-6 {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  /* Hide decorative elements on mobile */
  .absolute.top-20.left-10,
  .absolute.bottom-20.right-10 {
    display: none;
  }

  /* Hero image mobile */
  .h-64 {
    height: 12rem;
  }

  /* Meet your expert section mobile */
  .w-48.h-48 {
    width: 8rem;
    height: 8rem;
  }

  /* Flex wrap adjustments */
  .flex-wrap {
    gap: 0.5rem;
  }

  /* Trust badges mobile */
  .flex.flex-wrap.justify-center.items-center.gap-12 {
    gap: 1.5rem;
  }

  .flex.flex-wrap.justify-center.items-center.gap-12 span {
    font-size: 0.875rem;
  }

  /* Free guide CTA mobile */
  .py-10 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .py-10 .flex {
    text-align: center;
  }

  .py-10 h3 {
    font-size: 1.25rem;
  }

  /* Hero badges mobile */
  .flex.flex-wrap.justify-center.gap-8 {
    gap: 0.5rem;
    flex-direction: column;
    align-items: center;
  }

  /* Text adjustments */
  .text-xl {
    font-size: 1rem;
  }

  .text-2xl {
    font-size: 1.25rem;
  }

  .text-3xl {
    font-size: 1.5rem;
  }

  .text-lg {
    font-size: 1rem;
  }

  /* Max width overrides for mobile */
  .max-w-3xl,
  .max-w-4xl,
  .max-w-5xl {
    max-width: 100%;
  }

  /* Gap adjustments */
  .gap-8 {
    gap: 1.5rem;
  }

  .gap-12 {
    gap: 2rem;
  }

  /* Margin adjustments */
  .mb-16 {
    margin-bottom: 2rem;
  }

  .mb-8 {
    margin-bottom: 1.5rem;
  }

  /* Image in hero overlay text */
  .absolute.bottom-0 p {
    font-size: 1rem;
    padding: 1rem;
  }
}

/* --- TABLET STYLES (640px - 1023px) --- */
@media (min-width: 640px) and (max-width: 1023px) {
  /* Section containers */
  .section-container {
    padding: 0 1.5rem;
  }

  /* Section padding */
  section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .py-20 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .py-24 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  /* Typography tablet */
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.125rem;
  }

  /* Hero heading tablet */
  h1.text-5xl,
  .text-5xl {
    font-size: 2.75rem;
    line-height: 1.1;
  }

  .text-6xl,
  .text-7xl {
    font-size: 3.5rem;
  }

  /* Grids - 2 columns on tablet */
  .grid.md\:grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid.md\:grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Cards tablet */
  .feature-card {
    padding: 1.75rem;
  }

  /* Stats - 2x2 grid on tablet */
  .grid.grid-cols-2.md\:grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  /* 3-column key stats - 3 columns on tablet */
  .grid.md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  /* Buttons tablet */
  .btn-primary,
  .btn-secondary,
  .btn-white {
    padding: 1.125rem 2rem;
    font-size: 1rem;
  }

  .btn-lg {
    padding: 1.25rem 2.25rem;
    font-size: 1.125rem;
  }

  /* Button containers on tablet - side by side */
  .flex.flex-col.sm\:flex-row {
    flex-direction: row;
    justify-content: center;
  }

  /* Footer 2x2 grid on tablet */
  footer .grid.md\:grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  /* Chat window tablet */
  .chat-window {
    width: 380px;
    height: 550px;
  }

  /* Modal tablet */
  .modal-content {
    max-width: 90%;
    margin: 1rem auto;
  }

  /* Who benefits section - stack on tablet for better readability */
  .grid.md\:grid-cols-2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Contact section - stack on tablet */
  section .grid.md\:grid-cols-2.gap-12 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* How it works - 3 columns still works on tablet */
  #how-it-works .grid.md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  /* Hide connecting line on tablet if too cramped */
  #how-it-works .hidden.md\:block {
    display: none;
  }

  /* Testimonials - 2 columns on tablet */
  .grid.md\:grid-cols-2:not(footer .grid):not(section .grid.md\:grid-cols-2.gap-12) {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Meet expert section */
  .flex.flex-col.md\:flex-row {
    flex-direction: column;
    text-align: center;
  }

  .flex.flex-col.md\:flex-row .text-center.md\:text-left {
    text-align: center;
  }

  /* Trust badges tablet */
  .flex.flex-wrap.justify-center.items-center.gap-12 {
    gap: 2rem;
  }

  /* Hero decorative elements - smaller on tablet */
  .absolute.top-20.left-10,
  .absolute.bottom-20.right-10 {
    opacity: 0.2;
  }

  .absolute.top-20.left-10 {
    width: 12rem;
    height: 12rem;
    left: 0;
  }

  .absolute.bottom-20.right-10 {
    width: 16rem;
    height: 16rem;
    right: 0;
  }

  /* Text sizing tablet */
  .text-xl {
    font-size: 1.125rem;
  }

  .text-2xl {
    font-size: 1.375rem;
  }

  .text-3xl {
    font-size: 1.75rem;
  }

  /* Gap adjustments tablet */
  .gap-8 {
    gap: 1.5rem;
  }

  .gap-12 {
    gap: 2rem;
  }
}

/* --- LARGE TABLET / SMALL DESKTOP (1024px - 1279px) --- */
@media (min-width: 1024px) and (max-width: 1279px) {
  .section-container {
    padding: 0 2rem;
  }

  /* Slightly reduce card padding */
  .feature-card {
    padding: 1.75rem;
  }

  .p-10 {
    padding: 2rem;
  }

  /* Footer - 4 columns but tighter */
  footer .grid.md\:grid-cols-4 {
    gap: 1.5rem;
  }
}

/* --- NAVIGATION RESPONSIVE --- */
@media (max-width: 767px) {
  /* Mobile menu improvements */
  #mobile-menu {
    background: white;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #mobile-menu a,
  #mobile-menu button {
    font-size: 1rem;
  }

  /* Navigation padding */
  nav .section-container {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  /* Logo text hidden on small mobile */
  nav .hidden.sm\:block {
    display: none;
  }

  /* Adjust logo size on mobile */
  nav img.h-10 {
    height: 2.25rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* Tablet navigation */
  nav .hidden.md\:flex {
    display: flex;
    gap: 1rem;
  }

  nav .hidden.md\:flex a {
    font-size: 0.875rem;
  }

  .btn-header {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* --- HERO SECTION RESPONSIVE --- */
@media (max-width: 639px) {
  /* Hero badge */
  .inline-flex.items-center.gap-2.px-4.py-2.bg-blue-100 {
    padding: 0.5rem 0.75rem;
  }

  .inline-flex.items-center.gap-2.px-4.py-2.bg-blue-100 span {
    font-size: 0.75rem;
  }

  /* Hero CTA buttons */
  .flex.flex-col.sm\:flex-row.gap-5 {
    gap: 0.75rem;
  }

  .flex.flex-col.sm\:flex-row.gap-5 button {
    min-width: auto;
    width: 100%;
  }
}

/* --- "IS THIS RIGHT FOR YOUR BUSINESS" SECTION --- */
@media (max-width: 767px) {
  /* Stack the checkmark items */
  .bg-white.rounded-2xl.p-8.flex.items-start.gap-5 {
    padding: 1.25rem;
    gap: 1rem;
  }

  .bg-white.rounded-2xl.p-8.flex.items-start.gap-5 .w-12.h-12 {
    width: 2.5rem;
    height: 2.5rem;
  }

  .bg-white.rounded-2xl.p-8.flex.items-start.gap-5 p.text-lg {
    font-size: 1rem;
  }
}

/* --- KEY STATS SECTION --- */
@media (max-width: 639px) {
  #main-content + section .grid.md\:grid-cols-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  /* 3 columns still on small tablet for stats */
  .grid.md\:grid-cols-3 .text-center .text-6xl {
    font-size: 2.5rem;
  }
}

/* --- CALCULATOR MODAL RESPONSIVE --- */
@media (max-width: 639px) {
  .modal-overlay {
    padding: 0.5rem;
    align-items: flex-start;
    padding-top: 1rem;
  }

  .modal-content {
    max-height: calc(100vh - 2rem);
    border-radius: 1rem;
  }

  .modal-content .p-8 {
    padding: 1.25rem;
  }

  .modal-content h2 {
    font-size: 1.5rem;
  }

  .modal-content .grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .modal-content {
    max-width: 95%;
  }

  .modal-content .grid.md\:grid-cols-2 {
    grid-template-columns: 1fr;
  }
}

/* --- CHAT WIDGET RESPONSIVE --- */
@media (max-width: 639px) {
  /* Chat input area mobile */
  .chat-window form {
    padding: 0.75rem;
  }

  .chat-window input {
    font-size: 16px; /* Prevents iOS zoom */
  }

  /* Chat messages area */
  .chat-messages {
    padding: 0.75rem;
  }

  .chat-bubble {
    max-width: 85%;
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* --- FORM INPUTS RESPONSIVE --- */
@media (max-width: 639px) {
  .strickland-input {
    padding: 0.875rem 1rem;
    font-size: 16px; /* Prevents iOS zoom on focus */
  }

  /* Form labels */
  label.block.text-sm {
    font-size: 0.875rem;
    margin-bottom: 0.375rem;
  }
}

/* --- FOOTER RESPONSIVE --- */
@media (max-width: 639px) {
  footer {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }

  footer .grid {
    text-align: center;
  }

  footer .flex.items-center.gap-3 {
    justify-content: center;
  }

  footer h4 {
    margin-top: 1rem;
  }

  footer ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  footer .flex.items-start.gap-2 {
    justify-content: center;
    text-align: center;
  }

  footer .flex.gap-4 {
    justify-content: center;
  }

  /* Copyright and links */
  footer .border-t .flex {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Disclaimer box */
  footer .mt-6.p-4 {
    padding: 1rem;
    font-size: 0.6875rem;
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  footer .grid.md\:grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* --- TOUCH-FRIENDLY IMPROVEMENTS --- */
@media (hover: none) and (pointer: coarse) {
  /* Larger touch targets */
  .faq-question {
    min-height: 56px;
  }

  a, button {
    min-height: 44px;
  }

  /* Remove hover effects that don't work well on touch */
  .feature-card:hover {
    transform: none;
  }

  .hover\:scale-105:hover {
    transform: none;
  }

  .hover\:-translate-y-1:hover {
    transform: none;
  }
}

/* --- LANDSCAPE PHONE ADJUSTMENTS --- */
@media (max-width: 896px) and (max-height: 500px) and (orientation: landscape) {
  /* Reduce vertical spacing in landscape */
  .pt-28 {
    padding-top: 4rem;
  }

  .py-20,
  .py-24 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  /* Chat window in landscape */
  .chat-window {
    height: 80vh;
    max-height: 350px;
  }

  /* Hero heading landscape */
  h1.text-5xl {
    font-size: 1.75rem;
  }
}

/* --- SAFE AREA INSETS (for notched phones) --- */
@supports (padding: max(0px)) {
  .chat-widget-button,
  button#chat-toggle-btn {
    bottom: max(1rem, env(safe-area-inset-bottom)) !important;
    right: max(1rem, env(safe-area-inset-right)) !important;
  }

  .chat-window {
    bottom: max(5rem, calc(4rem + env(safe-area-inset-bottom)));
    right: max(0.5rem, env(safe-area-inset-right));
  }

  footer {
    padding-bottom: max(2rem, calc(1rem + env(safe-area-inset-bottom)));
  }
}

/* --- HIGH CONTRAST / REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .animate-fade-in,
  .animate-fade-in-up,
  .animate-slide-down,
  .animate-bounce,
  .animate-pulse {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* --- PRINT STYLES --- */
@media print {
  nav,
  .chat-widget-button,
  #chat-widget,
  button#chat-toggle-btn,
  .chat-window,
  footer .flex.gap-4,
  #calculator-modal {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: black;
    background: white;
  }

  section {
    page-break-inside: avoid;
    padding: 1rem 0;
  }

  .section-container {
    max-width: 100%;
    padding: 0;
  }
}

/* --- SCROLL-ANIMATED BADGE --- */
#increase-badge {
  z-index: 10;
  box-shadow: none !important;
  will-change: transform, opacity, top, left;
  transform-origin: top left;
  pointer-events: none;
}

#annual-caps-card {
  overflow: visible !important;
}

/* ============================================
   REDESIGNED CALCULATOR SECTION
   Professional, immersive, matching site vibe
   ============================================ */

/* Calculator Section Base */
.calculator-section {
  position: relative;
}

/* Two Column Layout */
.calc-two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 1023px) {
  .calc-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Left Column - Info */
.calc-info-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Feature Cards */
.calc-feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e8f1fa;
  box-shadow: 0 10px 25px rgba(46, 163, 242, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.calc-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--strickland-blue), var(--strickland-accent));
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.calc-feature-card:hover {
  box-shadow: 0 20px 30px rgba(46, 163, 242, 0.12);
  transform: translateY(-4px);
}

.calc-feature-card:hover::before {
  opacity: 1;
}

/* Right Column - Widget */
.calc-widget-column {
  position: relative;
}

/* Calculator Widget */
.calc-widget {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 
    0 10px 25px rgba(46, 163, 242, 0.08),
    0 0 0 1px #e8f1fa;
  transition: all 0.3s ease;
}

.calc-widget:hover {
  box-shadow: 
    0 20px 30px rgba(46, 163, 242, 0.12),
    0 0 0 1px rgba(46, 163, 242, 0.15);
  transform: translateY(-4px);
}

/* Widget Header */
.calc-widget-header {
  background: linear-gradient(135deg, var(--strickland-blue) 0%, #1d4ed8 100%);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Widget Body */
.calc-widget-body {
  padding: 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  min-height: 400px;
}

/* Widget Footer */
.calc-widget-footer {
  padding: 1rem 1.5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f3f7fc 100%);
  border-top: 1px solid #e8f1fa;
}

/* Start Button */
.calc-start-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--strickland-blue) 0%, #1d4ed8 100%);
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.calc-start-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.calc-start-btn:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 163, 242, 0.35);
}

.calc-start-btn:hover::before {
  left: 100%;
}

.calc-start-btn:active {
  transform: translateY(0);
}

/* Quick Stats in Calculator */
.calc-widget-body .grid {
  display: grid;
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .calc-info-column {
    order: 2;
  }
  
  .calc-widget-column {
    order: 1;
  }
}

@media (max-width: 639px) {
  .calc-widget-body {
    padding: 1.5rem;
    min-height: 350px;
  }
  
  .calc-widget-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
  }
  
  .calc-widget-footer .flex {
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
  }
  
  .calc-feature-card {
    padding: 1.25rem;
  }
  
  .calc-start-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .calc-widget-body .grid.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  
  .calc-widget-body .grid.grid-cols-3 > div {
    padding: 0.625rem;
  }
  
  .calc-widget-body .grid.grid-cols-3 p.text-2xl {
    font-size: 1.25rem;
  }
}

/* Animation for the calculator widget entrance */
@keyframes calcSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calc-widget {
  animation: calcSlideUp 0.6s ease-out;
}

.calc-feature-card {
  animation: calcSlideUp 0.6s ease-out;
}

.calc-feature-card:nth-child(2) {
  animation-delay: 0.1s;
}

.calc-feature-card:nth-child(3) {
  animation-delay: 0.2s;
}

/* Pulse animation for the live indicator */
@keyframes livePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.calc-widget-header .animate-pulse,
.calculator-section .animate-pulse {
  animation: livePulse 2s ease-in-out infinite;
}

/* Ensure section has proper overflow for decorative elements */
.calculator-section {
  overflow: hidden;
}

/* Override section backgrounds for calculator */
.calculator-section {
  background: transparent !important;
}

/* Hide elements when modal opens */
body.calculator-modal-open .calc-widget-body #calc-quick-start {
  display: none;
}

/* Page Calculator Option Styles */
.page-calc-option {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #e8f1fa;
  border-radius: 0.5rem;
  padding: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.page-calc-option:hover {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  border-color: #bfdbfe;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46, 163, 242, 0.1);
}

.page-calc-option.selected {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-color: var(--strickland-blue);
  box-shadow: 0 4px 12px rgba(46, 163, 242, 0.15);
}

.page-calc-radio {
  width: 14px;
  height: 14px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  background: white;
}

.page-calc-option.selected .page-calc-radio {
  border-color: var(--strickland-blue);
  background: var(--strickland-blue);
}

.page-calc-option.selected .page-calc-radio::after {
  content: '✓';
  color: white;
  font-size: 9px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ============================================
   PROGRESSIVE DISCLOSURE CALCULATOR STEPS
   ============================================ */

.calc-step {
  margin-bottom: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #e8f1fa;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  overflow: hidden;
  transition: all 0.3s ease;
}

.calc-step:hover {
  border-color: #bfdbfe;
  box-shadow: 0 4px 12px rgba(46, 163, 242, 0.08);
}

.calc-step.active {
  border-color: var(--strickland-blue);
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(46, 163, 242, 0.12);
}

.calc-step.completed {
  background: linear-gradient(135deg, #f8fafc 0%, #f3f7fc 100%);
  border-color: #e8f1fa;
}

.calc-step-header {
  padding: 0.875rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calc-step-header h4 {
  font-size: 13px;
}

.calc-step.active .calc-step-header {
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
}

.calc-step.completed .calc-step-header {
  cursor: pointer;
  opacity: 0.7;
}

.calc-step.completed:hover .calc-step-header {
  opacity: 1;
}

.calc-step-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.4s ease;
}

.calc-step.active .calc-step-content {
  max-height: 800px;
  opacity: 1;
  padding: 0 1rem 1rem 1rem;
}

.calc-step .step-chevron {
  transition: transform 0.3s ease;
  transform: rotate(-90deg);
}

.calc-step.active .step-chevron {
  transform: rotate(0deg);
}

.calc-step.completed .step-chevron {
  transform: rotate(0deg);
  opacity: 0.5;
}

/* Active step number */
.calc-step.active .calc-step-header .w-8 {
  background: var(--strickland-blue) !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(46, 163, 242, 0.3);
}

/* Completed step number */
.calc-step.completed .calc-step-header .w-8 {
  background: #22c55e !important;
  color: white !important;
  font-size: 0 !important;
}

.calc-step.completed .calc-step-header .w-8::before {
  content: '✓';
  font-size: 16px;
  font-weight: bold;
  color: white;
}

/* Inactive step title */
.calc-step:not(.active):not(.completed) .calc-step-header h4 {
  color: #9ca3af;
}

.calc-step.completed .calc-step-header h4 {
  color: var(--strickland-dark);
}

/* Business Type Conditional Messages */
#nonprofit-message {
  animation: fadeInUp 0.4s ease;
}

#childcare-message {
  animation: fadeInUp 0.4s ease;
}

#pooling-message {
  animation: fadeInUp 0.4s ease;
}
