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

:root {
  --navy: #1a1a2e;
  --navy-mid: #16213e;
  --navy-deep: #0f3460;
  --amber: #e8a020;
  --amber-dim: rgba(232,160,32,0.15);
  --amber-border: rgba(232,160,32,0.4);
  --white: #ffffff;
  --text-muted: #9aacbf;
  --text-dim: #6b7f94;
  --surface: #f8f7f4;
  --surface-2: #f0ede8;
  --border: rgba(0,0,0,0.08);
  --green-check: #3B6D11;
  --radius: 12px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--surface);
  color: #1a1a2e;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, nav a, .btn, .tag {
  font-family: 'Syne', sans-serif;
}

/* NAV */
nav {
  background: var(--navy);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo {
  width: 34px;
  height: 34px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
}

.nav-brand-text {
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav-brand-sub {
  font-size: 12px;
  color: #666e7d;
  font-family: 'DM Sans', sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: #b0b8c4;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--amber);
}

.nav-links a.active {
  border-bottom: 1.5px solid var(--amber);
  padding-bottom: 2px;
}

.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--amber);
  color: var(--navy);
}

.btn-primary:hover {
  background: #d4911c;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
}

.btn-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(26,26,46,0.25);
}

.btn-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* TAG */
.tag {
  display: inline-block;
  background: var(--amber-dim);
  border: 1px solid var(--amber-border);
  color: var(--amber);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 40px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-deep) 100%);
  padding: 72px 40px 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,32,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-icon {
  position: absolute;
  right: 60px; top: 50%;
  transform: translateY(-50%);
  font-size: 180px;
  opacity: 0.04;
  color: var(--white);
  pointer-events: none;
  font-family: 'Material Icons';
}

.hero-content { max-width: 580px; }

.hero h1 {
  color: var(--white);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin: 16px 0 14px;
  letter-spacing: -0.5px;
}

.hero p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 460px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* SECTIONS */
.section { padding: 56px 40px; }
.section-sm { padding: 40px 40px; }

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

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber);
  margin-bottom: 10px;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.section-sub {
  font-size: 14px;
  color: #5a6a7a;
  max-width: 480px;
  line-height: 1.7;
}

/* CARDS */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
}

.card-featured {
  border: 2px solid var(--amber);
  position: relative;
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--amber-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
  color: var(--amber);
}

/* GRID */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

/* STAT TILES */
.stat-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-dim);
}

/* CHECKLIST */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #4a5a6a;
  line-height: 1.5;
}

.checklist li::before {
  content: '✓';
  color: var(--green-check);
  font-weight: 700;
  font-size: 13px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* STEPS */
.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step p {
  font-size: 13px;
  color: #4a5a6a;
  line-height: 1.6;
  margin-top: 3px;
}

/* CTA BAR */
.cta-bar {
  background: var(--navy);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-bar h3 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cta-bar p {
  color: var(--text-muted);
  font-size: 13px;
}

/* NOTICE BOX */
.notice {
  background: var(--surface-2);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  font-size: 13px;
  color: #4a5a6a;
  line-height: 1.7;
}

.notice strong { color: var(--navy); }

/* BADGE */
.badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 40px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

/* FORM */
.form-group { margin-bottom: 16px; }

label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #5a6a7a;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

input, select, textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.12);
}

textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

.btn-submit {
  width: 100%;
  background: var(--amber);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: all 0.2s;
}

.btn-submit:hover {
  background: #d4911c;
  transform: translateY(-1px);
}

/* PAYMENT PLACEHOLDER */
.payment-slot {
  border: 2px dashed rgba(232,160,32,0.4);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  background: var(--amber-dim);
  margin-top: 12px;
}

.payment-slot p {
  font-size: 12px;
  color: var(--amber);
  font-weight: 500;
}

.payment-slot span {
  font-size: 11px;
  color: #8a7a50;
  display: block;
  margin-top: 4px;
}

/* CERT BADGES */
.cert-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cert-icon {
  width: 36px;
  height: 36px;
  background: var(--amber-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 16px;
  flex-shrink: 0;
}

.cert-name {
  font-weight: 500;
  font-size: 13px;
  color: var(--navy);
}

.cert-desc {
  font-size: 11px;
  color: var(--text-dim);
}

/* CONTACT DETAIL */
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-icon {
  width: 38px;
  height: 38px;
  background: var(--amber-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 17px;
  flex-shrink: 0;
}

.contact-label { font-size: 11px; color: var(--text-dim); margin-bottom: 2px; }
.contact-value { font-size: 13px; font-weight: 500; color: var(--navy); }

/* FOOTER */
footer {
  background: var(--navy);
  padding: 24px 40px;
  text-align: center;
  font-size: 12px;
  color: #4a5a6a;
  font-family: 'DM Sans', sans-serif;
}

footer a { color: var(--amber); text-decoration: none; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content { animation: fadeUp 0.6s ease forwards; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 48px 20px; }
  .hero h1 { font-size: 26px; }
  .section, .section-sm { padding: 40px 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .cta-bar { flex-direction: column; text-align: center; }
}
