/* Tendovia service pages — shared styles (tokens mirror index.html) */
:root {
  --navy: #0b2a4a;
  --blue: #2e7df6;
  --sky: #9dc4f5;
  --slate: #5b6b7b;
  --mist: #f4f8fd;
  --white: #ffffff;
  --display: "Poppins", sans-serif;
  --body: "Inter", sans-serif;
  --maxw: 1080px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.15;
  font-weight: 600;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 16px;
  padding: 13px 26px;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    transform 0.08s ease,
    box-shadow 0.15s ease;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  box-shadow: 0 8px 22px rgba(46, 125, 246, 0.32);
  transform: translateY(-1px);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(11, 42, 74, 0.18);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(11, 42, 74, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
}
.logo .futur {
  color: var(--navy);
}
.logo .edge {
  color: var(--blue);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-size: 15px;
  color: var(--slate);
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--navy);
}
.nav-links .btn {
  padding: 9px 18px;
  font-size: 15px;
}
.nav-links a.btn-primary {
  color: var(--white);
}

/* Breadcrumb */
.crumb {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 24px 0;
  font-size: 13px;
  color: var(--slate);
}
.crumb a {
  color: var(--slate);
}
.crumb a:hover {
  color: var(--navy);
}
.crumb span[aria-current] {
  color: var(--navy);
  font-weight: 500;
}
.crumb .sep {
  color: var(--sky);
  padding: 0 6px;
}

/* Hero */
.hero {
  padding: 54px 0 48px;
  background: linear-gradient(180deg, var(--mist) 0%, var(--white) 100%);
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--blue);
  background: rgba(46, 125, 246, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 46px;
  color: var(--navy);
  margin-bottom: 18px;
  max-width: 18em;
}
.hero h1 .hl {
  color: var(--blue);
}
.hero .subhead {
  font-size: 19px;
  color: var(--slate);
  margin-bottom: 26px;
  max-width: 34em;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Sections */
section.block {
  padding: 64px 0;
}
section.alt {
  background: var(--mist);
}
.sec-head {
  max-width: 46em;
  margin: 0 auto 40px;
}
.sec-head.center {
  text-align: center;
}
.sec-head h2 {
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 14px;
}
.sec-head p {
  font-size: 18px;
  color: var(--slate);
}
.lead-p {
  font-size: 18px;
  color: var(--slate);
  max-width: 46em;
}
.lead-p + .lead-p {
  margin-top: 14px;
}

/* Generic deliverable cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cards.two {
  grid-template-columns: repeat(2, 1fr);
}
.card {
  background: var(--white);
  border: 1px solid rgba(11, 42, 74, 0.09);
  border-radius: 16px;
  padding: 26px 22px;
}
section.alt .card {
  background: var(--white);
}
.card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.card p {
  font-size: 14.5px;
  color: var(--slate);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.steps.three {
  grid-template-columns: repeat(3, 1fr);
}
.step {
  background: var(--white);
  border: 1px solid rgba(11, 42, 74, 0.09);
  border-radius: 16px;
  padding: 26px 22px;
}
section.alt .step {
  background: var(--white);
}
.step .n {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(46, 125, 246, 0.12);
  color: var(--blue);
  font-family: var(--display);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.step h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: var(--slate);
}

/* Proof cards */
.built {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.built.two {
  grid-template-columns: repeat(2, 1fr);
}
.built-card {
  background: var(--white);
  border: 1px solid rgba(11, 42, 74, 0.09);
  border-radius: 16px;
  padding: 26px 24px;
}
section.alt .built-card {
  background: var(--white);
}
.built-card .tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: rgba(46, 125, 246, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 12px;
}
.built-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.built-card p {
  font-size: 14.5px;
  color: var(--slate);
}

/* Cross-links to sibling services */
.crosslinks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.xcard {
  display: block;
  background: var(--white);
  border: 1px solid rgba(11, 42, 74, 0.1);
  border-radius: 14px;
  padding: 20px 18px;
  transition:
    border-color 0.15s ease,
    transform 0.08s ease;
}
.xcard:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}
.xcard .k {
  font-family: var(--display);
  font-weight: 600;
  color: var(--blue);
  font-size: 13px;
  margin-bottom: 8px;
}
.xcard h3 {
  font-size: 16px;
  margin-bottom: 5px;
}
.xcard p {
  font-size: 13.5px;
  color: var(--slate);
}

/* CTA band (navy) */
.cta {
  background: var(--navy);
  color: #fff;
}
.cta-inner {
  text-align: center;
  max-width: 40em;
  margin: 0 auto;
}
.cta-inner h2 {
  font-size: 30px;
  margin-bottom: 14px;
}
.cta-inner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}
.cta-inner .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.cta-inner .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
}
.cta-inner .alt-contact {
  display: block;
  margin-top: 16px;
  font-size: 15px;
  color: var(--sky);
}

/* Footer */
footer {
  padding: 40px 0;
  border-top: 1px solid rgba(11, 42, 74, 0.08);
}
.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.foot .logo {
  font-size: 19px;
}
.foot p {
  font-size: 14px;
  color: var(--slate);
}
.foot-services {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}
.foot-services a {
  color: var(--slate);
}
.foot-services a:hover {
  color: var(--navy);
}

@media (max-width: 860px) {
  .nav-links a:not(.btn) {
    display: none;
  }
  .hero h1 {
    font-size: 34px;
  }
  .sec-head h2,
  .cta-inner h2 {
    font-size: 24px;
  }
  .cards,
  .cards.two,
  .steps,
  .steps.three,
  .built,
  .built.two,
  .crosslinks {
    grid-template-columns: 1fr;
  }
}
