@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Varela+Round&display=swap");

:root {
  --font-header: "Oswald", "Barlow Condensed", "Fjalla One", Arial, sans-serif;
  --font-body: "Varela Round", Arial, sans-serif;
  --ink: #101828;
  --muted: #5f6673;
  --line: #d8dee8;
  --paper: #f7f9fc;
  --panel: #ffffff;
  --brand-blue: #6195CD;
  --brand-blue-dark: #2F2F2F;
  --brand-red: #D5475E;
  --soft-blue: #eaf3ff;
  --soft-red: #fff0f3;
  --soft-green: #f1f3f6;
  --shadow: 0 18px 44px rgba(47, 47, 47, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.55;
}

a {
  color: var(--brand-blue-dark);
  font-weight: 700;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 148px;
  height: auto;
}

.brand span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
}

.nav-links a {
  color: #202833;
  font-size: 14px;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--brand-red);
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(47, 47, 47, 0.96), rgba(97, 149, 205, 0.9)),
    var(--brand-blue-dark);
  color: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 34px;
  align-items: center;
  max-width: 1180px;
  min-height: 68vh;
  margin: 0 auto;
  padding: 72px 24px 48px;
}

.hero h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

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

.hero-image {
  align-self: end;
  justify-self: center;
  width: min(100%, 420px);
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.28));
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 2px solid transparent;
  border-radius: 6px;
  background: var(--brand-red);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 24px;
}

.section.tight {
  padding-top: 36px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--font-header);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.02;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

p {
  margin: 0 0 15px;
  color: var(--muted);
}

.lead {
  max-width: 820px;
  color: #344054;
  font-size: 19px;
}

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

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
  box-shadow: var(--shadow);
}

.card.blue {
  background: var(--soft-blue);
}

.card.red {
  background: var(--soft-red);
}

.card.green {
  background: var(--soft-green);
}

.band {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 34px;
  align-items: start;
}

.form {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 7px;
  color: #243145;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #c7d0dd;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

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

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.notice {
  border-left: 5px solid var(--brand-blue);
  background: var(--soft-blue);
  padding: 18px;
}

.notice.warn {
  border-left-color: var(--brand-red);
  background: var(--soft-red);
}

.list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.list li {
  margin: 9px 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

th {
  background: #eef3f8;
  color: #28384d;
  font-size: 13px;
  text-transform: uppercase;
}

td {
  color: #344054;
}

code {
  border-radius: 5px;
  background: #edf2f7;
  color: #1d2939;
  padding: 2px 5px;
}

.callback-url {
  overflow-wrap: anywhere;
  border: 1px solid #bfd3eb;
  border-radius: 6px;
  background: #ffffff;
  color: #172033;
  padding: 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
}

.site-footer {
  background: #101828;
  color: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 24px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

@media (max-width: 860px) {
  .hero-grid,
  .split,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

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

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }
}
