:root {
  --bg-deep: #041a1f;
  --bg-mid: #06272f;
  --bg-teal: #0d4e58;
  --panel-line: rgba(184, 255, 24, 0.16);
  --text: #f2f7f4;
  --muted: rgba(228, 239, 233, 0.76);
  --accent: #c8f31d;
  --input: rgba(9, 26, 31, 0.92);
  --input-border: rgba(169, 200, 188, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 20%, rgba(158, 255, 26, 0.10), transparent 22%),
    radial-gradient(circle at 78% 18%, rgba(28, 181, 196, 0.14), transparent 30%),
    linear-gradient(115deg, var(--bg-deep) 0%, var(--bg-mid) 38%, var(--bg-teal) 100%);
}

.page-shell { min-height: 100vh; }

.hero-contact {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 54px 20px 42px;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(255,255,255,0.75), rgba(255,255,255,0.18));
}

.content-wrap,
.info-panel,
.form-panel { position: relative; z-index: 1; }

.content-wrap {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 34px;
  align-items: start;
}

.info-panel { padding: 36px 6px 16px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-panel h1 {
  margin: 16px 0 18px;
  font-size: clamp(50px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.info-panel h1 span { color: var(--accent); }

.lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.65;
}

.bullet-grid {
  display: grid;
  gap: 16px;
  margin-top: 34px;
  max-width: 760px;
}

.bullet-card {
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.10);
}

.bullet-card strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 18px;
}

.bullet-card p {
  margin: 0;
  color: rgba(229, 239, 233, 0.84);
  font-size: 15px;
  line-height: 1.65;
}

.form-panel {
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(5, 17, 20, 0.92), rgba(7, 24, 27, 0.96));
  border: 1px solid var(--panel-line);
  box-shadow: var(--shadow);
}

.form-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.form-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-header h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.reply-badge {
  flex-shrink: 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(200, 243, 29, 0.10);
  color: #eff8ef;
  border: 1px solid rgba(200, 243, 29, 0.20);
  font-size: 12px;
  font-weight: 700;
}

.form-message {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
}
.form-message.success {
  background: rgba(64, 255, 145, 0.12);
  border: 1px solid rgba(64, 255, 145, 0.22);
  color: #dcffe7;
}
.form-message.error {
  background: rgba(255, 87, 87, 0.12);
  border: 1px solid rgba(255, 87, 87, 0.24);
  color: #ffe3e3;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-full,
.consent-row,
.form-actions { grid-column: 1 / -1; }

.form-row label {
  display: block;
  margin-bottom: 8px;
  color: #edf5f0;
  font-size: 14px;
  font-weight: 700;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--input-border);
  border-radius: 18px;
  background: var(--input);
  color: #f5fbf8;
  font: inherit;
  font-size: 15px;
  padding: 15px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(214, 231, 224, 0.48); }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(200, 243, 29, 0.58);
  box-shadow: 0 0 0 4px rgba(200, 243, 29, 0.10);
}
.form-row textarea {
  min-height: 160px;
  resize: vertical;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 13px 14px;
  border: 1px solid var(--input-border);
  border-radius: 16px;
  background: var(--input);
  color: rgba(245, 251, 248, 0.88);
  font-size: 14px;
  font-weight: 600;
}

.checkbox-grid input {
  width: auto;
  accent-color: var(--accent);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(228, 239, 233, 0.76);
  font-size: 14px;
  line-height: 1.55;
}
.consent-row input {
  margin-top: 3px;
  accent-color: var(--accent);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
}

.submit-btn {
  border: 0;
  border-radius: 18px;
  min-height: 58px;
  padding: 0 28px;
  background: var(--accent);
  color: #071015;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(200, 243, 29, 0.20);
  transition: transform 0.2s ease;
}
.submit-btn:hover { transform: translateY(-2px); }

.form-note {
  margin: 0;
  color: rgba(228, 239, 233, 0.54);
  font-size: 13px;
  text-align: right;
}

@media (max-width: 1180px) {
  .content-wrap { grid-template-columns: 1fr; }
  .info-panel { padding-right: 0; }
}

@media (max-width: 720px) {
  .hero-contact { padding: 28px 14px 30px; }
  .form-panel { padding: 20px; border-radius: 26px; }
  .contact-form,
  .checkbox-grid { grid-template-columns: 1fr; }
  .form-header,
  .form-actions { flex-direction: column; align-items: stretch; }
  .reply-badge,
  .submit-btn { width: 100%; text-align: center; justify-content: center; }
  .form-note { text-align: left; }
}
