.tile-link { display: inline-flex; align-items: center; gap: 8px; color: var(--engine-color, var(--cyan)); font-weight: 600; }
.tile-link span { transition: transform .2s; }
.tile-link:hover span { transform: translateX(-4px); }

.dl-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* Why — differentiators */
.why-section {
  background: var(--navy);
  color: var(--cloud);
}
.why-section .eyebrow { color: var(--amber); }
.why-head { margin-bottom: 30px; }
.why-head-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 8vw, 3.2rem);
  letter-spacing: -.03em;
  line-height: 1.1;
}
.why-head-copy p {
  margin: 0;
  max-width: 34rem;
  color: var(--text-2);
  line-height: 1.7;
}
.why-grid { display: grid; gap: 13px; }
.why-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 6px;
  min-height: 118px;
  padding: 20px 18px;
  border: 1px solid rgba(143, 161, 181, .34);
  border-radius: 10px;
  background: rgba(10, 36, 66, .46);
  align-content: center;
}
.why-card.is-featured {
  min-height: 185px;
  border-color: rgba(143, 161, 181, .42);
  background:
    radial-gradient(circle at 0 0, transparent 70px, rgba(255, 176, 0, .12) 71px, transparent 73px),
    rgba(10, 36, 66, .56);
}
.why-card h3 {
  grid-column: 2;
  margin: 0;
  color: var(--cloud);
  font-size: 1.08rem;
  line-height: 1.35;
}
.why-card.is-featured h3 {
  color: var(--cloud);
  font-size: clamp(1.35rem, 5vw, 1.9rem);
}
.why-card.is-featured h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 10px;
  background: var(--amber);
}
.why-card p {
  grid-column: 2;
  margin: 0;
  color: var(--text-2);
  font-size: .88rem;
  line-height: 1.6;
}
.why-icon {
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  margin-top: 2px;
  position: relative;
  flex: 0 0 auto;
}
.why-icon svg,
.process-icon svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 7px;
  fill: none;
  stroke: var(--amber);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-icon svg { padding: 5px; }
.process-icon svg { padding: 14px; }
.why-icon::before,
.why-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border: 1.5px solid var(--amber);
}
.why-icon:has(svg)::before,
.why-icon:has(svg)::after,
.process-icon:has(svg)::before,
.process-icon:has(svg)::after { display: none; }
.why-icon--target::before {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.why-icon--target::after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  border: 0;
}
.why-icon--rocket::before {
  width: 10px;
  height: 16px;
  border-radius: 10px 10px 2px 2px;
  transform: rotate(-20deg);
}
.why-icon--rocket::after {
  width: 8px;
  height: 6px;
  border-top: 0;
  top: auto;
  bottom: 8px;
  transform: rotate(-20deg);
}
.why-icon--puzzle::before {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  left: 8px;
}
.why-icon--puzzle::after {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  right: 8px;
  left: auto;
}
.why-icon--gear::before {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border-style: dashed;
}
.why-icon--gear::after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  border: 0;
}
.why-icon--chart::before {
  width: 16px;
  height: 12px;
  border: 0;
  border-bottom: 1.5px solid var(--amber);
  border-left: 1.5px solid var(--amber);
  background:
    linear-gradient(var(--amber), var(--amber)) 3px 7px / 2px 5px no-repeat,
    linear-gradient(var(--amber), var(--amber)) 7px 4px / 2px 8px no-repeat,
    linear-gradient(var(--amber), var(--amber)) 11px 1px / 2px 11px no-repeat;
}
.why-icon--chart::after { display: none; }

/* Process timeline */
.process-section { background: var(--cloud); color: var(--charcoal); }
.process-section .eyebrow { color: var(--amber); }
.process-head {
  margin-bottom: 28px;
  text-align: right;
}
.process-head h2 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 3.1rem);
  letter-spacing: -.03em;
  color: var(--navy);
  line-height: 1.1;
}
.process-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  position: relative;
}
.process-timeline::before {
  content: "";
  position: absolute;
  top: 48px;
  bottom: 48px;
  right: 61px;
  width: 1px;
  background: rgba(255, 176, 0, .55);
}
.process-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px 46px;
  gap: 8px;
  align-items: center;
  min-height: 92px;
  padding: 10px 12px 10px 18px;
  border: 1px solid #e0e6ec;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 12px 34px -31px var(--navy);
  position: relative;
  direction: ltr;
}
.process-step::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 57px;
  width: 7px;
  height: 7px;
  border: 3px solid var(--cloud);
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 1px rgba(255, 176, 0, .45);
  transform: translateY(-50%);
}
.process-step-copy {
  direction: rtl;
  text-align: right;
}
.process-step-copy h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  color: var(--navy);
}
.process-step-copy p {
  margin: 0;
  color: #536174;
  font-size: .9rem;
  line-height: 1.55;
}
.process-num {
  display: grid;
  place-items: center;
  align-self: stretch;
  font: 700 1.3rem/1 var(--font-display, var(--font-body));
  color: var(--navy);
  letter-spacing: .02em;
  text-align: center;
  direction: ltr;
}
.process-icon {
  width: 58px;
  height: 58px;
  border-radius: 7px;
  background: var(--navy);
  position: relative;
  z-index: 1;
}
.process-icon::before,
.process-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border: 1.5px solid var(--amber);
}
.process-icon--diagnose::before {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: -2px;
}
.process-icon--diagnose::after {
  width: 8px;
  height: 1.5px;
  border: 0;
  background: var(--amber);
  transform: rotate(45deg);
  top: 10px;
  left: 8px;
}
.process-icon--direction::before {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.process-icon--direction::after {
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-bottom-color: var(--amber);
  border-top: 0;
  top: -2px;
  transform: rotate(30deg);
}
.process-icon--launch::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent var(--amber);
  left: 4px;
}
.process-icon--launch::after { display: none; }
.process-icon--improve::before {
  width: 16px;
  height: 12px;
  border: 0;
  border-bottom: 1.5px solid var(--amber);
  border-left: 1.5px solid var(--amber);
  background:
    linear-gradient(var(--amber), var(--amber)) 3px 7px / 2px 5px no-repeat,
    linear-gradient(var(--amber), var(--amber)) 7px 4px / 2px 8px no-repeat,
    linear-gradient(var(--amber), var(--amber)) 11px 1px / 2px 11px no-repeat;
}
.process-icon--improve::after { display: none; }

