*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --green: #0F6E56; --green-mid: #1D9E75; --green-dark: #085041;
  --green-light: #E8F5F0; --green-pale: #F2FAF7;
  --navy: #1a3a6b; --navy-light: #EBF2FB;
  --white: #FFFFFF; --off-white: #FAFAF8; --black: #111111;
  --gray-1: #F5F5F3; --gray-2: #E8E8E4; --gray-3: #9A9A94; --gray-4: #555550;
  --nav-blur: rgba(255,255,255,0.88);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --max: 1000px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--off-white); color: var(--black); -webkit-font-smoothing: antialiased; }

.secondary-bar {
  position: fixed; top: 56px; left: 0; right: 0; z-index: 99;
  height: 36px; background: white; border-bottom: 0.5px solid var(--gray-2);
  display: flex; align-items: center; justify-content: center; gap: 40px;
}
.secondary-bar a {
  font-size: 12px; font-weight: 500; color: var(--green-dark);
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  letter-spacing: 0.01em; transition: color 0.2s;
}
.secondary-bar a:hover { color: var(--green); }
.secondary-bar .sep { width: 1px; height: 14px; background: var(--gray-2); }
.bar-arrow {
  font-size: 13px; font-weight: 900; color: var(--green);
  line-height: 1; display: inline-flex; flex-shrink: 0;
  transform: scaleX(1.1);
}
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 56px; background: var(--nav-blur); backdrop-filter: blur(20px); border-bottom: 0.5px solid var(--gray-2); display: flex; align-items: center; justify-content: space-between; padding: 0 44px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-mark svg { width: 32px; height: 32px; }
.nav-logo span { font-size: 15px; font-weight: 600; color: var(--black); letter-spacing: -0.3px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 13px; color: var(--gray-4); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--black); }
.nav-cta { background: var(--green); color: white; padding: 7px 18px; border-radius: 50px; font-size: 13px; font-weight: 500; text-decoration: none; }
.nav-reorder {
  border: 1px solid var(--gray-2); color: var(--gray-4);
  padding: 7px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 400; text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.nav-reorder:hover { border-color: var(--green); color: var(--green); }

.page-wrap { padding-top: 92px; }
.hero { background: white; border-bottom: 0.5px solid var(--gray-2); padding: 72px 44px 56px; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; }
.eyebrow::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--green); }
.hero h1 { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1.1; margin-bottom: 16px; }
.hero h1 em { color: var(--green); font-style: italic; }
.hero p { font-size: 17px; font-weight: 300; color: var(--gray-4); max-width: 540px; margin: 0 auto; line-height: 1.7; }

.body-wrap { max-width: var(--max); margin: 0 auto; padding: 72px 44px 100px; }

/* ROUTE TABS */
.route-tabs { display: flex; gap: 0; background: white; border: 1px solid var(--gray-2); border-radius: 16px; overflow: hidden; margin-bottom: 48px; }
.route-tab { flex: 1; padding: 20px 28px; cursor: pointer; border-right: 1px solid var(--gray-2); transition: background 0.15s; }
.route-tab:last-child { border-right: none; }
.route-tab.active { background: var(--green-pale); }
.route-tab h3 { font-family: var(--serif); font-size: 1.15rem; margin-bottom: 4px; }
.route-tab p { font-size: 13px; color: var(--gray-3); line-height: 1.5; }
.route-tab .tab-badge { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; padding: 3px 9px; border-radius: 20px; margin-bottom: 8px; }
.route-tab.active .tab-badge.green { background: var(--green-light); color: var(--green-dark); }
.route-tab.active .tab-badge.navy { background: var(--navy-light); color: var(--navy); }
.route-tab.active .tab-badge.gray { background: var(--gray-1); color: var(--gray-4); }
.tab-badge.green { background: var(--gray-1); color: var(--gray-3); }
.tab-badge.navy { background: var(--gray-1); color: var(--gray-3); }
.tab-badge.gray { background: var(--gray-1); color: var(--gray-3); }

/* ROUTE CONTENT */
.route-content { display: none; }
.route-content.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* STEPS */
.steps-wrap { display: flex; flex-direction: column; gap: 0; }
.step-item { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding: 28px 0; border-bottom: 0.5px solid var(--gray-2); }
.step-item:last-child { border-bottom: none; }
.step-left { display: flex; flex-direction: column; align-items: center; gap: 0; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: white; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 600; flex-shrink: 0; }
.step-num.navy { background: var(--navy); }
.step-num.gray { background: var(--black); }
.step-line { width: 1.5px; flex: 1; background: var(--gray-2); margin-top: 8px; min-height: 20px; }
.step-body h4 { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 8px; }
.step-body p { font-size: 15px; color: var(--gray-4); line-height: 1.75; }
.step-note { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 13px; color: var(--green); font-weight: 500; }
.step-note a { color: var(--green); text-decoration: none; }

/* CTA ROW */
.route-cta { background: white; border: 1px solid var(--gray-2); border-radius: 16px; padding: 28px 32px; margin-top: 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.route-cta p { font-size: 14px; color: var(--gray-4); line-height: 1.65; max-width: 500px; }
.route-cta a { display: inline-block; padding: 14px 26px; border-radius: 50px; font-size: 14px; font-weight: 500; text-decoration: none; white-space: nowrap; }
.route-cta a.green { background: var(--green); color: white; }
.route-cta a.navy { background: var(--navy); color: white; }
.route-cta a.black { background: var(--black); color: white; }

/* EXTRAS BOX */
.extras-box { background: var(--green-pale); border: 1px solid var(--green-light); border-radius: 16px; padding: 24px 28px; margin-top: 24px; }
.extras-box h5 { font-family: var(--serif); font-size: 1rem; margin-bottom: 12px; }
.extras-links { display: flex; flex-direction: column; gap: 8px; }
.extras-link { font-size: 14px; font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.extras-link.green { color: var(--green); }
.extras-link.navy { color: var(--navy); }
.extras-link.purple { color: #7c3aed; }
.extras-link::after { content: '->'; font-size: 12px; }

footer { background: var(--black); color: white; padding: 48px 44px 28px; margin-top: 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-brand h4 { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 8px; }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.8; }
.footer-col h5 { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 12px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 8px; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 0.5px solid rgba(255,255,255,0.08); padding-top: 20px; font-size: 12px; color: rgba(255,255,255,0.2); display: flex; justify-content: space-between; }
.footer-bottom a { color: rgba(255,255,255,0.25); text-decoration: none; }

@media (max-width: 900px) {
  nav { padding: 0 20px; top: 36px; }
  .nav-links { display: none; }
  .body-wrap { padding: 48px 20px 80px; }
  .hero { padding: 56px 20px 44px; }
  .route-tabs { flex-direction: column; }
  .route-tab { border-right: none; border-bottom: 1px solid var(--gray-2); }
  .route-cta { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
