/* ============================================
   SELF-HOSTED FONTS
   ============================================ */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/inter-300.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-500.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/inter-700.ttf') format('truetype');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/playfair-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/playfair-700.ttf') format('truetype');
}

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
  --primary: #0f2b5b;
  --primary-light: #1a3f7a;
  --primary-dark: #091d3e;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --text: #1e293b;
  --text-light: #64748b;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-color: var(--gray-900);
}

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

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

ul {
  list-style: none;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
  background-color: #0c1527;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
    radial-gradient(circle 800px at 50% 50%, rgba(15, 43, 91, 0.3) 0%, transparent 100%);
  color: var(--gray-300);
}

.section-alt {
  background-color: #0f1a2e;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
    radial-gradient(circle 600px at 30% 50%, rgba(15, 43, 91, 0.2) 0%, transparent 100%);
  color: var(--gray-300);
}

/* Subtle top border accent for alternating sections */
.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
}

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

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #5b9cf6;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto;
  border-radius: 2px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(12, 21, 39, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all var(--transition);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1.2;
  transition: color var(--transition);
}

.logo-sub {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  transition: color var(--transition);
}

.navbar.scrolled .logo-text {
  color: var(--white);
}

.navbar.scrolled .logo-sub {
  color: var(--gray-400);
}

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

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
  position: relative;
}

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

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

.navbar.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.7);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--white);
}

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

/* CTA Button in Nav */
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-1px);
}

/* Hamburger Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
  background: var(--white);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  overflow: hidden;
}

/* Subtle geometric pattern overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
}

.hero-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 32px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 120px 24px 80px;
}

.hero-tagline {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-card {
  position: relative;
  padding: 1px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(91, 156, 246, 0.25) 0%, rgba(255, 255, 255, 0.06) 50%, rgba(91, 156, 246, 0.1) 100%);
  transition: all 0.4s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, rgba(91, 156, 246, 0.4) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(91, 156, 246, 0.2) 100%);
}

.about-card-inner {
  background: linear-gradient(135deg, #101d35 0%, #0c1527 100%);
  border-radius: 15px;
  padding: 36px 28px;
  height: 100%;
}

.about-card:hover .about-card-inner {
  background: linear-gradient(135deg, #121f38 0%, #0e1829 100%);
}

.about-icon-ring {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(91, 156, 246, 0.2);
  color: #5b9cf6;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.about-card:hover .about-icon-ring {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(91, 156, 246, 0.4);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.15);
}

.about-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.about-card p {
  font-size: 0.9375rem;
  color: var(--gray-400);
  line-height: 1.75;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 36px 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Gradient top line */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #5b9cf6, transparent);
  opacity: 0.4;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(91, 156, 246, 0.15);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), 0 0 40px rgba(37, 99, 235, 0.06);
}

.service-card:hover::before {
  opacity: 1;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.service-number {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #5b9cf6, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(91, 156, 246, 0.3), transparent);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--gray-400);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #5b9cf6;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.service-link span {
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: #7db4fc;
}

.service-link:hover span {
  transform: translateX(4px);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-us-card {
  padding: 28px 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s ease;
  position: relative;
}

.why-us-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(91, 156, 246, 0.15);
  transform: translateY(-4px);
}

.why-us-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #5b9cf6, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.why-us-card strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}

.why-us-card p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.65;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form-wrapper {
  position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-300);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #5b9cf6;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Form Success State */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
  color: var(--accent);
}

.form-success svg {
  margin: 0 auto 16px;
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--gray-400);
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}

.info-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item svg {
  flex-shrink: 0;
  color: #5b9cf6;
  margin-top: 4px;
}

.info-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.info-item p {
  font-size: 0.9375rem;
  color: var(--gray-400);
  line-height: 1.6;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand .logo-sub {
  color: var(--gray-500);
}

.footer-description {
  margin-top: 16px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-500);
}

.footer-links h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--gray-500);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--gray-600);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

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

  /* Mobile Navigation */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0c1527;
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    transition: right var(--transition);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--gray-300) !important;
    font-size: 1.0625rem;
  }

  .nav-links a:hover {
    color: var(--white) !important;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  /* Hamburger active state */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--white);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: var(--white);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 1.875rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .about-card-inner,
  .service-card {
    padding: 28px 20px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FOOTER LEGAL LINKS
   ============================================ */
.footer-legal {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 0.8125rem;
}

.footer-legal a {
  color: var(--gray-500);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-legal span {
  color: var(--gray-700);
}

/* ============================================
   LEGAL PAGES (Privacy Policy, Terms)
   ============================================ */
.legal-page {
  background-color: #0c1527;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.legal-date {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content p {
  font-size: 0.9375rem;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 0.9375rem;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-content a {
  color: #5b9cf6;
  transition: color var(--transition);
}

.legal-content a:hover {
  color: #7db4fc;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #5b9cf6;
  margin-bottom: 32px;
  transition: color var(--transition);
}

.legal-back:hover {
  color: #7db4fc;
}