@media (min-width: 700px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .why-card.is-featured {
    grid-column: 1 / -1;
    padding: 28px 24px;
  }
  .why-card.is-featured h3 { font-size: clamp(1.4rem, 3vw, 1.85rem); }
  .process-timeline {
    max-width: 950px;
  }
  .process-step {
    grid-template-columns: minmax(0, 1fr) 76px 64px;
    gap: 12px;
    min-height: 108px;
    padding: 12px 16px 12px 28px;
  }
  .process-icon {
    width: 76px;
    height: 76px;
  }
  .process-timeline::before { right: 82px; }
  .process-step::after { right: 78px; }
}

@media (min-width: 1000px) {
  .why-section .container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px 14px;
    align-items: stretch;
  }
  .why-head {
    grid-column: 1 / 3;
    grid-row: 1;
    align-self: center;
    margin: 0;
    padding: 18px 24px 18px 0;
  }
  .why-grid {
    display: contents;
  }
  .why-card.is-featured {
    grid-column: 3 / 5;
    grid-row: 1;
    min-height: 265px;
    padding: 32px 32px;
  }
  .why-card.is-featured .why-icon { width: 52px; height: 52px; }
  .why-card:not(.is-featured) {
    grid-row: 2;
    display: block;
    min-height: 240px;
    padding: 28px 18px 24px;
    text-align: center;
  }
  .why-card:not(.is-featured) .why-icon {
    margin: 0 auto 22px;
  }
  .why-card:not(.is-featured) h3 {
    margin-bottom: 12px;
    font-size: 1.12rem;
  }
  .why-card:not(.is-featured) h3::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    margin: 12px auto 0;
    background: var(--amber);
  }
  .process-head,
  .process-timeline {
    max-width: 1000px;
  }
}

.contact-section { background: var(--cloud); color: var(--charcoal); }
.contact-intro { max-width: 780px; margin: 0 auto 42px; text-align: center; }
.contact-intro .eyebrow { justify-content: center; }
.contact-intro .eyebrow::before { display: none; }
.contact-intro h2 { margin: 0 0 16px; font-size: clamp(2.25rem, 10vw, 4.8rem); line-height: 1; }
.contact-intro > p { max-width: 650px; margin: 0 auto 22px; color: #536174; }
.contact-direct { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px; }
.contact-direct a { color: #007da9; font-weight: 600; }
.fit-form { max-width: 900px; margin: 0 auto; padding: 25px 20px; border-radius: 18px; background: var(--navy); color: var(--cloud); display: grid; gap: 16px; }
.fit-form .field { display: flex; flex-direction: column; gap: 6px; }
.fit-form label { color: var(--text-2); font-size: .82rem; font-weight: 500; }
.fit-form input,.fit-form textarea { width: 100%; padding: 13px; border: 1px solid var(--border-subtle); border-radius: 8px; background: var(--navy-2); color: var(--cloud); font-size: 1rem; }
.fit-form textarea { min-height: 90px; resize: vertical; }
.fit-form input:focus,.fit-form textarea:focus { outline: 2px solid var(--cyan); outline-offset: 1px; }
.privacy-check { display: flex; align-items: flex-start; gap: 8px; }
.privacy-check input { width: 18px; flex: 0 0 18px; margin-top: 3px; }
.privacy-check a { color: var(--cyan); text-decoration: underline; }
.fit-form .btn { width: 100%; }
.form-status { min-height: 18px; text-align: center; color: var(--cyan); font-size: .82rem; }
.form-status.is-error { color: #ff8b9a; }
.form-note { color: var(--text-3); font-size: .75rem; text-align: center; }

@media (min-width: 700px) {
  .fit-form { grid-template-columns: 1fr 1fr; padding: 36px; }
  .fit-form .field-wide { grid-column: 1 / -1; }
}
