/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  color: #111827;
  line-height: 1.6;
}

/* ========================================
   STICKY NAVIGATION HEADER
   ======================================== */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-dropdown {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s, color 0.2s;
}

.nav-link:hover {
  background: #f3f4f6;
  color: #111827;
}

.nav-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-link svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 10px 12px;
  font-size: 0.875rem;
  color: #374151;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.nav-dropdown-item:hover {
  background: #f3f4f6;
  color: #111827;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Mobile Navigation */
.nav-mobile-toggle {
  display: none;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: #374151;
}

.nav-mobile-toggle svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    flex-direction: column;
    padding: 16px;
    gap: 8px;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    min-width: auto;
    display: none;
  }

  .nav-dropdown.active .nav-dropdown-menu {
    display: block;
  }

  .nav-link, .nav-cta {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }
}

/* ========================================
   BREADCRUMB NAVIGATION
   ======================================== */

.breadcrumb-nav {
  padding: 12px 0;
  margin-bottom: 8px;
}

.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
}

.breadcrumb-item a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-item a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumb-separator {
  color: #9ca3af;
}

.breadcrumb-current {
  color: #374151;
  font-weight: 500;
}

/* ========================================
   SOCIAL PROOF BAR
   ======================================== */

.social-proof-bar {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #86efac;
  border-radius: 8px;
  padding: 12px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInSlide 0.6s ease-out;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.social-proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: #166534;
  font-weight: 500;
}

.social-proof-item svg {
  width: 18px;
  height: 18px;
  color: #10b981;
}

.social-proof-stars {
  color: #f59e0b;
  letter-spacing: -2px;
}

@media (max-width: 480px) {
  .social-proof-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ========================================
   PROGRESS INDICATOR
   ======================================== */

.progress-indicator {
  margin-bottom: 24px;
}

.progress-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.progress-bar {
  height: 8px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 999px;
  width: 50%;
  transition: width 0.3s ease;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #6b7280;
}

.progress-step.active {
  color: #2563eb;
  font-weight: 600;
}

.progress-step.completed {
  color: #10b981;
}

.progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e5e7eb;
  border: 2px solid #e5e7eb;
}

.progress-step.active .progress-dot {
  background: #2563eb;
  border-color: #2563eb;
}

.progress-step.completed .progress-dot {
  background: #10b981;
  border-color: #10b981;
}

/* Container */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 16px;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 32px;
}

.header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px 0;
}

.subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Card */
.card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  padding: 32px;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
}

/* Form Section */
.form-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 24px 0;
  color: #111827;
}

/* ========================================
   REVENUE MODE TOGGLE
   ======================================== */

.revenue-toggle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}

.revenue-toggle-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
}

.revenue-toggle-buttons {
  display: flex;
  gap: 0;
  background: #e2e8f0;
  border-radius: 8px;
  padding: 4px;
}

.revenue-toggle-buttons .toggle-btn {
  padding: 10px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
  color: #64748b;
}

.revenue-toggle-buttons .toggle-btn:hover:not(.active) {
  color: #374151;
  background: rgba(255, 255, 255, 0.5);
}

.revenue-toggle-buttons .toggle-btn.active {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* Readonly Input Style */
.readonly-input {
  background-color: #f1f5f9 !important;
  color: #64748b !important;
  cursor: not-allowed !important;
  border-color: #e2e8f0 !important;
}

.readonly-input:hover {
  border-color: #e2e8f0 !important;
}

.readonly-input:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: #e2e8f0 !important;
  background-color: #f1f5f9 !important;
}

/* Helper text for auto-calculated field */
.helper-text.auto-calc {
  color: #2563eb;
  font-style: italic;
}

/* Responsive adjustments for revenue toggle */
@media (max-width: 480px) {
  .revenue-toggle {
    padding: 14px 16px;
  }

  .revenue-toggle-buttons .toggle-btn {
    padding: 8px 18px;
    font-size: 0.875rem;
  }
}

/* Form Layout */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 4px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.form-group label .required {
  color: #dc2626;
}

.form-group label .optional {
  color: #9ca3af;
  font-weight: 400;
}

.helper-text {
  display: block;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 4px;
}

/* Inputs and Selects */
input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: #111827;
  background-color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

input:hover,
select:hover {
  border-color: #9ca3af;
}

input:focus,
select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  background-color: #fafbff;
}

input::placeholder {
  color: #9ca3af;
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8.5L1.5 4h9L6 8.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(0);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #111827;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-secondary:hover:not(:disabled) {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Unlock Buttons - Updated to warmer green */
.btn-unlock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.btn-unlock:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.btn-unlock-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
  margin-top: 8px;
}

