/* Base + Theme */
* { box-sizing: border-box; }

:root{
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-alt: #f9fafb;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --headline: #000000;
  --primary: #F4CB00;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

/* Brand with logo */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.brand-logo {
  width: 200px;
  height: auto;
  object-fit: contain;
  display: block;
}

.brand-text {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--text);
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
}

.btn-full { display: block; text-align: center; }

.btn-primary {
  background: var(--primary);
  color: #000000;
  font-weight: 800;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover { text-decoration: none; }

/* Sections */
.section { padding: 64px 0; }
.section-alt {
  background: #fafafa;
}

/* Hero */
.hero { padding: 72px 0 56px 0; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

h1 {
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 14px 0;
  color: var(--headline);
}
h2 { font-size: 30px; margin: 0 0 12px 0; }
h3 { font-size: 20px; margin: 0 0 10px 0; }

.lead { font-size: 18px; color: var(--muted); margin: 0 0 18px 0; }
.subtext { color: var(--muted); margin: 0 0 24px 0; }
.small { font-size: 14px; color: var(--muted); }

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0 12px 0;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

/* Optional hero mini brand */
.hero-brand{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 14px;
}
.hero-logo{
  width: 28px;
  height: 28px;
  object-fit: contain;
  display:block;
}
.hero-brand-text{
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 12px;
}

/* Cards */
.card,
.program-card,
.price-card,
.feature-box,
.contact-box,
.stat {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
}


.card { padding: 22px; }
.card-desc { margin: 0 0 14px 0; color: var(--muted); }
.card-list { margin: 0 0 14px 18px; color: var(--muted); }
.card-note { margin: 12px 0 0 0; font-size: 13px; color: var(--muted); }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat { padding: 18px; }
.stat-number { font-size: 26px; font-weight: 800; }
.stat-label { color: var(--muted); }

/* Layout helpers */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.feature-box,
.contact-box { padding: 20px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.program-card { padding: 20px; }
.program-card p { margin: 0 0 10px 0; color: var(--muted); }
.program-card ul { margin: 0 0 0 18px; color: var(--muted); }

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-card { padding: 20px; }
.price-card.featured { border: 1px solid rgba(241,182,69,0.6); }
.price { font-size: 24px; font-weight: 800; margin: 8px 0 12px 0; }
.price-card ul { margin: 0 0 16px 18px; color: var(--muted); }

.contact-list { margin: 0 0 0 18px; color: var(--muted); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  background: rgba(0,0,0,0.2);
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
}

html {
  scroll-padding-top: 120px;
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 50px;
}