@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&family=Noto+Serif+SC:wght@400;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #0d0d0f;
  --bg2: #13131a;
  --bg3: #1a1a24;
  --bg4: #22222e;
  --border: rgba(255,255,255,0.08);
  --border2: rgba(255,255,255,0.14);
  --text: #e8e6f0;
  --text2: #9994b0;
  --text3: #5e5a72;
  --gold: #c8963e;
  --gold2: #e8b060;
  --teal: #1d9e75;
  --teal2: #25c090;
  --blue: #378add;
  --blue2: #5aa0f0;
  --purple: #7f77dd;
  --purple2: #9990ee;
  --red: #e05050;
  --mono: 'JetBrains Mono', monospace;
  --serif: 'Noto Serif SC', serif;
  --sans: 'Noto Sans SC', sans-serif;
  --nav-h: 60px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg4); border-radius: 3px; }

/* ── Container ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(13,13,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.4); }
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; flex-shrink: 0;
}
.logo-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: #0d0d0f; letter-spacing: -0.05em;
}
.logo-text {
  font-size: 15px; font-weight: 700; color: var(--text);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex; gap: 28px; margin-left: auto;
}
.nav-links a {
  text-decoration: none; color: var(--text2);
  font-size: 14px; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  text-decoration: none; padding: 8px 18px;
  border: 1px solid var(--gold); border-radius: 6px;
  color: var(--gold); font-size: 13px; font-weight: 500;
  transition: all 0.2s; flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold); color: #0d0d0f; }
.nav-toggle {
  display: none; flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--text2); transition: all 0.3s;
}
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 16px 24px;
}
.nav-mobile a {
  text-decoration: none; color: var(--text2);
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.nav-mobile a.mobile-cta {
  color: var(--gold); border-bottom: none; margin-top: 8px; font-weight: 500;
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-mobile.open { display: flex; }
}

/* ── Buttons ── */
.btn {
  display: inline-block; text-decoration: none; padding: 11px 24px;
  border-radius: 8px; font-size: 14px; font-weight: 500;
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary {
  background: var(--gold); color: #0d0d0f;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid var(--border2); color: var(--text2); background: transparent;
}
.btn-ghost:hover { border-color: var(--text2); color: var(--text); }
.btn-ghost-light {
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); background: transparent;
}
.btn-ghost-light:hover { border-color: white; color: white; }
.btn-outline {
  border: 1px solid var(--border2); color: var(--text2); background: transparent;
  padding: 8px 16px; font-size: 13px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── Eyebrow ── */
.eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.eyebrow.light { color: var(--gold2); opacity: 0.7; }

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 80px; position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.12;
}
.orb-1 { width: 500px; height: 500px; background: var(--gold); top: -100px; right: -100px; }
.orb-2 { width: 300px; height: 300px; background: var(--teal); bottom: 0; left: 10%; }

.hero .container { position: relative; max-width: 700px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em;
  color: var(--text3); margin-bottom: 24px;
}
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal2); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero-title {
  font-family: var(--serif); font-size: clamp(40px, 7vw, 72px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 20px;
}
.hero-title em { color: var(--gold); font-style: normal; }
.hero-desc {
  font-size: 17px; color: var(--text2); line-height: 1.8;
  margin-bottom: 36px; max-width: 520px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; align-items: center; gap: 24px;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--mono); font-size: 24px; font-weight: 500; color: var(--text); }
.stat-label { font-size: 12px; color: var(--text3); }
.stat-divider { width: 1px; height: 32px; background: var(--border2); }

