/* ============================
   Sundance Financial - Styles
   ============================ */

/* CSS Variables (Design Tokens) */
:root {
  /* Colors - converted from HSL */
  --background: #ffffff;
  --foreground: #2b2b2b;
  --primary: #1c4a5e;
  --primary-foreground: #ffffff;
  --secondary: #f0f5fa;
  --secondary-foreground: #1c4a5e;
  --muted: #f0f5fa;
  --muted-foreground: #b0b0b0;
  --accent: #f0f5fa;
  --accent-foreground: #1c4a5e;
  --destructive: #ef4444;
  --border: #e2e8f0;
  --input: #e2e8f0;
  --ring: #1c4a5e;
  --radius: 0.5rem;

  /* Font families */
  --font-merriweather: 'Merriweather', serif;
  --font-sans: Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-merriweather);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
}

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

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

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

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

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

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

@media (min-width: 1024px) {
  .mobile-only {
    display: none !important;
  }
}

/* ============================
   Buttons
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: #163a4a;
}

.btn-primary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

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

.btn-outline:hover {
  background-color: var(--secondary);
  border-color: var(--primary);
}

.btn-outline:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

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

.btn-full {
  width: 100%;
}

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

/* ============================
   Navbar
   ============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: var(--background);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo-img {
  height: 3rem;
  width: auto;
}

.navbar-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .navbar-desktop {
    display: flex;
  }
}

.nav-link {
  padding: 0.5rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--primary);
  background-color: rgba(240, 245, 250, 0.5);
}

.nav-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.nav-cta {
  margin-left: 1rem;
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.navbar-mobile {
  padding: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-link-mobile {
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.nav-link-mobile:hover {
  color: var(--primary);
  background-color: var(--secondary);
}

.nav-link-mobile:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.nav-cta-mobile {
  margin: 0 1rem;
}

/* ============================
   Hero Section
   ============================ */
.hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: linear-gradient(to bottom, var(--secondary), var(--background));
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }
}

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

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

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

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}

.hero-title {
  font-family: var(--font-merriweather);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

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

.hero-text {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: var(--foreground);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

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

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  justify-content: center;
}

.hero-buttons .btn {
  width: 100%;
  font-size: 1.125rem;
  padding: 0.875rem 1.5rem;
  min-height: 3.25rem;
}

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

  .hero-buttons .btn {
    width: 12rem;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-buttons--center {
  justify-content: center;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .hero-buttons--center {
    justify-content: center;
  }
}

/* As Seen In */
.as-seen-in {
  margin-top: 2.5rem;
}

.as-seen-in--compact {
  margin-top: 2rem;
}

.as-seen-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .logo-row {
    justify-content: flex-start;
    gap: 1.25rem;
  }
}

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

@media (min-width: 1024px) {
  .logo-row--center {
    justify-content: center;
  }
}

.logo-row--start {
  justify-content: flex-start;
}

.media-logo {
  height: 1.25rem;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.4;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .media-logo {
    height: 1.75rem;
  }
}

.media-logo:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

/* Hero Image */
.hero-image {
  position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ============================
   Section Styles
   ============================ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-merriweather);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

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

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
}

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

/* ============================
   Business Worth Calculator
   ============================ */
.business-worth {
  padding: 3rem 0;
  background-color: var(--background);
}

@media (min-width: 768px) {
  .business-worth {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .business-worth {
    padding: 6rem 0;
  }
}

.calculator-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
  align-items: stretch;
}

