@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy: #1a3a5c;
  --navy-light: #2a5a8c;
  --orange: #E8923A;
  --bg: #f0f4f8;
  --text: #1a2330;
  --text-muted: #5b6b7d;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { box-shadow: 0 6px 16px rgba(232,146,58,0.4); }
.btn-ghost { background: rgba(255,255,255,0.12); color: white; border: 1px solid rgba(255,255,255,0.3); }
.btn-lg { padding: 14px 30px; font-size: 16px; border-radius: 12px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.brand-icon { width: 32px; height: 32px; border-radius: 8px; }
.brand-name { color: white; font-size: 18px; font-weight: 400; }
.brand-name strong { font-weight: 700; color: var(--orange); }

.nav-links {
  display: flex;
  gap: 24px;
  flex: 1;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
}
.nav-links a:hover { color: white; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 90px 0 70px;
  text-align: center;
}
.hero-inner h1 {
  color: white;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}
.hero-inner .accent { color: var(--orange); }
.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
.section-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 40px;
}

.modules { padding: 80px 0; }
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.module-card {
  background: white;
  border-radius: 16px;
  padding: 28px 22px;
  border: 1px solid #eef0f5;
  transition: transform 0.15s, box-shadow 0.15s;
}
.module-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(26,58,92,0.08);
}
.module-icon { font-size: 32px; margin-bottom: 12px; }
.module-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.module-card p { font-size: 14px; color: var(--text-muted); }

.why {
  background: white;
  padding: 80px 0;
}
.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.why-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  background: var(--bg);
  border-radius: 12px;
}
.why-list strong { color: var(--navy); font-size: 15px; }
.why-list span { color: var(--text-muted); font-size: 13px; }

.cta-banner {
  background: var(--orange);
  padding: 56px 0;
  text-align: center;
}
.cta-banner h2 { color: white; font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.cta-banner p { color: rgba(255,255,255,0.9); margin-bottom: 22px; }
.cta-banner .btn-primary { background: var(--navy); }

/* Footer */
.site-footer {
  background: var(--navy);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { height: 36px; border-radius: 4px; }
.footer-contact {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-contact a { color: rgba(255,255,255,0.8); font-size: 14px; }
.footer-contact a:hover { color: var(--orange); }
.footer-copy { color: rgba(255,255,255,0.5); font-size: 12px; width: 100%; text-align: center; margin-top: 8px; }

/* Responsive */
@media (max-width: 860px) {
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .why-list { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px 20px;
    gap: 14px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  }
  .nav-toggle { display: block; }
  .header-cta { margin-left: auto; }
  .hero-inner h1 { font-size: 30px; }
  .hero { padding: 60px 0 50px; }
  .module-grid { grid-template-columns: 1fr; }
  .modules, .why { padding: 56px 0; }
  .footer-inner { flex-direction: column; text-align: center; }
}
