:root {
  color-scheme: light;
  --ink: #162033;
  --muted: #5b6575;
  --line: #dbe2ea;
  --paper: #ffffff;
  --surface: #f4f7fb;
  --navy: #10284f;
  --teal: #0c7c7d;
  --gold: #c99032;
  --gold-dark: #9b641f;
  --shadow: 0 18px 50px rgba(22, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--teal);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.78fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  min-height: calc(100vh - 79px);
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 72px) 54px;
  background:
    linear-gradient(115deg, rgba(16, 40, 79, 0.07), rgba(12, 124, 125, 0.09) 48%, rgba(201, 144, 50, 0.12)),
    var(--surface);
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 840px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 2vw, 1.22rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button.primary {
  color: #ffffff;
  background: var(--teal);
  box-shadow: 0 12px 26px rgba(12, 124, 125, 0.24);
}

.button.primary:hover {
  background: #086b6c;
}

.button.secondary {
  color: var(--navy);
  background: #ffffff;
  border-color: var(--line);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual img {
  width: min(100%, 460px);
  filter: drop-shadow(0 24px 34px rgba(22, 32, 51, 0.16));
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  min-height: 116px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: #ffffff;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 210px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card p,
.process-list p,
.contact-section p {
  margin: 0;
  color: var(--muted);
}

.process-section {
  background: var(--navy);
}

.process-section h2,
.process-section h3 {
  color: #ffffff;
}

.process-section .eyebrow {
  color: #86d4d5;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #ffffff;
  background: var(--gold);
  border-radius: 50%;
  font-weight: 800;
}

.process-list p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  margin: clamp(24px, 5vw, 72px);
  padding: clamp(34px, 6vw, 64px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-section h2 {
  margin-bottom: 12px;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.page-intro {
  padding: clamp(54px, 8vw, 92px) clamp(20px, 5vw, 72px) clamp(34px, 5vw, 58px);
  background: var(--surface);
}

.page-intro h1 {
  max-width: 880px;
  font-size: clamp(2.15rem, 5vw, 4.5rem);
}

.page-intro p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 28px;
  padding: clamp(42px, 7vw, 82px) clamp(20px, 5vw, 72px);
}

.form-panel,
.contact-aside {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.form-panel {
  padding: clamp(24px, 5vw, 42px);
  box-shadow: var(--shadow);
}

.form-panel h2,
.contact-aside h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.form-note {
  margin: 8px 0 26px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(12, 124, 125, 0.16);
}

.contact-form button {
  width: fit-content;
  cursor: pointer;
}

.contact-form button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.form-status {
  margin: 0 0 24px;
  padding: 18px;
  border-radius: 8px;
}

.form-status.success {
  background: #e9f7f4;
  border: 1px solid #b9dfd8;
}

.form-status.error {
  background: #fff0ec;
  border: 1px solid #f0c2b8;
}

.form-status p {
  margin: 0;
  color: var(--muted);
}

.contact-aside {
  align-self: start;
  padding: 26px;
  background: var(--surface);
}

.contact-aside ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 24px;
  padding-left: 20px;
  color: var(--muted);
}

.contact-aside p {
  margin: 0;
  color: var(--muted);
}

.contact-aside a {
  color: var(--teal);
  font-weight: 800;
}

@media (max-width: 900px) {
  .hero,
  .contact-section,
  .form-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .trust-strip,
  .service-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

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

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .button {
    width: 100%;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }

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

  .contact-form button {
    width: 100%;
  }
}
