:root {
  --navy: #1e3a5f;
  --blue: #2c5282;
  --light: #ebf4f8;
  --accent: #3182ce;
  --success: #38a169;
  --warn: #d69e2e;
  --text: #2d3748;
  --muted: #718096;
  --white: #fff;
  --radius: 10px;
  --font: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: #f7fafc; line-height: 1.6; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { max-width: 100%; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

.header { background: var(--white); border-bottom: 1px solid #e2e8f0; position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.logo img { height: 42px; }
.nav { display: flex; gap: 1.25rem; list-style: none; align-items: center; flex-wrap: wrap; }
.nav a { font-size: 0.88rem; font-weight: 500; color: var(--navy); }
.nav a:hover, .nav a.active { color: var(--accent); text-decoration: none; }
.menu-btn { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.7rem 1.4rem; font-weight: 600; font-size: 0.9rem; border-radius: 8px; border: none; cursor: pointer; transition: 0.2s; text-decoration: none; }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--blue); color: var(--white); text-decoration: none; }
.btn-outline { background: transparent; border: 2px solid var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--white); text-decoration: none; }
.btn-lg { padding: 0.9rem 1.75rem; font-size: 1rem; }

.hero { background: linear-gradient(160deg, var(--navy), var(--blue)); color: var(--white); padding: 4rem 0; }
.hero h1 { font-size: clamp(1.75rem, 4vw, 2.6rem); margin-bottom: 0.75rem; line-height: 1.2; }
.hero p { opacity: 0.9; max-width: 560px; margin-bottom: 1.5rem; }
.badge { display: inline-block; background: rgba(255,255,255,0.15); padding: 0.35rem 0.85rem; border-radius: 100px; font-size: 0.75rem; font-weight: 600; margin-bottom: 1rem; }
.notice-bar { background: #fffaf0; border-bottom: 1px solid #fbd38d; padding: 0.6rem; text-align: center; font-size: 0.85rem; color: #744210; }

section { padding: 3.5rem 0; }
.section-title { text-align: center; font-size: 1.6rem; color: var(--navy); margin-bottom: 0.5rem; }
.section-sub { text-align: center; color: var(--muted); margin-bottom: 2rem; }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.card { background: var(--white); border-radius: var(--radius); padding: 1.5rem; border: 1px solid #e2e8f0; }
.card h3 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1.1rem; }
.card p { color: var(--muted); font-size: 0.92rem; }

.price-card { text-align: center; border: 2px solid #e2e8f0; position: relative; }
.price-card.featured { border-color: var(--accent); box-shadow: 0 8px 30px rgba(49,130,206,0.15); }
.price-card .price { font-size: 2.5rem; font-weight: 700; color: var(--navy); }
.price-card .price span { font-size: 1rem; color: var(--muted); font-weight: 400; }
.price-card ul { list-style: none; text-align: left; margin: 1rem 0; font-size: 0.9rem; color: var(--muted); }
.price-card li { padding: 0.35rem 0; padding-left: 1.25rem; position: relative; }
.price-card li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }

.industry-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.page-head { background: var(--navy); color: var(--white); padding: 3rem 0 2rem; }
.page-head h1 { font-size: 1.75rem; }
.content { max-width: 720px; margin: 0 auto; padding: 2rem 1.25rem 3rem; }
.content h2 { font-size: 1.2rem; color: var(--navy); margin: 1.5rem 0 0.5rem; }
.content p, .content li { color: var(--muted); margin-bottom: 0.75rem; }

.faq-item { background: var(--white); border: 1px solid #e2e8f0; border-radius: var(--radius); margin-bottom: 0.6rem; overflow: hidden; }
.faq-q { width: 100%; padding: 1rem 1.25rem; background: none; border: none; text-align: left; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 1.25rem 1rem; color: var(--muted); font-size: 0.95rem; }

.track-box { max-width: 520px; margin: 0 auto; background: var(--white); padding: 2rem; border-radius: var(--radius); border: 1px solid #e2e8f0; }
.track-input { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.track-input input { flex: 1; padding: 0.75rem; border: 1px solid #cbd5e0; border-radius: 8px; font-size: 1rem; }

.timeline { margin-top: 1.5rem; }
.timeline-step { display: flex; gap: 1rem; padding-bottom: 1.25rem; position: relative; }
.timeline-step:not(:last-child)::before { content: ''; position: absolute; left: 15px; top: 32px; bottom: 0; width: 2px; background: #e2e8f0; }
.timeline-dot { width: 32px; height: 32px; border-radius: 50%; background: #e2e8f0; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: var(--muted); z-index: 1; }
.timeline-step.done .timeline-dot { background: var(--success); color: white; }
.timeline-step.active .timeline-dot { background: var(--accent); color: white; box-shadow: 0 0 0 4px rgba(49,130,206,0.25); }
.timeline-body h4 { font-size: 0.95rem; color: var(--navy); }
.timeline-body p { font-size: 0.85rem; color: var(--muted); }

/* Multistep form */
.apply-wrap { max-width: 640px; margin: 0 auto; padding: 2rem 1.25rem 4rem; }
.progress-bar { display: flex; gap: 4px; margin-bottom: 2rem; }
.progress-seg { flex: 1; height: 4px; background: #e2e8f0; border-radius: 2px; }
.progress-seg.done { background: var(--success); }
.progress-seg.active { background: var(--accent); }
.form-step { display: none; background: var(--white); padding: 2rem; border-radius: var(--radius); border: 1px solid #e2e8f0; }
.form-step.active { display: block; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 0.35rem; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem; border: 1px solid #cbd5e0; border-radius: 8px; font-family: inherit;
}
.form-nav { display: flex; justify-content: space-between; margin-top: 1.5rem; }
.form-hint { font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; }

.dob-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 0.75rem;
}

.dob-field { display: flex; flex-direction: column; gap: 0.35rem; }
.dob-label { font-size: 0.75rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.dob-field select {
  padding: 0.75rem 0.5rem;
  border: 1px solid #cbd5e0;
  border-radius: 8px;
  font-size: 1rem;
  background: var(--white);
  cursor: pointer;
  appearance: auto;
}

@media (max-width: 480px) {
  .dob-row { grid-template-columns: 1fr; }
}
.success-panel { text-align: center; padding: 2rem; }
.apply-success { text-align: center; padding: 0.5rem 0; }
.apply-success__title { color: var(--success); margin: 0 0 1.25rem; font-size: 1.35rem; }
.apply-success__label { color: var(--muted); margin: 0 0 0.35rem; font-size: 0.95rem; }
.apply-success__tracking {
  font-size: 1.65rem; font-weight: 800; color: var(--navy);
  letter-spacing: 0.06em; margin: 0 0 1.5rem;
  padding: 0.75rem 1rem; background: #f0f9ff; border-radius: 8px;
  border: 2px dashed var(--gold);
}
.apply-success__payment-msg { font-size: 1.05rem; color: var(--ink); margin: 0 0 0.75rem; font-weight: 600; }
.apply-success__countdown { color: var(--gold); font-size: 1.25rem; font-weight: 800; }
.apply-success__note { color: var(--muted); font-size: 0.9rem; margin: 0 0 1.25rem; max-width: 420px; margin-left: auto; margin-right: auto; }
.apply-success__track { font-weight: 600; font-size: 0.9rem; }

.footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 2.5rem 0 1rem; font-size: 0.85rem; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 2rem; margin-bottom: 2rem; }
.footer h4 { color: #90cdf4; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.4rem; }
.footer a { color: rgba(255,255,255,0.7); }
.footer-bottom { text-align: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; }

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: white; padding: 1rem; border-bottom: 1px solid #e2e8f0; }
  .menu-btn { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
