:root {
  --bg: #000; --fg: #D4D4D4; --dim: #6B6B6B; --bright: #FFF;
  --accent: #00FF9C; --accent-dim: #00B36F; --accent-soft: rgba(0,255,156,.12);
  --warn: #FFD93D; --line: #1A1A1A; --line-strong: #2A2A2E;
}

.hero__title { font-size: clamp(26px, 4.5vw, 38px); font-weight: 700; color: var(--bright);
  letter-spacing: -.02em; line-height: 1.1; margin-bottom: 20px; }
.hero__title .accent { color: var(--accent); }
.hero__sub { color: var(--fg); font-size: 15px; line-height: 1.7; max-width: 64ch; margin-bottom: 20px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 13px; color: var(--dim); margin-bottom: 8px; }
.hero__meta .v { color: var(--fg); }

.section__sub { color: var(--dim); font-size: 13px; margin-top: -4px; margin-bottom: 24px; max-width: 60ch; }

.services { display: grid; gap: 16px; }
@media (min-width: 700px) { .services { grid-template-columns: repeat(3, 1fr); } }
.svc { padding: 20px; border: 1px solid var(--line); border-radius: 10px;
  background: rgba(255,255,255,.01); display: flex; flex-direction: column; }
.svc > .code-label { margin-bottom: 8px; }
.svc__title { color: var(--bright); font-size: 16px; margin-bottom: 4px; }
.svc__tagline { color: var(--accent-dim); font-size: 12px; margin-bottom: 12px; }
.svc__desc { color: var(--fg); font-size: 13px; line-height: 1.6; margin-bottom: 16px; }
.svc__list { list-style: none; padding: 0; margin: 0 0 16px; font-size: 12px; color: var(--fg); }
.svc__list li { padding: 4px 0; border-bottom: 1px dashed var(--line); }
.svc__list li::before { content: "→ "; color: var(--accent); }
.svc__price { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.svc__price .lbl { color: var(--dim); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.svc__price .val { color: var(--bright); font-size: 18px; font-weight: 600; margin: 4px 0; }
.svc__price .note { color: var(--dim); font-size: 11px; }
.svc__cta { display: inline-block; margin-top: 12px; padding: 6px 12px; font-size: 12px;
  background: transparent; color: var(--accent); border: 1px solid var(--accent-dim); border-radius: 6px; }
.svc__cta:hover { background: var(--accent-soft); text-decoration: none; }

.grid2 { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 700px) { .grid2 { grid-template-columns: repeat(2, 1fr); } }
.grid3 { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 700px) { .grid3 { grid-template-columns: repeat(3, 1fr); } }
.card { padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.01); }
.card > .code-label { margin-bottom: 6px; }
.card__title { color: var(--bright); font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.card__desc { color: var(--fg); font-size: 13px; line-height: 1.6; }

.proc { display: grid; grid-template-columns: 1fr; gap: 12px; counter-reset: step; }
@media (min-width: 700px) { .proc { grid-template-columns: repeat(4, 1fr); } }
.proc__item { padding: 16px; border: 1px solid var(--line); border-radius: 8px; position: relative; }
.proc__num { color: var(--accent); font-size: 12px; margin-bottom: 8px; }
.proc__title { color: var(--bright); font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.proc__desc { color: var(--fg); font-size: 13px; line-height: 1.6; }

.notfor { padding: 16px 20px; border: 1px solid var(--line); border-radius: 8px; background: var(--accent-soft); }
.notfor__title { color: var(--warn); font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.notfor__list { list-style: none; padding: 0; margin: 0; font-size: 13px; color: var(--fg); }
.notfor__list li { padding: 4px 0; }
.notfor__list li::before { content: "✗ "; color: var(--warn); }

.faq__item { padding: 12px 0; border-bottom: 1px dashed var(--line); }
.faq__item:last-child { border-bottom: none; }
.faq__q { color: var(--bright); font-size: 14px; margin-bottom: 6px; }
.faq__q::before { content: "Q. "; color: var(--accent); }
.faq__a { color: var(--fg); font-size: 13px; line-height: 1.6; }
.faq__a::before { content: "A. "; color: var(--dim); }

.cta { text-align: center; padding: 48px 24px; border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); margin-bottom: 32px; position: relative; z-index: 2; }
.cta h2 { color: var(--bright); font-size: clamp(22px, 4vw, 28px); margin-bottom: 12px; }
.cta p { color: var(--dim); font-size: 13px; margin-bottom: 24px; max-width: 60ch; margin-inline: auto; }
.cta__buttons { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.btn { display: inline-flex; align-items: center; padding: 8px 16px; font-size: 13px;
  font-weight: 500; border-radius: 6px; text-decoration: none; font-family: inherit; transition: all .15s ease; }
.btn--primary { background: var(--accent); color: #000; border: 1px solid var(--accent); }
.btn--primary:hover { background: var(--accent-dim); border-color: var(--accent-dim); color: #000; text-decoration: none; }
.btn--ghost { background: transparent; color: var(--fg); border: 1px solid var(--line-strong); }
.btn--ghost:hover { color: var(--accent); border-color: var(--accent); text-decoration: none; }