:root {
  --ink: #1b1f4b;
  --muted: #5f6680;
  --line: #dce4ef;
  --paper: #f7f9fc;
  --white: #ffffff;
  --navy: #1b1f4b;
  --cyan: #10aee2;
  --cyan-dark: #078bb8;
  --silver: #8d98aa;
  --shadow: 0 24px 80px rgba(27, 31, 75, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

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

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

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 152px;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav a:hover,
.footer a:hover {
  color: var(--cyan);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  cursor: pointer;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--cyan);
}

.header-cta:hover,
.button.primary:hover {
  background: var(--cyan-dark);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  min-height: calc(100vh - 84px);
  padding: clamp(48px, 7vw, 92px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(16, 174, 226, 0.12), transparent 46%),
    var(--paper);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(2.65rem, 7vw, 5.4rem);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  padding: 9px 12px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img,
.split-media img {
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.section {
  padding: clamp(58px, 8vw, 110px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  background: var(--white);
}

.intro p:last-child {
  margin: 34px 0 0;
  font-size: 1.08rem;
}

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

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

.service-card,
.faq-grid article {
  min-height: 260px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card-number {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--cyan);
  font-weight: 900;
}

.proof {
  padding-top: 0;
}

.proof-panel {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 36px;
  padding: clamp(30px, 5vw, 58px);
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
}

.proof-panel h2,
.proof-panel p,
.proof-panel .eyebrow {
  color: var(--white);
}

.proof-list {
  display: grid;
  gap: 18px;
}

.proof-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.proof-list strong {
  color: var(--white);
}

.process {
  background: var(--white);
}

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

.steps li {
  padding: 24px 0 0;
  border-top: 3px solid var(--cyan);
}

.steps span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--cyan);
  border-radius: 7px;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(58px, 8vw, 110px) clamp(20px, 5vw, 72px);
}

.split-media {
  overflow: hidden;
  border-radius: 8px;
}

.split-copy {
  max-width: 640px;
}

.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid article {
  min-height: 210px;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(58px, 8vw, 110px) clamp(20px, 5vw, 72px);
  background: var(--navy);
}

.contact-band h2,
.contact-band p,
.contact-band .eyebrow {
  color: var(--white);
}

.contact-band p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 7px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 36px clamp(20px, 5vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer p {
  max-width: 460px;
  margin: 12px 0 0;
}

.footer-contact {
  display: grid;
  gap: 8px;
  align-content: start;
  color: var(--muted);
  font-weight: 700;
}

.wp-content-page {
  width: min(920px, calc(100% - 40px));
  min-height: 55vh;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0;
}

.wp-content-page article {
  padding: clamp(24px, 5vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.wp-content-page h1 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
}

.wp-content-page a {
  color: var(--cyan-dark);
  font-weight: 800;
}

@media (max-width: 940px) {
  .nav {
    display: none;
  }

  .hero,
  .intro,
  .proof-panel,
  .split-section,
  .contact-band {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 18px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 2.7rem;
  }

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

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

  .footer {
    display: grid;
  }
}
