/* ========================================
   المنتقى - Landing Page Styles
   ======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Tajawal', sans-serif;
  background-color: #FDFCF8;
  color: #1f2937;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

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

/* Typography */
.font-lemonada {
  font-family: 'Lemonada', cursive;
}

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

/* ========================================
   Hero Section
   ======================================== */
.hero {
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to bottom, #f3e9d2, #FDFCF8 50%, #FDFCF8);
}

.hero-content {
  max-width: 56rem;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  color: #115e59;
  letter-spacing: -0.025em;
  font-family: 'Lemonada', cursive;
}

.hero-tagline {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #0f766e;
}

.hero-description {
  margin-top: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .hero {
    padding: 5rem 2rem;
  }
  .hero-title {
    font-size: 6rem;
  }
  .hero-tagline {
    font-size: 1.5rem;
  }
  .hero-description {
    font-size: 1.25rem;
  }
}

/* ========================================
   Section Common Styles
   ======================================== */
.section {
  padding: 5rem 0;
}

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

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1f2937;
}

.section-title--teal {
  color: #115e59;
}

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

/* ========================================
   Problem Section
   ======================================== */
.problem-section {
  background-color: #FDFCF8;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.problem-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #f3f4f6;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.15);
}

.problem-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.problem-icon svg {
  width: 3rem;
  height: 3rem;
  color: #c2410c;
}

.problem-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.problem-description {
  color: #4b5563;
}

/* ========================================
   Solution Section
   ======================================== */
.solution-section {
  background: linear-gradient(to bottom, #f0fdfa, #FDFCF8);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.feature-card {
  padding: 1.75rem;
  border-radius: 0.75rem;
  background-color: #0f766e;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-0.5rem);
}

.feature-icon {
  margin-bottom: 0.75rem;
}

.feature-icon svg {
  width: 2.25rem;
  height: 2.25rem;
  color: white;
}

.feature-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: #d1fae5;
  line-height: 1.65;
}

/* ========================================
   App Showcase Section
   ======================================== */
.showcase-section {
  background-color: white;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}

.showcase-phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .showcase-phones {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .showcase-phones {
    gap: 4rem;
  }
}

.phone-mockup {
  transition: transform 0.5s ease;
}

.phone-mockup:hover {
  transform: scale(1.05);
}

.phone-mockup:nth-child(2) {
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .phone-mockup:nth-child(2) {
    margin-top: 0;
  }
}

.phone-frame {
  position: relative;
  margin: 0 auto;
  height: 600px;
  width: 300px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 8px solid #134e4a;
}

.phone-button {
  position: absolute;
  background-color: #134e4a;
}

.phone-button--left-top {
  height: 32px;
  width: 2px;
  left: -10px;
  top: 80px;
  border-radius: 2px 0 0 2px;
}

.phone-button--left-bottom {
  height: 48px;
  width: 2px;
  left: -10px;
  top: 120px;
  border-radius: 2px 0 0 2px;
}

.phone-button--right {
  height: 48px;
  width: 2px;
  right: -10px;
  top: 120px;
  border-radius: 0 2px 2px 0;
}

.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ========================================
   Trust Quote Section
   ======================================== */
.quote-section {
  background-color: #FDFCF8;
}

.quote-container {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.quote-text {
  font-size: 1.5rem;
  font-weight: 500;
  color: #374151;
  line-height: 1.75;
}

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

.quote-mark {
  display: block;
  font-size: 3.75rem;
  color: #115e59;
  font-family: Georgia, serif;
  line-height: 1;
}

.quote-mark--end {
  margin-top: 1rem;
}

.quote-author {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing-section {
  background-color: #f9fafb;
}

.pricing-container {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.pricing-card {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 2px solid #5eead4;
  padding: 2.5rem;
  margin-top: 2.5rem;
}

.free-trial-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  color: #065f46;
  border: 2px solid #34d399;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(52, 211, 153, 0.25);
  animation: badge-glow 2s ease-in-out infinite;
}

.free-trial-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #10b981;
}

@keyframes badge-glow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(52, 211, 153, 0.25);
  }
  50% {
    box-shadow: 0 4px 25px rgba(52, 211, 153, 0.45);
  }
}

