:root {
  --ink: #17151f;
  --dark: #17151f;
  --dark-text: #ffffff;
  --ink-soft: #2a2734;
  --paper: #f8f7f3;
  --paper-2: #eeebfb;
  --white: #ffffff;
  --muted: #66616e;
  --muted-light: #b9b4c2;
  --line: rgba(23, 21, 31, 0.16);
  --line-light: rgba(255, 255, 255, 0.16);
  --accent: #6546d9;
  --accent-dark: #4f34ba;
  --violet: #6546d9;
  --accent-light: #c9c1f4;
  --green: #72d5a3;
  --shadow: 0 24px 70px rgba(23, 21, 31, 0.12);
  --wide: 1480px;
  --radius: 24px;
  --header-height: 76px;
  --font-base: 16px;
  --font-hero-max: 50px;
  --font-section-max: 36px;
  --section-space: 56px;
  --font-family: Arial, Helvetica, sans-serif;
  --success: #2f7253;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-family);
  font-size: clamp(15px, 0.12vw + 14.8px, var(--font-base));
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
figure { margin: 0; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 16px;
  background: var(--white);
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.wide-shell {
  width: min(100%, var(--wide));
  margin-inline: auto;
  padding-inline: clamp(22px, 3.6vw, 58px);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.site-header.is-scrolled {
  background: var(--paper);
  box-shadow: 0 12px 40px rgba(23, 21, 31, 0.08);
  backdrop-filter: blur(16px);
}
.site-header__inner {
  width: min(100%, var(--wide));
  height: 100%;
  margin-inline: auto;
  padding-inline: clamp(22px, 3.6vw, 58px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 2.8vw, 44px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  font-weight: 900;
  letter-spacing: .2em;
}
.brand__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--dark);
  overflow: hidden;
}
.brand__mark::before {
  content: "";
  width: 24px;
  height: 8px;
  background: var(--accent);
  transform: translateY(-6px);
}
.brand__mark span {
  position: absolute;
  top: 16px;
  width: 8px;
  height: 22px;
  background: var(--accent);
}
.brand__mark::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
}
.brand__name { font-size: 17px; }
.brand__image { width: auto; max-width: 175px; height: 42px; object-fit: contain; }
.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.1vw, 36px);
  font-size: 14px;
  font-weight: 750;
}
.site-nav a { position: relative; padding: 16px 0; }
.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 9px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; }

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 11px 20px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--dark-text);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(23, 21, 31, 0.15);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-3px); background: var(--accent-dark); border-color: var(--accent-dark); }
.button:focus-visible,
.text-link:focus-visible,
.nav-toggle:focus-visible,
input:focus-visible,
textarea:focus-visible,
.faq-item button:focus-visible { outline: 3px solid var(--violet); outline-offset: 4px; }
.button--small { min-height: 44px; padding: 9px 18px; font-size: 13px; }
.button--full { width: 100%; justify-content: space-between; min-height: 50px; padding-inline: 20px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  padding: 8px 0;
  border: 0;
  border-bottom: 2px solid currentColor;
  background: none;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(4px, -2px); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.35;
  text-transform: uppercase;
}
.eyebrow span { flex: 0 0 auto; width: 32px; height: 2px; background: currentColor; }
.eyebrow--light { color: var(--accent-light); }

h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0; letter-spacing: -.045em; }
h1 { font-size: clamp(36px, 3.6vw, var(--font-hero-max)); line-height: 1.04; }
h2 { font-size: clamp(27px, 2.4vw, var(--font-section-max)); line-height: 1.12; }
h3 { line-height: 1.12; }

.hero {
  position: relative;
  min-height: auto;
  padding: calc(var(--header-height) + 34px) 0 42px;
  background: var(--paper);
  overflow: hidden;
}
.hero__ambient { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero__ambient--one {
  top: 110px;
  left: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(141, 124, 255, .24);
}
.hero__ambient--two {
  right: -80px;
  bottom: 70px;
  width: 250px;
  height: 250px;
  background: rgba(255, 107, 53, .12);
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
}
.hero__copy { padding-top: 14px; }
.hero h1 { max-width: 1000px; }
.hero__accent {
  max-width: 740px;
  margin: 14px 0 0;
  color: var(--accent-dark);
  font-size: clamp(17px, 1vw, 20px);
  font-weight: 780;
  line-height: 1.28;
  letter-spacing: -.02em;
}
.hero__description {
  max-width: 700px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(15px, .25vw + 14.5px, 17px);
  line-height: 1.55;
}
.hero__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 22px; }
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: #484350;
  font-size: 14px;
  font-weight: 760;
}
.hero__badges li { display: flex; align-items: center; gap: 8px; }
.hero__badges span { color: #128553; }
.hero__media {
  position: relative;
  min-height: 420px;
  border-radius: 30px 30px 30px 94px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(23, 21, 31, .78));
  pointer-events: none;
}
.hero__media img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.hero__media figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  color: var(--dark-text);
}
.hero__caption-index {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}
.hero__media strong { display: block; font-size: 16px; line-height: 1.3; }
.hero__media figcaption p { margin: 5px 0 0; color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.45; }

.capability-band {
  overflow: hidden;
  padding: 13px 0;
  background: var(--dark);
  color: var(--dark-text);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.capability-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}
.capability-track span {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-right: 28px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.capability-track i { color: var(--accent); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: clamp(40px, 4vw, var(--section-space)) 0; }
.section-intro--split {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, .68fr);
  align-items: end;
  gap: clamp(30px, 4vw, 58px);
}
.section-intro h2 { max-width: 1050px; }
.section-intro > p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, .2vw + 14.5px, 16px);
  line-height: 1.55;
}
.section-intro--light { color: var(--white); }
.section-intro--light > p { color: var(--muted-light); }

