@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=IBM+Plex+Sans:wght@400;500&family=Share+Tech+Mono&display=swap");

:root {
  --bg: #1a1e24;
  --card: #22272f;
  --text: #e4e7eb;
  --muted: #9aa3ad;
  --cyan: #00d8e6;
  --line: rgba(228, 231, 235, 0.08);
  --font-ui: "Rajdhani", system-ui, sans-serif;
  --font-copy: "IBM Plex Sans", system-ui, sans-serif;
  --font-label: "Share Tech Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: var(--font-copy);
  font-size: 17px;
  line-height: 1.65;
  min-height: 100vh;
}

.bar {
  height: 3px;
  background: linear-gradient(90deg, #ffff00, #ff9d00, #ff00aa);
}

.wrap {
  max-width: 40rem;
  margin: 0 auto;
  padding: 2.25rem 1.5rem 4rem;
}

.top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3.25rem;
}

.wordmark {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.28em;
  text-transform: lowercase;
  color: var(--text);
  text-decoration: none;
}

.place {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: clamp(1.85rem, 5.2vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 1.25rem;
}

.lede {
  margin: 0 0 2.75rem;
  max-width: 36rem;
  color: #c9ced4;
}

.grid {
  display: grid;
  gap: 1.5rem;
  margin: 0 0 2.5rem;
}

@media (min-width: 640px) {
  .grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
}

section {
  border-top: 1px solid var(--line);
  padding-top: 1.15rem;
}

.label {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 0.7rem;
}

section p, section ul {
  margin: 0;
  color: #c9ced4;
}

ul {
  padding: 0;
  list-style: none;
}

ul li + li { margin-top: 0.45rem; }

ul li::before {
  content: "– ";
  color: var(--muted);
}

.price {
  margin: 0 0 2.5rem;
  padding: 1rem 1.1rem;
  background: var(--card);
  border-left: 2px solid var(--cyan);
  color: var(--text);
  font-size: 0.98rem;
}

.price b { font-weight: 500; }

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

.cta {
  margin: 2.75rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.cta .label { margin-bottom: 0.45rem; }

.cta .tag {
  margin: 0 0 1rem;
  font-family: var(--font-ui);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
}

.mail {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--bg);
  background: var(--cyan);
  padding: 0.55rem 1.1rem;
  text-decoration: none;
}

.mail:hover {
  text-decoration: none;
  filter: brightness(1.08);
}

footer {
  margin-top: 3.5rem;
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

footer a { color: var(--muted); }
footer a:hover { color: var(--cyan); }

.steps {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.steps li {
  position: relative;
  padding: 0.7rem 0 0.7rem 2.1rem;
  border-top: 1px solid var(--line);
  color: #c9ced4;
}
.steps li:last-child { padding-bottom: 0.2rem; }
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.75rem;
  font-family: var(--font-label);
  font-size: 0.72rem;
  color: var(--cyan);
}
.steps b { color: var(--text); font-weight: 500; }
section p.after {
  margin: 0.9rem 0 2.5rem;
  color: #c9ced4;
}

h2.label {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 0.7rem;
}

.faq { margin-bottom: 0.5rem; }
.faq .qa { margin: 0 0 1.1rem; }
.faq .q {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  margin: 0 0 0.35rem;
}
.faq .qa p:not(.q) {
  margin: 0;
  color: #c9ced4;
}
section p b { color: var(--text); font-weight: 500; }


.contact-form { margin-top: 0.75rem; max-width: 36rem; }
.contact-row {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 560px) {
  .contact-row { grid-template-columns: 1fr 1fr; }
}
.contact-field { margin-bottom: 0.75rem; }
.contact-field label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  box-sizing: border-box;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-copy);
  font-size: 1rem;
  padding: 0.55rem 0.7rem;
  border-radius: 2px;
}
.contact-field input:focus,
.contact-field textarea:focus {
  outline: 1px solid var(--cyan);
  border-color: var(--cyan);
}
.contact-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-actions { margin-top: 0.25rem; }
.contact-actions .mail {
  border: 0;
  cursor: pointer;
  font: inherit;
}
.contact-actions .mail:disabled { opacity: 0.6; cursor: wait; }
.contact-status {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.contact-status.ok { color: #7ddea0; }
.contact-status.err { color: #ff8f8f; }
.cta { position: relative; }
