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

:root {
  --primary: #0f2b46;
  --accent: #1b82d6;
  --accent-light: #e8f4fd;
  --success: #28a745;
  --warning: #ffc107;
  --text: #333;
  --text-light: #666;
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --border: #e0e0e0;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #333;
  line-height: 1.6;
}

a { color: #1b82d6; text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV */
nav {
  background: #0f2b46;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .logo {
  color: white;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
nav .logo span { color: #1b82d6; }
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
nav ul a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
nav ul a:hover { color: white; text-decoration: none; }
nav .cta-nav {
  background: #1b82d6;
  color: white !important;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 600;
}
nav .cta-nav:hover { background: #1570b8; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* HERO */
.hero {
  background: linear-gradient(135deg, #0f2b46 0%, #1a3a5c 100%);
  color: white;
  padding: 100px 0 80px;
  text-align: center;
}
.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: white;
}
.hero h1 span { color: #1b82d6; }
.hero p {
  font-size: 20px;
  color: #ccc;
  max-width: 650px;
  margin: 0 auto 40px;
}
.hero .cta-button {
  display: inline-block;
  background: #1b82d6;
  color: white;
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(27,130,214,0.4);
}
.hero .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,130,214,0.5);
  text-decoration: none;
  color: white;
}
.hero .sub-cta {
  display: block;
  margin-top: 15px;
  color: #aaa;
  font-size: 14px;
}

/* STATS BAR */
.stats-bar {
  background: #f8f9fa;
  padding: 40px 0;
  border-bottom: 1px solid #e0e0e0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item .stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #1b82d6;
}
.stat-item .stat-label {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

/* SECTIONS */
section { padding: 80px 0; }
section:nth-child(even) { background: #f8f9fa; }
section h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: #0f2b46;
}
section .section-sub {
  text-align: center;
  color: #666;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 50px;
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 35px 25px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.feature-icon {
  font-size: 40px;
  margin-bottom: 15px;
}
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0f2b46;
}
.feature-card p {
  color: #666;
  font-size: 15px;
}

/* HOW IT WORKS */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 50px;
  height: 50px;
  background: #1b82d6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 15px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; color: #0f2b46; }
.step p { font-size: 14px; color: #666; }

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}
.pricing-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
}
.pricing-card.popular {
  border-color: #1b82d6;
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(27,130,214,0.15);
}
.pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #1b82d6;
  color: white;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.pricing-card h3 { font-size: 24px; color: #0f2b46; margin-bottom: 10px; }
.pricing-price {
  font-size: 48px;
  font-weight: 800;
  color: #0f2b46;
  margin: 15px 0 5px;
}
.pricing-price span { font-size: 18px; font-weight: 400; color: #666; }
.pricing-period { color: #666; font-size: 14px; margin-bottom: 25px; }
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}
.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  color: #333;
}
.pricing-features li::before {
  content: '\2713';
  color: #28a745;
  font-weight: bold;
  margin-right: 10px;
}
.pricing-cta {
  display: block;
  padding: 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s;
}
.pricing-cta.primary {
  background: #1b82d6;
  color: white;
}
.pricing-cta.secondary {
  background: white;
  color: #1b82d6;
  border: 2px solid #1b82d6;
}
.pricing-cta:hover { text-decoration: none; opacity: 0.9; transform: translateY(-1px); }

/* ROI */
.roi-box {
  background: linear-gradient(135deg, #0f2b46 0%, #1a3a5c 100%);
  color: white;
  border-radius: 12px;
  padding: 50px;
  text-align: center;
  margin-top: 50px;
}
.roi-box h3 { font-size: 28px; margin-bottom: 15px; color: white; }
.roi-box p { font-size: 18px; color: #ccc; max-width: 600px; margin: 0 auto; }
.roi-number { font-size: 64px; font-weight: 800; color: #1b82d6; margin: 20px 0; }

/* CTA SECTION */
.cta-section {
  background: #0f2b46;
  color: white;
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: white; margin-bottom: 15px; }
.cta-section p { color: #ccc; font-size: 18px; margin-bottom: 30px; }
.cta-button-inline {
  display: inline-block;
  background: #1b82d6;
  color: white;
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(27,130,214,0.4);
}
.cta-button-inline:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: white;
}
.cta-sub {
  color: #aaa !important;
  font-size: 14px !important;
  margin-top: 15px !important;
}

/* FOOTER */
footer {
  background: #0a1f33;
  color: rgba(255,255,255,0.6);
  padding: 50px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}
.footer-brand h4 { color: white; font-size: 20px; margin-bottom: 10px; }
.footer-brand p { font-size: 14px; line-height: 1.8; }
.footer-links h4 { color: white; font-size: 16px; margin-bottom: 15px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 14px; }
.footer-links a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
}

/* LEGAL PAGES */
.legal-page { padding: 60px 0; max-width: 800px; margin: 0 auto; }
.legal-page h1 { font-size: 36px; color: #0f2b46; margin-bottom: 10px; }
.legal-page .updated { color: #666; margin-bottom: 30px; }
.legal-page h2 { font-size: 22px; color: #0f2b46; margin: 30px 0 10px; text-align: left; }
.legal-page p, .legal-page li { font-size: 15px; line-height: 1.8; margin-bottom: 10px; }
.legal-page ul { padding-left: 25px; margin-bottom: 15px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .stats-grid, .features-grid, .pricing-grid, .steps, .footer-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.popular { transform: none; }
  nav ul { display: none; }
  .container { padding: 0 15px; }
}