.section--problems { background: var(--paper); }
.problem-list { margin-top: clamp(30px, 3.5vw, 46px); border-top: 1px solid var(--line); }
.problem-card {
  display: grid;
  grid-template-columns: 58px minmax(280px, 1fr) minmax(240px, .65fr);
  gap: clamp(18px, 2.5vw, 38px);
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .25s ease, background .25s ease;
}
.problem-card:hover { padding-inline: 24px; background: rgba(255,255,255,.52); }
.problem-card__number { color: var(--accent-dark); font-size: 14px; font-weight: 900; letter-spacing: .12em; }
.problem-card h3 { font-size: clamp(20px, 1.35vw, 25px); }
.problem-card p { max-width: 700px; margin: 7px 0 0; color: var(--muted); font-size: 15px; }
.problem-card__result {
  display: grid;
  gap: 10px;
  padding-left: clamp(20px, 3vw, 48px);
  border-left: 1px solid var(--line);
}
.problem-card__result span { color: var(--accent-dark); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.problem-card__result strong { font-size: 15px; line-height: 1.45; }

.section--solutions { position: relative; background: var(--dark); color: var(--dark-text); overflow: hidden; }
.section--solutions::before {
  content: "";
  position: absolute;
  top: -260px;
  right: -160px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(141,124,255,.18);
  border-radius: 50%;
}
.solution-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(30px, 3.5vw, 46px);
}
.solution-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 2vw, 30px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.solution-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.075); border-color: rgba(255,255,255,.32); }
.solution-card__top { display: flex; align-items: flex-start; justify-content: space-between; }
.solution-card__index { color: var(--muted-light); font-size: 13px; font-weight: 900; letter-spacing: .12em; }
.solution-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: var(--accent);
}
.solution-card__icon svg { width: 32px; fill: none; stroke: var(--white); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.solution-card__label { color: var(--accent-light); font-size: 11px; font-weight: 900; letter-spacing: .13em; }
.solution-card h3 { margin: 14px 0 10px; font-size: clamp(21px, 1.5vw, 26px); }
.solution-card p { margin: 0; color: var(--muted-light); font-size: 15px; line-height: 1.52; }

.story-section { padding: clamp(46px, 4.5vw, 66px) 0; background: var(--paper-2); }
.story-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(400px, .9fr); align-items: center; gap: clamp(32px, 4.5vw, 62px); }
.story-media { position: relative; }
.story-media img { width: 100%; height: clamp(390px, 34vw, 500px); object-fit: cover; border-radius: 30px 30px 110px 30px; }
.story-media figcaption {
  position: absolute;
  right: -42px;
  bottom: 46px;
  width: min(390px, 72%);
  padding: 20px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.story-media strong { display: block; margin-bottom: 6px; font-size: 18px; }
.story-media span { display: block; color: var(--muted); font-size: 15px; line-height: 1.55; }
.story-copy h2 { max-width: 780px; }
.story-copy > p:not(.eyebrow) { max-width: 720px; margin: 20px 0 24px; color: var(--muted); font-size: clamp(15px, .25vw + 14.5px, 17px); }

.section--projects { background: var(--paper); }
.project-list { display: grid; gap: 18px; margin-top: clamp(32px, 3.5vw, 48px); }
.project-card {
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(0, 1.08fr);
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(23,21,31,.07);
}
.project-card:nth-child(even) .project-card__media { order: 2; }
.project-card__media { position: relative; overflow: hidden; }
.project-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(23,21,31,.55)); }
.project-card__media img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; transition: transform .6s ease; }
.project-card:hover .project-card__media img { transform: scale(1.035); }
.project-card__media > span {
  position: absolute;
  z-index: 2;
  left: 30px;
  bottom: 28px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  color: var(--dark-text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}
.project-card__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(24px, 3vw, 40px); }
.project-card__number { color: var(--accent-dark); font-size: 13px; font-weight: 900; letter-spacing: .13em; }
.project-card h3 { margin-top: 14px; font-size: clamp(23px, 1.8vw, 31px); }
.project-card p { max-width: 720px; margin: 10px 0 0; color: var(--muted); font-size: 15px; }
.project-card ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; padding: 0; list-style: none; }
.project-card li { display: flex; align-items: center; gap: 7px; padding: 8px 12px; border-radius: 999px; background: var(--paper); font-size: 14px; font-weight: 780; }
.project-card li span { color: #128553; }

.section--process { background: var(--paper-2); }
.process-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr); gap: clamp(34px, 4.5vw, 64px); align-items: start; }
.process-copy { position: sticky; top: calc(var(--header-height) + 40px); }
.process-copy__intro { max-width: 680px; margin: 15px 0 20px; color: var(--muted); font-size: 15px; }
.process-copy figure { overflow: hidden; border-radius: 26px 26px 90px 26px; }
.process-copy img { width: 100%; height: 250px; object-fit: cover; }
.process-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-steps li { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.process-steps > li > span { color: var(--accent-dark); font-size: 14px; font-weight: 900; letter-spacing: .12em; }
.process-steps h3 { font-size: clamp(20px, 1.35vw, 25px); }
.process-steps p { max-width: 700px; margin: 7px 0 0; color: var(--muted); font-size: 15px; }

.section--faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: minmax(360px, .78fr) minmax(0, 1.22fr); gap: clamp(34px, 4.5vw, 64px); }
.faq-intro { position: sticky; top: calc(var(--header-height) + 40px); align-self: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 44px;
  align-items: center;
  gap: 30px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: clamp(16px, 1vw, 20px);
  font-weight: 820;
  line-height: 1.3;
  cursor: pointer;
}
.faq-item button i { position: relative; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; }
.faq-item button i::before,
.faq-item button i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; background: var(--ink); transform: translate(-50%, -50%); transition: transform .2s ease; }
.faq-item button i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.is-open button i::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer > p { min-height: 0; overflow: hidden; margin: 0; color: var(--muted); font-size: 15px; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer > p { padding: 0 62px 22px 0; }

.contact-section { padding: clamp(40px, 4vw, var(--section-space)) 0; background: var(--dark); color: var(--dark-text); }
.contact-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(500px, .88fr); gap: clamp(34px, 4.5vw, 64px); align-items: start; }
.contact-copy h2 { max-width: 850px; }
.contact-copy > p:not(.eyebrow) { max-width: 680px; margin: 16px 0 20px; color: var(--muted-light); font-size: 15px; }
.contact-copy ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; color: #d5d0dd; font-size: 15px; }
.contact-copy li { display: flex; gap: 11px; }
.contact-copy li span { color: var(--green); }
.contact-panel { position: relative; min-height: 480px; padding: clamp(22px, 2.5vw, 34px); border-radius: 30px; background: var(--white); color: var(--ink); box-shadow: 0 32px 90px rgba(0,0,0,.3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-panel label { display: grid; gap: 7px; margin-bottom: 15px; font-size: 13px; font-weight: 850; }
.contact-panel label > span { color: var(--accent-dark); }
.contact-panel label small { color: var(--muted); font-size: 12px; font-weight: 650; }
input, textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(23,21,31,.22);
  border-radius: 12px;
  background: #fbfaf8;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:hover, textarea:hover { border-color: rgba(23,21,31,.42); }
input:focus, textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 4px rgba(141,124,255,.14); outline: 0; }
textarea { min-height: 120px; resize: vertical; }
input[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: #c73535; box-shadow: 0 0 0 4px rgba(199,53,53,.10); }
.consent-check { grid-template-columns: 24px 1fr; align-items: start; gap: 12px !important; margin: 0 0 22px !important; font-weight: 560 !important; line-height: 1.5; }
.consent-check input { width: 22px; min-height: 22px; height: 22px; margin: 1px 0 0; accent-color: var(--accent); }
.consent-check span { color: var(--muted) !important; }
.consent-check a { color: var(--ink); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.consent-check b { color: var(--accent-dark); }
.form-note { margin: 15px 0 0; color: var(--muted); font-size: 13px; text-align: center; }
.form-status { min-height: 0; margin-bottom: 0; color: #ad2424; font-size: 14px; font-weight: 700; }
.form-status:not(:empty) { min-height: 24px; margin-bottom: 12px; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-success { position: absolute; inset: 0; display: grid; align-content: center; justify-items: start; padding: clamp(32px, 5vw, 70px); border-radius: inherit; background: var(--white); }
.form-success[hidden] { display: none; }
.form-success__icon { display: grid; place-items: center; width: 72px; height: 72px; border-radius: 50%; background: #e7f8ef; color: #128553; font-size: 30px; font-weight: 900; }
.form-success h3 { margin-top: 28px; font-size: clamp(34px, 3vw, 52px); }
.form-success p { max-width: 520px; margin: 18px 0 28px; color: var(--muted); font-size: 18px; }

.site-footer { padding: 42px 0 24px; background: var(--dark); color: var(--dark-text); border-top: 1px solid rgba(255,255,255,.08); }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr 1fr; gap: clamp(32px, 5vw, 90px); align-items: start; }
.brand--footer .brand__mark { background: var(--white); }
.brand--footer .brand__mark::before,
.brand--footer .brand__mark span { background: var(--accent); }
.brand--footer .brand__name { color: var(--white); }
.footer-brand p { max-width: 440px; margin: 22px 0 0; color: #aaa5b1; font-size: 15px; }
.footer-contact, .footer-links { display: grid; gap: 10px; }
.footer-contact > span, .footer-links > span { margin-bottom: 8px; color: #75707c; font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.footer-contact a, .footer-links a { color: #d8d3dc; font-size: 14px; }
.footer-contact a:hover, .footer-links a:hover { color: var(--accent); }
.footer-meta { display: grid; gap: 18px; justify-items: end; color: #aaa5b1; font-size: 13px; text-align: right; }

.legal-page { padding: calc(var(--header-height) + 42px) 0 64px; }
.legal-hero { max-width: 1080px; }
.legal-hero h1 { font-size: clamp(36px, 3.8vw, 52px); }
.legal-hero > p:not(.eyebrow) { max-width: 840px; margin: 16px 0 0; color: var(--muted); font-size: 16px; }
.legal-notice { margin-top: 34px; padding: 20px 24px; border-left: 4px solid var(--accent); background: var(--white); color: var(--muted); }
.legal-content { display: grid; gap: 0; max-width: 1000px; margin-top: 46px; border-top: 1px solid var(--line); }
.legal-content section { padding: 25px 0; border-bottom: 1px solid var(--line); }
.legal-content h2 { font-size: clamp(23px, 1.8vw, 31px); }
.legal-content p { max-width: 900px; margin: 14px 0 0; color: var(--muted); }
.legal-company { margin-top: 50px; padding: 28px; border-radius: 18px; background: var(--paper-2); }
.legal-company strong { display: block; margin-bottom: 8px; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.65,.2,1); }
.reveal--delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1240px) {
  :root { --header-height: 78px; }
  .header-cta { display: none; }
  .site-header__inner { grid-template-columns: auto 1fr; }
  .hero__grid { grid-template-columns: 1fr .82fr; gap: 40px; }
  .hero__media, .hero__media img { min-height: 400px; }
  .project-card { grid-template-columns: .9fr 1.1fr; }
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; grid-template-columns: 1fr auto; justify-items: start end; text-align: left; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 980px) {
  .site-header__inner { grid-template-columns: auto auto; justify-content: space-between; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    cursor: pointer;
  }
  .nav-toggle i, .nav-toggle i::before, .nav-toggle i::after { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle i { position: relative; }
  .nav-toggle i::before, .nav-toggle i::after { content: ""; position: absolute; left: 0; }
  .nav-toggle i::before { top: -7px; }
  .nav-toggle i::after { top: 7px; }
  .nav-toggle[aria-expanded="true"] i { background: transparent; }
  .nav-toggle[aria-expanded="true"] i::before { top: 0; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] i::after { top: 0; transform: rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 14px clamp(24px, 4vw, 76px) 30px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(23,21,31,.1);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 18px; }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav a::after { display: none; }
  .hero { min-height: auto; }
  .hero__grid, .section-intro--split, .story-grid, .process-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 920px; }
  .hero__media { min-height: 390px; }
  .hero__media img { min-height: 390px; }
  .section-intro--split { align-items: start; gap: 30px; }
  .section-intro > p { max-width: 780px; }
  .problem-card { grid-template-columns: 64px 1fr; }
  .problem-card__result { grid-column: 2; padding: 20px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 270px; }
  .story-media figcaption { right: 24px; }
  .project-card, .project-card:nth-child(even) { grid-template-columns: 1fr; }
  .project-card:nth-child(even) .project-card__media { order: 0; }
  .project-card__media img { min-height: 340px; max-height: 430px; }
  .process-copy, .faq-intro { position: static; }
  .process-copy figure { max-width: 760px; }
  .faq-grid { gap: 40px; }
  .contact-grid { gap: 42px; }
  .contact-panel { min-height: 0; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --header-height: 72px; --radius: 18px; }
  body { font-size: 15px; }
  .wide-shell, .site-header__inner { padding-inline: 20px; }
  .brand { gap: 10px; }
  .brand__mark { width: 38px; height: 38px; border-radius: 12px; }
  .brand__name { font-size: 16px; }
  .brand__image { max-width: 150px; height: 40px; }
  .nav-toggle span { display: none; }
  h1 { font-size: clamp(32px, 9vw, 40px); line-height: 1.06; }
  h2 { font-size: clamp(25px, 7vw, 32px); }
  .eyebrow { margin-bottom: 20px; font-size: 11px; }
  .hero { padding-top: calc(var(--header-height) + 28px); padding-bottom: 32px; }
  .hero__grid { gap: 30px; }
  .hero__accent { margin-top: 15px; font-size: 17px; }
  .hero__description { margin-top: 12px; font-size: 15px; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 12px; margin-top: 22px; }
  .hero__actions .button { width: 100%; }
  .hero__actions .text-link { align-self: flex-start; }
  .hero__badges { display: grid; gap: 7px; margin-top: 20px; }
  .hero__media, .hero__media img { min-height: 320px; }
  .hero__media { border-radius: 24px 24px 24px 70px; }
  .hero__media figcaption { right: 20px; bottom: 22px; left: 20px; grid-template-columns: 42px 1fr; gap: 14px; }
  .hero__caption-index { width: 42px; height: 42px; }
  .hero__media strong { font-size: 17px; }
  .hero__media figcaption p { font-size: 13px; }
  .capability-band { padding: 17px 0; }
  .section { padding: 46px 0; }
  .section-intro--split { gap: 22px; }
  .section-intro > p { font-size: 15px; }
  .problem-list { margin-top: 30px; }
  .problem-card { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .problem-card:hover { padding-inline: 0; background: transparent; }
  .problem-card__result { grid-column: auto; margin-top: 12px; }
  .solution-grid { margin-top: 30px; }
  .solution-card { min-height: 250px; padding: 22px; }
  .solution-card__icon { width: 60px; height: 60px; border-radius: 17px; }
  .solution-card__icon svg { width: 34px; }
  .story-section { padding: 40px 0 48px; }
  .story-grid { gap: 40px; }
  .story-media img { height: 330px; border-radius: 22px 22px 70px 22px; }
  .story-media figcaption { right: 14px; bottom: -28px; width: calc(100% - 28px); padding: 20px; }
  .story-copy { padding-top: 20px; }
  .story-copy > p:not(.eyebrow) { font-size: 15px; }
  .project-list { margin-top: 32px; }
  .project-card { min-height: 0; border-radius: 22px; }
  .project-card__media img { min-height: 240px; height: 240px; }
  .project-card__content { padding: 24px 20px 26px; }
  .project-card h3 { font-size: 24px; }
  .project-card p { font-size: 15px; }
  .project-card ul { display: grid; }
  .project-card li { width: fit-content; }
  .process-grid { gap: 36px; }
  .process-copy__intro { font-size: 15px; }
  .process-copy img { height: 230px; }
  .process-steps li { grid-template-columns: 42px 1fr; gap: 14px; padding: 21px 0; }
  .process-steps h3 { font-size: 20px; }
  .faq-grid { gap: 32px; }
  .faq-item button { grid-template-columns: 1fr 36px; gap: 12px; padding: 16px 0; font-size: 16px; }
  .faq-item button i { width: 38px; height: 38px; }
  .faq-item.is-open .faq-answer > p { padding-right: 0; }
  .contact-section { padding: 46px 0; }
  .contact-copy > p:not(.eyebrow) { font-size: 15px; }
  .contact-panel { padding: 20px 18px; border-radius: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .button--full { min-height: 50px; }
  .site-footer { padding-top: 40px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-meta { grid-column: auto; grid-template-columns: 1fr; justify-items: start; padding-top: 28px; }
  .legal-page { padding-top: calc(var(--header-height) + 52px); }
  .legal-hero > p:not(.eyebrow) { font-size: 16px; }
}

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

/* =========================================================
   TAVRO clean visual system — derived from the supplied design
   Typography sizes remain controlled by the existing admin values.
   ========================================================= */
:root {
  --font-family: Arial, Helvetica, sans-serif;
  --success: #2f7253;
  --line: #dddcd7;
  --line-light: rgba(17, 26, 43, .12);
  --muted-light: #5d6470;
  --shadow: 0 18px 48px rgba(17, 26, 43, .09);
  --radius: 10px;
}
body { font-family: var(--font-family); background: var(--paper); color: var(--ink); }
body::selection { background: var(--accent-light); color: var(--ink); }
.site-header { background: color-mix(in srgb, var(--paper) 94%, transparent); border-bottom: 1px solid transparent; backdrop-filter: blur(12px); }
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 28px rgba(17, 26, 43, .06); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-switch { display: inline-grid; place-items: center; min-width: 38px; height: 38px; padding: 0 10px; border: 1px solid var(--line); border-radius: 6px; background: var(--white); color: var(--ink); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.language-switch:hover { border-color: var(--accent); color: var(--accent-dark); }
.brand__mark { width: 38px; height: 29px; border-radius: 16px 0 16px 0; background: linear-gradient(135deg, var(--accent-light), var(--accent-dark)); overflow: visible; }
.brand__mark::before { display: none; }
.brand__mark span { top: 14px; left: 15px; width: 13px; height: 25px; border-radius: 0 0 12px 4px; background: linear-gradient(var(--accent-dark), var(--accent)); }
.brand__mark::after { display: none; }
.button { border-radius: 6px; box-shadow: 0 10px 24px color-mix(in srgb, var(--accent) 16%, transparent); }
.button:hover { transform: translateY(-2px); }
.text-link { border-bottom-width: 1px; }
.hero__ambient--one { border-color: color-mix(in srgb, var(--accent) 18%, transparent); }
.hero__ambient--two { background: color-mix(in srgb, var(--accent-light) 55%, transparent); }
.hero__badges { color: var(--muted); }
.hero__badges span, .project-card li span, .contact-copy li span { color: var(--success); }
.hero__media { border-radius: var(--radius); box-shadow: var(--shadow); }
.hero__media::after { background: linear-gradient(180deg, transparent 54%, rgba(17,26,43,.72)); }
.hero__caption-index { border-radius: 6px; }
.capability-band { background: var(--white); color: var(--ink); border-color: var(--line); }
.capability-track i { color: var(--accent); }
.section--solutions { background: var(--paper-2); color: var(--ink); border-block: 1px solid var(--line); }
.section--solutions::before { border-color: color-mix(in srgb, var(--accent) 15%, transparent); }
.section-intro--light { color: var(--ink); }
.section-intro--light > p { color: var(--muted); }
.eyebrow--light { color: var(--accent-dark); }
.solution-card { border-color: var(--line); border-radius: 8px; background: var(--white); box-shadow: 0 10px 30px rgba(17,26,43,.04); }
.solution-card:hover { transform: translateY(-4px); background: var(--white); border-color: color-mix(in srgb, var(--accent) 42%, var(--line)); }
.solution-card__index { color: var(--muted); }
.solution-card__icon { border-radius: 7px; background: var(--accent); }
.solution-card__label { color: var(--accent-dark); }
.solution-card p { color: var(--muted); }
.card-link { display: inline-flex; align-items: center; gap: 10px; width: fit-content; margin-top: 18px; color: var(--accent-dark); font-size: 14px; font-weight: 800; }
.card-link span { transition: transform .2s ease; }
.card-link:hover span { transform: translateX(4px); }
.story-media img, .process-copy figure, .project-card, .contact-panel { border-radius: var(--radius); }
.story-media figcaption { right: 18px; bottom: 18px; border: 1px solid var(--line); border-radius: 7px; box-shadow: var(--shadow); }
.project-card { box-shadow: 0 12px 34px rgba(17,26,43,.05); }
.project-card__media > span { border-radius: 6px; }
.project-card li { border-radius: 6px; }
.contact-section { background: var(--paper-2); color: var(--ink); border-top: 1px solid var(--line); }
.contact-copy > p:not(.eyebrow), .contact-copy ul { color: var(--muted); }
.contact-panel { border: 1px solid var(--line); box-shadow: var(--shadow); }
input, textarea { border-radius: 5px; background: #fcfcfa; }
input:focus, textarea:focus { box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 13%, transparent); }
.form-success__icon { background: color-mix(in srgb, var(--success) 12%, white); color: var(--success); }
.site-footer { background: #f1f0ec; color: var(--ink); border-top-color: var(--line); }
.site-footer__grid { grid-template-columns: 1.35fr .8fr 1fr .85fr 1fr; gap: clamp(26px, 3.5vw, 58px); }
.brand--footer .brand__mark { background: linear-gradient(135deg, var(--accent-light), var(--accent-dark)); }
.brand--footer .brand__name { color: var(--ink); }
.footer-brand p, .footer-meta { color: var(--muted); }
.footer-contact > span, .footer-links > span { color: var(--muted); }
.footer-contact a, .footer-links a { color: var(--ink); }
.footer-meta { border-color: var(--line); }
.legal-notice, .legal-company { border: 1px solid var(--line); }

/* Service landing pages */
.service-page { background: var(--paper); }
.service-hero { padding: calc(var(--header-height) + 42px) 0 48px; border-bottom: 1px solid var(--line); }
.service-hero__grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); gap: clamp(32px, 4.5vw, 66px); align-items: center; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; color: var(--muted); font-size: 13px; }
.breadcrumbs a:hover { color: var(--accent-dark); }
.service-hero__copy h1 { max-width: 900px; }
.service-lead { max-width: 760px; margin: 20px 0 0; color: var(--muted); font-size: clamp(15px, .25vw + 14.5px, 17px); line-height: 1.65; }
.service-hero__media { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.service-hero__media img { width: 100%; height: clamp(380px, 34vw, 520px); object-fit: cover; }
.service-summary { background: var(--white); border-bottom: 1px solid var(--line); }
.service-summary__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.service-summary article { display: grid; grid-template-columns: 34px 1fr; gap: 12px; min-height: 116px; align-content: center; padding: 22px; border-right: 1px solid var(--line); }
.service-summary article:last-child { border-right: 0; }
.service-summary article > span { color: var(--accent-dark); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.service-summary p { margin: 0; color: var(--ink); font-size: 14px; font-weight: 700; line-height: 1.45; }
.service-two-column { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: clamp(36px, 5vw, 76px); align-items: start; }
.service-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.service-list li { display: flex; gap: 14px; padding: 17px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 700; }
.service-list span { color: var(--success); }
.service-method { background: var(--paper-2); border-block: 1px solid var(--line); }
.service-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 34px 0 0; padding: 0; list-style: none; }
.service-steps li { min-height: 180px; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.service-steps li > span { color: var(--accent-dark); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.service-steps p { margin: 42px 0 0; color: var(--ink); font-weight: 700; line-height: 1.5; }
.service-cta { padding: clamp(40px, 4vw, var(--section-space)) 0; background: var(--paper-2); border-top: 1px solid var(--line); }
.service-cta__inner { display: grid; grid-template-columns: 1fr auto; gap: 42px; align-items: center; padding: clamp(26px, 3.5vw, 48px); border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.service-cta__inner h2 { max-width: 880px; }
.service-cta__inner p:not(.eyebrow) { max-width: 760px; margin: 14px 0 0; color: var(--muted); }
.related-services { padding: 46px 0 64px; background: var(--paper); }
.related-services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.related-services__grid a { display: grid; grid-template-columns: 1fr auto; gap: 8px 20px; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.related-services__grid a > span { grid-column: 1 / -1; color: var(--accent-dark); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.related-services__grid strong { line-height: 1.35; }
.related-services__grid i { color: var(--accent-dark); font-style: normal; }
.related-services__grid a:hover { border-color: var(--accent); }

@media (max-width: 1240px) {
  .site-footer__grid { grid-template-columns: 1.3fr repeat(3, 1fr); }
  .footer-meta { grid-column: 1 / -1; }
}
@media (max-width: 980px) {
  .header-actions { margin-left: auto; }
  .nav-toggle { order: 3; }
  .site-header__inner { grid-template-columns: auto 1fr auto; }
  .service-hero__grid, .service-two-column { grid-template-columns: 1fr; }
  .service-summary__grid, .service-steps { grid-template-columns: repeat(2, 1fr); }
  .service-summary article:nth-child(2) { border-right: 0; }
  .service-summary article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 760px) {
  .header-actions .header-cta { display: none; }
  .language-switch { min-width: 36px; height: 36px; }
  .site-header__inner { grid-template-columns: auto 1fr auto; gap: 12px; }
  .service-summary__grid, .service-steps, .related-services__grid { grid-template-columns: 1fr; }
  .service-summary article { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-summary article:last-child { border-bottom: 0; }
  .service-cta__inner { grid-template-columns: 1fr; }
  .service-cta__inner .button { width: 100%; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-meta { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-meta { grid-column: auto; }
  .service-hero { padding-top: calc(var(--header-height) + 28px); }
}
.error-page { min-height: 72vh; padding: calc(var(--header-height) + 70px) 0 80px; display: grid; align-items: center; }
.error-page__inner { max-width: 900px; }
.error-page__inner > p:not(.eyebrow) { max-width: 650px; margin: 18px 0 28px; color: var(--muted); }


/* TAVRO frontend refinement: compact, human and action-led */
body { background: #fff; color: #172033; }
:root { --paper:#fff; --paper-2:#f5f3ff; --dark:#fff; --dark-text:#172033; --ink:#172033; --muted:#5f6878; --line:rgba(23,32,51,.14); --section-space:48px; --font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.hero { padding-bottom: 34px; }
.hero__ambient--two { display:none; }
.hero__media { box-shadow: 0 16px 42px rgba(28,35,56,.12); }
.section { padding: clamp(34px, 3.4vw, 48px) 0; }
.section--solutions { background: #f5f3ff; color: var(--ink); }
.section--solutions::before { display:none; }
.section-intro--light { color: var(--ink); }
.section-intro--light > p { color: var(--muted); }
.eyebrow--light { color: var(--accent-dark); }
.solution-card { min-height: 238px; border-color: rgba(23,32,51,.12); background:#fff; box-shadow: 0 10px 28px rgba(28,35,56,.06); }
.solution-card:hover { background:#fff; border-color: var(--accent); }
.solution-card__index { color: var(--muted); }
.solution-card__label { color: var(--accent-dark); }
.solution-card h3 { color: var(--ink); }
.solution-card p { color: var(--muted); }
.story-section, .section--projects, .section--process, .section--faq { background:#fff; }
.contact-section { background:#f5f3ff; color:var(--ink); }
.contact-section .section-intro--light > p, .contact-section p { color:var(--muted); }
.contact-section .eyebrow--light { color:var(--accent-dark); }
.contact-form, .contact-points { background:#fff; border-color:var(--line); }
h1 { font-size: clamp(38px, 3.25vw, var(--font-hero-max)); }
h2 { font-size: clamp(29px, 2.25vw, var(--font-section-max)); }
p { max-width: 72ch; }
.project-list { margin-top: 30px; }
.process-grid, .faq-grid { gap: clamp(28px, 3vw, 44px); }
@media (max-width: 860px) { .section { padding: 34px 0; } .hero { padding-top: calc(var(--header-height) + 24px); } }


/* Enterprise layout pass */
body { font-size:16px; line-height:1.48; letter-spacing:0; }
.wide-shell, .site-header__inner { padding-inline:clamp(24px, 3vw, 48px); }
.hero { padding-top:calc(var(--header-height) + 56px); padding-bottom:56px; }
.hero__grid { gap:clamp(40px,5vw,80px); }
.hero__copy { max-width:640px; }
.hero h1 { max-width:620px; font-size:clamp(42px,4vw,58px); line-height:1.04; letter-spacing:-.035em; }
.hero__accent { max-width:560px; margin-top:18px; font-size:18px; line-height:1.4; font-weight:650; }
.hero__description { max-width:560px; margin-top:14px; font-size:16px; line-height:1.55; }
.hero__actions { margin-top:28px; }
.hero__badges { margin-top:24px; font-size:14px; font-weight:600; }
.hero__media { min-height:440px; border-radius:20px; }
.hero__media img { min-height:440px; }
.proof-strip { border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:#fff; }
.proof-strip__grid { display:grid; grid-template-columns:1fr 1fr auto; gap:28px; align-items:center; padding-top:24px; padding-bottom:24px; }
.proof-strip strong { display:block; font-size:15px; line-height:1.25; }
.proof-strip span { display:block; margin-top:5px; color:var(--muted); font-size:14px; line-height:1.4; }
.proof-strip .button { white-space:nowrap; }
.section { padding:clamp(44px,5vw,72px) 0; }
.section-intro--split { grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr); gap:48px; }
.section-intro h2 { max-width:700px; font-size:clamp(30px,2.7vw,42px); line-height:1.1; }
.section-intro > p { max-width:470px; font-size:16px; line-height:1.55; }
.problem-list { margin-top:32px; }
.problem-card { grid-template-columns:48px minmax(0,1fr) minmax(220px,.55fr); padding:22px 0; }
.problem-card h3 { font-size:20px; }
.problem-card p { font-size:15px; line-height:1.5; }
.solution-grid { margin-top:32px; gap:18px; }
.solution-card { min-height:250px; padding:24px; }
.solution-card h3 { font-size:21px; }
.solution-card p { font-size:15px; line-height:1.5; }
.story-grid, .process-grid, .faq-grid, .contact-grid { gap:48px; }
.story-copy h2, .process-copy h2, .faq-intro h2, .contact-copy h2 { font-size:clamp(30px,2.7vw,42px); line-height:1.1; }
@media (max-width:860px) {
 .hero { padding-top:calc(var(--header-height) + 32px); }
 .hero h1 { font-size:clamp(36px,9vw,48px); }
 .proof-strip__grid { grid-template-columns:1fr; gap:16px; }
 .proof-strip .button { width:max-content; }
 .section-intro--split { grid-template-columns:1fr; gap:18px; }
 .problem-card { grid-template-columns:38px 1fr; }
 .problem-card__result { grid-column:2; padding-left:0; border-left:0; }
}


/* TAVRO premium system — one type scale, neutral surfaces, restrained accents */
:root {
  --ink:#171827;
  --muted:#5f6270;
  --paper:#ffffff;
  --paper-2:#f7f7fa;
  --white:#ffffff;
  --dark:#171827;
  --dark-text:#ffffff;
  --line:#dfe0e6;
  --accent:#6546d9;
  --accent-dark:#4f34ba;
  --accent-light:#efecfb;
  --wide:1480px;
  --radius:16px;
  --header-height:72px;
  --font-family:"IBM Plex Sans", Arial, sans-serif;
}
body { background:#fff; color:var(--ink); font-family:var(--font-family); font-size:16px; font-weight:400; line-height:1.5; }
h1,h2,h3 { color:var(--ink); font-family:var(--font-family); font-weight:600; letter-spacing:-.025em; overflow-wrap:normal; }
h1 { font-size:48px; line-height:1.08; }
h2 { font-size:32px; line-height:1.16; }
h3 { font-size:20px; line-height:1.25; }
p { max-width:68ch; }
.site-header { height:72px; background:rgba(255,255,255,.94); border-bottom:1px solid rgba(223,224,230,.8); backdrop-filter:blur(14px); }
.site-header.is-scrolled { background:rgba(255,255,255,.97); box-shadow:0 8px 24px rgba(23,24,39,.06); }
.site-header__inner { gap:32px; }
.site-nav { gap:28px; font-size:15px; font-weight:500; }
.site-nav a { padding:14px 0; }
.site-nav a::after { bottom:9px; height:1px; }
.brand__name { font-size:16px; font-weight:600; }
.language-switch { font-size:14px; font-weight:500; }
.button { min-height:44px; padding:11px 20px; border-radius:8px; font-size:15px; font-weight:600; box-shadow:none; }
.button:hover { transform:none; box-shadow:0 6px 18px rgba(101,70,217,.18); }
.button--small { min-height:40px; padding:9px 16px; font-size:14px; }
.eyebrow { gap:10px; margin-bottom:12px; font-size:12px; font-weight:600; letter-spacing:.11em; }
.eyebrow span { width:22px; height:1px; }
.hero { padding:124px 0 56px; background:#fff; }
.hero__ambient { display:none!important; }
.hero__grid { grid-template-columns:minmax(0,.95fr) minmax(460px,1.05fr); gap:64px; }
.hero__copy { max-width:610px; padding:0; }
.hero h1 { max-width:610px; font-size:48px; line-height:1.08; }
.hero__accent { max-width:560px; margin-top:18px; font-size:18px; line-height:1.45; font-weight:500; }
.hero__description { max-width:560px; margin-top:12px; font-size:16px; line-height:1.55; }
.hero__actions { margin-top:26px; }
.hero__badges { gap:10px 18px; margin-top:22px; font-size:14px; font-weight:500; }
.hero__media { min-height:420px; border-radius:16px; box-shadow:0 18px 48px rgba(23,24,39,.12); }
.hero__media::after { display:none; }
.hero__media img { min-height:420px; }
.proof-strip { background:#f7f7fa; border-color:var(--line); }
.proof-strip__grid { grid-template-columns:repeat(3,1fr); padding-top:22px; padding-bottom:22px; }
.proof-strip strong { font-size:16px; font-weight:600; }
.proof-strip span { font-size:14px; }
.section { padding:64px 0; background:#fff; }
.section--solutions { background:#f7f7fa; color:var(--ink); }
.section--projects { background:#fff; }
.section-intro--split { grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr); gap:48px; }
.section-intro h2 { max-width:720px; font-size:32px; line-height:1.16; }
.section-intro>p { max-width:470px; font-size:16px; }
.problem-list { margin-top:32px; }
.problem-card { grid-template-columns:42px minmax(0,1fr) minmax(230px,.55fr); gap:24px; padding:20px 0; }
.problem-card:hover { padding-inline:0; background:transparent; }
.problem-card__number,.problem-card__result span { font-size:12px; font-weight:600; }
.problem-card h3 { font-size:20px; }
.problem-card p,.problem-card__result strong { font-size:15px; font-weight:400; }
.solution-grid { margin-top:32px; gap:16px; }
.solution-card { min-height:230px; padding:22px; border:1px solid var(--line); border-radius:14px; box-shadow:none; }
.solution-card:hover { transform:translateY(-3px); box-shadow:0 14px 32px rgba(23,24,39,.08); }
.solution-card__icon { width:48px; height:48px; border-radius:12px; }
.solution-card__index,.solution-card__label { font-size:12px; font-weight:600; }
.solution-card h3 { margin-top:10px; font-size:20px; }
.solution-card p { font-size:15px; }
.project-list { grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; margin-top:32px; }
.project-card { display:flex; min-height:0; flex-direction:column; border-radius:14px; box-shadow:none; }
.project-card:nth-child(even) .project-card__media { order:0; }
.project-card__media { aspect-ratio:16/10; }
.project-card__media img { min-height:0; height:100%; }
.project-card__media>span { left:16px; bottom:14px; padding:6px 9px; font-size:11px; font-weight:600; }
.project-card__content { display:block; padding:20px; }
.project-card__number { font-size:12px; font-weight:600; }
.project-card h3 { margin-top:8px; font-size:20px; }
.project-card p { font-size:15px; }
.project-card ul { gap:6px; margin-top:14px; }
.project-card li { padding:5px 8px; border-radius:6px; background:#f7f7fa; font-size:13px; font-weight:500; }
.contact-section { padding:64px 0; background:#f2effc; color:var(--ink); }
.contact-grid { grid-template-columns:minmax(0,.82fr) minmax(480px,1fr); gap:56px; }
.contact-copy h2 { max-width:560px; font-size:32px; }
.contact-copy>p:not(.eyebrow) { margin:14px 0 20px; color:var(--muted); font-size:16px; }
.contact-copy ul { color:var(--ink); font-size:15px; }
.contact-panel { min-height:0; padding:28px; border:1px solid rgba(101,70,217,.14); border-radius:16px; box-shadow:0 14px 40px rgba(23,24,39,.09); }
.form-row { gap:16px; }
.contact-panel label:not(.consent-check) { display:block; margin-bottom:15px; color:var(--ink); font-size:14px; font-weight:500; line-height:1.3; }
.contact-panel label:not(.consent-check)>span { position:static; display:inline; margin-left:3px; color:#b42318; font-size:14px; line-height:inherit; }
.contact-panel label small { font-size:13px; font-weight:400; }
input,textarea { min-height:48px; margin-top:7px; padding:12px 13px; border-color:#cfd1da; border-radius:8px; background:#fff; font-family:var(--font-family); font-size:15px; }
textarea { min-height:112px; }
.consent-check { grid-template-columns:20px 1fr; gap:10px!important; font-size:13px!important; font-weight:400!important; }
.consent-check input { width:18px; height:18px; min-height:18px; margin:2px 0 0; }
.consent-check b { display:inline; margin-left:2px; color:#b42318; }
.site-footer { padding:40px 0 24px; background:#f7f7fa; color:var(--ink); border-top:1px solid var(--line); }
.brand--footer .brand__name { color:var(--ink); }
.footer-brand p,.footer-meta { color:var(--muted); }
.footer-contact>span,.footer-links>span { color:#777b88; font-weight:600; }
.footer-contact a,.footer-links a { color:var(--ink); }
.legal-page { background:#fff; }
@media(max-width:1100px){
 .hero__grid { grid-template-columns:1fr 1fr; gap:36px; }
 .project-list { grid-template-columns:1fr 1fr; }
}
@media(max-width:860px){
 h1,.hero h1 { font-size:38px; }
 h2,.section-intro h2,.contact-copy h2 { font-size:28px; }
 .hero { padding:104px 0 44px; }
 .hero__grid { grid-template-columns:1fr; }
 .hero__media { min-height:320px; }
 .hero__media img { min-height:320px; }
 .proof-strip__grid,.project-list { grid-template-columns:1fr; }
 .section { padding:48px 0; }
 .section-intro--split,.contact-grid { grid-template-columns:1fr; gap:20px; }
 .problem-card { grid-template-columns:32px 1fr; }
 .problem-card__result { grid-column:2; padding-left:0; border-left:0; }
}
@media(max-width:560px){
 h1,.hero h1 { font-size:34px; }
 .form-row { grid-template-columns:1fr; gap:0; }
 .contact-panel { padding:20px; }
}


/* Typography correction: Manrope, stronger navigation, neutral labels */
:root { --font-family:"Manrope", Arial, sans-serif; }
body,button,input,textarea { font-family:var(--font-family); }
body { font-size:16px; font-weight:400; line-height:1.55; }
h1,h2,h3 { font-family:var(--font-family); font-weight:700; letter-spacing:-.035em; }
.site-header__inner { grid-template-columns:auto minmax(0,1fr) auto; gap:40px; }
.site-nav { justify-content:flex-start; gap:30px; margin-left:14px; color:#282a35; font-size:15px; font-weight:700; letter-spacing:-.01em; }
.site-nav a::after { background:#282a35; }
.header-actions { font-weight:600; }
.language-switch { font-size:14px; font-weight:700; }
.header-cta { font-weight:700; }
.brand__name { font-weight:700; }
.eyebrow,.eyebrow--light { color:#4c4f5b; font-size:13px; font-weight:700; letter-spacing:.075em; }
.eyebrow span { background:#6546d9; }
.problem-card__number,.problem-card__result span,.project-card__number {
  color:#4c4f5b;
  font-size:14px;
  font-weight:700;
  letter-spacing:.04em;
}
.solution-card__index {
  color:#4c4f5b;
  font-size:14px;
  font-weight:700;
  letter-spacing:.04em;
}
.solution-card__label {
  color:#4c4f5b;
  font-size:13px;
  font-weight:700;
  letter-spacing:.055em;
}
.solution-card h3,.problem-card h3,.project-card h3 { font-weight:700; letter-spacing:-.025em; }
.solution-card p,.problem-card p,.project-card p { color:#5f6270; font-weight:400; }
.text-link,.card-link { color:#282a35; font-weight:700; }
@media(max-width:1100px){ .site-header__inner{gap:24px}.site-nav{gap:20px;margin-left:0;font-size:14px} }


/* Compact methodology */
.methodology { background:#f7f7fa; }
.methodology__intro { display:grid; grid-template-columns:minmax(0,.7fr) minmax(300px,.3fr); gap:18px 48px; align-items:end; }
.methodology__intro .eyebrow { grid-column:1/-1; margin-bottom:0; }
.methodology__intro h2 { font-size:32px; }
.methodology__intro>p:not(.eyebrow) { margin:0; color:var(--muted); font-size:16px; }
.methodology__steps { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:12px; margin:32px 0 0; padding:0; list-style:none; }
.methodology__step { min-height:210px; padding:20px; border:1px solid var(--line); border-top:3px solid var(--accent); border-radius:12px; background:#fff; }
.methodology__number { display:block; margin-bottom:28px; color:#4c4f5b; font-size:14px; font-weight:700; letter-spacing:.04em; }
.methodology__step h3 { font-size:18px; line-height:1.3; }
.methodology__step p { margin:9px 0 0; color:var(--muted); font-size:14px; line-height:1.5; }
@media(max-width:1100px){ .methodology__steps{grid-template-columns:repeat(3,minmax(0,1fr));} }
@media(max-width:760px){ .methodology__intro{grid-template-columns:1fr;gap:10px}.methodology__steps{grid-template-columns:1fr}.methodology__step{min-height:0}.methodology__number{margin-bottom:14px} }
