:root {
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --surface: #f8fafc;
  --white: #ffffff;
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-deep: #134e4a;
  --amber: #d97706;
  --amber-light: #fbbf24;
  --accent-bg: #ecfdf5;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --serif: 'Source Serif 4', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.25rem; }

/* Top strip */
.top-strip {
  background: var(--teal-deep);
  color: #ccfbf1;
  font-size: 0.8rem;
  padding: 0.45rem 0;
  text-align: center;
}

/* Nav — centered bar */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-logo { height: 44px; width: auto; }
.site-nav-inner nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  align-items: center;
}
.nav-list a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.nav-list a:hover, .nav-list a.active { color: var(--teal); }
.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--teal-dark); }
.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
  font-size: 1.2rem;
  cursor: pointer;
}
@media (max-width: 860px) {
  .menu-btn { display: block; }
  .site-nav-inner nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem;
    flex-direction: column;
    box-shadow: var(--shadow);
  }
  .site-nav-inner nav.open { display: flex; }
  .nav-list { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav-cta { align-self: flex-start; margin-top: 0.5rem; }
}

/* Hero — centered gradient */
.hero-verify {
  background: linear-gradient(165deg, var(--teal-deep) 0%, #115e59 45%, #0d9488 100%);
  color: var(--white);
  padding: 4rem 1.25rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-verify::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(251,191,36,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero-verify .container { position: relative; z-index: 1; max-width: 720px; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-verify h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.hero-verify .lead {
  font-size: 1.1rem;
  opacity: 0.92;
  margin: 0 auto 2rem;
  max-width: 540px;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero-chip {
  background: rgba(0,0,0,0.2);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
}
.hero-chip strong { color: var(--amber-light); display: block; font-size: 1.1rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.15s, background 0.15s;
}
.btn-lg { padding: 0.85rem 1.75rem; font-size: 1rem; }
.btn-primary { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.btn-primary:hover { background: #b45309; border-color: #b45309; color: var(--white); }
.btn-secondary { background: var(--white); color: var(--teal-deep); border-color: var(--white); }
.btn-secondary:hover { background: #f0fdfa; }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-ghost { background: transparent; color: var(--teal-dark); border: none; font-weight: 600; }
.btn-dark { background: var(--teal); color: var(--white); }
.btn-dark:hover { background: var(--teal-dark); }

/* Trust row */
.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
  padding-bottom: 3rem;
}
.trust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  text-align: center;
}
.trust-card strong { display: block; font-size: 1.75rem; color: var(--teal); margin-bottom: 0.25rem; }
.trust-card span { font-size: 0.85rem; color: var(--muted); }

/* Sections */
.section { padding: 3.5rem 0; }
.section-alt { background: var(--surface); }
.section-eyebrow {
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.section-lead { color: var(--muted); max-width: 560px; margin: 0 0 2rem; }

/* Package cards — side by side with ribbon */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.package-card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.package-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.package-card--featured {
  border-color: var(--teal);
  background: linear-gradient(180deg, #f0fdfa 0%, var(--white) 40%);
}
.package-ribbon {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--amber);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
}
.package-card h3 { margin: 0 0 0.5rem; font-size: 1.35rem; }
.package-meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; }
.package-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-deep);
  margin: 0 0 1.25rem;
}
.package-price small { font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.package-list li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: 0.9rem;
}
.package-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 800;
}

/* Timeline process */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
}
.timeline-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding-bottom: 2rem;
  position: relative;
}
.timeline-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: var(--line);
}
.timeline-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--teal);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--teal);
}
.timeline-step h4 { margin: 0 0 0.35rem; }
.timeline-step p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Sector tags */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* Bento about */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.bento-cell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.bento-cell--wide { grid-column: span 2; }
.bento-cell--accent { background: var(--teal-deep); color: #ccfbf1; border-color: var(--teal-deep); }
.bento-cell h4 { margin: 0 0 0.5rem; }
.bento-cell p { margin: 0; font-size: 0.9rem; color: inherit; opacity: 0.9; }
@media (max-width: 768px) {
  .bento { grid-template-columns: 1fr; }
  .bento-cell--wide { grid-column: span 1; }
}

/* Masthead pages */
.masthead {
  background: var(--surface);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
}
.masthead h1 { font-family: var(--serif); margin: 0 0 0.5rem; }
.masthead p { margin: 0; color: var(--muted); }
.content-block { padding: 2.5rem 0 4rem; max-width: 720px; }
.content-block h2 { font-size: 1.25rem; margin: 2rem 0 0.75rem; }
.content-block p, .content-block li { color: var(--ink-soft); }

/* Forms */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 0 auto;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.35rem; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}
.form-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.apply-steps { display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.apply-step-dot {
  flex: 1;
  min-width: 60px;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
}
.apply-step-dot.active { background: var(--teal); }
.apply-step-dot.done { background: var(--amber); }
.apply-panel { display: none; }
.apply-panel.active { display: block; }

/* Track */
.track-box {
  max-width: 480px;
  margin: 0 auto 2rem;
}
.status-timeline { list-style: none; padding: 0; margin: 0; }
.status-timeline li {
  padding: 1rem 1rem 1rem 2.5rem;
  border-left: 3px solid var(--line);
  margin-left: 0.75rem;
  position: relative;
}
.status-timeline li.done { border-color: var(--teal); }
.status-timeline li.active { border-color: var(--amber); background: var(--accent-bg); border-radius: 0 var(--radius) var(--radius) 0; }
.status-timeline li::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 1.25rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--line);
}
.status-timeline li.done::before { background: var(--teal); }
.status-timeline li.active::before { background: var(--amber); box-shadow: 0 0 0 4px rgba(217,119,6,0.25); }

