:root {
  --ink: #18202f;
  --muted: #5d6675;
  --paper: #f7f4ef;
  --surface: #ffffff;
  --line: #ded8cf;
  --teal: #167c80;
  --teal-dark: #0b4d52;
  --coral: #b64a30;
  --gold: #d3a243;
  --shadow: 0 20px 70px rgba(24, 32, 47, 0.16);
}

* {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

.skip-link {
  position: absolute;
  z-index: 20;
  top: -60px;
  right: 16px;
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  color: #fff;
  background: var(--teal-dark);
  font-weight: 700;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 0;
}

body {
  margin: 0;
  font-family: "Assistant", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

section[id] {
  scroll-margin-top: 84px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 64px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(10, 19, 32, 0.72), rgba(10, 19, 32, 0));
  transition: background 200ms ease;
}

.site-header.scrolled {
  background: rgba(10, 19, 32, 0.92);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
}

.site-nav {
  gap: clamp(14px, 3vw, 34px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 18, 31, 0.1), rgba(10, 18, 31, 0.78)),
    linear-gradient(0deg, rgba(10, 18, 31, 0.5), rgba(10, 18, 31, 0.08));
}

.hero-inner {
  position: relative;
  width: min(720px, calc(100% - 40px));
  margin-inline: auto clamp(20px, 7vw, 96px);
  padding-block: 120px 70px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #ffb49c;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 5.6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.22;
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.hero-actions,
.contact {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary,
.contact-button {
  color: #fff;
  background: var(--coral);
}

.whatsapp-button {
  gap: 8px;
  color: #fff;
  background: #075e54;
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: clamp(56px, 9vw, 110px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.intro p:last-child {
  color: var(--muted);
  font-size: 1.2rem;
}

.founder {
  grid-column: 1 / -1;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.founder-name {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 1.15rem;
  font-weight: 800;
}

.founder-bio {
  max-width: 860px;
  margin-bottom: 0;
  color: var(--muted);
}

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

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

.fit {
  border-top: 1px solid var(--line);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fit-grid article {
  padding: 26px 0;
  border-top: 3px solid var(--teal);
}

.fit-grid article > span {
  color: var(--coral);
  font-weight: 800;
}

.fit-grid h3 {
  margin-top: 28px;
}

.fit-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(24, 32, 47, 0.04);
}

.service-number {
  display: block;
  margin-bottom: 42px;
  color: var(--teal);
  font-weight: 800;
}

.service-card p,
.steps span,
.proof p,
.contact p {
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

.process-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--teal-dark);
}

.process-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1000 / 548;
  object-fit: cover;
}

.steps {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  gap: 5px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.steps strong {
  font-size: 1.15rem;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  max-width: none;
  padding-inline: clamp(20px, 5vw, 64px);
  background: var(--teal-dark);
  color: #fff;
}

.proof > div {
  padding: clamp(28px, 4vw, 54px);
  background: #103f43;
}

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

.metric {
  margin-bottom: 10px;
  color: var(--gold) !important;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
}

.contact {
  position: relative;
  overflow: hidden;
  justify-content: space-between;
  padding: clamp(34px, 6vw, 62px);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(24, 32, 47, 0.94), rgba(24, 32, 47, 0.72)),
    url("assets/digitization-bg.webp") center / cover no-repeat var(--ink);
}

.deliverables {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
}

.deliverables-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.deliverables-list li {
  display: grid;
  grid-template-columns: minmax(110px, 0.35fr) 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.deliverables-list span {
  color: var(--muted);
}

.contact-actions {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.contact-email {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-email:hover {
  color: #fff;
}

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

.contact .section-kicker {
  color: var(--gold);
}

.contact h2 {
  margin-bottom: 14px;
}

.contact p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.18rem;
}

.site-header.solid {
  position: static;
  color: var(--ink);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.site-header.solid .brand-mark {
  color: var(--teal);
  border-color: var(--teal);
}

.site-header.solid .site-nav {
  color: var(--ink);
}

.prose {
  max-width: 760px;
}

.prose h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.prose h2 {
  margin-top: 40px;
  font-size: 1.5rem;
}

.prose a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.92rem;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-inner {
    width: calc(100% - 32px);
    margin-inline: auto;
    padding-block: 112px 52px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.9rem);
  }

  .intro,
  .process,
  .service-grid,
  .fit-grid,
  .deliverables,
  .proof {
    grid-template-columns: 1fr;
  }

  .deliverables-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .service-card {
    min-height: auto;
  }

  .service-number {
    margin-bottom: 24px;
  }

  .proof {
    padding-inline: 0;
  }

  .contact {
    align-items: flex-start;
  }

  .contact-actions {
    justify-items: start;
  }

  .site-footer {
    flex-direction: column;
  }
}
