:root {
  --ink: #111926;
  --ink-soft: #1d2736;
  --muted: #647084;
  --line: #dde3ea;
  --paper: #ffffff;
  --mist: #f5f7fa;
  --navy: #111926;
  --navy-soft: #263244;
  --orange: #f47d20;
  --orange-dark: #d9650c;
  --orange-soft: #fff0e4;
  --warm: #fbf7f3;
  --shadow: 0 24px 70px rgba(17, 25, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 6%, rgba(244, 125, 32, 0.13), transparent 27rem),
    linear-gradient(180deg, #ffffff 0%, var(--mist) 54%, #ffffff 100%);
}

body,
input,
textarea,
button {
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  border-bottom: 1px solid rgba(221, 227, 234, 0.72);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.trust-row,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 176px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  gap: 26px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

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

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(244, 125, 32, 0.26);
  border-radius: 8px;
  font-weight: 700;
  color: var(--orange-dark);
  background: #fff;
  box-shadow: 0 10px 28px rgba(244, 125, 32, 0.08);
}

.nav-cta:hover,
.button.secondary:hover {
  border-color: rgba(244, 125, 32, 0.48);
  color: var(--orange-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(244, 125, 32, 0.42);
  outline-offset: 3px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 58px;
  align-items: center;
  width: min(1160px, calc(100% - 40px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 64px 0 56px;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.96;
  font-weight: 800;
  color: var(--navy);
}

.hero-copy p {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 14px 30px rgba(244, 125, 32, 0.26);
}

.button.primary:hover {
  background: linear-gradient(135deg, #ff8b32, #c95808);
}

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

.trust-row {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.trust-row span {
  padding-left: 14px;
  border-left: 2px solid rgba(244, 125, 32, 0.42);
}

.hero-media {
  position: relative;
  min-height: 560px;
  border-radius: 8px;
}

.hero-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(221, 227, 234, 0.82);
}

.floating-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: 230px;
  padding: 12px 14px;
  border: 1px solid rgba(220, 230, 227, 0.8);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(17, 25, 38, 0.13);
  backdrop-filter: blur(14px);
  font-size: 0.92rem;
  font-weight: 800;
}

.note-one {
  top: 32px;
  right: 32px;
}

.note-two {
  bottom: 34px;
  left: 28px;
}

.dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--navy);
  box-shadow: 0 0 0 5px rgba(17, 25, 38, 0.12);
}

.dot.orange {
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(244, 125, 32, 0.16);
}

.intro-band,
.proof-strip,
.solutions,
.examples,
.method,
.contact {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-band {
  padding: 38px 0 84px;
}

.intro-band p {
  max-width: 960px;
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.22;
  font-weight: 700;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.proof-strip article {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
}

.proof-strip strong {
  font-size: 0.86rem;
  text-transform: uppercase;
  color: var(--orange-dark);
}

.proof-strip span {
  color: var(--muted);
  line-height: 1.5;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.section-heading p,
.contact p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.solutions {
  padding: 70px 0 90px;
}

.solution-list {
  display: grid;
  gap: 16px;
}

.solution-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 45px rgba(17, 25, 38, 0.045);
}

.solution-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 8px;
  color: var(--orange-dark);
  background: var(--orange-soft);
}

.solution-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-item h3,
.steps h3 {
  margin: 0;
  font-size: 1.35rem;
}

.solution-item p,
.steps p,
.example-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.examples {
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

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

.example-grid article {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(17, 25, 38, 0.08) 0%, rgba(17, 25, 38, 0.92) 100%),
    linear-gradient(135deg, rgba(17, 25, 38, 0.92), rgba(244, 125, 32, 0.76));
}

.example-grid article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(17, 25, 38, 0.08) 0%, rgba(17, 25, 38, 0.92) 100%),
    linear-gradient(135deg, rgba(244, 125, 32, 0.82), rgba(17, 25, 38, 0.82));
}

.example-grid article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(17, 25, 38, 0.08) 0%, rgba(17, 25, 38, 0.92) 100%),
    linear-gradient(135deg, rgba(38, 50, 68, 0.96), rgba(244, 125, 32, 0.62));
}

.example-grid span {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.example-grid h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.12;
}

.example-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.method {
  padding: 86px 0;
  border-top: 1px solid var(--line);
}

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

.steps article {
  min-height: 220px;
  padding: 24px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 44%),
    var(--navy);
}

.steps span {
  color: var(--orange);
  font-weight: 800;
}

.steps h3 {
  margin-top: 54px;
  color: #fff;
}

.steps p {
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 50px;
  align-items: start;
  padding: 64px;
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 125, 32, 0.28), transparent 28rem),
    linear-gradient(135deg, rgba(17, 25, 38, 0.98), rgba(29, 39, 54, 0.96)),
    var(--navy);
  box-shadow: 0 24px 70px rgba(17, 25, 38, 0.16);
}

.contact p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-points span {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.contact-points span::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(244, 125, 32, 0.16);
  content: "";
}

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

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 14px 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
  resize: vertical;
}

.contact-form input:valid,
.contact-form textarea:valid {
  border-color: rgba(255, 255, 255, 0.34);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.contact-form .button {
  width: fit-content;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 14px 30px rgba(244, 125, 32, 0.24);
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.turnstile-wrap {
  min-height: 65px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.form-status.is-success {
  color: #dff7ec;
}

.form-status.is-error {
  color: #ffd8ce;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer img {
  width: 146px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.contact-result {
  display: grid;
  min-height: 100vh;
  align-content: center;
  gap: 18px;
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
}

.contact-result h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

.contact-result p {
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.6;
}

.contact-result .button {
  width: fit-content;
}

@media (max-width: 940px) {
  .site-header {
    width: min(100% - 28px, 720px);
  }

  .nav-links {
    display: none;
  }

  .hero,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    width: min(100% - 28px, 720px);
    min-height: auto;
    gap: 34px;
    padding-top: 42px;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-media img {
    height: 420px;
  }

  .intro-band,
  .proof-strip,
  .solutions,
  .examples,
  .method,
  .contact,
  .site-footer {
    width: min(100% - 28px, 720px);
  }

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

  .steps article {
    min-height: 180px;
  }

  .steps h3 {
    margin-top: 34px;
  }

  .contact {
    padding: 34px 22px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 0;
  }

  .brand img {
    width: 132px;
    height: 38px;
  }

  .nav-cta {
    padding: 9px 12px;
    font-size: 0.86rem;
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
  }

  .trust-row {
    display: grid;
  }

  .hero-media,
  .hero-media img {
    min-height: 360px;
    height: 360px;
  }

  .floating-note {
    max-width: 185px;
    font-size: 0.82rem;
  }

  .note-one {
    top: 16px;
    right: 14px;
  }

  .note-two {
    bottom: 16px;
    left: 14px;
  }

  .solution-item {
    grid-template-columns: 1fr;
  }

  .example-grid article {
    min-height: 260px;
  }

  .site-footer {
    display: grid;
  }
}
