/* CSS Variables - Design System */
:root {
  --background: 210 40% 98%;
  --foreground: 215 25% 15%;

  --card: 0 0% 100%;
  --card-foreground: 215 25% 15%;

  --popover: 0 0% 100%;
  --popover-foreground: 215 25% 15%;

  --primary: 195 85% 45%;
  --primary-foreground: 0 0% 100%;
  --primary-glow: 195 85% 55%;

  --secondary: 210 50% 92%;
  --secondary-foreground: 215 25% 20%;

  --muted: 210 40% 94%;
  --muted-foreground: 215 15% 45%;

  --accent: 185 80% 48%;
  --accent-foreground: 0 0% 100%;

  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;

  --border: 214 25% 88%;
  --input: 214 25% 88%;
  --ring: 195 85% 45%;

  --radius: 0.75rem;

  --gradient-primary: linear-gradient(135deg, hsl(195 85% 45%), hsl(185 80% 48%));
  --gradient-hero: linear-gradient(180deg, hsl(210 40% 98%) 0%, hsl(200 60% 96%) 100%);
  --shadow-elegant: 0 10px 30px -10px hsl(195 85% 45% / 0.2);
  --shadow-glow: 0 0 40px hsl(195 85% 55% / 0.3);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--gradient-hero);
  color: hsl(var(--foreground));
  min-height: 100vh;
  line-height: 1.5;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  border-bottom: 1px solid hsl(var(--border) / 0.5);
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header .container {
  padding: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon-wrapper {
  position: relative;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--primary));
}

.logo-icon-glow {
  position: absolute;
  inset: 0;
  background: hsl(var(--primary) / 0.2);
  filter: blur(12px);
  border-radius: 50%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text-main {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.logo-text-sub {
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Progress Bar */
.progress-container {
  padding: 1rem 0;
}

.progress-wrapper {
  max-width: 48rem;
  margin: 0 auto;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.progress-bar {
  position: relative;
  height: 0.5rem;
  width: 100%;
  overflow: hidden;
  border-radius: 9999px;
  background: hsl(var(--secondary));
}

.progress-fill {
  height: 100%;
  background: hsl(var(--primary));
  transition: width 0.3s ease;
  width: 0%;
}

.hidden {
  display: none !important;
}

/* Main Content */
.main {
  padding: 2rem 0;
}

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

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

/* Hero Section */
.hero {
  text-align: center;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

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

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

.hero-title-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
}

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

/* Steps */
.step {
  display: block;
}

.step.active {
  display: block;
}

/* Card */
.card {
  background: hsl(var(--card));
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border) / 0.5);
  box-shadow: var(--shadow-elegant);
  padding: 2rem;
}

@media (min-width: 640px) {
  .card {
    padding: 2.5rem;
  }
}

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

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

/* Form Elements */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-label {
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

@media (min-width: 640px) {
  .form-label {
    font-size: 1rem;
  }
}

.form-input,
.form-select {
  width: 100%;
  height: 3rem;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid hsl(var(--input));
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  transition: all 0.2s;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  ring: 2px;
  ring-color: hsl(var(--ring));
  ring-offset: 2px;
  border-color: hsl(var(--ring));
}

.form-input::placeholder {
  color: hsl(var(--muted-foreground));
}

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

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

.form-row .form-group:nth-child(3) {
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .form-row .form-group:nth-child(3) {
    grid-column: auto;
  }
}

/* Slider */
.slider-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 0.5rem;
  border-radius: 9999px;
  background: hsl(var(--secondary));
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

/* Slider track fill (for webkit) */
.slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  border-radius: 9999px;
  background: hsl(var(--secondary));
}

/* Slider range fill */
.slider-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: var(--slider-fill, 0%);
  height: 0.5rem;
  background: hsl(var(--primary));
  border-radius: 9999px;
  pointer-events: none;
  z-index: 0;
  transition: width 0.1s ease;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: hsl(var(--background));
  border: 2px solid hsl(var(--primary));
  cursor: pointer;
  transition: all 0.2s;
}

.slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 4px hsl(var(--primary) / 0.1);
}

