:root {
  --primary-bg: #ffffff;
  --secondary-bg: #f8fafc;
  --text-main: #1f2937;
  --text-muted: #4b5563;
  --dark-navy: #0A0E27;
  --electric-blue: #3B82F6;
  --electric-blue-hover: #2563eb;
  --accent-light: #e0e7ff;
  --border-color: #e5e7eb;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--primary-bg);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: var(--electric-blue);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--electric-blue-hover);
}

ul {
  list-style: none;
}

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

/* Header */
header {
  background-color: var(--primary-bg);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

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

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark-navy);
  letter-spacing: -0.5px;
}

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

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--electric-blue);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--dark-navy);
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  background-color: var(--secondary-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 100%;
  background: radial-gradient(circle at center, var(--accent-light) 0%, transparent 60%);
  z-index: 0;
  opacity: 0.5;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark-navy);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.btn {
  display: inline-block;
  background-color: var(--electric-blue);
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3), 0 2px 4px -1px rgba(59, 130, 246, 0.2);
  transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  background-color: var(--electric-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4), 0 4px 6px -2px rgba(59, 130, 246, 0.2);
  color: #fff;
}

.hero-features {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-features svg {
  width: 16px;
  height: 16px;
  color: var(--electric-blue);
}

/* Sections General */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* Cards / Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--primary-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: var(--secondary-bg);
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
}

.feature-card h3 {
  font-size: 1.25rem;
  color: var(--dark-navy);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Included Section */
.bg-light {
  background-color: var(--secondary-bg);
}

.included-list {
  max-width: 800px;
  margin: 0 auto;
  background: var(--primary-bg);
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.included-item {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.included-item:last-child {
  border-bottom: none;
}

.included-icon {
  color: var(--electric-blue);
  flex-shrink: 0;
  margin-top: 3px;
}

.included-content h4 {
  color: var(--dark-navy);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.included-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.included-footer {
  text-align: center;
  padding: 1.5rem;
  background: var(--dark-navy);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Legal Pages Content */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--primary-bg);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
}

.legal-content h1 {
  font-size: 2.5rem;
  color: var(--dark-navy);
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 2px solid var(--secondary-bg);
  padding-bottom: 1rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--dark-navy);
  margin: 2rem 0 1rem;
}

.legal-content p, .legal-content ul, .legal-content li {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  list-style: disc;
}

/* Footer */
footer {
  background-color: var(--dark-navy);
  color: #9ca3af;
  padding: 4rem 0 2rem;
  text-align: center;
  font-size: 0.875rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #d1d5db;
}

.footer-links a:hover {
  color: #fff;
}

.footer-disclaimer {
  max-width: 800px;
  margin: 0 auto 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  font-size: 0.8rem;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom p {
  margin: 0;
}

/* Utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--primary-bg);
    flex-direction: column;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    gap: 1.5rem;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

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

  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .legal-content {
    padding: 1.5rem;
  }
}