/* Footer */
.site-footer {
  background: var(--ink);
  color: #94a3b8;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-logo { height: 40px; margin-bottom: 1rem; opacity: 0.95; }
.footer-grid h5 { color: var(--white); margin: 0 0 0.75rem; font-size: 0.85rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid a { color: #94a3b8; font-size: 0.9rem; }
.footer-grid a:hover { color: #5eead4; }
.footer-legal {
  border-top: 1px solid #334155;
  padding-top: 1.25rem;
  font-size: 0.8rem;
  text-align: center;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}
.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 0.75rem 0 0; color: var(--muted); }

/* Apply wizard */
#apply-wizard { max-width: 600px; margin: 0 auto; }
.step-tabs { display: flex; margin-bottom: 2rem; border-bottom: 2px solid var(--line); }
.step-tab {
  flex: 1; text-align: center; padding: 0.75rem 0.5rem;
  font-size: 0.75rem; font-weight: 600; color: var(--muted);
  border-bottom: 2px solid transparent; margin-bottom: -2px;
}
.step-tab.done { color: var(--teal); }
.step-tab.active { color: var(--teal-dark); border-bottom-color: var(--teal); }
.form-panel {
  display: none;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form-panel.active { display: block; }
.form-panel h2 { font-size: 1.25rem; margin: 0 0 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--line); }
.dob-row { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 0.75rem; }
.dob-label { font-size: 0.72rem; font-weight: 600; color: var(--muted); text-transform: uppercase; display: block; margin-bottom: 0.3rem; }
.form-hint { font-size: 0.8rem; color: var(--muted); margin-top: 0.35rem; }
.form-nav { display: flex; justify-content: space-between; margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.success-box,
.apply-success {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--accent-bg);
  border: 2px solid var(--teal);
  border-radius: var(--radius-lg);
}
.apply-success__title { color: var(--teal-deep); 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(--teal-deep);
  letter-spacing: 0.06em; margin: 0 0 1.5rem;
  padding: 0.75rem 1rem; background: var(--white);
  border-radius: var(--radius); border: 2px dashed var(--amber);
}
.apply-success__payment-msg { font-size: 1.05rem; color: var(--ink); margin: 0 0 0.75rem; font-weight: 600; }
.apply-success__countdown { color: var(--amber); 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; color: var(--teal-dark); font-size: 0.9rem; }
.success-box .ref { font-size: 1.5rem; font-weight: 800; color: var(--teal-deep); letter-spacing: 0.05em; }

/* Admin untouched base — minimal */
.hidden { display: none !important; }