.btn-unlock-full:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.btn-unlock-full:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-unlock-full svg {
  flex-shrink: 0;
}

/* Status Message */
.status-message {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: #6b7280;
  min-height: 20px;
}

/* Trust Strip */
.trust-strip {
  margin-top: 24px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
  border-radius: 8px;
  text-align: center;
}

.trust-strip-text {
  margin: 0;
  font-size: 0.875rem;
  color: #0369a1;
  line-height: 1.6;
}

/* Preview Disclaimer */
.preview-disclaimer {
  margin: 16px 0 0 0;
  padding: 12px 16px;
  background: #fefce8;
  border: 1px solid #fde047;
  border-radius: 6px;
  font-size: 0.8125rem;
  color: #854d0e;
  text-align: center;
  line-height: 1.5;
}

/* Result Section */
.result-section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
}

.result-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: #111827;
}

.result-section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #374151;
}

/* Partial Result - Preview Header */
.result-preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.result-preview-header h2 {
  margin: 0;
}

.preview-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1d4ed8;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Qualification Label */
.qualification-label {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 16px;
  animation: badgePulse 0.6s ease-out;
}

@keyframes badgePulse {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.qualification-label.label-likely {
  background: #dcfce7;
  color: #166534;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  animation: badgePulse 0.6s ease-out, glowGreen 2s ease-in-out 0.6s;
}

@keyframes glowGreen {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
  50% {
    box-shadow: 0 0 20px 4px rgba(34, 197, 94, 0.3);
  }
}

.qualification-label.label-borderline {
  background: #fef3c7;
  color: #92400e;
  animation: badgePulse 0.6s ease-out, glowAmber 2s ease-in-out 0.6s;
}

@keyframes glowAmber {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
  50% {
    box-shadow: 0 0 20px 4px rgba(245, 158, 11, 0.3);
  }
}

.qualification-label.label-unlikely {
  background: #fee2e2;
  color: #991b1b;
}

/* Summary Text */
.summary-text {
  font-size: 1rem;
  color: #4b5563;
  margin: 0 0 24px 0;
  line-height: 1.7;
}

/* Blurred Content Wrapper */
.blurred-content-wrapper {
  position: relative;
  margin-top: 24px;
}

.blurred-content {
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
  opacity: 0.7;
}

/* Unlock Overlay */
.unlock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.95) 100%);
  border-radius: 12px;
  padding: 24px;
}

.unlock-content {
  text-align: center;
  max-width: 420px;
}

.unlock-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 50%;
  color: #2563eb;
  margin-bottom: 20px;
}

.unlock-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px 0;
}

.unlock-content > p {
  font-size: 1rem;
  color: #6b7280;
  margin: 0 0 20px 0;
  line-height: 1.6;
}

.unlock-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  text-align: left;
}

.unlock-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9375rem;
  color: #374151;
}

.unlock-benefits li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #dcfce7;
  color: #166534;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #6b7280;
}

.trust-badge svg {
  color: #10b981;
}

/* Lead Capture Section */
.lead-capture-section {
  margin-top: 32px;
  padding: 32px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 12px;
  border: 2px solid #86efac;
}

.lead-capture-header {
  text-align: center;
  margin-bottom: 28px;
}

.lead-capture-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #166534;
  margin: 0 0 8px 0;
}

.lead-capture-header p {
  font-size: 1rem;
  color: #4b5563;
  margin: 0;
}

.lead-form {
  max-width: 600px;
  margin: 0 auto;
}

/* Lead Trust Section */
.lead-trust-section {
  margin-top: 20px;
  text-align: center;
}

.trust-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #166534;
  margin: 0 0 12px 0;
}

.trust-text svg {
  flex-shrink: 0;
}

.trust-points {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-points span {
  font-size: 0.8125rem;
  color: #6b7280;
  position: relative;
}

.trust-points span::before {
  content: "•";
  margin-right: 6px;
  color: #10b981;
}

/* Full Result Section - Enhanced animation */
.full-result {
  animation: resultFadeIn 0.5s ease-out;
}

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

/* Staggered fade-in for result details */
.full-result .result-details {
  animation: staggerFadeIn 0.6s ease-out 0.2s both;
}

.full-result .suggestions-container {
  animation: staggerFadeIn 0.6s ease-out 0.4s both;
}

.full-result .next-steps-card {
  animation: staggerFadeIn 0.6s ease-out 0.6s both;
}

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

/* Unlock Success Banner */
.unlock-success-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  border-radius: 10px;
  margin-bottom: 24px;
  animation: successBannerIn 0.5s ease-out;
}

@keyframes successBannerIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #166534;
  color: #ffffff;
  border-radius: 50%;
  flex-shrink: 0;
}

