/* ============================================
   BadgeReady — Custom Theme
   ============================================ */

:root {
  --bg: #0D1B2A;
  --bg2: #112236;
  --bg3: #162842;
  --fg: #F0EDE6;
  --fg-muted: #9A9EAB;
  --accent: #E8A838;
  --accent-dim: #C4891F;
  --border: rgba(232, 168, 56, 0.15);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- NAVBAR ---- */
.navbar {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.nav-tagline {
  color: var(--fg-muted);
  font-size: 0.85rem;
  padding-left: 20px;
  border-left: 1px solid var(--border);
}

/* ---- HERO ---- */
.hero {
  padding: 80px 40px 60px;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg2) 100%);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(232,168,56,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 480px;
  line-height: 1.7;
}

/* Badge Graphic */
.badge-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  filter: drop-shadow(0 20px 60px rgba(232,168,56,0.15));
}
.badge-shield {
  width: 240px;
  background: linear-gradient(160deg, #1a2d47 0%, #0D1B2A 100%);
  border: 2px solid var(--accent);
  border-radius: 16px 16px 8px 8px;
  padding: 32px 24px 24px;
  text-align: center;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  padding-bottom: 36px;
}
.badge-shield::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(232,168,56,0.2);
  border-radius: 12px 12px 6px 6px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  pointer-events: none;
}
.badge-top {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 8px;
}
.badge-mid {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.badge-divider {
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto 16px;
}
.badge-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--fg);
  letter-spacing: 0.08em;
}
.badge-name em {
  color: var(--accent);
  font-style: normal;
}
.badge-num {
  margin-top: 8px;
  font-size: 0.65rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
}
.badge-ribbon {
  background: var(--accent);
  color: #0D1B2A;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  padding: 6px 24px;
  margin-top: -4px;
  border-radius: 0 0 4px 4px;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 60px auto 0;
  width: 100%;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.stat {
  flex: 1;
  padding: 0 40px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--accent);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.stat-sep {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin-right: 40px;
}

/* ---- SERVICES ---- */
.services {
  padding: 100px 40px;
  background: var(--bg2);
}
.services-header {
  max-width: 1200px;
  margin: 0 auto 60px;
}
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--fg);
  line-height: 1.1;
}
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: border-color 0.2s;
}
.service-card:hover {
  border-color: rgba(232,168,56,0.4);
}
.service-icon {
  margin-bottom: 20px;
}
.service-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--fg);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-tag {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* ---- WHY ---- */
.why {
  padding: 100px 40px;
  background: var(--bg);
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-body {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.why-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-point {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--fg);
}
.why-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #0D1B2A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.quote-block {
  background: var(--bg3);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 40px;
}
.quote-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--fg);
  line-height: 1.7;
  margin-bottom: 20px;
}
.quote-attr {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 600;
}

/* ---- PRICING ---- */
.pricing {
  padding: 100px 40px;
  background: var(--bg2);
}
.pricing-header {
  max-width: 1200px;
  margin: 0 auto 60px;
}
.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(232,168,56,0.1);
}
.pricing-tier {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 16px;
}
.pricing-price {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-tag {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

/* ---- MANIFESTO ---- */
.manifesto {
  padding: 100px 40px;
  background: var(--bg);
  text-align: center;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}
.manifesto-headline {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 32px;
}
.manifesto-body {
  color: var(--fg-muted);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.manifesto-cta {
  margin-top: 48px;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* ---- FOOTER ---- */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--accent);
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .navbar { padding: 16px 20px; }
  .nav-tagline { display: none; }
  .hero { padding: 60px 20px 40px; min-height: unset; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .badge-shield { width: 180px; padding: 24px 16px 20px; }
  .badge-name { font-size: 1.1rem; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat { padding: 0; }
  .stat-sep { width: 48px; height: 1px; margin: 0; }
  .services, .why, .pricing, .manifesto { padding: 64px 20px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.4rem; }
}