.pricing-amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.pricing-price {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f766e;
}

.pricing-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #14b8a6, transparent);
  border-radius: 2px;
}

.pricing-period {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f766e;
}

@media (max-width: 400px) {
  .pricing-price {
    font-size: 1.85rem;
  }

  .pricing-divider {
    width: 60px;
  }

  .pricing-period {
    font-size: 1rem;
  }
}

.pricing-old {
  font-size: 1.1rem;
  color: #4b5563;
  margin-top: 0.75rem;
}

.pricing-note {
  margin-top: 1.5rem;
  color: #4b5563;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background-color: #14b8a6;
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #0d9488;
  transform: scale(1.05);
}

.whatsapp-btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(94, 234, 212, 0.5);
}

.whatsapp-btn:active {
  transform: scale(1);
}

.whatsapp-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.pricing-info {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 1.5rem;
}

.pricing-info:first-of-type {
  margin-top: 1.5rem;
}

.pricing-info + .pricing-info {
  margin-top: 0.5rem;
}

.pricing-info--payment {
  margin-top: 1rem;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background-color: #14b8a6;
  color: white;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.4);
}

.download-btn:hover {
  background-color: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.5);
}

.download-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.download-btn-divider {
  width: 1px;
  height: 1.25rem;
  background-color: rgba(255, 255, 255, 0.4);
}

.download-btn-platform {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  color: #0f766e;
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #10b981;
}

.install-help-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  color: #6b7280;
  padding: 0.35rem 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.install-help-link:hover {
  color: #0f766e;
  background-color: #f0fdfa;
}

.install-help-link svg {
  width: 1rem;
  height: 1rem;
}

/* ========================================
   Download Modal
   ======================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #FDFCF8;
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  max-width: 420px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 2px solid #5eead4;
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: #6b7280;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #1f2937;
}

.modal-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #115e59;
  text-align: center;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  font-size: 0.95rem;
  color: #4b5563;
  text-align: center;
  margin-bottom: 1rem;
}

.modal-trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #0f766e;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.modal-trust-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #10b981;
}

.modal-app-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.modal-app-info svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #0f766e;
}

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

.modal-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  text-decoration: none;
  color: #1f2937;
  transition: all 0.2s ease;
}

.modal-option:hover {
  background-color: #f0fdfa;
  border-color: #5eead4;
  transform: translateX(-4px);
}

.modal-option-content {
  flex: 1;
  text-align: right;
  padding-right: 0.5rem;
}

.modal-option-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.2rem;
}

.modal-option-desc {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 400;
}

.modal-option-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  flex-shrink: 0;
  background-color: #f0fdfa;
  border: 1px solid #5eead4;
  color: #0f766e;
  transition: all 0.2s ease;
}

.modal-option:hover .modal-option-icon {
  background-color: #0f766e;
  border-color: #0f766e;
  color: white;
}

.modal-option-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.modal-option-icon--telegram {
  background-color: #e0f2fe;
  border-color: #7dd3fc;
  color: #0369a1;
}

.modal-option:hover .modal-option-icon--telegram {
  background-color: #0284c7;
  border-color: #0284c7;
  color: white;
}

.modal-option-icon--whatsapp {
  background-color: #dcfce7;
  border-color: #86efac;
  color: #15803d;
}

.modal-option:hover .modal-option-icon--whatsapp {
  background-color: #16a34a;
  border-color: #16a34a;
  color: white;
}

.modal-option-arrow {
  width: 1.25rem;
  height: 1.25rem;
  color: #9ca3af;
  flex-shrink: 0;
}

.modal-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem;
  margin: 0.5rem 0;
  background-color: #f0fdfa;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  color: #4b5563;
  line-height: 1.5;
}

.modal-note svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: #0f766e;
}

/* Installation Guide */
.install-guide {
  margin-top: 1.25rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}