.success-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.success-text strong {
  font-size: 1.125rem;
  color: #166534;
}

.success-text span {
  font-size: 0.875rem;
  color: #4b5563;
}

/* Result Details */
.result-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.result-column {
  background: #f9fafb;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.result-column:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Reasons List */
.reasons-list {
  margin: 0;
  padding-left: 20px;
}

.reasons-list li {
  margin-bottom: 8px;
  color: #4b5563;
  font-size: 0.9375rem;
}

/* Metrics */
.metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.metric-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
}

.metric-item:last-child {
  border-bottom: none;
}

.metric-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.metric-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
}

/* Suggestions */
.suggestions-container {
  background: #eff6ff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.suggestions-container h3 {
  color: #1e40af;
  margin-bottom: 12px;
}

.suggestions-list {
  margin: 0;
  padding-left: 20px;
}

.suggestions-list li {
  margin-bottom: 8px;
  color: #1e40af;
  font-size: 0.9375rem;
}

/* Disclaimer */
.disclaimer-text {
  font-size: 0.8125rem;
  color: #9ca3af;
  background: #f9fafb;
  padding: 12px 16px;
  border-radius: 6px;
  margin: 0;
  line-height: 1.5;
}

/* Next Steps Card */
.next-steps-card {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 12px;
  border: 1px solid #bae6fd;
}

.next-steps-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0369a1;
  margin: 0 0 20px 0;
}

.next-steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.next-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #0369a1;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.step-content strong {
  display: block;
  color: #0c4a6e;
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.step-content p {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
}

/* Hidden */
.hidden {
  display: none !important;
}

/* Newsletter Section */
.newsletter-section {
  margin-top: 40px;
  padding: 32px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.newsletter-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #111827;
}

.newsletter-section > p {
  color: #6b7280;
  margin: 0 0 20px 0;
  font-size: 0.9375rem;
}

.newsletter-row {
  display: flex;
  gap: 12px;
}

.newsletter-row input[type="email"] {
  flex: 1;
}

/* SEO Content */
.seo-content {
  margin-top: 48px;
  padding: 0 4px;
}

.seo-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: #111827;
}

.seo-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 32px 0 16px 0;
  color: #111827;
}

.seo-content p {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 16px 0;
}

.seo-content ul {
  margin: 0 0 16px 0;
  padding-left: 24px;
}

.seo-content li {
  color: #4b5563;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Footer */
.footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}

.disclaimer-footer {
  font-size: 0.8125rem;
  color: #9ca3af;
  margin: 0 0 12px 0;
  line-height: 1.5;
}

.footer p:last-child {
  color: #9ca3af;
  font-size: 0.8125rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 24px 16px;
  }

  .header h1 {
    font-size: 1.5rem;
  }

  .card {
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .result-details {
    grid-template-columns: 1fr;
  }

  .newsletter-row {
    flex-direction: column;
  }

  .newsletter-row .btn-secondary {
    width: 100%;
  }

  .lead-capture-section {
    padding: 24px 20px;
  }

  .unlock-content h3 {
    font-size: 1.25rem;
  }

  .unlock-benefits li {
    font-size: 0.875rem;
  }

  .btn-unlock {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .trust-points {
    flex-direction: column;
    gap: 8px;
  }

  .result-preview-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .unlock-success-banner {
    flex-direction: column;
    text-align: center;
  }

  .next-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 1.25rem;
  }

  .subtitle {
    font-size: 0.9375rem;
  }

  .card {
    padding: 20px 16px;
  }

  .qualification-label {
    font-size: 1rem;
    padding: 8px 16px;
  }

  .unlock-icon {
    width: 64px;
    height: 64px;
  }

  .unlock-icon svg {
    width: 32px;
    height: 32px;
  }

  .lead-capture-header h2 {
    font-size: 1.25rem;
  }

  .btn-unlock-full {
    padding: 16px 24px;
    font-size: 1rem;
  }
}

/* ========================================
   SEO SUBPAGE STYLES
   ======================================== */

/* SEO Content Page Article */
.seo-content-page {
  line-height: 1.75;
}

.seo-content-page p {
  color: #4b5563;
  font-size: 1rem;
  margin: 0 0 20px 0;
}

.seo-content-page h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 40px 0 16px 0;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.seo-content-page h2:first-of-type {
  margin-top: 24px;
  padding-top: 0;
  border-top: none;
}

.seo-content-page h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin: 28px 0 12px 0;
}

.seo-content-page ul,
.seo-content-page ol {
  margin: 0 0 20px 0;
  padding-left: 24px;
}

.seo-content-page li {
  color: #4b5563;
  margin-bottom: 10px;
  line-height: 1.7;
}

