:root {
  --navy: #0b1533;
  --blue: #1268f3;
  --cyan: #11b9c5;
  --teal: #00a89a;
  --gold: #f0ad1f;
  --bg: #f6f9fc;
  --surface: #ffffff;
  --surface-soft: #eef9fb;
  --panel2: #f1f6fb;
  --text: #0b1533;
  --muted: #4d5c77;
  --line: rgba(11, 21, 51, .12);
  --line-strong: rgba(11, 21, 51, .2);
  --accent: #1268f3;
  --accent-strong: #0a48bf;
  --accent-soft: #eaf2ff;
  --highlight-soft: #e8fbfc;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0, var(--bg) 430px, #ecf4f8 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(11, 21, 51, .06);
  backdrop-filter: blur(18px);
}

.nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  color: var(--text);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 356px;
  height: 60px;
  object-fit: contain;
  object-position: left center;
}

.links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.links a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: color .2s;
}

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

.links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--teal);
  opacity: 0;
  transform: translateY(3px);
  transition: opacity .2s, transform .2s;
}

.links a:not(.btn):hover::after {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(18, 104, 243, .42);
  background: linear-gradient(135deg, var(--accent), #1487ff 56%, var(--cyan));
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  padding: 11px 17px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 10px 22px rgba(11, 21, 51, .12);
  transition: border-color .2s, background .2s, box-shadow .2s, transform .15s;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  box-shadow: 0 12px 28px rgba(18, 104, 243, .24);
  transform: translateY(-1px);
}

.btn.secondary {
  border-color: var(--line-strong);
  background: #ffffff;
  color: var(--text);
  box-shadow: none;
}

.btn.secondary:hover {
  border-color: rgba(17, 185, 197, .44);
  background: var(--highlight-soft);
  color: var(--navy);
}

.links .btn {
  min-height: 38px;
  padding: 9px 14px;
  color: var(--navy);
  background: rgba(17, 185, 197, .14);
  border-color: rgba(17, 185, 197, .42);
  box-shadow: none;
}

.links .btn:hover {
  border-color: rgba(17, 185, 197, .66);
  background: rgba(17, 185, 197, .22);
  color: var(--navy);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 612px;
  display: flex;
  align-items: center;
  padding: 78px 0 70px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0, rgba(255, 255, 255, .92) 48%, rgba(255, 255, 255, .56) 74%, rgba(255, 255, 255, .9) 100%),
    url("/favicon.png?v=1") right 8% center / min(54vw, 620px) auto no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--teal);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1 {
  max-width: 760px;
  font-size: 64px;
  line-height: 1.02;
  margin: 0 0 22px;
  letter-spacing: 0;
}

.hero p.lead {
  max-width: 720px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 21px;
}

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

.proof-strip {
  padding: 28px 0;
  background: #ffffff;
}

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

.proof-grid > div {
  min-height: 106px;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff 0, var(--surface-soft) 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(11, 21, 51, .06);
}

.proof-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-grid strong {
  display: block;
  font-size: 19px;
  line-height: 1.25;
}

.section {
  padding: 72px 0;
  background: rgba(255, 255, 255, .38);
  border-top: 1px solid var(--line);
}

.section h2 {
  margin: 0 0 16px;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: 0;
}

.section .intro {
  max-width: 820px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 18px;
}

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

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: start;
}

.card {
  min-height: 100%;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(11, 21, 51, .06);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.card:hover {
  border-color: rgba(17, 185, 197, .55);
  box-shadow: 0 16px 34px rgba(11, 21, 51, .1);
  transform: translateY(-2px);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: 0;
}

.card p,
.card li {
  color: var(--muted);
}

.card p {
  margin: 0;
}

.card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.process {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 62px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 24px;
  left: 20px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
  background: var(--teal);
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(17, 185, 197, .22);
}

.band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy), #244d74 68%, #0f6f8c);
  border: 1px solid rgba(11, 21, 51, .22);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(11, 21, 51, .1);
}

.band h2 {
  margin: 0 0 10px;
  color: #ffffff;
}

.band p {
  max-width: 720px;
  margin: 0;
  color: #eef7fb;
}

.band .btn {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: none;
}

.band .btn:hover {
  color: var(--navy);
  background: #ffc33a;
  border-color: #ffc33a;
}

.footer {
  padding: 36px 0 50px;
  color: var(--muted);
  font-size: 14px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

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

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner > div:last-child {
  max-width: 620px;
}

.footer-privacy {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

.footer-privacy a {
  color: inherit;
  text-decoration: underline;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li {
  padding: 10px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.list-clean li:last-child {
  border-bottom: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  align-items: start;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.field label span {
  color: var(--muted);
  font-weight: 400;
}

.field input,
.field textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(17, 185, 197, .7);
  box-shadow: 0 0 0 4px rgba(17, 185, 197, .13);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8d98a8;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

/* Honeypot: kept out of the layout, tab order, and assistive tech.
   Uses absolute-offscreen (not display:none) so naive bots still "see" it. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-privacy {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.5;
  color: #8d98a8;
}

.form-privacy a {
  color: inherit;
  text-decoration: underline;
}

.btn[disabled] {
  cursor: wait;
  opacity: .7;
  transform: none;
}

.contact-aside a,
.alert a {
  color: var(--accent);
  text-decoration: none;
}

.contact-aside a:hover,
.alert a:hover {
  text-decoration: underline;
}

.alert {
  margin-bottom: 22px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
}

.alert-success {
  background: #e7fbf6;
  border: 1px solid rgba(17, 185, 197, .28);
  color: #00695b;
}

.alert-error {
  background: #fff4eb;
  border: 1px solid rgba(240, 173, 31, .44);
  color: #7a4300;
}

@media (max-width: 860px) {
  .grid3,
  .grid2,
  .proof-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .links {
    display: none;
  }

  .hero {
    min-height: 540px;
    padding: 54px 0 52px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .96) 0, rgba(255, 255, 255, .87) 66%, rgba(255, 255, 255, .96) 100%),
      url("/favicon.png?v=1") right -90px bottom 24px / 360px auto no-repeat;
  }

  .hero h1 {
    font-size: 42px;
  }

  .section {
    padding: 56px 0;
  }

  .section h2 {
    font-size: 32px;
  }

  .band {
    display: block;
  }

  .band .btn {
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 560px) {
  .wrap {
    padding: 0 18px;
  }

  .nav-inner {
    height: 70px;
  }

  .brand-logo {
    width: 268px;
    height: 52px;
  }

  .hero {
    min-height: 520px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p.lead {
    font-size: 18px;
  }

  .actions .btn {
    width: 100%;
  }

  .proof-grid > div,
  .card,
  .band {
    padding: 22px;
  }
}
