:root {
  color-scheme: light;
  --ink: #152130;
  --muted: #5d6874;
  --line: #d8e2e6;
  --paper: #f7fafb;
  --white: #ffffff;
  --navy: #10253d;
  --teal: #2f8f83;
  --gold: #d9a441;
  --soft-teal: #e7f3f1;
  --soft-gold: #fff4de;
  --shadow: 0 18px 50px rgba(16, 37, 61, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(216, 226, 230, 0.86);
  background: rgba(247, 250, 251, 0.94);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 780;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.brand span {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a {
  text-decoration: none;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: var(--navy);
  color: var(--white);
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: #193955;
}

.button.secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: #b9c8ce;
  background: #fbfcfd;
}

.hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(118deg, #f7fafb 0%, #e9f5f2 58%, #fff5df 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.84fr);
  gap: 48px;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 58px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #2d7f75;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5.6vw, 4.55rem);
  line-height: 0.99;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(1.78rem, 3.4vw, 3rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.24;
}

.lede {
  max-width: 690px;
  color: #3d4953;
  font-size: clamp(1.06rem, 1.7vw, 1.22rem);
}

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

.hero-visual {
  margin: 0;
}

.hero-visual img {
  display: block;
  width: 100%;
  border: 1px solid rgba(16, 37, 61, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  object-fit: contain;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.compact {
  padding: 66px 0;
}

.kicker {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.service-card,
.step,
.contact-form,
.success-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(16, 37, 61, 0.08);
}

.service-card {
  padding: 24px;
}

.service-card p,
.step p,
.about-copy p {
  color: var(--muted);
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.step {
  padding: 24px;
}

.step span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 850;
}

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

.about-copy {
  color: #34414c;
  font-size: 1.06rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.proof-grid div {
  min-height: 124px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.98rem;
}

.proof-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: #2e3a45;
  font-size: 0.92rem;
  font-weight: 720;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd8de;
  border-radius: 7px;
  background: #fbfdfe;
  color: var(--ink);
  font: inherit;
}

input {
  min-height: 44px;
  padding: 0 12px;
}

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

input:focus,
textarea:focus {
  outline: 3px solid rgba(47, 143, 131, 0.2);
  border-color: var(--teal);
}

.hidden {
  display: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  font-size: 0.94rem;
}

.success-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px 16px;
  background: linear-gradient(118deg, #f7fafb, #e9f5f2 60%, #fff5df);
}

.success-panel {
  width: min(620px, 100%);
  padding: 36px;
  text-align: center;
}

.success-panel img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
}

.success-panel h1 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
}

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

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

  .hero-inner {
    padding-top: 56px;
  }
}

@media (max-width: 680px) {
  .nav {
    align-items: flex-start;
  }

  .brand span {
    white-space: normal;
  }

  .nav-links {
    display: none;
  }

  .hero-inner,
  .section,
  .compact {
    width: min(100% - 24px, 1120px);
  }

  .hero-inner {
    gap: 32px;
    padding: 42px 0 38px;
  }

  .service-grid,
  .steps,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }

  .footer-inner {
    flex-direction: column;
  }
}
