:root {
  --ink: #17202a;
  --muted: #5b6673;
  --line: #d8dde3;
  --panel: #ffffff;
  --field: #f7f9fb;
  --accent: #d9151f;
  --accent-dark: #a90f17;
  --blue: #0d4f8b;
  --green: #19715a;
  --surface: #eef3f7;
  --shadow: 0 24px 60px rgba(23, 32, 42, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(13, 79, 139, 0.12), rgba(217, 21, 31, 0.05)),
    var(--surface);
  font-family: "Noto Sans Hebrew", "Segoe UI", sans-serif;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  padding: 28px;
  display: grid;
  place-items: center;
}

.service-panel {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 0;
  background: var(--panel);
  border: 1px solid rgba(23, 32, 42, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.brand-bar,
.intro {
  grid-column: 1;
}

.brand-bar {
  padding: 34px 36px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-logo {
  width: 132px;
  height: auto;
  display: block;
}

.brand-copy {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.brand-copy p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.brand-copy span {
  display: block;
}

.intro {
  padding: 64px 36px 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(247, 249, 251, 0.8)),
    var(--panel);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(3rem, 4.8vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.intro-text {
  margin: 24px 0 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.request-form {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-right: 1px solid var(--line);
  background: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--field);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.field textarea {
  min-height: 144px;
  resize: vertical;
  line-height: 1.55;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(13, 79, 139, 0.14);
}

.actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.submit-button {
  min-height: 52px;
  border: 0;
  border-radius: 6px;
  padding: 0 28px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
  cursor: pointer;
}

.submit-button:hover {
  background: var(--accent-dark);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}

.form-status[data-state="success"] {
  color: var(--green);
}

.form-status[data-state="error"] {
  color: var(--accent-dark);
}

.bot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 860px) {
  .page-shell {
    padding: 14px;
    place-items: start center;
  }

  .service-panel {
    grid-template-columns: 1fr;
  }

  .brand-bar,
  .intro,
  .request-form {
    grid-column: auto;
    grid-row: auto;
  }

  .brand-bar {
    padding: 24px 20px 0;
  }

  .brand-logo {
    width: 116px;
  }

  .intro {
    padding: 40px 20px 20px;
  }

  h1 {
    max-width: none;
    font-size: 2.85rem;
  }

  .request-form {
    padding: 22px 20px 24px;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .submit-button {
    width: 100%;
  }
}