@media (min-width: 768px) {
  .calculator-grid {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .calculator-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.calculator-form-card {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(226, 232, 240, 0.5);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .calculator-form-card {
    padding: 2rem;
  }
}

.calculator-results-card {
  background: linear-gradient(to bottom right, var(--secondary), rgba(240, 245, 250, 0.5));
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.5);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(4px);
}

@media (min-width: 768px) {
  .calculator-results-card {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .calculator-results-card {
    padding: 2rem;
  }
}

.card-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

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

/* Form Styles */
.calculator-form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.form-group {
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .form-group {
    margin-bottom: 1.5rem;
  }
}

.label-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.tooltip-trigger {
  position: relative;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  cursor: help;
  text-decoration: underline;
  text-decoration-style: dotted;
}

.tooltip-trigger:hover {
  color: var(--foreground);
}

.tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0.5rem;
  padding: 0.75rem;
  background-color: var(--foreground);
  color: var(--background);
  font-size: 0.75rem;
  border-radius: var(--radius);
  width: 200px;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 10;
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--foreground);
}

.tooltip-trigger:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

.form-input {
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  background-color: var(--background);
  color: var(--foreground);
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(28, 74, 94, 0.1);
}

.form-input.error {
  border-color: var(--destructive);
}

.form-input.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--destructive);
  margin-top: 0.375rem;
  min-height: 1rem;
}

.form-disclaimer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.form-disclaimer p {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .form-disclaimer p {
    font-size: 0.875rem;
  }
}

.form-disclaimer--compact {
  margin-top: 1rem;
}

/* Calendar */
.calendar-iframe {
  border: 0;
}

/* Results */
.results-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

@media (min-width: 768px) {
  .results-list {
    gap: 1rem;
  }
}

.result-item {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.3);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .result-item {
    padding: 1.25rem;
  }
}

.result-item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: scale(1.01);
}

.result-label {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .result-label {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }
}

.result-value {
  min-height: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .result-value {
    min-height: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .result-value {
    min-height: 3rem;
  }
}

.result-value .value-text {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

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

@media (min-width: 1024px) {
  .result-value .value-text {
    font-size: 1.5rem;
  }
}

.value-placeholder {
  color: var(--muted-foreground);
}

/* Loading Skeleton */
.skeleton-bar {
  height: 1.5rem;
  width: 100%;
  background: linear-gradient(90deg, var(--secondary) 0%, rgba(28, 74, 94, 0.15) 50%, var(--secondary) 100%);
  background-size: 200% 100%;
  border-radius: var(--radius);
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}

@keyframes skeleton-pulse {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.loading-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--muted-foreground);
  opacity: 0.7;
}

/* ============================
   Why Choose Us
   ============================ */
.why-choose-us {
  padding: 4rem 0;
  background-color: var(--secondary);
}

@media (min-width: 1024px) {
  .why-choose-us {
    padding: 6rem 0;
  }
}

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

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

.feature-card {
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Card Icon (shared by feature and service cards) */
.card-icon,
.feature-icon,
.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-foreground);
}

.feature-title {
  font-family: var(--font-merriweather);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-description {
  font-family: var(--font-sans);
  color: var(--foreground);
  line-height: 1.75;
}

/* ============================
   How We Help
   ============================ */
.how-we-help {
  padding: 4rem 0;
  background-color: var(--background);
}

@media (min-width: 1024px) {
  .how-we-help {
    padding: 6rem 0;
  }
}

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

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

.service-card {
  background-color: var(--secondary);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-title {
  font-family: var(--font-merriweather);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-description {
  font-family: var(--font-sans);
  color: var(--foreground);
  line-height: 1.75;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.learn-more-link {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--primary);
  text-decoration: underline;
  transition: opacity 0.2s ease;
  margin-top: auto;
}

.learn-more-link:hover {
  opacity: 0.8;
}

.learn-more-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.text-link {
  color: var(--primary);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.text-link:hover {
  opacity: 0.8;
}

/* ============================
   Carousel Controls
   ============================ */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--foreground);
}

.carousel-btn:hover {
  background-color: var(--secondary);
  border-color: var(--primary);
}

.carousel-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ============================
   Testimonials
   ============================ */
.testimonials {
  padding: 4rem 0;
  background-color: var(--secondary);
}

@media (min-width: 1024px) {
  .testimonials {
    padding: 6rem 0;
  }
}

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

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

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

.testimonial-card {
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-family: var(--font-sans);
  color: var(--foreground);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.author-image {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-family: var(--font-merriweather);
  font-weight: 700;
  color: var(--primary);
}

.author-company {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================
   About Section
   ============================ */
.about {
  padding: 4rem 0;
  background-color: var(--background);
}

@media (min-width: 1024px) {
  .about {
    padding: 6rem 0;
  }
}

.about-title {
  font-family: var(--font-merriweather);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3rem;
  text-align: center;
}

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

@media (min-width: 1024px) {
  .about-title {
    text-align: left;
  }
}

.about-grid {
  display: grid;
  gap: 5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 380px 1fr;
  }
}

.about-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.profile-info {
  text-align: center;
  margin-bottom: 1.5rem;
}

.profile-name {
  font-family: var(--font-merriweather);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.profile-role {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.profile-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--primary);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--accent);
  border-color: var(--primary);
}

.social-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.about-bio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-bio p {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--foreground);
  line-height: 1.75;
}

.bio-highlight {
  font-weight: 600;
  font-size: 1.125rem !important;
}

/* ============================
   CTA Section
   ============================ */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(to bottom, var(--background), var(--secondary));
}

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

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

