:root {
  --page-max-width: 1160px;
  --bg: #f4f6fb;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --border: #e6ebf2;
  --text: #0f1724;
  --muted: #475569;
  --primary: #2563EB;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.page {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  left: auto;
  width: auto;
  height: auto;
  padding: 12px 18px;
  margin: 16px 24px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 10px;
  z-index: 100;
}

.logo-wrap {
  text-align: center;
  margin-bottom: 36px;
}

.brand-logo {
  width: min(100%, 340px);
  height: auto;
}

.section {
  margin-bottom: 50px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.hero {
  text-align: center;
  padding: 52px 28px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.1), rgba(246, 248, 251, 0.96));
}

.eyebrow {
  margin: 0 auto 18px;
  display: inline-flex;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
}

h1 {
  margin: 0 0 20px;
  font-size: clamp(3.2rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #102b48;
}

.lead {
  max-width: 840px;
  margin: 0 auto 20px;
  font-size: 1.05rem;
  color: #334155;
}

.trust {
  margin: 0 auto;
  max-width: 760px;
  font-weight: 600;
  color: var(--muted);
}

.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  font-size: 0.95rem;
  color: #334155;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.positioning {
  margin: 0 auto 18px;
  max-width: 760px;
  color: #334155;
  font-weight: 600;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  border: 1px solid transparent;
}

.cta-button.primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.16);
}

.cta-button.primary:hover,
.cta-button.primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(37, 99, 235, 0.24);
}

.cta-button.secondary {
  background: #ffffff;
  color: var(--primary);
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
}

.cta-button.secondary:hover,
.cta-button.secondary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

h2 {
  margin: 0 0 18px;
  font-size: 2rem;
  line-height: 1.12;
  color: #142d46;
}

h3 {
  margin: 0 0 16px;
  font-size: 1.15rem;
  color: #1f2937;
}

p {
  margin: 0 0 18px;
  color: #475569;
}

ul {
  margin: 0;
  padding-left: 24px;
  color: #475569;
}

li {
  margin-bottom: 12px;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.role-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.role-list li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.role-list li::before {
  content: "🦷";
  position: absolute;
  left: 0;
  top: 0;
}

.panel {
  padding: 28px;
  border: 1px solid #e5e8ef;
  border-radius: var(--radius);
  background: var(--surface-soft);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.how-it-works-grid ol {
  margin: 0;
  padding-left: 24px;
  color: #475569;
}

.inquiry-card {
  padding: 28px;
}

.inquiry-card h3 {
  margin-top: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.forms-grid {
  display: grid;
  gap: 24px;
}

.contact-details p,
.contact-details h3 {
  margin: 0 0 14px;
}

.form-card {
  background: #f8fbff;
  border: 1px solid #dbe6f4;
  border-radius: var(--radius);
  padding: 28px;
}

.form-card form {
  display: grid;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

label {
  font-weight: 600;
  color: #334155;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #ffffff;
  padding: 14px 16px;
  color: #0f1724;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.field-error {
  color: #b91c1c;
  font-size: 0.95rem;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.form-message {
  border-radius: 12px;
  padding: 18px 20px;
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid rgba(37, 99, 235, 0.18);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer {
  text-align: center;
  padding: 28px;
  color: #475569;
  background: var(--surface-soft);
  border: 1px solid #e5e8ef;
}

.footer p {
  margin: 8px 0;
}

@media (max-width: 960px) {
  .two-column,
  .contact-grid,
  .how-it-works-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 36px 16px 72px;
  }

  .section {
    padding: 30px;
    margin-bottom: 36px;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .cta-button {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.5rem, 10vw, 3.4rem);
  }
}
