:root {
  --bg: #071410;
  --panel: #10221c;
  --line: #234037;
  --text: #e8f6ee;
  --muted: #9bb5aa;
  --mint: #3ddc97;
  --gold: #f4c95d;
  --paper: #f4faf6;
  --ink: #10221c;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, .wordmark { font-family: "Syne", sans-serif; }

.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 20, 16, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 78px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.logo { height: 44px; width: auto; max-width: 190px; object-fit: contain; background: #fff; border-radius: 8px; padding: 4px; }
.wordmark { letter-spacing: -0.03em; }
.nav { display: flex; gap: 24px; }
.nav a { color: var(--muted); font-weight: 700; }
.nav a:hover, .nav a.active { color: var(--mint); }
.menu-btn { display: none; background: none; border: 0; color: #fff; font-size: 1.4rem; cursor: pointer; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 800;
  cursor: pointer;
}
.btn-primary { background: var(--mint); color: #062016; }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn:hover { transform: translateY(-1px); }

.hero { padding: 80px 0 36px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.kicker { color: var(--mint); font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.75rem; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.6rem); line-height: 0.98; margin: 12px 0 18px; }
.lead { color: var(--muted); font-size: 1.12rem; max-width: 36rem; }
.hero-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.panel {
  background: linear-gradient(180deg, #143028, #0d1f1a);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.row:last-child { border-bottom: 0; }
.ok { color: var(--mint); font-weight: 800; }

.light {
  background: var(--paper);
  color: var(--ink);
  border-radius: 36px 36px 0 0;
  margin-top: 48px;
}
.section { padding: 72px 0; }
.section h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); margin: 0 0 10px; }
.muted { color: #567066; }
.grid-3, .grid-2 { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }
.card {
  background: #fff;
  border: 1px solid #d7e6dd;
  border-radius: 20px;
  padding: 24px;
}
.icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #e8f8f0;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.cta {
  background: #10221c;
  color: var(--text);
  border-radius: 28px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}
form { display: grid; gap: 12px; }
label { font-weight: 800; }
input, textarea, select {
  width: 100%;
  border: 1px solid #d7e6dd;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}
.dark-field { background: #0b1b16; border-color: var(--line); color: #fff; }
.form-note { min-height: 1.3em; color: var(--muted); }
.form-note.ok { color: var(--mint); }
.honey { position: absolute; left: -9999px; height: 0; width: 0; overflow: hidden; }

.site-footer { padding: 28px 0 40px; color: var(--muted); border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.contact-line { line-height: 1.7; }
.contact-line a { text-decoration: underline; text-underline-offset: 2px; }
.social { width: 100%; margin: 0; }
.social a { text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 860px) {
  .menu-btn { display: block; }
  .nav {
    display: none;
    position: absolute;
    inset: 78px 20px auto;
    background: #10221c;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
    flex-direction: column;
  }
  .nav.open { display: flex; }
  .hero-grid, .grid-3, .grid-2, .cta { grid-template-columns: 1fr; }
  .logo { height: 36px; max-width: 140px; }
}
