/* ===== VARIABLES ===== */
:root {
  /* Цветовая схема */
  --primary: #18a058;
  --primary-dark: #059669;
  --primary-light: #34d399;
  --primary-bg: #dcfce7;
  --primary-bg-strong: #bbf7d0;
  --secondary: #10b981;
  --accent: #f59e0b;

  --primary-1: #7c3aed;
  --primary-1-dark: #6d28d9;
  --primary-1-light: #8b5cf6;
  --secondary-1: #10b981;
  --accent-1: #f59e0b;

  /* Нейтральные цвета */
  --dark: #0f172a;
  --gray-900: #1e293b;
  --gray-800: #334155;
  --gray-700: #475569;
  --gray-600: #64748b;
  --gray-500: #94a3b8;
  --gray-400: #cbd5e1;
  --gray-300: #e2e8f0;
  --gray-200: #f1f5f9;
  --gray-100: #f8fafc;
  --white: #ffffff;

  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, #18a058 0%, #059669 100%);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);

  /* Тени */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

  /* Анимации */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

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

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.section {
  padding: 6rem 0;
}

.section--alt {
  background: var(--gray-100);
}

.section__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section__header h2 {
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  gap: 0.5rem;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn--outline {
  background: transparent;
  border-color: var(--gray-300);
  color: var(--gray-700);
}

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

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary-light);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--gray-100);
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 100px;
  transition: var(--transition);
}

.feature-badge:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  opacity: 0.1;
  z-index: -1;
}

.hero__content {
  max-width: 600px;
}

.hero__title {
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero__features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== DASHBOARD PREVIEW ===== */
.dashboard-preview {
  background: var(--dark);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow-2xl);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: var(--transition);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0);
  }
  50% {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg)
      translateY(-20px);
  }
}

.dashboard-preview:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0);
}

.dashboard-preview__header {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.dashboard-preview__header .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-600);
}

.dashboard-preview__header .dot:nth-child(1) {
  background: #ff5f56;
}
.dashboard-preview__header .dot:nth-child(2) {
  background: #ffbd2e;
}
.dashboard-preview__header .dot:nth-child(3) {
  background: #27c93f;
}

.dashboard-preview__body {
  display: grid;
  gap: 1rem;
}

.preview-card {
  height: 60px;
  background: linear-gradient(90deg, var(--gray-800) 0%, var(--gray-700) 100%);
  border-radius: 12px;
  animation: pulse 2s ease-in-out infinite;
}

.preview-card--wide {
  height: 100px;
}

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

/* ===== STATS SECTION ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 4rem;
  /* border-top: 2px solid var(--gray-200); */
  /* border-bottom: 2px solid var(--gray-200); */
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.stat-card__value {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.stat-card__label {
  color: var(--gray-600);
  font-weight: 500;
}

/* ===== GRID SYSTEMS ===== */
.grid {
  display: grid;
  gap: 2rem;
}

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

/* ===== CARDS ===== */
.card {
  padding: 2rem;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.card--hover:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.card__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.card__desc {
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== PAIN CARDS ===== */
.pain-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.pain-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-lg);
  background: var(--gradient-primary);
}

.pain-card:hover .pain-card__text {
  color: var(--white);
}

.pain-card__icon {
  font-size: 2rem;
}

.pain-card__text {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
}

/* ===== SOLUTION SECTION ===== */
.solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lead {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin: 1.5rem 0;
}

.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: var(--gray-700);
}

.check-list li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  font-weight: bold;
}

/* ===== PHONE MOCKUP ===== */
.phone-mockup {
  width: 300px;
  height: 600px;
  background: var(--dark);
  border-radius: 40px;
  padding: 1rem;
  box-shadow: var(--shadow-2xl);
  position: relative;
  margin: 0 auto;
  border: 2px solid var(--gray-700);
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 30px;
  background: var(--dark);
  border-radius: 0 0 20px 20px;
}

.phone-mockup__screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  padding: 1rem;
}

.app-bar {
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.app-content {
  height: calc(100% - 56px);
  background: var(--gray-100);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.app-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.feature-card__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: var(--transition);
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card__title {
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.feature-card__desc {
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== PROCESS SECTION ===== */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step__num {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.process-step:hover .process-step__num {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.process-step__title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.process-step__desc {
  color: var(--gray-600);
  font-size: 0.875rem;
}

/* ===== FAQ SECTION ===== */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.faq-item:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.faq-item__question {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item__question::after {
  content: "▼";
  font-size: 0.875rem;
  color: var(--primary);
  transition: var(--transition);
}

details[open] .faq-item__question::after {
  transform: rotate(180deg);
}

.faq-item__answer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--gray-200);
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta {
  text-align: center;
  padding: 4rem;
  background: var(--gradient-dark);
  border-radius: 32px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  opacity: 0.1;
  animation: rotate 20s linear infinite;
}

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

.cta__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta__subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.cta .btn {
  position: relative;
  z-index: 1;
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gray-200);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
[data-theme="dark"] .hamburger span {
  background: var(--gray-300);
}
.navbar--mobile-open .hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.navbar--mobile-open .hamburger span:nth-child(2) {
  opacity: 0;
}
.navbar--mobile-open .hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 768px) {
  .navbar .container {
    gap: 0;
  }
  .hamburger {
    display: flex;
  }
  .nav-links,
  .nav-actions {
    display: none !important;
  }
  .navbar--mobile-open .nav-links,
  .navbar--mobile-open .nav-actions {
    display: flex !important;
  }
  .navbar--mobile-open .container {
    flex-wrap: wrap;
  }
  .navbar--mobile-open .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    margin-top: 1rem;
    padding: 0;
  }
  [data-theme="dark"] .navbar--mobile-open .nav-links {
    background: var(--dark);
    border-top-color: var(--gray-800);
  }
  .navbar--mobile-open .nav-links a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
  }
  [data-theme="dark"] .navbar--mobile-open .nav-links a {
    border-bottom-color: var(--gray-800);
  }
  .navbar--mobile-open .nav-links a::after {
    display: none;
  }
  .navbar--mobile-open .nav-actions {
    width: 100%;
    padding: 1rem 0 0.5rem;
    justify-content: flex-start;
    gap: 1rem;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-col a {
  display: block;
  color: var(--gray-400);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  color: var(--gray-500);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .process {
    grid-template-columns: repeat(3, 1fr);
  }
  .process::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero,
  .solution {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__features {
    justify-content: center;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 3rem 0;
  }

  .section__header {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .btn--sm-mobile {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

/* Дополнительные анимации */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.gradient-animation {
  background: linear-gradient(
    -45deg,
    var(--primary),
    var(--secondary),
    var(--accent),
    var(--primary)
  );
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

/* Микро-анимации */
.hover-lift {
  transition: var(--transition);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* Кастомный скроллбар */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Анимация загрузки */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Эффекты наведения для карточек */
.card {
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.1);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.card:hover::after {
  width: 300px;
  height: 300px;
}

/* Текст с градиентом */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== LEGAL PAGES ===== */
.legal-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem 2rem;
}

.legal-card {
  max-width: 800px;
  width: 100%;
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

.legal-card h1 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-date {
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.legal-content h2 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--gray-800);
}

.legal-content p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
  color: var(--gray-600);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

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

.legal-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
  text-align: center;
}

.legal-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

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