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

:root {
  --orange: #E8630A;
  --orange-light: #ff7c2a;
  --dark: #0e0e1a;
  --dark2: #16162a;
  --dark3: #1e1e36;
  --white: #ffffff;
  --gray: #a0a0b8;
  --gray-light: #e8e8f0;
  --purple: #5252cc;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #f5f5f8;
  color: #1a1a2e;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  height: 60px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all .2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
  background: rgba(232,99,10,0.08);
}
.nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-hamburger span { width: 24px; height: 2px; background: #444; border-radius: 2px; transition: .3s; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: #888;
  text-align: center;
  padding: 32px 24px;
  font-size: 13px;
}
footer a { color: var(--orange); text-decoration: none; }
footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
footer .footer-links a { color: #aaa; font-size: 13px; }
footer .footer-links a:hover { color: var(--orange); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
  border: none;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}
.btn-outline:hover { background: var(--orange); color: #fff; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 64px 24px;
  text-align: center;
  color: #fff;
}
.page-hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  margin-bottom: 12px;
}
.page-hero h1 span { color: var(--orange); }
.page-hero p { font-size: 16px; color: var(--gray); max-width: 560px; margin: 0 auto; }

/* ── SECTION WRAPPER ── */
.section { padding: 72px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.section-title span { color: var(--orange); }
.section-sub {
  font-size: 15px;
  color: #666;
  margin-bottom: 48px;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.07);
  transition: all .25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(232,99,10,0.12);
  border-color: rgba(232,99,10,0.25);
}
.card-icon {
  width: 48px; height: 48px;
  background: rgba(232,99,10,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.card p { font-size: 14px; color: #666; line-height: 1.7; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #fff; padding: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
}
