:root {
  color-scheme: light;
  --bg:           #faf3e8;
  --bg-surface:   #f3e8d4;
  --bg-card:      #ffffff;
  --border:       rgba(28,13,5,.09);
  --border-mid:   rgba(28,13,5,.14);
  --border-strong:rgba(28,13,5,.2);
  --text:         #180c04;
  --text-muted:   #5a3c27;
  --text-dim:     #9a7455;
  --accent:       #c8903c;
  --accent-deep:  #7a4e1e;
  --cta-bg:       #1c0d05;
  --cta-fg:       #fdf3e4;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  --r-sm: 14px;
  --r:    22px;
}

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

body {
  min-height: 100dvh;
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(ellipse at 12% 18%, rgba(200,144,60,.07) 0%, transparent 42%),
    radial-gradient(ellipse at 88% 72%, rgba(140,80,30,.05) 0%, transparent 36%),
    #faf3e8;
}

a { color: var(--accent-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin: 0; }
h1, h2, h3 { margin: 0; }
img { display: block; }

/* ── Nav (sticky, full-width — must be outside .page-shell) ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 clamp(16px, 4vw, 56px);
  height: 58px;
  background: rgba(250,243,232,.92);
  border-bottom: 1px solid var(--border-mid);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.025em;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-lockup img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(28,13,5,.07);
  box-shadow: 0 0 0 1px var(--border-mid);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* ── Buttons ── */
.button,
.form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 18px;
  min-height: 38px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  font: 700 13.5px/1 var(--font);
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .12s, border-color .12s, color .12s;
}
.button:hover { background: rgba(28,13,5,.05); color: var(--text); text-decoration: none; }

.button.primary,
.form-button {
  color: var(--cta-fg);
  background: var(--cta-bg);
  border-color: var(--cta-bg);
}
.button.primary:hover,
.form-button:hover { background: #2c1409; border-color: #2c1409; color: var(--cta-fg); }

/* ── Page shell ── */
.page-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 56px) clamp(52px, 8vw, 80px);
}

/* ── Hero grid ── */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
  padding-top: clamp(40px, 6vw, 72px);
}

.hero-copy { padding-top: 0; }

/* ── Kicker ── */
.kicker,
.card-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ── Headline ── */
h1 {
  max-width: 640px;
  margin: 0;
  color: var(--text);
  font-size: clamp(40px, 7vw, 80px);
  line-height: .94;
  letter-spacing: -.04em;
}

.hero-copy > p {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
}

/* ── Hero CTAs ── */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-ctas .button.primary {
  min-height: 50px;
  padding: 0 26px;
  font-size: 15px;
}

/* ── Trust cards ── */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 40px;
}

.trust-card {
  min-height: 88px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--border-mid);
  background: var(--bg-card);
  box-shadow: 0 2px 8px rgba(28,13,5,.04);
}

.trust-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.trust-card strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

/* ── Contact stack (right column) ── */
.contact-stack {
  display: grid;
  gap: 14px;
}

/* ── Phone preview card (stays dark — it's a UI mockup) ── */
.contact-card {
  overflow: hidden;
  border-radius: var(--r);
  border: 1px solid var(--border-mid);
}

.phone-preview {
  min-height: 360px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255,247,235,.06) 25%, transparent 25%) 0 0 / 34px 34px,
    linear-gradient(225deg, rgba(255,247,235,.04) 25%, transparent 25%) 0 0 / 34px 34px,
    #1a0e0a;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.bean {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,247,235,.1);
}

.bean img { width: 24px; height: 24px; }

.network-pill {
  padding: 7px 12px;
  border: 1px solid rgba(107,176,101,.5);
  border-radius: 999px;
  color: #9bd58f;
  background: rgba(56,111,58,.26);
  font-size: 12px;
  font-weight: 800;
}

.phone-preview h2 {
  margin: 0 0 10px;
  color: #fff5e3;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.05;
}

.phone-preview p {
  margin: 0;
  color: #dcc2a1;
  font-size: 15px;
  line-height: 1.5;
}

.phone-action {
  margin-top: 22px;
  padding: 14px;
  border: 1px solid rgba(255,247,235,.13);
  border-radius: 16px;
  background: rgba(10,5,3,.72);
}

.phone-action strong,
.phone-action span { display: block; }

.phone-action strong { color: #fff7eb; font-size: 14px; font-weight: 800; }
.phone-action span   { margin-top: 3px; color: #c9ac8c; font-size: 13px; }

/* ── Quick-contact buttons ── */
.quick-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quick-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: var(--r-sm);
  font: 700 14px/1 var(--font);
  text-decoration: none;
  border: 1px solid;
  transition: opacity .12s, transform .1s;
}
.quick-btn:hover { opacity: .78; transform: translateY(-1px); text-decoration: none; }

.quick-btn.whatsapp {
  color: #1a6e3a;
  background: rgba(37,211,102,.09);
  border-color: rgba(37,211,102,.26);
}
.quick-btn.telegram {
  color: #135f9e;
  background: rgba(41,170,225,.09);
  border-color: rgba(41,170,225,.26);
}

/* ── Form card ── */
.form-card {
  border-radius: var(--r);
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  box-shadow: 0 2px 8px rgba(28,13,5,.04);
}

.form-card h2 {
  margin: 0 0 6px;
  font-size: 21px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
}

.form-card p {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.support-form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border-mid);
  border-radius: var(--r-sm);
  background: var(--bg-surface);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  padding: 11px 14px;
  transition: border-color .12s;
  outline: none;
}
input:focus,
select:focus,
textarea:focus { border-color: var(--accent); }

textarea { min-height: 108px; resize: vertical; }

.form-note { color: var(--text-dim); font-size: 12px; line-height: 1.5; }

/* ── Support FAQ ── */
.support-faq {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.support-faq li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.support-faq strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.support-faq span {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* ── Footer ── */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-mid);
  color: var(--text-dim);
  font-size: 13px;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}
.footer-links a:hover { color: var(--text); }

/* ── Responsive ── */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .contact-stack { gap: 12px; }
}

@media (max-width: 520px) {
  h1 { font-size: 38px; }
  .hero-copy > p { font-size: 16px; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .phone-preview { min-height: auto; }
  .quick-contact { grid-template-columns: 1fr; }
}