/* ── Sections ── */
.section-alt { padding: 80px 0; }
.section-dark { padding: 80px 0; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-header-center { text-align: center; margin-bottom: 48px; }
.section-header-center h2 { font-size: clamp(24px,4vw,36px); font-weight: 700; margin-bottom: 12px; }
.section-desc { color: var(--text2); font-size: 15px; max-width: 480px; margin: 0 auto; }

/* ── Two col ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.col-text h2 { font-size: 28px; font-weight: 700; line-height: 1.25; margin-bottom: 16px; }
.col-text p { color: var(--text2); margin-bottom: 12px; }
.feature-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text2); }
.check { color: var(--teal2); font-size: 14px; }
.col-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px; display: flex; gap: 12px; align-items: flex-start;
}
.mini-card-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.mini-card-title { font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.mini-card-desc { font-size: 12px; color: var(--text3); line-height: 1.5; }
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .col-cards { grid-template-columns: 1fr 1fr; }
}

/* ── Levels grid ── */
.levels-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 36px; }
.level-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; text-decoration: none; color: var(--text);
  transition: all 0.2s; display: flex; flex-direction: column; gap: 8px;
}
.level-card:hover { border-color: var(--border2); transform: translateY(-2px); background: var(--bg4); }
.featured-card { border-color: var(--gold); }
.featured-card:hover { border-color: var(--gold2); }
.level-num {
  font-family: var(--mono); font-size: 11px; color: var(--text3); letter-spacing: 0.1em;
}
.level-tag {
  display: inline-block; font-size: 11px; font-weight: 500; padding: 2px 8px;
  border-radius: 4px; width: fit-content;
}
.level-tag.teal { background: rgba(29,158,117,0.15); color: var(--teal2); }
.level-tag.blue { background: rgba(55,138,221,0.15); color: var(--blue2); }
.level-tag.gold { background: rgba(200,150,62,0.15); color: var(--gold2); }
.level-tag.purple { background: rgba(127,119,221,0.15); color: var(--purple2); }
.level-card h3 { font-size: 15px; font-weight: 700; line-height: 1.3; }
.level-card p { font-size: 13px; color: var(--text2); line-height: 1.6; flex: 1; }
.level-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--text3); margin-top: 4px;
}
.level-arrow { color: var(--gold); }
.center-action { text-align: center; }
@media (max-width: 900px) { .levels-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .levels-grid { grid-template-columns: 1fr; } }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.pricing-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.pricing-featured { border-color: var(--gold); }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #0d0d0f; font-size: 11px; font-weight: 700;
  padding: 3px 12px; border-radius: 20px; white-space: nowrap;
}
.pricing-tier { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--text3); text-transform: uppercase; }
.pricing-price { font-size: 32px; font-weight: 700; color: var(--text); }
.pricing-desc { font-size: 13px; color: var(--text2); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pricing-features li {
  font-size: 13px; color: var(--text2); padding-left: 16px; position: relative;
}
.pricing-features li::before {
  content: '—'; position: absolute; left: 0; color: var(--gold); font-family: var(--mono);
}
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }

/* ── CTA section ── */
.section-cta { padding: 80px 0; }
.cta-box {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; padding: 64px 48px; text-align: center; position: relative; overflow: hidden;
}
.cta-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(200,150,62,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(200,150,62,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-box h2 { font-size: 32px; font-weight: 700; margin-bottom: 12px; position: relative; }
.cta-box p { color: var(--text2); margin-bottom: 28px; font-size: 16px; position: relative; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── Footer ── */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; margin-bottom: 32px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--text3); line-height: 1.7; max-width: 280px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col-title { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text3); margin-bottom: 4px; }
.footer-col a { text-decoration: none; color: var(--text2); font-size: 13px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; font-size: 12px; color: var(--text3); }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── Page hero sm ── */
.page-hero-sm {
  padding: calc(var(--nav-h) + 48px) 0 48px;
  background: var(--bg2); border-bottom: 1px solid var(--border);
}
.page-hero-sm h1 { font-size: clamp(24px, 4vw, 40px); font-weight: 700; margin-bottom: 8px; }
.page-hero-sm p { font-size: 15px; color: var(--text2); }

/* ── Course layout ── */
.course-layout {
  display: grid; grid-template-columns: 260px 1fr;
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  gap: 48px; align-items: start; padding-top: 40px; padding-bottom: 80px;
}

/* ── Sidebar ── */
.sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.sidebar-inner {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px; max-height: calc(100vh - 120px); overflow-y: auto;
}
.sidebar-title {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text3); margin-bottom: 12px;
}
.sidebar-section-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; color: var(--text2);
  margin: 16px 0 6px; padding-top: 12px; border-top: 1px solid var(--border);
}
.s-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.s-dot.teal { background: var(--teal2); }
.s-dot.blue { background: var(--blue2); }
.s-dot.gold { background: var(--gold); }
.s-dot.purple { background: var(--purple2); }
.sidebar-section { display: flex; flex-direction: column; }
.sidebar-link {
  text-decoration: none; color: var(--text3); font-size: 12px;
  padding: 4px 6px; border-radius: 4px; transition: all 0.15s;
}
.sidebar-link:hover { color: var(--text); background: var(--bg4); }
.sidebar-link.active { color: var(--gold); }
.sidebar-cta { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }

