:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #5f6975;
  --line: #dce3e6;
  --panel: #ffffff;
  --surface: #f5f8f8;
  --surface-strong: #e8f3f0;
  --brand: #0b4f55;
  --brand-strong: #07383d;
  --accent: #1f8a70;
  --warning: #b87617;
  --shadow: 0 20px 60px rgba(20, 39, 43, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--surface);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration-color: rgba(31, 138, 112, 0.45);
  text-underline-offset: 3px;
}

.site-header,
.site-footer,
main {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}

.brand,
.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
}

.header-contact {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--brand-strong);
  font-size: 14px;
  font-weight: 700;
}

.header-contact svg,
.eyebrow svg,
.check-list svg,
.notice svg,
.submit-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: stretch;
  gap: 22px;
  padding: 42px 0 28px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
  padding: 44px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(7, 56, 61, 0.82), rgba(7, 56, 61, 0.78)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1600&q=80");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 700;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 6vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.company-panel,
.form-panel,
.info-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(25, 45, 52, 0.06);
}

.company-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.company-icon,
.form-icon,
.step-icon {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--surface-strong);
  color: var(--brand);
}

.company-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
}

.company-icon svg {
  width: 30px;
  height: 30px;
}

.company-panel h2 {
  margin-bottom: 14px;
  font-size: 26px;
}

.company-panel p,
.company-panel a {
  margin: 0 0 9px;
  color: var(--muted);
  font-weight: 600;
}

.company-panel a {
  width: fit-content;
  color: var(--brand-strong);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 22px;
  align-items: start;
  padding-bottom: 50px;
}

.info-column {
  display: grid;
  gap: 22px;
}

.info-section,
.form-panel {
  padding: 28px;
}

.info-section h2,
.form-heading h2 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.18;
}

.info-section p,
.form-heading p,
label span {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-list svg {
  color: var(--accent);
  margin-top: 2px;
}

.notice {
  display: flex;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(184, 118, 23, 0.26);
  border-radius: 8px;
  background: #fff8ed;
  color: #6f480b;
}

.notice p {
  margin: 0;
  color: #6f480b;
}

.notice svg {
  margin-top: 2px;
  color: var(--warning);
}

.steps ol {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 12px;
}

.step-icon {
  width: 44px;
  height: 44px;
  grid-row: span 2;
}

.step-icon svg {
  width: 22px;
  height: 22px;
}

.steps strong {
  align-self: end;
  font-size: 15px;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.form-panel {
  position: sticky;
  top: 16px;
}

.form-heading {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.form-heading h2 {
  margin-bottom: 4px;
}

.form-heading p {
  margin-bottom: 0;
}

.form-icon {
  width: 46px;
  height: 46px;
}

.form-icon svg {
  width: 24px;
  height: 24px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

label span {
  font-size: 12px;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfd8dc;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  padding: 11px 12px;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31, 138, 112, 0.15);
}

.checkbox-line {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  font-weight: 600;
}

.checkbox-line input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--brand);
}

.checkbox-line span {
  color: var(--ink);
  font-size: 14px;
}

.submit-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0 18px;
  transition:
    background-color 150ms ease,
    transform 150ms ease;
}

.submit-button:hover {
  background: var(--brand-strong);
}

.submit-button:active {
  transform: translateY(1px);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  display: grid;
  gap: 14px;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer div,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer nav a {
  color: var(--brand-strong);
  font-weight: 700;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 300px;
    padding: 30px;
  }

  .form-panel {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    align-items: flex-start;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 12px;
  }

  .header-contact {
    width: 100%;
    justify-content: center;
    overflow-wrap: anywhere;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-copy,
  .company-panel,
  .info-section,
  .form-panel {
    padding: 22px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .eyebrow {
    border-radius: 8px;
  }

  .form-heading {
    align-items: center;
  }
}