.seo-content-page a {
  color: #2563eb;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.seo-content-page a:hover {
  border-bottom-color: #2563eb;
}

/* CTA Section within SEO pages */
.cta-section {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 32px;
  margin: 40px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 1.375rem;
  color: #1e40af;
  margin: 0 0 16px 0;
  padding: 0;
  border: none;
}

.cta-section p {
  color: #4b5563;
  margin: 0 0 20px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-button {
  display: inline-flex;
  margin-top: 8px;
  width: auto;
  padding: 16px 32px;
  color: #ffffff !important;
  border-bottom: none;
}

.cta-section .cta-button:hover {
  color: #ffffff !important;
  border-bottom: none;
}

/* FAQ Section */
.faq-section {
  background: #f9fafb;
  border-radius: 8px;
  padding: 24px;
  margin: 24px 0;
}

.faq-section h3 {
  color: #111827;
  margin: 0 0 8px 0;
  font-size: 1rem;
}

.faq-section h3:not(:first-child) {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.faq-section p {
  margin: 0;
  font-size: 0.9375rem;
}

/* Related Links Section */
.related-links {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid #e5e7eb;
}

.related-links h2 {
  font-size: 1.25rem;
  color: #111827;
  margin: 0 0 20px 0;
  padding: 0;
  border: none;
}

.related-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.related-links li {
  margin: 0;
}

.related-links a {
  display: block;
  padding: 12px 16px;
  background: #f9fafb;
  border-radius: 8px;
  color: #374151;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  transition: all 0.2s;
}

.related-links a:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
  transform: translateY(-1px);
}

/* Estimate Table for Equipment Financing */
.estimate-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9375rem;
}

.estimate-table th,
.estimate-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.estimate-table th {
  background: #f9fafb;
  font-weight: 600;
  color: #374151;
}

.estimate-table td {
  color: #4b5563;
}

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

/* Responsive adjustments for SEO pages */
@media (max-width: 768px) {
  .seo-content-page h2 {
    font-size: 1.25rem;
  }

  .seo-content-page h3 {
    font-size: 1rem;
  }

  .cta-section {
    padding: 24px 20px;
  }

  .cta-section h2 {
    font-size: 1.25rem;
  }

  .related-links ul {
    grid-template-columns: 1fr;
  }

  .estimate-table {
    font-size: 0.875rem;
  }

  .estimate-table th,
  .estimate-table td {
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .seo-content-page h2 {
    font-size: 1.125rem;
    margin: 32px 0 12px 0;
  }

  .cta-section .cta-button {
    width: 100%;
  }

  .faq-section {
    padding: 20px 16px;
  }
}

/* Hero Section Styling */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 20px;
  text-align: center;
  color: white;
  margin-bottom: 40px;
}

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

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 150px;
}

.hero-feature-icon {
  font-size: 3rem;
  opacity: 0.9;
}

.hero-feature-text {
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-features {
    gap: 25px;
  }
}

/* ========================================
   MOBILE TAP TARGET IMPROVEMENTS
   ======================================== */

/* Ensure all interactive elements meet 48x48px minimum */
@media (max-width: 768px) {
  /* Buttons */
  button,
  .btn,
  input[type="submit"],
  input[type="button"] {
    min-height: 48px;
    min-width: 48px;
    padding: 12px 24px;
    font-size: 16px; /* Prevents iOS zoom on focus */
  }

  /* Form inputs */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea {
    min-height: 48px;
    font-size: 16px; /* Prevents iOS zoom */
    padding: 12px;
  }

  /* Navigation links */
  .site-nav a,
  .nav-menu a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 12px 16px;
  }

  /* Radio buttons and checkboxes - increase clickable area */
  input[type="radio"],
  input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin: 12px;
  }

  /* Labels for radio/checkbox - make entire label clickable */
  label {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 8px;
    cursor: pointer;
  }

  /* Links in content */
  a {
    padding: 4px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Form toggle buttons (if any) */
  .toggle-btn,
  .revenue-toggle-buttons button {
    min-height: 48px;
    min-width: 120px;
    padding: 12px 20px;
    font-size: 16px;
  }

  /* Increase spacing between interactive elements */
  button + button,
  .btn + .btn {
    margin-top: 12px;
  }

  /* Footer links */
  footer a {
    padding: 8px 12px;
    margin: 4px;
    display: inline-block;
  }
}

/* Additional mobile UX improvements */
@media (max-width: 768px) {
  /* Prevent text size adjustment on orientation change */
  html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  /* Improve form field spacing */
  .form-group {
    margin-bottom: 20px;
  }

  /* Make dropdowns easier to tap */
  select {
    padding-right: 40px; /* Space for dropdown arrow */
    background-position: right 12px center;
  }
}