.slider::-moz-range-thumb {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: hsl(var(--background));
  border: 2px solid hsl(var(--primary));
  cursor: pointer;
  transition: all 0.2s;
}

.slider::-moz-range-track {
  height: 0.5rem;
  border-radius: 9999px;
  background: hsl(var(--secondary));
}

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

.value-display {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

/* Equity Display */
.equity-display {
  padding: 1rem;
  background: var(--gradient-primary);
  border-radius: var(--radius);
  text-align: center;
}

.equity-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--primary-foreground) / 0.8);
  margin-bottom: 0.25rem;
}

.equity-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
}

/* Tip */
.tip {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.tip-icon {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  color: hsl(var(--accent));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  outline: none;
}

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

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

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

.btn-primary {
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover:not(:disabled) {
  opacity: 0.9;
}

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

.btn-outline:hover:not(:disabled) {
  background: hsl(var(--primary) / 0.05);
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  pointer-events: none;
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

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

.form-actions .btn {
  flex: 1;
}

/* Step Header */
.step-header {
  text-align: center;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

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

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

.step-subtitle {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

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

/* Usage Options */
.usage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

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

.usage-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
}

.usage-option:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}


.usage-option:has(input[type="checkbox"]:checked) {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.05);
}

.usage-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.usage-option span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Custom Checkbox */
.usage-option {
  position: relative;
}

.usage-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.usage-checkbox {
  width: 1rem;
  height: 1rem;
  border: 1px solid hsl(var(--primary));
  border-radius: calc(var(--radius) - 8px);
  position: relative;
  flex-shrink: 0;
  display: inline-block;
  background: transparent;
  transition: all 0.2s;
}

.usage-option input[type="checkbox"]:checked + .usage-checkbox {
  background: hsl(var(--primary));
}

.usage-option input[type="checkbox"]:checked + .usage-checkbox::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: hsl(var(--primary-foreground));
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1;
}

/* Cash Amount Section */
.cash-amount-section {
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
}

.max-cash-display {
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.max-cash-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.max-cash-highlight {
  color: hsl(var(--primary));
}

.max-cash-amount {
  font-size: 2.25rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
}

.max-cash-note {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.5rem;
}

/* Error Messages */
.error-message {
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--destructive));
  background: hsl(var(--destructive) / 0.1);
  border: 1px solid hsl(var(--destructive) / 0.2);
  border-radius: var(--radius);
  padding: 0.75rem;
}

.error-text {
  font-size: 0.75rem;
  color: hsl(var(--destructive));
  margin-top: 0.25rem;
}

/* Radio Group */
.radio-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

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

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  min-height: 3rem;
}

@media (min-width: 640px) {
  .radio-option {
    padding: 1rem;
  }
}

.radio-option:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.radio-option input[type="radio"] {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  accent-color: hsl(var(--primary));
}

.radio-option:has(input[type="radio"]:checked) {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.05);
}

.radio-option span {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: capitalize;
}

@media (min-width: 640px) {
  .radio-option span {
    font-size: 1rem;
  }
}

/* Second Mortgage Fields */
.second-mortgage-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Property Form */
.property-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .property-form {
    gap: 1.5rem;
  }
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .contact-form {
    gap: 1.5rem;
  }
}

/* Not Lender Banner */
.not-lender-banner {
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.banner-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #d97706;
}

.banner-text {
  font-size: 0.875rem;
  color: #78350f;
}

/* Consent Notice */
.consent-notice {
  background: hsl(var(--muted) / 0.3);
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid hsl(var(--border) / 0.3);
}

.consent-text {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
}

/* Contact Success */
.contact-success {
  text-align: center;
  padding: 1.5rem 0;
}

@media (min-width: 640px) {
  .contact-success {
    padding: 2rem 0;
  }
}

