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

body {
  font-family: "Outfit", sans-serif;
  background: #ffffff;
  color: #374151;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: #f97316; text-decoration: none; transition: color 0.15s; }
a:hover { color: #ea580c; }

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

.site-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === NAV === */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.site-nav-logo {
  text-decoration: none;
  color: #111827;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
}
.site-nav-logo:hover { color: #111827; }
.site-nav-links { display: flex; align-items: center; gap: 4px; }
.site-nav-links a {
  color: #374151;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.site-nav-links a:hover { background: #f3f4f6; color: #111827; }
.site-nav-links a.active { color: #f97316; }
.site-nav-links .btn-outline {
  border: 2px solid #e5e7eb;
  border-radius: 100px;
  padding: 8px 20px;
  margin-left: 8px;
}
.site-nav-links .btn-outline:hover { border-color: #f97316; color: #f97316; background: transparent; }
.site-nav-links .btn-cta {
  background: #f97316;
  color: #ffffff;
  padding: 8px 22px;
  border-radius: 100px;
  margin-left: 8px;
  font-weight: 700;
}
.site-nav-links .btn-cta:hover { background: #ea580c; color: #ffffff; }
.site-hamburger {
  display: none;
  background: none;
  border: none;
  color: #374151;
  font-size: 24px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
}
.site-hamburger:hover { background: #f3f4f6; }

/* === HERO (dark navy section) === */
.site-hero {
  background: linear-gradient(135deg, #0a1628 0%, #162240 100%);
  padding: 80px 0;
  color: #ffffff;
}
.site-hero-inner { display: flex; align-items: center; gap: 60px; }
.site-hero-content { flex: 1; }
.site-hero-label {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f97316;
  margin-bottom: 16px;
}
.site-hero-content h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ffffff;
}
.site-hero-content h1 span { color: #f97316; }
.site-hero-content .subline {
  font-size: 18px;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 32px;
  max-width: 520px;
}
.site-hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.site-hero-stats {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.site-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.site-stat-card .number { font-size: 28px; font-weight: 900; color: #ffffff; }
.site-stat-card .label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  margin-top: 4px;
}

/* === BUTTONS === */
.site-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #f97316;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.site-btn:hover { background: #ea580c; transform: translateY(-1px); color: #ffffff; }
.site-btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #ffffff;
}
.site-btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: #ffffff; }
.site-btn-dark {
  background: #0a1628;
  color: #ffffff;
}
.site-btn-dark:hover { background: #162240; color: #ffffff; }

/* === SECTIONS (white body) === */
.site-section { padding: 80px 0; }
.site-section-header { text-align: center; margin-bottom: 48px; }
.site-section-label {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f97316;
  margin-bottom: 12px;
}
.site-section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}
.site-section-header p {
  font-size: 17px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === CARDS (2-col grid, white cards, orange top accent) === */
.site-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.site-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-top: 3px solid #f97316;
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.site-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.site-card-icon {
  width: 48px;
  height: 48px;
  background: #fff7ed;
  border: 2px solid #fed7aa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: #f97316;
}
.site-card h3 { font-size: 22px; font-weight: 700; color: #111827; margin-bottom: 8px; }
.site-card .card-subtitle { font-size: 14px; color: #6b7280; margin-bottom: 16px; }
.site-card p { font-size: 15px; color: #6b7280; line-height: 1.7; margin-bottom: 16px; }
.site-card-link { color: #f97316; font-weight: 600; font-size: 15px; }
.site-card-link:hover { color: #ea580c; text-decoration: underline; }

/* 3-col variant */
.site-cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* === STATS ROW === */
.site-stats { display: flex; gap: 48px; justify-content: center; padding: 40px 0; }
.site-stat { text-align: center; }
.site-stat-number { font-size: 42px; font-weight: 900; color: #f97316; }
.site-stat-label { font-size: 14px; color: #6b7280; margin-top: 4px; font-weight: 600; }

/* === NUMBERED STEPS === */
.site-steps { max-width: 800px; margin: 0 auto; }
.site-step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid #e5e7eb;
}
.site-step:last-child { border-bottom: none; }
.site-step-number {
  width: 48px;
  height: 48px;
  background: #0a1628;
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}
.site-step-content h3 { font-size: 20px; font-weight: 700; color: #111827; margin-bottom: 8px; }
.site-step-content p { font-size: 15px; color: #6b7280; line-height: 1.7; }

/* === FEATURE ROWS === */
.site-feature { padding: 60px 0; }
.site-feature-inner { display: flex; align-items: center; gap: 60px; }
.site-feature.reverse .site-feature-inner { flex-direction: row-reverse; }
.site-feature-content { flex: 1; }
.site-feature-content h2 { font-size: 28px; font-weight: 800; color: #111827; margin-bottom: 16px; }
.site-feature-content p { font-size: 16px; color: #6b7280; line-height: 1.7; margin-bottom: 14px; }
.site-feature-image { flex: 1; }

/* === CTA SECTION (dark navy band) === */
.site-cta {
  background: linear-gradient(135deg, #0a1628 0%, #162240 100%);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}
.site-cta-label {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f97316;
  margin-bottom: 12px;
}
.site-cta h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; color: #ffffff; }
.site-cta p { color: #94a3b8; font-size: 18px; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* === FOOTER (dark navy) === */
.site-footer {
  background: #0a1628;
  color: #94a3b8;
  padding: 60px 0 0;
}
.site-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.site-footer-brand { font-size: 20px; font-weight: 800; color: #ffffff; margin-bottom: 12px; }
.site-footer-desc { font-size: 14px; color: #64748b; line-height: 1.7; max-width: 280px; }
.site-footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.site-footer-col a {
  display: block;
  color: #64748b;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.15s;
  text-decoration: none;
}
.site-footer-col a:hover { color: #f97316; }
.site-footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: #475569;
}
.site-footer-bottom .site-container { display: flex; justify-content: space-between; align-items: center; }
.site-footer-bottom a { color: #64748b; text-decoration: none; }
.site-footer-bottom a:hover { color: #f97316; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .site-cards { grid-template-columns: 1fr 1fr; }
  .site-cards-3 { grid-template-columns: 1fr 1fr; }
  .site-footer-inner { grid-template-columns: 1fr 1fr; }
  .site-hero-content h1 { font-size: 40px; }
}

@media (max-width: 768px) {
  .site-hamburger { display: block; }
  .site-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    gap: 4px;
  }
  .site-nav-links.open { display: flex; }
  .site-nav-links a { padding: 12px 16px; width: 100%; }
  .site-nav-links .btn-cta, .site-nav-links .btn-outline { margin-left: 0; margin-top: 8px; text-align: center; }

  .site-hero { padding: 60px 0; }
  .site-hero-inner { flex-direction: column; gap: 40px; }
  .site-hero-content h1 { font-size: 32px; }
  .site-hero-stats { grid-template-columns: 1fr 1fr; }

  .site-cards { grid-template-columns: 1fr; }
  .site-cards-3 { grid-template-columns: 1fr; }
  .site-stats { flex-direction: column; gap: 24px; }
  .site-feature-inner { flex-direction: column; gap: 30px; }
  .site-feature.reverse .site-feature-inner { flex-direction: column; }

  .site-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .site-footer-bottom .site-container { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .site-container { padding: 0 16px; }
  .site-hero-content h1 { font-size: 28px; }
  .site-section { padding: 60px 0; }
  .site-section-header h2 { font-size: 28px; }
  .site-hero-stats { grid-template-columns: 1fr; }
  .site-hero-buttons { flex-direction: column; }
}
