:root {
  --blue: #073f91;
  --blue-dark: #042c68;
  --green: #2f8f35;
  --text: #10233f;
  --muted: #667085;
  --white: #ffffff;
  --border: rgba(16, 35, 63, 0.12);
  --shadow: 0 28px 80px rgba(7, 63, 145, 0.18);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(47, 143, 53, 0.16), transparent 32%),
    radial-gradient(circle at bottom right, rgba(7, 63, 145, 0.18), transparent 36%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 45%, #f4faf5 100%);
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px 18px;
}

.hero-card {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.brand-panel,
.form-panel {
  padding: clamp(28px, 5vw, 58px);
}

.brand-panel {
  position: relative;
  background: linear-gradient(150deg, rgba(255,255,255,0.96), rgba(239, 249, 241, 0.9));
}

.logo {
  width: min(310px, 78vw);
  height: auto;
  display: block;
  margin-bottom: 28px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(7, 63, 145, 0.09);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.status-pill::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(47, 143, 53, 0.13);
}

h1 {
  margin: 26px 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--blue-dark);
}

.lead {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.8;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.contact-strip a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
}

.contact-strip a:hover { color: var(--green); }
.contact-strip span { width: 1px; height: 18px; background: var(--border); }

.form-panel {
  background: var(--white);
  border-left: 1px solid var(--border);
}

h2 {
  margin: 0 0 8px;
  font-size: 30px;
  color: var(--blue-dark);
}

.form-panel > p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

form { display: grid; gap: 12px; }

label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fbfdff;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

input:focus,
textarea:focus {
  border-color: rgba(7, 63, 145, 0.55);
  box-shadow: 0 0 0 4px rgba(7, 63, 145, 0.1);
  background: #fff;
}

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

button {
  margin-top: 8px;
  border: 0;
  border-radius: 18px;
  padding: 16px 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 15px 28px rgba(7, 63, 145, 0.22);
  transition: transform .2s, box-shadow .2s;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(7, 63, 145, 0.28);
}

.form-note {
  margin-top: 16px !important;
  font-size: 13px;
}

@media (max-width: 860px) {
  .hero-card { grid-template-columns: 1fr; border-radius: 26px; }
  .form-panel { border-left: 0; border-top: 1px solid var(--border); }
  .logo { margin-left: auto; margin-right: auto; }
  .brand-panel { text-align: center; }
  .contact-strip { justify-content: center; }
}

@media (max-width: 520px) {
  .page-shell { padding: 18px 10px; }
  .brand-panel, .form-panel { padding: 24px 18px; }
  .contact-strip { flex-direction: column; }
  .contact-strip span { display: none; }
}