.success-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .success-icon-wrapper {
    margin-bottom: 2rem;
  }
}

.success-icon-wrapper div {
  border-radius: 50%;
  background: hsl(var(--primary) / 0.1);
  padding: 1rem;
  display: inline-block;
}

@media (min-width: 640px) {
  .success-icon-wrapper div {
    padding: 1.5rem;
  }
}

.success-icon {
  width: 3rem;
  height: 3rem;
  color: hsl(var(--primary));
}

@media (min-width: 640px) {
  .success-icon {
    width: 4rem;
    height: 4rem;
  }
}

.success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

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

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

.success-text {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  padding: 0 1rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .success-text {
    font-size: 1.125rem;
  }
}

.success-text-small {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  padding: 0 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .success-text-small {
    font-size: 1rem;
  }
}

/* Footer */
.footer {
  border-top: 1px solid hsl(var(--border) / 0.5);
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(8px);
  margin-top: 4rem;
}

.footer .container {
  padding: 1.5rem 1rem;
}

@media (min-width: 768px) {
  .footer .container {
    padding: 2rem 1rem;
  }
}

.footer-content {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* Footer Logos */
.footer-logos {
  text-align: center;
  margin-bottom: 0.25rem;
}

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

.footer-logo-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--foreground));
}

.footer-logo-text {
  font-weight: 600;
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

/* Footer Navigation */
.footer-nav {
  text-align: center;
  margin: 0.25rem 0;
}

.footer-nav-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}

.footer-nav-row:last-child {
  margin-bottom: 0;
}

.footer-nav-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-nav-link:hover {
  color: hsl(var(--primary));
  text-decoration: underline;
}

/* Footer Text */
.footer-text {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
  text-align: center;
  max-width: 56rem;
  margin: 0.25rem auto;
}

.footer-copyright {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
  margin-top: 0.25rem;
}

.footer-link {
  color: hsl(var(--primary));
  text-decoration: none;
  display: inline;
  transition: color 0.2s;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-link-icon {
  width: 0.75rem;
  height: 0.75rem;
}

.footer-divider {
  border-top: 1px solid hsl(var(--border) / 0.3);
  padding-top: 0.5rem;
  margin-top: 0.25rem;
}

.footer-disclosure {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
  line-height: 1.75;
  max-width: 56rem;
  margin: 0 auto;
}

.footer-equal-housing {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-equal-housing-icon {
  font-size: 1rem;
}

.privacy-notice {
  background: hsl(var(--muted) / 0.2);
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid hsl(var(--border) / 0.3);
}

@media (min-width: 768px) {
  .privacy-notice {
    padding: 1.5rem;
  }
}

.privacy-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
  text-align: center;
}

.privacy-text {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
}

.privacy-link {
  color: hsl(var(--primary));
  text-decoration: none;
}

.privacy-link:hover {
  text-decoration: underline;
}

/* State Licenses */
.state-licenses {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.state-licenses-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.state-licenses-link {
  color: hsl(var(--primary));
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.state-licenses-link:hover {
  text-decoration: underline;
}

.state-licenses-icon {
  width: 0.75rem;
  height: 0.75rem;
}

/* Accordion */
.accordion {
  width: 100%;
}

.accordion-trigger {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-weight: 500;
  font-size: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  color: hsl(var(--foreground));
  width: 100%;
  text-align: left;
}

.accordion-trigger:hover {
  text-decoration: underline;
}

.accordion-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  overflow: hidden;
  transition: all 0.2s ease-out;
  max-height: 0;
}

.accordion-content.open {
  max-height: 2000px;
}

.state-licenses-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.state-license-item {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.state-license-item strong {
  color: hsl(var(--foreground));
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

@media (min-width: 768px) {
  .footer-links {
    gap: 1.5rem;
  }
}

.footer-important {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
  line-height: 1.75;
  max-width: 56rem;
  margin: 0 auto;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

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

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