@media (max-width: 900px) {
  .course-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .sidebar-inner { max-height: none; }
}

/* ── Course content ── */
.course-content { min-width: 0; }
.content-section {
  margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
.content-section:last-child { border-bottom: none; }
.content-section h2 {
  font-size: 22px; font-weight: 700; margin-bottom: 16px; color: var(--text);
}
.content-section p { color: var(--text2); margin-bottom: 12px; line-height: 1.8; }

/* ── Overview levels ── */
.overview-levels { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.ov-item {
  display: flex; gap: 16px; align-items: baseline;
  padding: 12px 16px; border-radius: 8px; border-left: 3px solid;
  background: var(--bg3);
}
.ov-item.teal-border { border-color: var(--teal2); }
.ov-item.blue-border { border-color: var(--blue2); }
.ov-item.gold-border { border-color: var(--gold); }
.ov-item.purple-border { border-color: var(--purple2); }
.ov-label { font-family: var(--mono); font-size: 11px; color: var(--text2); min-width: 80px; flex-shrink: 0; }
.ov-text { font-size: 13px; color: var(--text2); }

/* ── Info box ── */
.info-box {
  background: rgba(200,150,62,0.06); border: 1px solid rgba(200,150,62,0.2);
  border-radius: 8px; padding: 16px 20px;
}
.info-box p { color: var(--text2); margin-bottom: 0; font-size: 14px; }
.info-box p + p { margin-top: 8px; }
.info-box strong { color: var(--gold); }

/* ── Level sections ── */
.level-section { margin-bottom: 56px; }
.level-header {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px; border-radius: 12px; margin-bottom: 24px;
}
.teal-header { background: rgba(29,158,117,0.08); border: 1px solid rgba(29,158,117,0.15); }
.blue-header { background: rgba(55,138,221,0.08); border: 1px solid rgba(55,138,221,0.15); }
.gold-header { background: rgba(200,150,62,0.08); border: 1px solid rgba(200,150,62,0.15); }
.purple-header { background: rgba(127,119,221,0.08); border: 1px solid rgba(127,119,221,0.15); }
.level-header-num {
  font-family: var(--mono); font-size: 36px; font-weight: 500; opacity: 0.2; line-height: 1;
}
.level-header-tag { font-family: var(--mono); font-size: 11px; color: var(--text3); letter-spacing: 0.1em; margin-bottom: 6px; }
.level-header h2 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.level-header p { font-size: 13px; color: var(--text2); margin: 0; }

/* ── Module list ── */
.module-list { display: flex; flex-direction: column; gap: 16px; }
.module {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 18px 20px; transition: border-color 0.2s;
}
.module:hover { border-color: var(--border2); }
.module.locked { opacity: 0.75; }
.module-meta {
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.module-num { font-family: var(--mono); font-size: 11px; color: var(--text3); }
.module-badge {
  font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 4px;
}
.module-badge.free { background: rgba(29,158,117,0.15); color: var(--teal2); }
.module-badge.paid { background: rgba(255,255,255,0.06); color: var(--text3); }
.module-type { font-size: 11px; color: var(--text3); margin-left: auto; }
.module h3 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.module p { font-size: 13px; color: var(--text2); line-height: 1.6; margin-bottom: 10px; }
.module-covers { display: flex; flex-wrap: wrap; gap: 6px; }
.module-covers span {
  font-size: 11px; padding: 3px 8px; border-radius: 4px;
  background: var(--bg4); color: var(--text3); border: 1px solid var(--border);
}

/* ── Enroll banner ── */
.enroll-banner {
  background: var(--bg2); border: 1px solid var(--gold);
  border-radius: 12px; padding: 32px; text-align: center; margin-top: 48px;
}
.enroll-banner h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.enroll-banner p { color: var(--text2); margin-bottom: 20px; }

/* ── Tool grid ── */
.tool-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tool-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 18px; display: flex; flex-direction: column; gap: 10px;
}
.tool-card.featured-tool { border-color: rgba(200,150,62,0.3); }
.tool-header { display: flex; justify-content: space-between; align-items: center; }
.tool-name { font-size: 14px; font-weight: 700; }
.tool-link { font-size: 12px; color: var(--gold); text-decoration: none; }
.tool-link:hover { text-decoration: underline; }
.tool-desc { font-size: 13px; color: var(--text2); line-height: 1.6; }
.tool-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tool-tags span {
  font-size: 11px; padding: 2px 8px; border-radius: 4px;
  background: var(--bg4); color: var(--text3); border: 1px solid var(--border);
}
.tool-course-link { font-size: 12px; color: var(--gold); text-decoration: none; }
.tool-course-link:hover { text-decoration: underline; }
@media (max-width: 640px) { .tool-grid { grid-template-columns: 1fr; } }

/* ── Research ── */
.research-list { display: flex; flex-direction: column; gap: 16px; }
.research-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px;
}
.research-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.research-chain {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  padding: 2px 8px; border-radius: 4px;
}
.research-chain.sol { background: rgba(127,119,221,0.15); color: var(--purple2); }
.research-chain.eth { background: rgba(55,138,221,0.15); color: var(--blue2); }
.research-chain.method { background: rgba(200,150,62,0.15); color: var(--gold2); }
.research-sector { font-size: 12px; color: var(--text3); }
.research-date { font-family: var(--mono); font-size: 11px; color: var(--text3); margin-left: auto; }
.research-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.research-card p { font-size: 13px; color: var(--text2); line-height: 1.6; }
.research-highlights { display: flex; gap: 20px; margin-top: 12px; padding: 12px; background: var(--bg3); border-radius: 6px; }
.highlight-item { display: flex; flex-direction: column; gap: 2px; }
.h-label { font-size: 11px; color: var(--text3); }
.h-val { font-family: var(--mono); font-size: 12px; color: var(--gold); }
.coming-soon-badge {
  display: inline-block; margin-top: 12px; font-size: 11px; font-weight: 500;
  padding: 3px 10px; border-radius: 4px;
  background: var(--bg4); color: var(--text3); border: 1px solid var(--border);
}

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin: 20px 0; }
.contact-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px; padding: 18px; text-align: center;
}
.contact-icon { font-size: 20px; margin-bottom: 8px; }
.contact-label { font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.contact-val { font-size: 12px; color: var(--text3); line-height: 1.5; }
.pricing-note {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px; margin-top: 24px;
}
.pricing-note h3 { font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.pricing-simple { display: flex; flex-direction: column; gap: 10px; }
.ps-item {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text2); padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.ps-item:last-child { border-bottom: none; padding-bottom: 0; }
.ps-price { font-family: var(--mono); color: var(--gold); font-weight: 500; }
@media (max-width: 600px) { .contact-grid { grid-template-columns: 1fr; } }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { padding: 16px 0; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.faq-a { font-size: 13px; color: var(--text2); line-height: 1.7; }