.cta-alt-text {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 2rem;
}

.steps-container {
  max-width: 56rem;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-item {
  background-color: var(--background);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}

.step-item:hover {
  border-color: rgba(28, 74, 94, 0.5);
}

.step-item.active {
  border-color: var(--primary);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.step-content {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-merriweather);
  font-weight: 700;
  background-color: var(--secondary);
  color: var(--primary);
  flex-shrink: 0;
}

.step-item.active .step-number {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.step-info {
  flex: 1;
}

.step-title {
  font-family: var(--font-merriweather);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.step-description {
  font-family: var(--font-sans);
  color: var(--foreground);
  line-height: 1.75;
}

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

/* ============================
   Footer
   ============================ */
.footer {
  padding: 1.5rem 0;
}

.footer-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-copyright,
.footer-legal {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: #afafaf;
}

.footer-disclaimer {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: #afafaf;
  max-width: 48rem;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-top: 0.5rem;
}

.footer-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: #afafaf;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.footer-link:hover {
  opacity: 0.8;
}

.footer-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.footer-divider {
  font-size: 0.75rem;
  color: #afafaf;
}

/* ============================
   Modal
   ============================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 1rem;
}

.modal {
  background-color: var(--background);
  border-radius: 0.75rem;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: var(--foreground);
}

.modal-close:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.modal-title {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  font-family: var(--font-sans);
  text-align: center;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal-form .form-group {
  margin-bottom: 0;
}

.modal-footer-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-align: center;
  color: var(--muted-foreground);
  margin-top: 1rem;
  line-height: 1.6;
}

/* Success View */
.success-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto;
  color: var(--primary-foreground);
  font-size: 1.875rem;
}

.success-message {
  background-color: var(--secondary);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  margin-bottom: 1.5rem;
}

.success-message h3 {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.success-message p {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================
   Mobile Carousel - Hide cards
   ============================ */
@media (max-width: 767.98px) {
  .features-grid .feature-card,
  .services-grid .service-card,
  .testimonials-grid .testimonial-card {
    display: none;
  }

  .features-grid .feature-card.visible,
  .services-grid .service-card.visible,
  .testimonials-grid .testimonial-card.visible {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .testimonials-grid .testimonial-card:nth-child(3) {
    display: none;
  }

  .testimonials-grid .testimonial-card.visible:nth-child(3) {
    display: block;
  }
}

/* ============================
   Article/Blog Pages
   ============================ */
.article-page {
  padding-top: 5rem;
}

.breadcrumb {
  max-width: 56rem;
  margin: 0 auto;
  padding: 1.5rem 1rem 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
}

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

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-link {
  color: var(--primary);
  transition: opacity 0.2s ease;
}

.breadcrumb-link:hover {
  opacity: 0.8;
}

.breadcrumb-separator {
  color: var(--muted-foreground);
}

.breadcrumb-current {
  color: var(--muted-foreground);
}

.article-container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 4rem 1rem;
}

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

.article-title {
  font-family: var(--font-merriweather);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.article-meta .author {
  font-weight: 500;
  color: var(--foreground);
}

.article-image {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  object-fit: cover;
}

.article-image.contain {
  object-fit: contain;
  background-color: rgba(255, 255, 255, 0.5);
  max-height: 12rem;
}

/* Article Content / Prose */
.article-content {
  font-family: var(--font-sans);
}

.article-content p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.article-content h2 {
  font-family: var(--font-merriweather);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.article-content h3 {
  font-family: var(--font-merriweather);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content h4 {
  font-family: var(--font-merriweather);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-content ul {
  list-style-type: disc;
}

.article-content ol {
  list-style-type: decimal;
}

.article-content li {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.article-content li ul {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.article-content strong {
  font-weight: 600;
  color: var(--foreground);
}

.article-content a {
  color: var(--primary);
  text-decoration: underline;
}

.article-content a:hover {
  color: #163a4a;
}

/* Highlighted Box / Callout */
.article-callout {
  background-color: rgba(240, 245, 250, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.article-callout p {
  font-style: italic;
  margin-bottom: 0;
}

.article-callout p:last-child {
  margin-bottom: 0;
}

.article-callout strong {
  font-style: normal;
}

/* Article Table */
.article-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  overflow-x: auto;
  display: block;
}

@media (min-width: 768px) {
  .article-table {
    display: table;
  }
}

.article-table th,
.article-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 1rem;
}

.article-table th {
  font-family: var(--font-merriweather);
  font-weight: 700;
  color: var(--primary);
}

.article-table td strong {
  font-weight: 600;
}

/* Article Checklist */
.article-checklist {
  list-style: none;
  padding-left: 0;
}

.article-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.article-checklist .checkbox {
  color: var(--muted-foreground);
  flex-shrink: 0;
}

/* Italic list (questions) */
.question-list {
  list-style: none;
  padding-left: 0;
  font-style: italic;
}

.question-list li {
  margin-bottom: 0.5rem;
}

/* Article CTA Box */
.related-articles {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.related-articles-title {
  font-family: var(--font-merriweather);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.related-articles-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.related-articles-list li {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.related-articles-list li a {
  font-family: var(--font-sans);
  color: var(--primary);
  text-decoration: underline;
}

.related-articles-list li a:hover {
  color: #163a4a;
}

.article-cta {
  background: linear-gradient(to bottom right, rgba(28, 74, 94, 0.1), rgba(28, 74, 94, 0.05), var(--background));
  border: 1px solid rgba(28, 74, 94, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-align: center;
}

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

.article-cta-title {
  font-family: var(--font-merriweather);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

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

.article-cta-text {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Button Group (shared by article CTA and CTA box) */
.button-group,
.article-cta-buttons,
.cta-box-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .button-group,
  .article-cta-buttons,
  .cta-box-buttons {
    flex-direction: row;
  }
}

.button-group .btn,
.article-cta-buttons .btn,
.cta-box-buttons .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .button-group .btn,
  .article-cta-buttons .btn,
  .cta-box-buttons .btn {
    width: auto;
  }
}

/* ============================
   Page Layout (Shared)
   ============================ */
.page-content {
  padding-top: 5rem;
  min-height: calc(100vh - 200px);
}

.page-section {
  padding: 4rem 0;
}

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

/* Consolidated Page Titles */
.page-title,
.schedule-title,
.legal-title {
  font-family: var(--font-merriweather);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .page-title,
  .schedule-title,
  .legal-title {
    font-size: 3rem;
  }
}

.page-intro {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: var(--foreground);
  line-height: 1.75;
  text-align: center;
  margin: 0 auto 3rem;
}

/* ============================
   Tools Page
   ============================ */
.tools-grid {
  display: grid;
  gap: 2rem;
}

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

.tool-card {
  display: flex;
  flex-direction: column;
  background-color: var(--background);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.tool-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.tool-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--secondary);
}

.tool-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tool-card:hover .tool-card-image img {
  transform: scale(1.05);
}

.tool-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tool-card-title {
  font-family: var(--font-merriweather);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.tool-card-description {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

/* ============================
   Blog/Resources Page
   ============================ */
.blog-grid {
  display: grid;
  gap: 2rem;
}

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

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

.blog-card {
  display: flex;
  flex-direction: column;
  background-color: var(--background);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.blog-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--secondary);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Badge */
.badge,
.blog-badge,
.article-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  width: fit-content;
}

.blog-card-title {
  font-family: var(--font-merriweather);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-card-description {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 0.75rem;
}

.blog-author {
  color: var(--foreground);
  font-weight: 500;
}

.blog-date {
  color: var(--muted-foreground);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
  background-color: var(--secondary);
  border-color: var(--primary);
}

.pagination-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.pagination-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
}

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

/* ============================
   Schedule Page
   ============================ */
.schedule-section {
  padding: 4rem 0;
}

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

.schedule-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.schedule-intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.schedule-intro p {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: var(--foreground);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--primary);
  transition: opacity 0.2s ease;
}

.contact-link:hover {
  opacity: 0.8;
}

.contact-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.contact-link svg {
  flex-shrink: 0;
}

.contact-divider {
  color: var(--muted-foreground);
}

@media (max-width: 639.98px) {
  .contact-info {
    flex-direction: column;
  }

  .contact-divider {
    display: none;
  }
}

.what-to-expect {
  max-width: 40rem;
  margin: 2rem auto 0;
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.what-to-expect-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.what-to-expect-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.what-to-expect-list {
  display: inline-block;
  text-align: left;
}

.what-to-expect-list li {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--foreground);
  line-height: 1.75;
  padding-left: 1.5rem;
  position: relative;
}

.what-to-expect-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.schedule-divider {
  max-width: 40rem;
  margin: 2rem auto;
}

.schedule-divider hr {
  border: none;
  border-top: 1px solid var(--border);
}

.calendar-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.calendar-container iframe {
  display: block;
}

/* ============================
   Legal Pages
   ============================ */
.legal-page {
  padding-top: 5rem;
  min-height: calc(100vh - 200px);
}

.legal-container {
  max-width: 48rem;
  margin: 0 auto;
  padding: 4rem 1rem;
}

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

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

.legal-date {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.legal-content {
  font-family: var(--font-sans);
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.legal-content section {
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-family: var(--font-merriweather);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-family: var(--font-merriweather);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-content a:hover {
  opacity: 0.8;
}

/* ============================
   Coming Soon Page
   ============================ */
.coming-soon-section {
  padding: 6rem 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .coming-soon-section {
    padding: 8rem 0;
  }
}

.coming-soon-content {
  max-width: 32rem;
  margin: 0 auto;
}

.coming-soon-image {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin: 0 auto 2rem;
  opacity: 0.8;
}

@media (min-width: 640px) {
  .coming-soon-image {
    max-width: 180px;
  }
}

@media (min-width: 768px) {
  .coming-soon-image {
    max-width: 200px;
  }
}

/* ============================
   Hero Sections (Valuation & Checklist)
   ============================ */
.valuation-hero,
.checklist-hero {
  padding: 4rem 0;
  background: linear-gradient(to bottom, var(--secondary), var(--background));
}

@media (min-width: 1024px) {
  .valuation-hero,
  .checklist-hero {
    padding: 6rem 0;
  }
}

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

@media (min-width: 1024px) {
  .valuation-hero-grid,
  .checklist-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.valuation-hero-content,
.checklist-hero-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .valuation-hero-content,
  .checklist-hero-content {
    text-align: left;
  }
}

.checklist-hero-image {
  display: flex;
  justify-content: center;
}

.checklist-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.checklist-hero-image img:hover {
  transform: scale(1.02);
}

/* Form Card (Valuation Request) */
.valuation-form-card {
  background-color: var(--background);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.valuation-request-form {
  display: flex;
  flex-direction: column;
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

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

.benefit-title {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--foreground);
}

.benefit-text {
  font-family: var(--font-sans);
  color: var(--foreground);
  line-height: 1.6;
}

/* Checklist Items */
.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
  text-align: left;
}

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

.checklist-item p {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--foreground);
  line-height: 1.6;
}

/* Check Icon (shared) */
.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  flex-shrink: 0;
}

.check-icon svg {
  width: 12px;
  height: 12px;
}

/* ============================
   CTA Box Component
   ============================ */
.cta-section-alt {
  padding: 4rem 0;
  background-color: var(--secondary);
}

@media (min-width: 1024px) {
  .cta-section-alt {
    padding: 6rem 0;
  }
}

.cta-box {
  background: linear-gradient(to bottom right, rgba(28, 74, 94, 0.1), rgba(28, 74, 94, 0.05), var(--background));
  border: 1px solid rgba(28, 74, 94, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-top: 3rem;
}

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

.cta-box-title {
  font-family: var(--font-merriweather);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

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

.cta-box-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--foreground);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-box-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cta-box-text a:hover {
  color: #163a4a;
}

/* ============================
   Business Benchmarks Tool
   ============================ */
.benchmark-hero {
  padding: 2rem 0;
  background: linear-gradient(to bottom right, rgba(28, 74, 94, 0.05), var(--background));
}

@media (min-width: 768px) {
  .benchmark-hero {
    padding: 3rem 0;
  }
}

.benchmark-hero-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.benchmark-hero-content .hero-title {
  margin-bottom: 1rem;
}

.benchmark-hero-content .hero-text {
  margin-bottom: 0;
}

/* Benchmark Form Section */
.benchmark-form-section {
  padding: 2rem 0 4rem;
}

@media (min-width: 768px) {
  .benchmark-form-section {
    padding: 3rem 0 5rem;
  }
}

.benchmark-form-card {
  max-width: 40rem;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .benchmark-form-card {
    padding: 2rem;
  }
}

.benchmark-form {
  display: flex;
  flex-direction: column;
}

/* Benchmark Loading Section */
.benchmark-loading-section {
  padding: 2rem 0 4rem;
}

@media (min-width: 768px) {
  .benchmark-loading-section {
    padding: 3rem 0 5rem;
  }
}

.benchmark-loading-card {
  max-width: 40rem;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 4rem 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.loading-spinner {
  width: 4rem;
  height: 4rem;
  border: 4px solid rgba(28, 74, 94, 0.3);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1.5rem;
}

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

.loading-title {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.loading-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--muted-foreground);
}

/* Compact Loading Styles */
.benchmark-loading-compact {
  padding: 1.5rem 0;
}

@media (min-width: 768px) {
  .benchmark-loading-compact {
    padding: 2rem 0;
  }
}

.benchmark-loading-card-compact {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.loading-spinner-small {
  width: 2rem;
  height: 2rem;
  border-width: 3px;
  margin: 0;
  flex-shrink: 0;
}

.benchmark-loading-card-compact .loading-text {
  margin: 0;
}

/* Benchmark Results Section */
.benchmark-results-section {
  padding: 2rem 0 3rem;
  background: linear-gradient(to bottom right, rgba(240, 245, 250, 0.5), var(--background));
}

@media (min-width: 768px) {
  .benchmark-results-section {
    padding: 3rem 0 4rem;
  }
}

.benchmark-results-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .benchmark-results-grid {
    gap: 2rem;
  }
}

.benchmark-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

.benchmark-card-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.benchmark-card-value {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.benchmark-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.benchmark-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(28, 74, 94, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.benchmark-card-title {
  font-family: var(--font-merriweather);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

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

.benchmark-chart-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .benchmark-chart-container {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}

.benchmark-chart-wrapper {
  flex: 1;
}

.benchmark-chart-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 1rem;
}

.benchmark-highlight-box {
  background: rgba(28, 74, 94, 0.05);
  border: 1px solid rgba(28, 74, 94, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .benchmark-highlight-box {
    min-width: 16rem;
    padding: 2rem;
  }
}

.benchmark-highlight-box--full {
  margin-bottom: 1.5rem;
}

.highlight-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.highlight-value {
  font-family: var(--font-sans);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.highlight-subtext {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.benchmark-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.benchmark-metric {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}

.metric-label {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .metric-label {
    font-size: 0.75rem;
  }
}

.metric-value {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

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

.benchmark-actions {
  text-align: center;
  margin-top: 2rem;
}

.benchmark-cta-section {
  padding: 3rem 0 4rem;
}

@media (min-width: 768px) {
  .benchmark-cta-section {
    padding: 4rem 0 5rem;
  }
}

/* ============================
   Sell My Business Page
   ============================ */

.sell-hero {
  padding: 6rem 0 3rem;
  background: linear-gradient(to bottom right, var(--secondary), var(--background), var(--secondary));
}

@media (min-width: 1024px) {
  .sell-hero {
    padding: 8rem 0 4rem;
  }
}

.sell-hero-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .sell-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.sell-hero-content {
  padding-top: 1rem;
}

@media (min-width: 1024px) {
  .sell-hero-content {
    padding-top: 2rem;
  }
}

.sell-hero-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .sell-hero-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .sell-hero-title {
    font-size: 3rem;
  }
}

.sell-hero-text {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.sell-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.sell-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.benefit-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.benefit-icon svg {
  stroke: var(--primary-foreground);
}

.benefit-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
}

.benefit-title {
  font-weight: 700;
  color: var(--foreground);
}

.benefit-description {
  color: var(--muted-foreground);
}

.sell-form-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .sell-form-card {
    padding: 2rem;
  }
}

.sell-form {
  display: flex;
  flex-direction: column;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.form-privacy-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.form-privacy-note p {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.form-privacy-note a {
  text-decoration: underline;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.form-privacy-note a:hover {
  color: var(--primary);
}

.sell-cta-section {
  padding: 3rem 0 4rem;
  background: linear-gradient(to bottom right, rgba(28, 74, 94, 0.1), rgba(28, 74, 94, 0.05), var(--background));
}

@media (min-width: 768px) {
  .sell-cta-section {
    padding: 4rem 0 5rem;
  }
}

/* ============================
   404 Error Page
   ============================ */

.error-page {
  min-height: calc(100vh - 20rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  background: var(--secondary);
}

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

.error-code {
  font-family: var(--font-serif);
  font-size: 6rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .error-code {
    font-size: 8rem;
  }
}

.error-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

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

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

.error-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 480px) {
  .error-actions {
    flex-direction: row;
  }
}

/* ============================
   Report Carousel
   ============================ */

.report-carousel-section {
  padding: 4rem 0;
  background: rgba(240, 245, 250, 0.3);
}

@media (min-width: 768px) {
  .report-carousel-section {
    padding: 5rem 0;
  }
}

.report-carousel {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.report-carousel-track {
  position: relative;
}

.report-slide {
  display: none;
}

.report-slide:first-child {
  display: block;
}

.report-slide img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.report-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--background);
  border: 1px solid var(--border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
  z-index: 10;
}

.report-carousel-btn:hover {
  background: var(--accent);
  border-color: var(--primary);
}

.report-carousel-btn svg {
  stroke: var(--foreground);
}

.report-carousel-prev {
  left: 0.5rem;
}

.report-carousel-next {
  right: 0.5rem;
}

@media (min-width: 768px) {
  .report-carousel-prev {
    left: -3rem;
  }

  .report-carousel-next {
    right: -3rem;
  }
}

.report-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.report-carousel-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.report-carousel-dot:hover {
  background: var(--muted-foreground);
}

.report-carousel-dot.active {
  background: var(--primary);
}

/* ============================
   Section Divider
   ============================ */

.section-divider {
  border-top: 1px solid var(--border);
  margin: 1rem 0;
}

