:root {
  --brand: #ff6b00;
  --brand-dark: #e35c00;
  --text-dark: #333333;
  --text-muted: #6c6f76;
  --bg-light: #f8f9fa;
  --surface: #ffffff;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: var(--surface);
}

.site-navbar {
  backdrop-filter: saturate(130%) blur(2px);
}

.site-navbar .navbar-collapse {
  padding-top: 0.75rem;
}

.site-brand {
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--brand) !important;
  letter-spacing: 0.35px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.site-nav-link {
  font-weight: 500;
  color: #444444 !important;
  transition: color 0.2s ease;
}

.site-nav-link:hover,
.site-nav-link.active {
  color: var(--brand) !important;
}

.btn-login {
  background-color: var(--brand);
  color: #ffffff;
  border-radius: 999px;
  padding: 7px 18px;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
  border: 1px solid var(--brand);
}

.btn-login:hover {
  background-color: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #ffffff;
}

.hero-logo {
  max-width: 110px;
}

.section-hero {
  background: var(--bg-light);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.hero-title {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.app-card {
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
}

.icon-panel {
  border-radius: 1rem;
  background: var(--bg-light);
  padding: 2rem;
}

.step-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 0, 0.12);
  color: var(--brand);
  font-size: 1.8rem;
  font-weight: 700;
}

.btn-lg {
  padding: 0.8rem 1.4rem;
  border-radius: 0.75rem;
}

.cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--brand);
}

.legal-card .card-body {
  max-width: 920px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.35;
  margin-top: 2rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h5 {
  font-size: 1.02rem;
  margin-top: 1.25rem;
}

.legal-content p,
.legal-content li {
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 1.2rem;
}

@media (min-width: 992px) {
  .site-navbar .navbar-collapse {
    padding-top: 0;
  }

  .cta-row.start-lg {
    justify-content: flex-start;
  }
}

@media (max-width: 991.98px) {
  .home-hero-row {
    min-height: auto !important;
  }

  .hero-title {
    line-height: 1.25;
  }

  .section-hero {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .icon-panel {
    padding: 1.5rem;
  }

  .app-card .card-body {
    padding: 1.5rem !important;
  }
}

@media (max-width: 575.98px) {
  .btn-lg {
    width: 100%;
    padding: 0.72rem 1rem;
  }

  .cta-row {
    width: 100%;
  }

  .step-badge {
    width: 62px;
    height: 62px;
    font-size: 1.45rem;
  }

  .site-brand {
    font-size: 1.2rem;
  }

  .site-brand img {
    width: 30px;
    height: 30px;
  }

  .legal-content p,
  .legal-content li {
    line-height: 1.65;
  }
}
