@import url("");

:root {
  --brand: #04b7a4;
  --brand-dark: #038d80;
  --brand-pale: #e8faf7;
  --ink: #102321;
  --ink-soft: #4b5f5c;
  --paper: #ffffff;
  --surface: #f5f8f7;
  --line: #dce8e6;
  --night: #0d2926;
  --radius: 22px;
  --shadow: 0 20px 55px rgba(10, 56, 50, .11);
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 999;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: .25s ease;
}
.site-header.scrolled,
.solid-header {
  border-bottom-color: rgba(16,35,33,.08);
  box-shadow: 0 8px 30px rgba(10, 56, 50, .05);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 850;
  letter-spacing: .11em;
  text-decoration: none;
}
.brand img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 10px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}
.main-nav > a:not(.button) {
  color: #304744;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}
.main-nav > a:not(.button):hover { color: var(--brand-dark); }
.nav-toggle { display: none; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid var(--brand);
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(4,183,164,.19);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(4,183,164,.25);
}
.button-small { min-height: 44px; padding: 9px 17px; font-size: 14px; }
.button-secondary {
  color: var(--ink);
  background: rgba(255,255,255,.72);
  border-color: rgba(16,35,33,.15);
  box-shadow: none;
}
.button-secondary:hover { background: #fff; color: var(--ink); border-color: var(--brand); }
.button-white { background: #fff; color: var(--ink); border-color: #fff; box-shadow: none; }
.button-white:hover { background: var(--brand-pale); color: var(--ink); }

.eyebrow {
  margin: 0 0 13px;
  color: var(--brand-dark);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow-inverse { color: #81f2e7; }
.lead {
  color: var(--ink-soft);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.55;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 160px 0 105px;
  background:
    radial-gradient(circle at 85% 12%, rgba(4,183,164,.13), transparent 27%),
    linear-gradient(145deg, #fff 0%, #f5fbfa 65%, #eef9f7 100%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 75px;
  align-items: center;
}
.hero h1,
.contact-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(45px, 6vw, 77px);
  line-height: 1.04;
  letter-spacing: -.055em;
}
.hero h1 span { color: var(--brand-dark); }
.hero .lead { max-width: 710px; margin: 28px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 31px;
  color: #5c706d;
  font-size: 14px;
  font-weight: 750;
}
.hero-proof span::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--brand);
  vertical-align: 1px;
}
.hero-visual { position: relative; min-height: 480px; }
.visual-card {
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 27px;
  box-shadow: var(--shadow);
}
.visual-card-main {
  position: absolute;
  top: 28px; right: 12px;
  width: min(100%, 430px);
  min-height: 405px;
  padding: 37px;
  background:
    linear-gradient(155deg, rgba(255,255,255,.93), rgba(239,250,248,.91));
  backdrop-filter: blur(8px);
}
.visual-logo img {
  width: 100px; height: 100px;
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(4,183,164,.22);
}
.visual-label {
  margin: 35px 0 4px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.visual-card h2 { margin: 0; font-size: 38px; line-height: 1.08; letter-spacing: -.035em; }
.visual-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: 47px;
  color: #3f5652;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.visual-flow i { height: 2px; background: linear-gradient(90deg, var(--brand), rgba(4,183,164,.15)); }
.visual-card-float {
  position: absolute;
  z-index: 3;
  min-width: 156px;
  padding: 17px 19px;
  background: var(--night);
  color: #fff;
}
.visual-card-float strong,
.visual-card-float small { display: block; }
.visual-card-float strong { font-size: 16px; }
.visual-card-float small { margin-top: 2px; color: #a9c3bf; font-size: 12px; }
.visual-card-top { top: 0; left: 0; }
.visual-card-bottom { right: 0; bottom: 5px; background: var(--brand); }
.visual-card-bottom small { color: #ddfffb; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .7; }
.hero-orb-one { width: 320px; height: 320px; right: -130px; top: 120px; border: 70px solid rgba(4,183,164,.08); }
.hero-orb-two { width: 180px; height: 180px; left: -80px; bottom: 10px; background: rgba(4,183,164,.06); }

.trust-strip {
  background: var(--night);
  color: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 27px 0;
}
.trust-grid div {
  padding: 7px 24px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.trust-grid div:first-child { padding-left: 0; }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong,
.trust-grid span { display: block; }
.trust-grid strong { color: #79eadf; font-size: 22px; }
.trust-grid span { color: #c7d9d6; font-size: 14px; }

.section { padding: 108px 0; }
.section-light { background: var(--surface); }
.section-heading { max-width: 820px; margin-bottom: 54px; }
.section-heading.narrow { max-width: 760px; }
.section-heading h2,
.difference h2,
.cta-card h2 {
  margin: 0;
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.1;
  letter-spacing: -.045em;
}
.section-heading > p:last-child,
.difference-copy > p,
.cta-card > div > p:last-child {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.scan-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 45px;
  align-items: start;
}
.scan-intro {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--night);
  color: #fff;
  box-shadow: var(--shadow);
}
.number-mark {
  display: inline-flex;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  border-radius: 13px;
  background: var(--brand);
  font-size: 14px;
  font-weight: 900;
}
.scan-intro h3 { margin: 27px 0 15px; font-size: 29px; }
.check-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #d4e3e0;
  font-size: 15px;
}
.check-list li { position: relative; padding-left: 26px; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #74eadd;
  font-weight: 900;
}
.benefit-stack { display: grid; gap: 17px; }
.benefit-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 19px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
}
.benefit-icon {
  display: inline-flex;
  width: 52px; height: 52px;
  align-items: center; justify-content: center;
  border-radius: 14px;
  background: var(--brand-pale);
  color: var(--brand-dark);
  font-size: 25px;
  font-weight: 900;
}
.benefit-card h3 { margin: 0 0 5px; font-size: 21px; }
.benefit-card p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }

.scan-output {
  color: #fff;
  background:
    radial-gradient(circle at 95% 10%, rgba(4,183,164,.28), transparent 30%),
    var(--night);
}
.scan-output .section-heading h2 { max-width: 730px; }
.output-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.output-card {
  min-height: 235px;
  padding: 29px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
}
.output-card > span {
  color: #6ce6d9;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}
.output-card h3 { margin: 40px 0 8px; font-size: 21px; }
.output-card p { margin: 0; color: #bcd0cd; font-size: 15px; }

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.steps::before {
  content: "";
  position: absolute;
  top: 27px; left: 5%; right: 5%;
  height: 2px;
  background: var(--line);
}
.step { position: relative; }
.step-number {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 55px; height: 55px;
  align-items: center; justify-content: center;
  border: 7px solid #fff;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 4px 0 var(--brand-pale);
}
.step h3 { margin: 24px 0 8px; font-size: 19px; }
.step p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }

.section-accent {
  background:
    linear-gradient(130deg, rgba(4,183,164,.06), transparent 45%),
    #f2fbf9;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}
.solution-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid #d4e8e4;
  border-radius: 19px;
  background: rgba(255,255,255,.85);
  transition: transform .2s ease, box-shadow .2s ease;
}
.solution-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.solution-top {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
}
.solution-top i { flex: 1; height: 1px; background: #cde6e2; }
.solution-card h3 { margin: 46px 0 9px; font-size: 23px; }
.solution-card p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }

.difference { background: #fff; }
.difference-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 75px;
  align-items: center;
}
.text-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 24px;
  color: var(--brand-dark);
  font-weight: 900;
  text-decoration: none;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.difference-points { display: grid; }
.difference-points article {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.difference-points article:first-child { border-top: 1px solid var(--line); }
.difference-points strong { font-size: 20px; }
.difference-points p { margin: 7px 0 0; color: var(--ink-soft); font-size: 15.5px; }

.team-section { background: var(--surface); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.person-card {
  padding: 37px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 13px 40px rgba(10,56,50,.06);
}
.person-avatar {
  display: flex;
  width: 72px; height: 72px;
  align-items: center; justify-content: center;
  border-radius: 20px;
  background: var(--brand);
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: .04em;
}
.person-role {
  margin-top: 28px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.person-card h3 { margin: 6px 0 14px; font-size: 31px; letter-spacing: -.03em; }
.person-card p { margin: 0; color: var(--ink-soft); }
.person-card ul {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: #2f4743;
  font-size: 14.5px;
  font-weight: 700;
}
.person-card li::before { content: "—"; margin-right: 9px; color: var(--brand); }

.cta-section { padding: 0 0 105px; background: var(--surface); }
.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 45px;
  align-items: center;
  padding: 55px;
  border-radius: 27px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 15%, rgba(255,255,255,.15), transparent 27%),
    var(--brand);
  box-shadow: 0 25px 60px rgba(4,183,164,.24);
}
.cta-card h2 { max-width: 780px; font-size: clamp(34px, 4.2vw, 53px); }
.cta-card > div > p:last-child { max-width: 720px; color: #e3fffb; }

.site-footer {
  padding: 66px 0 22px;
  background: var(--night);
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .6fr;
  gap: 60px;
}
.footer-brand { color: #fff; }
.footer-grid p { color: #a9c0bc; font-size: 14px; }
.footer-grid strong { display: block; margin-bottom: 10px; }
.footer-grid > div:last-child { display: flex; flex-direction: column; }
.footer-grid a:not(.brand) {
  width: max-content;
  margin: 3px 0;
  color: #b9cfcb;
  font-size: 14px;
  text-decoration: none;
}
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #819c98;
  font-size: 12px;
}

/* Contact */
.contact-hero {
  padding: 155px 0 80px;
  background:
    radial-gradient(circle at 88% 10%, rgba(4,183,164,.15), transparent 30%),
    var(--surface);
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: end;
}
.contact-hero h1 { font-size: clamp(42px, 5.5vw, 68px); }
.contact-hero .lead { max-width: 720px; margin-top: 22px; }
.contact-summary {
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.contact-summary strong { font-size: 19px; }
.contact-summary ol { margin: 17px 0 0; padding-left: 22px; color: var(--ink-soft); font-size: 14.5px; }
.contact-summary li + li { margin-top: 9px; }

.contact-section { padding-top: 80px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 30px;
  align-items: start;
}
.contact-form-card {
  padding: 39px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.contact-form-card h2 { margin: 0 0 26px; font-size: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 19px; }
.field label {
  display: block;
  margin-bottom: 7px;
  color: #26413d;
  font-size: 14px;
  font-weight: 800;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cfdedb;
  border-radius: 10px;
  background: #fbfdfc;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(4,183,164,.12);
}
.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 2px 0 23px;
  color: var(--ink-soft);
  font-size: 13px;
}
.consent input { margin-top: 4px; accent-color: var(--brand); }
.form-note { margin: 13px 0 0; color: #71827f; font-size: 12px; }
.hidden-field { display: none; }
.contact-aside { position: sticky; top: 105px; display: grid; gap: 18px; }
.contact-box {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--night);
  color: #fff;
}
.contact-box h2 { margin: 0 0 24px; font-size: 32px; }
.contact-box p { color: #b9ceca; }
.contact-mail {
  display: inline-block;
  margin-top: 14px;
  color: #72e9dd;
  font-weight: 800;
  word-break: break-word;
}
.contact-promise {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--brand-pale);
}
.contact-promise p { margin: 7px 0 0; color: var(--ink-soft); font-size: 14px; }

/* Thank you */
.thanks-body { min-height: 100vh; background: var(--surface); }
.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
}
.thanks-card {
  max-width: 650px;
  padding: 54px;
  border-radius: 28px;
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}
.thanks-card img { width: 92px; border-radius: 20px; }
.thanks-card .eyebrow { margin-top: 27px; }
.thanks-card h1 { margin: 0; font-size: clamp(38px, 6vw, 59px); line-height: 1.08; letter-spacing: -.045em; }
.thanks-card p:not(.eyebrow) { margin: 20px auto 28px; color: var(--ink-soft); max-width: 510px; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .hero-grid,
  .scan-grid,
  .difference-grid,
  .contact-hero-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 40px; }
  .hero-visual { min-height: 430px; max-width: 560px; width: 100%; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid div:nth-child(2) { border-right: 0; }
  .trust-grid div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-grid div:nth-child(3) { padding-left: 0; }
  .output-grid,
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .steps::before { top: 20px; bottom: 20px; left: 27px; right: auto; width: 2px; height: auto; }
  .step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding-bottom: 25px; }
  .step h3 { margin: 13px 0 5px; }
  .step-number { border-width: 5px; }
  .cta-card { grid-template-columns: 1fr; }
  .contact-aside { position: static; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .site-header { background: rgba(255,255,255,.95); }
  .nav-toggle {
    display: grid;
    width: 44px; height: 44px;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 10px;
    background: var(--brand-pale);
  }
  .nav-toggle span:not(.sr-only) { display: block; width: 21px; height: 2px; background: var(--ink); transition: .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: absolute;
    top: 76px; left: 20px; right: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav > a:not(.button) { padding: 10px; }
  .main-nav .button { margin-top: 5px; }
  .hero { padding-top: 125px; }
  .hero h1,
  .contact-hero h1 { font-size: clamp(41px, 12vw, 59px); }
  .section { padding: 80px 0; }
  .section-heading { margin-bottom: 38px; }
  .output-grid,
  .solutions-grid,
  .team-grid,
  .footer-grid,
  .form-row,
  .contact-aside { grid-template-columns: 1fr; }
  .output-card { min-height: 210px; }
  .trust-grid div { padding-inline: 15px; }
  .team-grid { gap: 18px; }
  .cta-card { padding: 36px 28px; }
  .footer-grid { gap: 28px; }
  .footer-bottom { gap: 15px; flex-direction: column; }
  .contact-hero { padding-top: 130px; }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 390px; }
  .visual-card-main { right: 0; min-height: 350px; padding: 27px; }
  .visual-card h2 { font-size: 32px; }
  .visual-card-top { left: -4px; }
  .visual-card-bottom { right: -4px; }
  .visual-flow { margin-top: 37px; }
  .trust-grid strong { font-size: 19px; }
  .scan-intro,
  .person-card,
  .contact-form-card,
  .contact-box { padding: 27px; }
  .benefit-card { grid-template-columns: 44px 1fr; padding: 21px; }
  .benefit-icon { width: 44px; height: 44px; }
  .section-heading h2,
  .difference h2,
  .cta-card h2 { font-size: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   KLIX — richer colour system and premium visual treatment
   ========================================================= */
:root {
  --brand: #09b8a6;
  --brand-dark: #047f77;
  --brand-light: #63e4d5;
  --brand-pale: #e7fbf7;
  --indigo: #5c63d8;
  --indigo-dark: #3f46af;
  --violet-pale: #efefff;
  --coral: #ff826e;
  --coral-pale: #fff0ec;
  --sun: #f4c54b;
  --sun-pale: #fff7dc;
  --sky: #36a7d8;
  --sky-pale: #e9f7fd;
  --ink: #12263a;
  --ink-soft: #536476;
  --surface: #f7fafc;
  --line: #dbe7eb;
  --night: #102a43;
  --shadow: 0 24px 70px rgba(18, 38, 58, .13);
  --shadow-soft: 0 13px 40px rgba(18, 38, 58, .09);
}

body {
  background:
    linear-gradient(180deg, rgba(231,251,247,.32), transparent 18%),
    var(--paper);
}

.site-header {
  background: rgba(255,255,255,.78);
  border-bottom-color: rgba(18,38,58,.04);
}
.site-header.scrolled,
.solid-header {
  background: rgba(255,255,255,.94);
  border-bottom-color: rgba(18,38,58,.08);
  box-shadow: 0 10px 32px rgba(18,38,58,.08);
}
.brand img {
  box-shadow: 0 10px 24px rgba(9,184,166,.20);
}
.main-nav > a:not(.button) { color: #355065; }
.main-nav > a:not(.button):hover { color: var(--indigo); }

.button {
  border: 0;
  background: linear-gradient(135deg, var(--brand) 0%, #24c9b7 52%, var(--indigo) 150%);
  box-shadow: 0 13px 30px rgba(9,184,166,.24);
}
.button:hover {
  border: 0;
  background: linear-gradient(135deg, var(--brand-dark), var(--indigo-dark));
  box-shadow: 0 18px 38px rgba(63,70,175,.25);
}
.button-secondary {
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(92,99,216,.22);
  color: var(--indigo-dark);
  box-shadow: 0 10px 25px rgba(92,99,216,.08);
}
.button-secondary:hover {
  background: var(--violet-pale);
  border: 1px solid rgba(92,99,216,.34);
  color: var(--indigo-dark);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--indigo-dark);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--coral));
}
.eyebrow-inverse { color: #b9fff7; }
.eyebrow-inverse::before { background: linear-gradient(90deg, #7ff7e9, #ffd77a); }

.hero {
  background:
    radial-gradient(circle at 12% 15%, rgba(255,130,110,.17), transparent 24%),
    radial-gradient(circle at 84% 8%, rgba(92,99,216,.20), transparent 26%),
    radial-gradient(circle at 72% 79%, rgba(9,184,166,.19), transparent 25%),
    linear-gradient(135deg, #fff9f6 0%, #f3fffc 42%, #f3f3ff 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -190px 32%;
  height: 310px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(9,184,166,.13), rgba(92,99,216,.10), rgba(255,130,110,.12));
  filter: blur(44px);
}
.hero h1 span {
  color: transparent;
  background: linear-gradient(105deg, var(--brand-dark) 0%, var(--indigo) 56%, var(--coral) 115%);
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-proof span:nth-child(2)::before { background: var(--indigo); }
.hero-proof span:nth-child(3)::before { background: var(--coral); }
.hero-proof span:nth-child(4)::before { background: var(--sun); }

.visual-card-main {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.88);
  background:
    radial-gradient(circle at 86% 10%, rgba(255,130,110,.22), transparent 28%),
    radial-gradient(circle at 18% 94%, rgba(9,184,166,.23), transparent 30%),
    linear-gradient(150deg, rgba(255,255,255,.96), rgba(241,242,255,.94));
  box-shadow: 0 34px 85px rgba(46,61,108,.18);
}
.visual-card-main::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -115px;
  bottom: -105px;
  border: 36px solid rgba(92,99,216,.12);
  border-radius: 50%;
}
.visual-label { color: var(--indigo-dark); }
.visual-flow i { background: linear-gradient(90deg, var(--brand), var(--indigo), var(--coral)); }
.visual-card-top { background: linear-gradient(135deg, var(--night), #1b4268); }
.visual-card-bottom { background: linear-gradient(135deg, var(--coral), #ff9d6d); }
.visual-card-bottom small { color: #fff4e7; }
.hero-orb-one { border-color: rgba(92,99,216,.10); }
.hero-orb-two { background: rgba(255,130,110,.10); }

.trust-strip {
  background:
    radial-gradient(circle at 18% 30%, rgba(9,184,166,.22), transparent 23%),
    radial-gradient(circle at 83% 75%, rgba(92,99,216,.24), transparent 24%),
    linear-gradient(115deg, #102a43, #123d4b 50%, #27366d);
}
.trust-grid div:nth-child(2) strong { color: #b9bbff; }
.trust-grid div:nth-child(3) strong { color: #ffb5a7; }
.trust-grid div:nth-child(4) strong { color: #f8d66f; }

.section-light {
  background:
    radial-gradient(circle at 91% 12%, rgba(92,99,216,.08), transparent 24%),
    radial-gradient(circle at 8% 88%, rgba(9,184,166,.09), transparent 23%),
    linear-gradient(180deg, #f8fbff, #f6fbf9);
}
.scan-intro {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 0%, rgba(99,228,213,.18), transparent 26%),
    linear-gradient(145deg, #102a43 0%, #153d50 52%, #30427c 125%);
  box-shadow: 0 28px 70px rgba(16,42,67,.22);
}
.scan-intro::after {
  content: "";
  position: absolute;
  right: -68px;
  bottom: -75px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 31px solid rgba(255,255,255,.06);
}
.number-mark { background: linear-gradient(135deg, var(--brand), var(--indigo)); }

.benefit-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18,38,58,.08);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 999px;
  background: var(--brand);
}
.benefit-card:nth-child(2)::after { background: var(--indigo); }
.benefit-card:nth-child(3)::after { background: var(--coral); }
.benefit-card:nth-child(1) .benefit-icon { background: var(--brand-pale); color: var(--brand-dark); }
.benefit-card:nth-child(2) .benefit-icon { background: var(--violet-pale); color: var(--indigo-dark); }
.benefit-card:nth-child(3) .benefit-icon { background: var(--coral-pale); color: #c55343; }

.scan-output {
  background:
    radial-gradient(circle at 95% 5%, rgba(255,130,110,.30), transparent 26%),
    radial-gradient(circle at 7% 95%, rgba(9,184,166,.25), transparent 24%),
    linear-gradient(125deg, #102a43 0%, #173f55 46%, #343f83 100%);
}
.output-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(255,255,255,.13);
  background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
  transition: transform .22s ease, background .22s ease;
}
.output-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.13); }
.output-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(99,228,213,.13);
}
.output-card:nth-child(2)::after,
.output-card:nth-child(5)::after { background: rgba(185,187,255,.16); }
.output-card:nth-child(3)::after,
.output-card:nth-child(6)::after { background: rgba(255,181,167,.16); }
.output-card:nth-child(1) > span,
.output-card:nth-child(4) > span { color: #7ff7e9; }
.output-card:nth-child(2) > span,
.output-card:nth-child(5) > span { color: #bfc1ff; }
.output-card:nth-child(3) > span,
.output-card:nth-child(6) > span { color: #ffc0b4; }

.steps::before {
  background: linear-gradient(90deg, var(--brand), var(--indigo), var(--coral), var(--sun));
  opacity: .38;
}
.step:nth-child(1) .step-number { background: var(--brand); }
.step:nth-child(2) .step-number { background: var(--sky); }
.step:nth-child(3) .step-number { background: var(--indigo); }
.step:nth-child(4) .step-number { background: var(--coral); }
.step:nth-child(5) .step-number { background: var(--sun); color: #5a4311; }
.step:nth-child(1) .step-number { box-shadow: 0 4px 0 var(--brand-pale); }
.step:nth-child(2) .step-number { box-shadow: 0 4px 0 var(--sky-pale); }
.step:nth-child(3) .step-number { box-shadow: 0 4px 0 var(--violet-pale); }
.step:nth-child(4) .step-number { box-shadow: 0 4px 0 var(--coral-pale); }
.step:nth-child(5) .step-number { box-shadow: 0 4px 0 var(--sun-pale); }

.section-accent {
  background:
    radial-gradient(circle at 7% 16%, rgba(9,184,166,.11), transparent 22%),
    radial-gradient(circle at 94% 14%, rgba(92,99,216,.11), transparent 24%),
    radial-gradient(circle at 78% 92%, rgba(255,130,110,.10), transparent 22%),
    linear-gradient(160deg, #f4fffc 0%, #f4f4ff 55%, #fff7f3 100%);
}
.solution-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18,38,58,.08);
  background: rgba(255,255,255,.90);
  box-shadow: var(--shadow-soft);
}
.solution-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--brand);
}
.solution-card:nth-child(2)::before { background: var(--indigo); }
.solution-card:nth-child(3)::before { background: var(--coral); }
.solution-card:nth-child(4)::before { background: var(--sky); }
.solution-card:nth-child(5)::before { background: var(--sun); }
.solution-card:nth-child(6)::before { background: linear-gradient(90deg, var(--brand), var(--indigo)); }
.solution-card:nth-child(1) .solution-top { color: var(--brand-dark); }
.solution-card:nth-child(2) .solution-top { color: var(--indigo-dark); }
.solution-card:nth-child(3) .solution-top { color: #c55343; }
.solution-card:nth-child(4) .solution-top { color: #187ca8; }
.solution-card:nth-child(5) .solution-top { color: #9b7114; }
.solution-card:nth-child(6) .solution-top { color: var(--indigo-dark); }
.solution-card:nth-child(1) .solution-top i { background: #bfece6; }
.solution-card:nth-child(2) .solution-top i { background: #d6d8ff; }
.solution-card:nth-child(3) .solution-top i { background: #ffd6ce; }
.solution-card:nth-child(4) .solution-top i { background: #caeefa; }
.solution-card:nth-child(5) .solution-top i { background: #fbe8a9; }

.difference {
  background:
    linear-gradient(90deg, rgba(231,251,247,.54), transparent 38%),
    #fff;
}
.difference-points article {
  position: relative;
  padding-left: 24px;
}
.difference-points article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 31px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 7px var(--brand-pale);
}
.difference-points article:nth-child(2)::before { background: var(--indigo); box-shadow: 0 0 0 7px var(--violet-pale); }
.difference-points article:nth-child(3)::before { background: var(--coral); box-shadow: 0 0 0 7px var(--coral-pale); }
.text-link { color: var(--indigo-dark); }

.team-section {
  background:
    radial-gradient(circle at 14% 20%, rgba(9,184,166,.09), transparent 25%),
    radial-gradient(circle at 86% 70%, rgba(92,99,216,.10), transparent 28%),
    linear-gradient(180deg, #f8fbff, #f7fafc);
}
.person-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(18,38,58,.08);
  box-shadow: var(--shadow-soft);
}
.person-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--brand), var(--sky));
}
.person-card:nth-child(2)::before { background: linear-gradient(90deg, var(--indigo), var(--coral)); }
.person-card:nth-child(1) .person-avatar { background: linear-gradient(135deg, var(--brand), var(--sky)); }
.person-card:nth-child(2) .person-avatar { background: linear-gradient(135deg, var(--indigo), var(--coral)); }
.person-card:nth-child(2) .person-role { color: var(--indigo-dark); }

.cta-section {
  background:
    linear-gradient(180deg, #f7fafc 0%, #eff9f7 100%);
}
.cta-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 7%, rgba(255,255,255,.20), transparent 23%),
    radial-gradient(circle at 8% 95%, rgba(255,255,255,.13), transparent 27%),
    linear-gradient(115deg, #08af9f 0%, #4f62d3 58%, #ff826e 125%);
  box-shadow: 0 28px 74px rgba(63,70,175,.25);
}
.cta-card::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -145px;
  width: 320px;
  height: 320px;
  border: 55px solid rgba(255,255,255,.10);
  border-radius: 50%;
}
.cta-card > * { position: relative; z-index: 1; }

.site-footer {
  background:
    radial-gradient(circle at 12% 20%, rgba(9,184,166,.16), transparent 22%),
    radial-gradient(circle at 89% 78%, rgba(92,99,216,.20), transparent 22%),
    linear-gradient(120deg, #102a43, #183c4b 48%, #27356b);
}

/* Contact page colour refinement */
.contact-hero {
  background:
    radial-gradient(circle at 10% 12%, rgba(255,130,110,.15), transparent 25%),
    radial-gradient(circle at 88% 8%, rgba(92,99,216,.18), transparent 27%),
    linear-gradient(140deg, #fff8f5, #f2fffc 48%, #f2f3ff);
}
.contact-summary {
  border: 1px solid rgba(92,99,216,.10);
  box-shadow: 0 24px 65px rgba(46,61,108,.14);
}
.contact-form-card {
  border-color: rgba(18,38,58,.08);
  box-shadow: 0 24px 70px rgba(18,38,58,.12);
}
.field input,
.field select,
.field textarea {
  border-color: #d6e1e8;
  background: linear-gradient(180deg, #fff, #f9fcfd);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(92,99,216,.11);
}
.contact-box {
  background:
    radial-gradient(circle at 90% 8%, rgba(255,130,110,.20), transparent 27%),
    linear-gradient(145deg, #102a43, #27366d);
  box-shadow: 0 24px 65px rgba(16,42,67,.20);
}
.contact-mail { color: #8bf6e9; }
.contact-promise {
  border-color: #d9dafe;
  background: linear-gradient(135deg, var(--brand-pale), var(--violet-pale));
}

.thanks-body {
  background:
    radial-gradient(circle at 20% 20%, rgba(9,184,166,.14), transparent 25%),
    radial-gradient(circle at 80% 80%, rgba(92,99,216,.16), transparent 26%),
    linear-gradient(135deg, #f5fffc, #f6f4ff);
}
.thanks-card { border: 1px solid rgba(92,99,216,.10); }

@media (max-width: 780px) {
  .site-header { background: rgba(255,255,255,.95); }
  .main-nav { border-color: rgba(92,99,216,.12); }
}