.install-guide-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f766e;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.install-guide-toggle:hover {
  background-color: #f0fdfa;
}

.install-guide-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.install-guide-arrow {
  transition: transform 0.3s ease;
}

.install-guide-toggle[aria-expanded="true"] .install-guide-arrow {
  transform: rotate(180deg);
}

.install-guide-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.install-guide-toggle[aria-expanded="true"] + .install-guide-content {
  max-height: 800px;
}

.install-steps {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.install-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.install-step-num {
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0f766e;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.install-step-text {
  flex: 1;
  text-align: right;
}

.install-step-text strong {
  display: block;
  font-size: 0.9rem;
  color: #1f2937;
  margin-bottom: 0.2rem;
}

.install-step-text p {
  font-size: 0.8rem;
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
}

.install-highlight {
  background-color: #fef3c7;
  color: #92400e;
  padding: 0.1rem 0.35rem;
  border-radius: 0.25rem;
  font-weight: 500;
}

.install-note {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: #f0fdfa;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  color: #0f766e;
  line-height: 1.5;
  text-align: center;
}

/* Install Help Wrapper with Popover */
.install-help-wrapper {
  position: relative;
  display: inline-block;
  margin-top: 0.5rem;
}

/* Install Popover */
.install-popover {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  max-width: calc(100vw - 2rem);
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
  padding: 1.25rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.install-popover.active {
  opacity: 1;
  visibility: visible;
}

.install-popover-arrow {
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background-color: white;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  transform: translateX(-50%) rotate(45deg);
}

.install-popover-content {
  position: relative;
}

.install-popover-close {
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f4f6;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.2s ease;
}

.install-popover-close:hover {
  background-color: #e5e7eb;
  color: #1f2937;
}

.install-popover-close svg {
  width: 0.875rem;
  height: 0.875rem;
}

.install-popover-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #115e59;
  text-align: center;
  margin-bottom: 1rem;
}

.install-popover .install-steps {
  margin-top: 0;
  gap: 0.625rem;
}

.install-popover .install-step-num {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.7rem;
}

.install-popover .install-step-text strong {
  font-size: 0.85rem;
}

.install-popover .install-step-text p {
  font-size: 0.75rem;
}

.install-popover-note {
  margin-top: 0.875rem;
  padding: 0.625rem;
  background-color: #f0fdfa;
  border-radius: 0.5rem;
  font-size: 0.7rem;
  color: #0f766e;
  line-height: 1.4;
  text-align: center;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
  background-color: #FDFCF8;
}

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

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 1.5rem 0;
}

.faq-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: right;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0.5rem;
  margin: -0.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}

.faq-button:hover {
  background-color: rgba(15, 118, 110, 0.05);
}

.faq-button:hover .faq-question {
  color: #0f766e;
}

.faq-button:focus {
  outline: none;
}

.faq-button:focus-visible {
  outline: 2px solid #14b8a6;
  outline-offset: 2px;
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  transition: color 0.2s ease;
}

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

.faq-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #0d9488;
}

.faq-content {
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  max-height: 0;
}

.faq-answer {
  color: #4b5563;
  line-height: 1.75;
  padding-right: 0.5rem;
  padding-top: 1rem;
}

.faq-answer p + p {
  margin-top: 0.75rem;
}

.faq-answer ul {
  list-style-type: disc;
  list-style-position: inside;
  padding-right: 1rem;
  margin-top: 0.75rem;
}

.faq-answer ul li {
  margin-top: 0.5rem;
  color: #4b5563;
}

.faq-answer ul li strong {
  color: #1f2937;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background-color: #115e59;
  color: #ccfbf1;
  padding: 2.5rem 0;
}

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

.footer-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: white;
}

.footer-copyright {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

/* ========================================
   Utilities
   ======================================== */
.text-center {
  text-align: center;
}

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