@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #f6f6f2;
  --surface: #ffffff;
  --surface-2: #efefe9;
  --ink: #12130f;
  --muted: #696b64;
  --line: #dedfd8;
  --dark: #11120f;
  --dark-2: #191a16;
  --yellow: #f5c928;
  --yellow-2: #ffd84a;
  --yellow-soft: #fff5c8;
  --green: #239b62;
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 34px;
  --shadow: 0 28px 80px rgba(18, 19, 15, .10);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.section-dark { background: var(--dark); color: #fff; }
.section-white { background: var(--surface); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #796f77;
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); }
.section-dark .eyebrow { color: #b6b7b1; }
.display {
  margin: 0;
  font-size: clamp(43px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 800;
}
.heading {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 800;
}
.subheading {
  margin: 0;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -.035em;
  font-weight: 800;
}
.lead { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.section-dark .lead { color: #b9bab4; }
.muted { color: var(--muted); }
.accent { color: var(--yellow); }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  padding: 17px 0;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, padding .25s ease;
}
.site-header.scrolled,
.site-header.header-solid {
  background: rgba(17,18,15,.94);
  border-color: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.site-header.scrolled { padding: 11px 0; }
.nav-wrap { display: flex; align-items: center; gap: 32px; }
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 124px; height: 32px; object-fit: contain; object-position: left center; }
.site-nav { margin-left: auto; }
.site-nav ul { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.site-nav a { color: rgba(255,255,255,.76); font-size: 14px; font-weight: 600; transition: color .2s ease; }
.site-nav a:hover, .site-nav a.active { color: #fff; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 19px;
  border-radius: 999px;
  background: var(--white);
  color: #17170f !important;
  font-weight: 800 !important;
}
.mobile-toggle { display: none; margin-left: auto; border: 0; background: transparent; color: #fff; font-size: 27px; }

.btn {
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--yellow); color: #18180e; }
.btn-primary:hover { background: var(--yellow-2); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-outline { border-color: rgba(255,255,255,.18); color: #fff; background: rgba(255,255,255,.04); }
.btn-outline:hover { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.07); }
.btn-light-outline { border-color: var(--line); background: #fff; color: var(--ink); }
.btn-link { padding: 0; min-height: auto; border: 0; border-radius: 0; color: var(--ink); }
.btn-link i { transition: transform .2s ease; }
.btn-link:hover { transform: none; }
.btn-link:hover i { transform: translateX(4px); }

.hero {
  min-height: 790px;
  display: flex;
  align-items: center;
  padding: 150px 0 86px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 25%, rgba(245,201,40,.16), transparent 24%),
    radial-gradient(circle at 18% 84%, rgba(245,201,40,.08), transparent 22%),
    var(--dark);
}
.hero::after {
  content: "";
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 50%;
  position: absolute;
  right: -180px;
  top: 70px;
  box-shadow: 0 0 0 110px rgba(255,255,255,.018), 0 0 0 220px rgba(255,255,255,.012);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); gap: 80px; align-items: center; position: relative; z-index: 2; }
.hero-copy { max-width: 700px; }
.hero-copy .eyebrow { color: #d1d1ca; }
.hero-copy .display span { color: var(--yellow); }
.hero-copy .lead { max-width: 640px; color: #c8c9c3; margin-top: 28px; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 34px; }
.hero-proof { display: flex; align-items: center; gap: 13px; margin-top: 34px; color: #a9aaa3; font-size: 13px; }
.hero-proof .proof-dots { display: flex; }
.hero-proof .proof-dot { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--dark); background: var(--yellow); margin-left: -7px; display: grid; place-items: center; color: #14140f; font-size: 10px; font-weight: 800; }
.hero-proof .proof-dot:first-child { margin-left: 0; }

.dashboard-shell {
  position: relative;
  border-radius: 30px;
  padding: 17px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 36px 100px rgba(0,0,0,.35);
  transform: rotate(1.3deg);
}
.dashboard {
  border-radius: 22px;
  overflow: hidden;
  background: #f7f7f3;
  color: var(--ink);
  min-height: 460px;
}
.dashboard-top { height: 64px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #e4e4de; }
.dash-brand { display: flex; gap: 9px; align-items: center; font-size: 13px; font-weight: 800; }
.dash-mark { width: 24px; height: 24px; border-radius: 8px; background: var(--yellow); position: relative; }
.dash-mark::after { content: ""; position: absolute; width: 8px; height: 8px; background: #15150e; border-radius: 50%; inset: 8px; }
.dash-period { font-size: 11px; color: #7a7b74; padding: 7px 11px; border: 1px solid #dedfd8; border-radius: 999px; }
.dashboard-body { padding: 20px; }
.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.metric { background: #fff; border: 1px solid #e5e5df; border-radius: 15px; padding: 15px; }
.metric-label { color: #7b7c75; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.metric-value { font-size: 24px; letter-spacing: -.04em; font-weight: 800; margin-top: 7px; }
.metric-trend { font-size: 10px; margin-top: 6px; color: var(--green); font-weight: 700; }
.chart-card { margin-top: 10px; background: #fff; border: 1px solid #e5e5df; border-radius: 15px; padding: 16px; }
.chart-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 18px; }
.chart-head strong { font-size: 13px; }
.chart-head small { color: #8a8b84; font-size: 10px; }
.chart { height: 128px; display: flex; align-items: flex-end; gap: 8px; border-bottom: 1px solid #ecece7; }
.bar { flex: 1; min-width: 8px; background: #eeeeea; border-radius: 6px 6px 0 0; }
.bar.active { background: var(--yellow); }
.dashboard-note { text-align: center; color: rgba(255,255,255,.45); font-size: 10px; margin-top: 11px; transform: rotate(-1.3deg); }
.float-card { position: absolute; background: #fff; color: var(--ink); padding: 13px 15px; border-radius: 15px; box-shadow: 0 18px 45px rgba(0,0,0,.22); border: 1px solid #e5e5df; }
.float-card.one { right: -28px; top: 74px; }
.float-card.two { left: -38px; bottom: 68px; }
.float-card small { display: block; color: #898a83; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.float-card strong { display: block; font-size: 15px; margin-top: 5px; }

.logo-strip { padding: 35px 0; background: #fff; border-bottom: 1px solid var(--line); }
.logo-strip-head { color: #8a8c84; text-align: center; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; margin-bottom: 25px; }
.logo-row { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); align-items: center; gap: 30px; }
.logo-row img { max-height: 46px; max-width: 120px; width: auto; margin: 0 auto; object-fit: contain; filter: grayscale(1); opacity: .55; transition: filter .2s ease, opacity .2s ease; }
.logo-row img:hover { filter: grayscale(0); opacity: 1; }

.split-head { display: grid; grid-template-columns: 1fr .75fr; gap: 70px; align-items: end; margin-bottom: 55px; }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.problem-item { padding: 30px 26px 8px 0; border-right: 1px solid var(--line); min-height: 220px; }
.problem-item:not(:first-child) { padding-left: 26px; }
.problem-item:last-child { border-right: 0; }
.problem-index { width: 34px; height: 34px; border-radius: 50%; background: var(--yellow-soft); display: grid; place-items: center; font-size: 11px; font-weight: 800; margin-bottom: 28px; }
.problem-item h3 { font-size: 18px; letter-spacing: -.025em; margin: 0 0 10px; }
.problem-item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.services-wrap { background: var(--dark); border-radius: var(--radius-lg); overflow: hidden; color: #fff; }
.services-intro { padding: 66px 66px 50px; display: grid; grid-template-columns: 1fr .8fr; gap: 70px; align-items: end; }
.services-intro p { margin: 0; color: #b3b4ad; font-size: 16px; line-height: 1.75; }
.service-list { border-top: 1px solid rgba(255,255,255,.09); }
.service-row { display: grid; grid-template-columns: 80px 1fr 1.1fr 44px; gap: 25px; align-items: center; padding: 28px 66px; border-bottom: 1px solid rgba(255,255,255,.09); transition: background .2s ease; }
.service-row:hover { background: rgba(255,255,255,.035); }
.service-num { color: #777971; font-size: 12px; font-weight: 800; }
.service-row h3 { margin: 0; font-size: 22px; letter-spacing: -.03em; }
.service-row p { margin: 0; color: #999b94; font-size: 13px; line-height: 1.6; }
.service-arrow { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: var(--yellow); }

.method-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 85px; align-items: start; }
.method-sticky { position: sticky; top: 120px; }
.method-sticky .lead { margin-top: 24px; }
.steps { border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 80px 1fr; gap: 25px; padding: 29px 0; border-bottom: 1px solid var(--line); }
.step-num { font-size: 12px; color: #8b8c86; font-weight: 800; }
.step h3 { margin: 0 0 8px; font-size: 22px; letter-spacing: -.03em; }
.step p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 14px; }

.insight { background: var(--yellow); border-radius: var(--radius-lg); padding: 68px; display: grid; grid-template-columns: 1fr .9fr; gap: 70px; align-items: center; overflow: hidden; position: relative; }
.insight::after { content: ""; width: 350px; height: 350px; border: 70px solid rgba(17,18,15,.08); border-radius: 50%; position: absolute; right: -160px; top: -160px; }
.insight .eyebrow::before { background: var(--ink); }
.insight p { color: #4e4c31; max-width: 590px; line-height: 1.75; }
.insight .btn-dark { position: relative; z-index: 2; justify-self: start; }
.insight-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; position: relative; z-index: 2; }
.insight-point { background: rgba(255,255,255,.46); border: 1px solid rgba(17,18,15,.09); border-radius: 18px; padding: 17px; font-size: 13px; font-weight: 700; }
.insight-point i { display: block; font-size: 22px; margin-bottom: 17px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 20px 55px rgba(16,17,13,.08); }
.blog-image { height: 210px; background: #e9e9e4; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-content { padding: 24px; }
.blog-meta { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; font-weight: 800; color: #8a8b84; }
.blog-card h3 { font-size: 20px; line-height: 1.35; letter-spacing: -.025em; margin: 11px 0 18px; }
.blog-card .btn-link { font-size: 13px; }
.section-actions { display: flex; justify-content: space-between; align-items: end; gap: 25px; margin-bottom: 40px; }
.section-actions .heading { max-width: 620px; }

.cta-band { padding: 96px 0; background: var(--dark); color: #fff; }
.cta-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; }
.cta-grid .heading { max-width: 820px; }
.cta-grid p { color: #aeb0a8; margin: 16px 0 0; }

.site-footer { background: #0c0d0b; color: #fff; padding: 68px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .7fr .7fr 1fr; gap: 55px; padding-bottom: 55px; }
.footer-brand img { width: 132px; height: 34px; object-fit: contain; object-position: left; }
.footer-brand p { color: #898b83; line-height: 1.75; max-width: 390px; font-size: 13px; margin: 22px 0 0; }
.footer-col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: .11em; color: #787a72; margin: 0 0 18px; }
.footer-col a, .footer-col p { display: block; color: #c3c4bd; font-size: 13px; line-height: 1.6; margin: 0 0 10px; }
.footer-col a:hover { color: var(--yellow); }
.social-row { display: flex; gap: 9px; margin-top: 20px; }
.social-row a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.11); color: #fff; }
.footer-bottom { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); color: #6f716a; font-size: 11px; display: flex; justify-content: space-between; gap: 20px; }

.inner-hero { background: var(--dark); color: #fff; padding: 175px 0 90px; position: relative; overflow: hidden; }
.inner-hero::after { content: ""; width: 410px; height: 410px; border-radius: 50%; border: 80px solid rgba(245,201,40,.07); position: absolute; right: -120px; top: 70px; }
.inner-hero-grid { display: grid; grid-template-columns: 1fr .7fr; gap: 70px; align-items: end; position: relative; z-index: 2; }
.inner-hero .lead { color: #000000; max-width: 600px; }
.inner-hero .display { max-width: 830px; }
.inner-hero-actions { display: flex; justify-content: flex-end; }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 60px; align-items: start; }
.contact-copy { padding: 22px 0; }
.contact-copy .lead { margin-top: 20px; }
.contact-details { margin-top: 38px; border-top: 1px solid var(--line); }
.contact-detail { padding: 19px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 30px 1fr; gap: 13px; }
.contact-detail i { color: #7e7f78; }
.contact-detail span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: #8e8f88; font-weight: 800; margin-bottom: 4px; }
.contact-detail strong, .contact-detail a { font-size: 14px; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 38px; box-shadow: var(--shadow); }
.form-card h2 { font-size: 28px; letter-spacing: -.04em; margin: 0 0 7px; }
.form-card > p { margin: 0 0 28px; color: var(--muted); font-size: 13px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 11px; font-weight: 800; letter-spacing: .04em; color: #6f716a; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #dedfd8; background: #fbfbf8; border-radius: 13px; padding: 14px 15px; min-height: 50px; color: var(--ink); outline: none; transition: border .2s ease, box-shadow .2s ease; }
.field textarea { min-height: 135px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #cab133; box-shadow: 0 0 0 4px rgba(245,201,40,.15); }
.field input[type="file"] { padding: 10px; }
.form-card .btn { margin-top: 8px; border: 0; }
.form-status { margin-top: 14px; font-size: 12px; color: var(--muted); }

.team-principles { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.principle { padding: 30px; border-radius: 22px; background: #fff; border: 1px solid var(--line); }
.principle i { font-size: 25px; color: #9a7d00; }
.principle h3 { margin: 30px 0 10px; font-size: 19px; letter-spacing: -.03em; }
.principle p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.discipline-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.1); }
.discipline { padding: 30px 25px; border-right: 1px solid rgba(255,255,255,.1); }
.discipline:last-child { border-right: 0; }
.discipline .num { color: var(--yellow); font-size: 11px; font-weight: 800; }
.discipline h3 { margin: 30px 0 10px; font-size: 19px; }
.discipline p { margin: 0; color: #989a93; font-size: 13px; line-height: 1.65; }

.portfolio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.project-card { min-height: 480px; border-radius: 28px; overflow: hidden; position: relative; background: var(--dark); color: #fff; }
.project-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: .72; transition: transform .5s ease; }
.project-card:hover img { transform: scale(1.035); }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.78) 100%); }
.project-content { position: absolute; z-index: 2; left: 32px; right: 32px; bottom: 28px; }
.project-label { display: inline-block; padding: 7px 10px; border: 1px solid rgba(255,255,255,.23); border-radius: 999px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; backdrop-filter: blur(10px); }
.project-card h3 { font-size: 27px; margin: 0 0 8px; letter-spacing: -.04em; }
.project-card p { margin: 0; color: #d0d1ca; font-size: 13px; }
.logo-cloud { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.logo-tile { min-height: 150px; background: #fff; border: 1px solid var(--line); border-radius: 20px; display: grid; place-items: center; padding: 24px; }
.logo-tile img { max-height: 58px; max-width: 150px; object-fit: contain; filter: grayscale(1); opacity: .72; }

.culture-banner { background: var(--yellow); border-radius: 30px; padding: 58px; display: grid; grid-template-columns: 1fr .85fr; gap: 55px; }
.culture-banner p { color: #57543c; line-height: 1.7; }
.culture-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.culture-list span { padding: 14px; background: rgba(255,255,255,.44); border: 1px solid rgba(17,18,15,.08); border-radius: 14px; font-size: 12px; font-weight: 800; }

.cookie-banner { position: fixed; z-index: 1200; left: 22px; bottom: 22px; max-width: 410px; background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: 0 20px 65px rgba(0,0,0,.2); padding: 17px 18px; border-radius: 17px; display: none; align-items: center; gap: 14px; }
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.cookie-banner button { flex: 0 0 auto; border: 0; border-radius: 999px; background: var(--dark); color: #fff; padding: 9px 13px; font-size: 11px; font-weight: 800; }
.scroll-top { width: 44px; height: 44px; position: fixed; z-index: 900; right: 22px; bottom: 22px; border-radius: 50%; border: 1px solid #dedfd8; background: #fff; color: var(--ink); display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.scroll-top.show { opacity: 1; visibility: visible; transform: none; }

.thankyou { min-height: 100vh; background: var(--dark); color: #fff; display: grid; place-items: center; padding: 40px 0; }
.thankyou-card { max-width: 680px; text-align: center; padding: 54px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); border-radius: 30px; }
.thankyou-icon { width: 62px; height: 62px; margin: 0 auto 25px; border-radius: 50%; background: var(--yellow); color: var(--dark); display: grid; place-items: center; font-size: 25px; }
.thankyou-card p { color: #b7b8b2; line-height: 1.7; }
.thankyou-card .btn { margin-top: 18px; }

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 420px; gap: 40px; }
  .service-row { padding-left: 38px; padding-right: 38px; }
  .services-intro { padding-left: 38px; padding-right: 38px; }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .site-nav { position: fixed; inset: 70px 18px auto; background: #181915; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 18px; box-shadow: 0 25px 80px rgba(0,0,0,.45); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s ease; }
  .nav-open .site-nav { opacity: 1; visibility: visible; transform: none; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav a { display: block; padding: 13px 10px; font-size: 15px; }
  .site-nav .nav-cta { margin-top: 7px; }
  .mobile-toggle { display: block; }
  .hero { min-height: auto; padding-top: 135px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .dashboard-shell { width: min(100%, 560px); margin: 18px auto 0; }
  .logo-row { grid-template-columns: repeat(4,1fr); row-gap: 28px; }
  .split-head, .services-intro, .method-grid, .insight, .inner-hero-grid, .contact-grid, .culture-banner { grid-template-columns: 1fr; gap: 32px; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .problem-item:nth-child(2) { border-right: 0; }
  .problem-item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .problem-item:nth-child(3) { padding-left: 0; }
  .service-row { grid-template-columns: 55px 1fr 40px; }
  .service-row p { grid-column: 2 / 3; }
  .method-sticky { position: static; }
  .insight-points { max-width: 620px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card:last-child { display: none; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid .footer-col:last-child { grid-column: auto; }
  .inner-hero-actions { justify-content: flex-start; }
  .team-principles { grid-template-columns: 1fr; }
  .discipline-grid { grid-template-columns: 1fr 1fr; }
  .discipline:nth-child(2) { border-right: 0; }
  .discipline:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 68px 0; }
  .display { font-size: clamp(40px, 13vw, 58px); }
  .heading { font-size: clamp(30px, 9vw, 42px); }
  .lead { font-size: 16px; }
  .site-header { padding: 13px 0; }
  .brand img { width: 112px; }
  .hero { padding-top: 112px; padding-bottom: 65px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .dashboard-shell { transform: none; padding: 10px; }
  .dashboard-note { transform: none; }
  .float-card { display: none; }
  .dashboard { min-height: 390px; }
  .metric-value { font-size: 21px; }
  .logo-row { grid-template-columns: repeat(3,1fr); gap: 20px; }
  .logo-row img { max-width: 88px; max-height: 38px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-item, .problem-item:not(:first-child), .problem-item:nth-child(3) { padding: 25px 0; border-right: 0; border-top: 1px solid var(--line); min-height: auto; }
  .problem-item:first-child { border-top: 0; }
  .services-wrap { border-radius: 24px; }
  .services-intro { padding: 36px 24px 28px; }
  .service-row { grid-template-columns: 38px 1fr 36px; gap: 12px; padding: 24px; }
  .service-row h3 { font-size: 19px; }
  .service-row p { font-size: 12px; }
  .step { grid-template-columns: 42px 1fr; gap: 10px; }
  .insight { padding: 38px 25px; border-radius: 24px; }
  .insight-points { grid-template-columns: 1fr; }
  .section-actions { align-items: flex-start; flex-direction: column; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card:nth-child(2) { display: none; }
  .cta-band { padding: 70px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand, .footer-grid .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .inner-hero { padding: 135px 0 70px; }
  .form-card { padding: 25px 20px; border-radius: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .discipline-grid { grid-template-columns: 1fr; }
  .discipline { border-right: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .discipline:first-child { border-top: 0; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 390px; }
  .logo-cloud { grid-template-columns: 1fr 1fr; }
  .culture-list { grid-template-columns: 1fr; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}


/* =========================================================
   ADEZ — refinamento minimalista / institucional (v2)
   ========================================================= */
:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --surface-2: #f0f0ed;
  --ink: #171714;
  --muted: #272727;
  --line: #deded8;
  --dark: #121210;
  --dark-2: #1a1a17;
  --yellow: #edc126;
  --yellow-2: #f5cf3f;
  --yellow-soft: #fbf3cf;
  --radius-sm: 5px;
  --radius: 8px;
  --radius-lg: 10px;
  --shadow: none;
  --container: 1160px;
}

body {
  background: var(--bg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -.005em;
}

.container { width: min(calc(100% - 48px), var(--container)); }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-white {
  background: #fff;
}

.eyebrow {
  gap: 0;
  margin-bottom: 18px;
  color: #353535;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
}
.eyebrow::before { display: none; }

.display {
  font-size: clamp(42px, 5.4vw, 70px);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 700;
}
.heading {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 700;
}
.subheading { font-weight: 700; letter-spacing: -.03em; }
.lead { font-size: 17px; line-height: 1.72; }

.site-header { padding: 18px 0; }
.site-header.scrolled,
.site-header.header-solid {
  background: rgba(18,18,16,.98);
  border-color: rgba(255,255,255,.09);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header.scrolled { padding: 12px 0; }
.brand img { width: 116px; height: 30px; }
.site-nav ul { gap: 25px; }
.site-nav a { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.72); }
.nav-cta {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 5px;
  background: var(--yellow);
  font-weight: 600 !important;
}

.btn {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { transform: none; }
.btn-outline { background: transparent; }
.btn-light-outline { background: transparent; }
.btn-link { font-weight: 600; }

.hero {
  min-height: 720px;
  padding: 142px 0 82px;
  background: var(--dark);
}
.hero::after { display: none; }
.hero-grid { grid-template-columns: minmax(0, 1fr) minmax(390px, .86fr); gap: 72px; }
.hero-copy { max-width: 680px; }
.hero-copy .display span { color: var(--yellow); }
.hero-copy .lead { color: #bfc0ba; margin-top: 24px; max-width: 610px; }
.hero-actions { margin-top: 31px; gap: 10px; }
.hero-proof {
  margin-top: 32px;
  padding-left: 14px;
  border-left: 2px solid var(--yellow);
  color: #92938d;
  font-size: 12px;
}
.hero-proof .proof-dots { display: none; }

.dashboard-shell {
  border-radius: 9px;
  padding: 10px;
  background: rgba(255,255,255,.025);
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
  transform: none;
}
.dashboard { border-radius: 5px; min-height: 430px; background: #f6f6f3; }
.dashboard-top { height: 58px; padding: 0 19px; }
.dash-brand { font-size: 12px; font-weight: 600; }
.dash-mark { width: 7px; height: 7px; border-radius: 50%; }
.dash-mark::after { display: none; }
.dash-period { border-radius: 4px; font-size: 10px; }
.dashboard-body { padding: 17px; }
.metric-grid { gap: 8px; }
.metric { border-radius: 4px; padding: 14px; }
.metric-label { font-size: 9px; font-weight: 600; }
.metric-value { font-size: 22px; font-weight: 700; }
.metric-trend { color: #676860; font-size: 9px; font-weight: 500; }
.chart-card { border-radius: 4px; padding: 15px; }
.chart-head strong { font-weight: 600; }
.bar { border-radius: 2px 2px 0 0; }
.float-card { display: none; }
.dashboard-note { transform: none; color: rgba(255,255,255,.38); }

.logo-strip { padding: 31px 0; }
.logo-strip-head { margin-bottom: 22px; font-size: 10px; font-weight: 600; }
.logo-row { gap: 35px; }
.logo-row img { max-height: 40px; opacity: .48; }
.logo-row img:hover { filter: grayscale(1); opacity: .72; }

.split-head { gap: 78px; margin-bottom: 50px; }
.problem-item { min-height: 205px; padding-top: 28px; }
.problem-index {
  width: auto;
  height: auto;
  display: block;
  margin-bottom: 25px;
  border-radius: 0;
  background: transparent;
  color: #9a7e14;
  font-size: 10px;
  font-weight: 600;
}
.problem-item h3 { font-size: 17px; font-weight: 600; }
.problem-item p { font-size: 13px; }

.services-wrap {
  background: var(--dark);
  border-radius: 8px;
  border: 1px solid #24241f;
}
.services-intro { padding: 58px 58px 44px; gap: 75px; }
.services-intro p { font-size: 14px; }
.service-row {
  grid-template-columns: 58px 1fr 1.15fr;
  gap: 28px;
  padding: 26px 58px;
}
.service-row:hover { background: rgba(255,255,255,.018); }
.service-num { font-size: 10px; font-weight: 600; }
.service-row h3 { font-size: 19px; font-weight: 600; }
.service-row p { font-size: 12.5px; }
.service-arrow { display: none; }

.method-grid { gap: 90px; }
.step { grid-template-columns: 62px 1fr; padding: 27px 0; }
.step-num { font-size: 10px; font-weight: 600; }
.step h3 { font-size: 20px; font-weight: 600; }
.step p { font-size: 13px; }

.insight {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--yellow);
  border-radius: 7px;
  padding: 58px;
  gap: 70px;
}
.insight::after { display: none; }
.insight p { color: var(--muted); }
.insight-points { gap: 0; border-top: 1px solid var(--line); }
.insight-point {
  min-height: 92px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 18px 8px 18px 0;
  font-size: 12px;
  font-weight: 600;
}
.insight-point:nth-child(odd) { border-right: 1px solid var(--line); }
.insight-point:nth-child(even) { padding-left: 18px; }
.insight-point i { margin-bottom: 11px; font-size: 18px; color: #77786f; }

.blog-grid { gap: 18px; }
.blog-card { border-radius: 6px; transition: border-color .18s ease; }
.blog-card:hover { transform: none; box-shadow: none; border-color: #bdbeb6; }
.blog-image { height: 200px; }
.blog-content { padding: 22px; }
.blog-card h3 { font-size: 18px; font-weight: 600; }
.section-actions { margin-bottom: 36px; }

.cta-band { padding: 86px 0; }
.cta-grid { gap: 70px; }

.site-footer { background: #0f0f0d; padding-top: 62px; }
.footer-grid { gap: 50px; padding-bottom: 48px; }
.footer-col h4 { font-weight: 600; }
.footer-col a, .footer-col p { font-size: 12px; }
.social-row a { border-radius: 4px; }

.inner-hero { padding: 168px 0 82px; background: var(--dark); }
.inner-hero::after { display: none; }
.inner-hero-grid { gap: 80px; }

.contact-grid { gap: 72px; }
.form-card {
  border-radius: 7px;
  padding: 34px;
  box-shadow: none;
}
.form-card h2 { font-size: 25px; font-weight: 600; }
.field input, .field select, .field textarea { border-radius: 4px; background: #fff; }
.field input:focus, .field select:focus, .field textarea:focus { box-shadow: 0 0 0 2px rgba(237,193,38,.18); }

.principle { border-radius: 6px; padding: 27px; }
.principle i { font-size: 21px; color: #77786f; }
.principle h3 { margin-top: 25px; font-size: 18px; font-weight: 600; }
.discipline .num { color: #b89412; font-weight: 600; }
.discipline h3 { font-size: 18px; font-weight: 600; }

.project-card { min-height: 460px; border-radius: 6px; }
.project-card:hover img { transform: none; }
.project-label { border-radius: 4px; backdrop-filter: none; }
.project-card h3 { font-size: 24px; font-weight: 600; }
.logo-cloud { gap: 12px; }
.logo-tile { min-height: 138px; border-radius: 6px; }

.culture-banner {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--yellow);
  border-radius: 6px;
  padding: 50px;
}
.culture-banner p { color: var(--muted); }
.culture-list { gap: 0; border-top: 1px solid var(--line); }
.culture-list span {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 0;
  font-size: 11px;
  font-weight: 600;
}
.culture-list span:nth-child(odd) { border-right: 1px solid var(--line); }
.culture-list span:nth-child(even) { padding-left: 16px; }

.cookie-banner { border-radius: 6px; box-shadow: 0 12px 35px rgba(0,0,0,.12); }
.cookie-banner button { border-radius: 4px; }
.scroll-top { border-radius: 4px; box-shadow: none; }
.thankyou-card { border-radius: 8px; }

@media (max-width: 900px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 78px 0; }
  .hero { min-height: auto; padding-top: 132px; }
  .hero-grid { gap: 52px; }
  .services-intro { padding: 45px 32px 34px; }
  .service-row { padding: 23px 32px; }
  .insight { padding: 40px 32px; }
  .culture-banner { padding: 40px 32px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 66px 0; }
  .display { font-size: clamp(38px, 12vw, 52px); }
  .hero { padding: 120px 0 66px; }
  .hero-actions .btn { width: 100%; }
  .dashboard-shell { padding: 7px; }
  .metric-value { font-size: 19px; }
  .services-wrap { border-radius: 5px; }
  .services-intro, .service-row { padding-left: 22px; padding-right: 22px; }
  .service-row { grid-template-columns: 40px 1fr; gap: 12px; }
  .service-row p { grid-column: 2; }
  .insight { padding: 30px 22px; }
  .insight-points { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
  .culture-banner { padding: 30px 22px; }
}

/* Responsive corrections for v2 overrides */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 400px; gap: 44px; }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .site-nav {
    inset: 70px 16px auto;
    border-radius: 6px;
    padding: 14px;
    box-shadow: 0 18px 45px rgba(0,0,0,.28);
  }
  .site-nav a { font-size: 14px; }
  .hero-grid,
  .split-head,
  .services-intro,
  .method-grid,
  .insight,
  .inner-hero-grid,
  .contact-grid,
  .culture-banner { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .dashboard-shell { width: min(100%, 560px); margin: 8px auto 0; }
  .logo-row { grid-template-columns: repeat(4,1fr); }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 50px 1fr; }
  .service-row p { grid-column: 2; }
  .method-sticky { position: static; }
  .insight-points { max-width: 620px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card:last-child { display: none; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid .footer-col:last-child { grid-column: auto; }
  .inner-hero-actions { justify-content: flex-start; }
  .team-principles { grid-template-columns: 1fr; }
  .discipline-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .site-header { padding: 13px 0; }
  .logo-row { grid-template-columns: repeat(3,1fr); gap: 20px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-item,
  .problem-item:not(:first-child),
  .problem-item:nth-child(3) {
    padding: 24px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
    min-height: auto;
  }
  .problem-item:first-child { border-top: 0; }
  .service-row { grid-template-columns: 36px 1fr; }
  .step { grid-template-columns: 40px 1fr; gap: 12px; }
  .section-actions { align-items: flex-start; flex-direction: column; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card:nth-child(2) { display: none; }
  .cta-band { padding: 68px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand, .footer-grid .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .inner-hero { padding: 130px 0 66px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .discipline-grid { grid-template-columns: 1fr; }
  .discipline { border-right: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .discipline:first-child { border-top: 0; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 380px; }
  .logo-cloud { grid-template-columns: 1fr 1fr; }
  .culture-list { grid-template-columns: 1fr; }
  .culture-list span:nth-child(odd) { border-right: 0; }
  .culture-list span:nth-child(even) { padding-left: 0; }
}

/* v3 — hero com clientes em evidência */
.hero {
  min-height: 760px;
  padding: 132px 0 72px;
}
.hero-grid {
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  gap: 64px;
}
.hero-copy .display {
  font-size: clamp(43px, 5.2vw, 70px);
}

.hero-clients {
  min-width: 0;
  border-left: 1px solid rgba(255,255,255,.11);
  padding-left: 28px;
}
.hero-clients-head {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
  color: #424242;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero-clients-head a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #303030;
  letter-spacing: .05em;
  transition: color .18s ease;
}
.hero-clients-head a:hover { color: var(--yellow); }

.client-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.14);
}
.client-showcase-card {
  min-height: 166px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f3f3ef;
  padding: 30px;
  isolation: isolate;
}
.client-showcase-card:nth-child(2),
.client-showcase-card:nth-child(3),
.client-showcase-card:nth-child(6) { background: #ebebe6; }
.client-showcase-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
  z-index: 4;
}
.client-showcase-card > img {
  width: auto;
  max-width: 66%;
  max-height: 66px;
  object-fit: contain;
  transition: transform .25s ease, opacity .25s ease;
  position: relative;
  z-index: 1;
}
.client-showcase-card:nth-child(1) > img { max-width: 55%; max-height: 58px; }
.client-showcase-card:nth-child(2) > img { max-width: 32%; max-height: 78px; }
.client-showcase-card:nth-child(3) > img { max-width: 72%; max-height: 62px; }
.client-showcase-card:nth-child(4) > img { max-width: 72%; max-height: 58px; }
.client-showcase-card:nth-child(5) > img { max-width: 58%; max-height: 70px; }
.client-showcase-card:nth-child(6) > img { max-width: 70%; max-height: 55px; }

.client-showcase-hover {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  min-height: 63px;
  padding: 11px 16px 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: end;
  background: rgba(17,18,15,.96);
  color: #fff;
  transform: translateY(101%);
  transition: transform .24s ease;
}
.client-showcase-hover small {
  grid-column: 1;
  grid-row: 1;
  color: #91938c;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.client-showcase-hover strong {
  grid-column: 1;
  grid-row: 2;
  margin-top: 3px;
  font-size: 14px;
  font-weight: 600;
}
.client-showcase-hover i {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--yellow);
  font-size: 16px;
}
@media (hover: hover) {
  .client-showcase-card:hover::after { transform: scaleX(1); }
  .client-showcase-card:hover > img { transform: translateY(-15px) scale(.96); opacity: .68; }
  .client-showcase-card:hover .client-showcase-hover { transform: translateY(0); }
}

.client-context {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.client-context-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.client-context p {
  margin: 0;
  color: #72746c;
  font-size: 12px;
}
.client-context a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
}
.client-context a i { color: #9b7c08; }

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
    gap: 42px;
  }
  .hero-clients { padding-left: 22px; }
  .client-showcase-card { min-height: 154px; }
}

@media (max-width: 900px) {
  .hero { padding-top: 124px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-copy { max-width: 720px; }
  .hero-clients {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.11);
    padding: 22px 0 0;
  }
  .client-showcase-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .client-showcase-card { min-height: 145px; }
}

@media (max-width: 620px) {
  .hero { padding: 112px 0 54px; }
  .hero-grid { gap: 38px; }
  .hero-copy .display { font-size: clamp(38px, 11.2vw, 50px); }
  .hero-clients-head { align-items: flex-end; margin-bottom: 10px; }
  .hero-clients-head > span { max-width: 180px; line-height: 1.4; }
  .client-showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .client-showcase-card { min-height: 126px; padding: 22px 16px; }
  .client-showcase-card > img { max-height: 52px; }
  .client-showcase-card:nth-child(1) > img { max-height: 45px; }
  .client-showcase-card:nth-child(2) > img { max-height: 62px; }
  .client-showcase-card:nth-child(5) > img { max-height: 55px; }
  .client-showcase-hover { display: none; }
  .client-context-inner { min-height: 76px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 6px; padding: 14px 0; }
}

/* v4 — carrossel horizontal de marcas abaixo do posicionamento */
.hero {
  min-height: auto;
  padding: 138px 0 74px;
}
.hero-grid {
  display: block;
}
.hero-copy {
  max-width: 860px;
}
.hero-copy .display {
  max-width: 840px;
  font-size: clamp(46px, 6vw, 76px);
}
.hero-copy .lead {
  max-width: 670px;
}
.hero-proof {
  margin-top: 26px;
}

.hero-clients.client-carousel {
  margin-top: 76px;
  min-width: 0;
  border-left: 0;
  border-top: 1px solid rgba(255, 0, 0, 0.12);
  padding: 24px 0 0;
}
.hero-clients-head {
  min-height: 44px;
  margin-bottom: 18px;
}
.client-carousel-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.client-carousel-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}
.client-carousel-nav button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(29, 29, 29, 0.87);
  background: transparent;
  color: #d7d8d2;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.client-carousel-nav button:hover,
.client-carousel-nav button:focus-visible {
  border-color: rgba(10, 10, 10, 0.7);
  color: var(--yellow);
  background: rgba(255,255,255,.035);
}

.client-carousel-viewport {
  --client-card-width: clamp(235px, 25vw, 302px);
  overflow: hidden;
  width: 100%;
  padding: 18px 0 26px;
  mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.client-carousel-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  will-change: transform;
  transition: transform .58s cubic-bezier(.22,.61,.36,1);
}
.client-carousel-card {
  flex: 0 0 var(--client-card-width);
  height: 198px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 34px 30px;
  background: #ededE8;
  border: 1px solid rgba(255,255,255,.06);
  opacity: .42;
  transform: scale(.88);
  transition: transform .42s ease, opacity .42s ease, background .3s ease;
  isolation: isolate;
}
.client-carousel-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
  z-index: 4;
}
.client-carousel-card > img {
  width: auto;
  max-width: 68%;
  max-height: 72px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform .28s ease, opacity .28s ease;
}
.client-carousel-card[data-brand="nema"] > img { max-width: 60%; max-height: 200px; }
.client-carousel-card[data-brand="jappa"] > img { max-width: 52%; max-height: 60px; }
.client-carousel-card[data-brand="99food"] > img { max-width: 34%; max-height: 82px; }
.client-carousel-card[data-brand="balada"] > img { max-width: 76%; max-height: 66px; }
.client-carousel-card[data-brand="asa"] > img { max-width: 76%; max-height: 62px; }
.client-carousel-card[data-brand="galeteria"] > img { max-width: 58%; max-height: 78px; }
.client-carousel-card[data-brand="formigueiro"] > img { max-width: 72%; max-height: 60px; }
.client-carousel-card.is-active {
  opacity: 1;
  transform: scale(1);
  background: #f7f7f3;
  z-index: 3;
}
.client-carousel-card.is-active::after { transform: scaleX(1); }

.client-carousel-caption {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  min-height: 62px;
  padding: 11px 16px 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: end;
  background: rgba(17,18,15,.96);
  color: #fff;
  transform: translateY(101%);
  transition: transform .24s ease;
}
.client-carousel-caption small {
  grid-column: 1;
  grid-row: 1;
  color: #91938c;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.client-carousel-caption strong {
  grid-column: 1;
  grid-row: 2;
  margin-top: 3px;
  font-size: 14px;
  font-weight: 600;
}
.client-carousel-caption i {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--yellow);
  font-size: 16px;
}
@media (hover: hover) {
  .client-carousel-card.is-active:hover > img { transform: translateY(-15px) scale(.96); opacity: .65; }
  .client-carousel-card.is-active:hover .client-carousel-caption { transform: translateY(0); }
  .client-carousel-card:not(.is-active):hover { opacity: .68; }
}
.client-carousel-dots {
  min-height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}
.client-carousel-dots button {
  width: 5px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.25);
  transition: width .22s ease, border-radius .22s ease, background .22s ease;
}
.client-carousel-dots button.is-active {
  width: 22px;
  border-radius: 99px;
  background: var(--dark);
}

@media (max-width: 900px) {
  .hero { padding-top: 126px; }
  .hero-grid { display: block; }
  .hero-copy { max-width: 760px; }
  .hero-clients.client-carousel {
    margin-top: 58px;
    padding-top: 22px;
  }
  .client-carousel-viewport { --client-card-width: clamp(220px, 43vw, 290px); }
  .client-carousel-card { height: 184px; }
}

@media (max-width: 620px) {
  .hero { padding: 112px 0 52px; }
  .hero-copy .display { font-size: clamp(38px, 11.2vw, 50px); }
  .hero-clients.client-carousel { margin-top: 46px; }
  .hero-clients-head {
    align-items: center;
    margin-bottom: 10px;
  }
  .hero-clients-head > span { max-width: 150px; line-height: 1.35; }
  .client-carousel-actions > a { display: none; }
  .client-carousel-nav button { width: 36px; height: 36px; }
  .client-carousel-viewport {
    --client-card-width: min(72vw, 270px);
    margin-left: -20px;
    width: calc(100% + 40px);
    padding: 16px 0 22px;
    mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  }
  .client-carousel-card { height: 170px; padding: 28px 22px; }
  .client-carousel-card > img { max-height: 62px; }
  .client-carousel-caption { display: none; }
  .client-carousel-dots { margin-top: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .client-carousel-track,
  .client-carousel-card,
  .client-carousel-card > img,
  .client-carousel-caption { transition: none !important; }
}

/* v5 — hero centralizado + navegação com marca ao centro */
@media (min-width: 901px) {
  .nav-wrap {
    position: relative;
    min-height: 36px;
  }

  .brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
  }

  .brand img {
    object-position: center;
  }

  .site-nav {
    width: 100%;
    margin-left: 0;
  }

  .site-nav ul {
    width: 100%;
    gap: 24px;
  }

  .site-nav li:nth-child(3) {
    margin-right: auto;
  }

  .site-nav li:nth-child(4) {
    margin-left: auto;
  }
}

.hero-copy {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-copy .display {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-copy .lead {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  justify-content: center;
}

.hero-proof {
  justify-content: center;
}

@media (max-width: 900px) {
  .brand {
    position: static;
    transform: none;
  }

  .site-nav li:nth-child(3),
  .site-nav li:nth-child(4) {
    margin: 0;
  }

  .hero-copy {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }
}


/* v9 — imagem de halo aplicada ao hero ocupando toda a área */
.hero {
  isolation: isolate;
  background: #151515;
}

.hero::before {
  content: "";
  display: block !important;
  position: absolute;
  inset: -6%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 58% 72% at 14% 72%, rgba(255,248,224,.42) 0%, rgba(255,244,206,.30) 24%, rgba(255,237,185,.16) 42%, rgba(255,255,255,0) 66%),
    radial-gradient(ellipse 62% 74% at 88% 62%, rgba(236,188,28,.58) 0%, rgba(224,176,20,.40) 28%, rgba(195,150,16,.18) 48%, rgba(255,204,0,0) 70%),
    radial-gradient(ellipse 34% 42% at 50% 47%, rgba(11,11,11,.90) 0%, rgba(13,13,13,.82) 34%, rgba(14,14,14,.48) 54%, rgba(14,14,14,.14) 68%, rgba(14,14,14,0) 82%),
    radial-gradient(ellipse 42% 24% at 50% 82%, rgba(255,251,236,.18) 0%, rgba(255,247,219,.08) 34%, rgba(255,255,255,0) 72%),
    linear-gradient(180deg, #121212 0%, #0d0d0d 100%);
  opacity: 1;
  transform: scale(1.05);
  filter: blur(34px);
}

.hero::after {
  content: "";
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 48%, rgba(0,0,0,.06) 0%, rgba(0,0,0,.16) 34%, rgba(0,0,0,.30) 66%, rgba(0,0,0,.48) 100%),
    linear-gradient(180deg, rgba(255,255,255,.015) 0%, rgba(255,255,255,0) 18%, rgba(0,0,0,.18) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy::before {
  content: none !important;
  display: none !important;
}

@media (max-width: 900px) {
  .hero::before {
    inset: -10%;
    background:
      radial-gradient(ellipse 72% 74% at 10% 76%, rgba(255,248,224,.34) 0%, rgba(255,242,198,.24) 28%, rgba(255,236,176,.12) 46%, rgba(255,255,255,0) 68%),
      radial-gradient(ellipse 76% 78% at 92% 58%, rgba(234,187,28,.52) 0%, rgba(222,173,19,.34) 30%, rgba(191,145,16,.15) 50%, rgba(255,204,0,0) 72%),
      radial-gradient(ellipse 48% 34% at 50% 40%, rgba(11,11,11,.90) 0%, rgba(13,13,13,.76) 38%, rgba(14,14,14,.34) 60%, rgba(14,14,14,0) 82%),
      radial-gradient(ellipse 54% 18% at 50% 79%, rgba(255,251,236,.14) 0%, rgba(255,255,255,0) 72%),
      linear-gradient(180deg, #121212 0%, #0d0d0d 100%);
    opacity: 1;
    transform: scale(1.02);
    filter: blur(28px);
  }

  .hero::after {
    background:
      radial-gradient(circle at 50% 44%, rgba(0,0,0,.08) 0%, rgba(0,0,0,.18) 40%, rgba(0,0,0,.30) 74%, rgba(0,0,0,.46) 100%),
      linear-gradient(180deg, rgba(255,255,255,.01), rgba(0,0,0,.14));
  }
}

/* v8 — cantos mais arredondados + navegação centralizada */
:root {
  --radius-sm: 18px;
  --radius: 26px;
  --radius-lg: 34px;
}

/* Botões */
.btn,
.nav-cta,
.cookie-banner button {
  border-radius: 16px;
}

/* Cards e superfícies principais */
.services-wrap,
.insight,
.form-card,
.principle,
.project-card,
.logo-tile,
.culture-banner,
.cookie-banner,
.thankyou-card {
  border-radius: 26px;
}

.blog-card {
  border-radius: 24px;
}

.insight-point,
.culture-list span,
.field input,
.field select,
.field textarea {
  border-radius: 16px;
}

.client-carousel-card {
  border-radius: 26px;
}

.client-carousel-caption {
  border-radius: 0 0 25px 25px;
}

/* Menu desktop: logo menor à esquerda e navegação centralizada */
@media (min-width: 901px) {
  .nav-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 42px;
  }

  .brand {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    z-index: 3;
  }

  .brand img {
    width: 102px;
    height: 27px;
    object-fit: contain;
    object-position: left center;
  }

  .site-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    margin: 0;
  }

  .site-nav ul {
    width: auto;
    gap: 24px;
    white-space: nowrap;
    justify-content: center;
  }

  .site-nav li:nth-child(3),
  .site-nav li:nth-child(4) {
    margin: 0;
  }
}

@media (max-width: 900px) {
  .brand img {
    width: 100px;
    height: 26px;
  }

  .site-nav {
    border-radius: 24px;
  }

  .btn,
  .nav-cta,
  .cookie-banner button {
    border-radius: 15px;
  }

  .services-wrap,
  .insight,
  .form-card,
  .principle,
  .project-card,
  .logo-tile,
  .culture-banner,
  .cookie-banner,
  .thankyou-card,
  .blog-card,
  .client-carousel-card {
    border-radius: 22px;
  }
}


/* v10 — página Quem somos / sócios */
.founders-hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  text-align: center;
}

.founders-hero-inner {
  max-width: 980px;
  margin: 0 auto;
}

.founders-hero .display {
  max-width: 900px;
  margin: 18px auto 0;
}

.founders-hero .lead {
  max-width: 720px;
  margin: 28px auto 0;
}

.founders-section {
  padding-top: 110px;
  padding-bottom: 120px;
}

.founders-intro {
  max-width: 690px;
  margin-bottom: 48px;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.founder-card {
  min-height: 520px;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: #f8f8f4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.founder-card:hover {
  transform: translateY(-5px);
  border-color: #d2d2ca;
  box-shadow: 0 24px 70px rgba(17,18,15,.08);
}

.founder-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.founder-monogram {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--dark);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.founder-number {
  color: #a3a49e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.founder-card-body {
  margin-top: 80px;
}

.founder-role {
  display: block;
  margin-bottom: 14px;
  color: #777970;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.founder-card h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: .98;
  letter-spacing: -.055em;
}

.founder-card p {
  max-width: 560px;
  margin: 24px 0 0;
  color: #5d5f58;
  font-size: 16px;
  line-height: 1.75;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.founder-tags span {
  padding: 9px 13px;
  border: 1px solid #dedfd8;
  border-radius: 999px;
  background: #fff;
  color: #4f514b;
  font-size: 11px;
  font-weight: 750;
}

.founders-bridge {
  padding: 90px 0;
  background: var(--yellow);
}

.founders-bridge-inner {
  display: grid;
  grid-template-columns: 1.05fr .8fr;
  gap: 90px;
  align-items: end;
}

.founders-bridge .eyebrow::before {
  background: var(--dark);
}

.founders-bridge p {
  margin: 0;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.7;
  color: #38382f;
}

@media (max-width: 900px) {
  .founders-hero {
    min-height: auto;
    padding-top: 138px;
    padding-bottom: 78px;
  }

  .founders-grid,
  .founders-bridge-inner {
    grid-template-columns: 1fr;
  }

  .founders-grid {
    gap: 18px;
  }

  .founder-card {
    min-height: 460px;
    padding: 28px;
  }

  .founder-card-body {
    margin-top: 60px;
  }

  .founders-bridge-inner {
    gap: 30px;
  }
}

@media (max-width: 560px) {
  .founders-section {
    padding-top: 78px;
    padding-bottom: 84px;
  }

  .founder-card {
    min-height: 430px;
    border-radius: 28px;
  }

  .founder-monogram {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }
}


/* v11 — ajuste de foco delivery + marketing */
.hero-copy .lead { max-width: 820px; }
.services-intro p { max-width: 760px; }

/* =========================================================
   v12 — degradê fluido no hero (preto / amarelo), agora como
   um único gradiente linear (sem vinhete radial por cima —
   era ele que criava a "costura" elíptica visível: a borda
   onde o vinhete se dissolvia por cima do linear). Paradas de
   cor mais espaçadas para uma transição totalmente contínua.
   ========================================================= */
.hero {
  background: linear-gradient(
    128deg,
    #020201 0%,
    #050403 20%,
    #0a0806 36%,
    #171208 50%,
    #392c0c 64%,
    #7a5c0f 78%,
    var(--yellow) 90%,
    #2b220f 100%
  );
}

.hero::before,
.hero::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 900px) {
  .hero {
    background: linear-gradient(
      150deg,
      #020201 0%,
      #050403 22%,
      #0b0906 38%,
      #191309 52%,
      #40320d 66%,
      #866710 80%,
      var(--yellow) 92%,
      #2b220f 104%
    );
  }
}

/* =========================================================
   v14 — botão "Falar com um especialista" na borda máxima
   direita da tela. No desktop ele deixa de fazer parte do
   menu centralizado (que passa a mostrar só os 4 links) e
   vira um elemento próprio, ancorado direto no .site-header
   (que não tem padding horizontal), grudado em right:0 —
   ou seja, na borda real do viewport, não só do container.
   No mobile ele volta a aparecer dentro do menu, como item
   normal da lista.
   ========================================================= */
.nav-cta-fixed { display: none; }

@media (min-width: 901px) {
  .site-nav ul li.nav-cta-mobile-only { display: none; }

  .nav-cta-fixed {
    display: inline-flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
  }
}

/* =========================================================
   v15 — carrossel de clientes movido do hero para uma seção
   própria, entre "Gestão orientada por dados" e o blog.
   Ele foi desenhado originalmente para viver dentro do hero
   (fundo escuro em tela cheia), então agora ganha um painel
   escuro próprio (mesmo tratamento visual do .services-wrap)
   pra manter as cores e contrastes que já funcionavam.
   ========================================================= */
.client-carousel-panel {
  background: var(--light);
  border: 1px solid #fcfcfc;
  border-radius: 8px;
  padding: 46px 54px 40px;
  color: #fff;
}

.client-carousel-panel .hero-clients.client-carousel {
  margin-top: 0;
  min-width: 0;
  border-left: 0;
  border-top: 0;
  padding: 0;
}

@media (max-width: 900px) {
  .client-carousel-panel {
    padding: 38px 32px 32px;
  }
}

@media (max-width: 620px) {
  .client-carousel-panel {
    padding: 28px 22px 24px;
    border-radius: 22px;
  }
  .client-carousel-panel .client-carousel-viewport {
    margin-left: 0;
    width: 100%;
  }
}

/* =========================================================
   v16 — sombra de transição na base do hero, suavizando o
   corte entre o degradê e a seção branca seguinte. O ::after
   já tinha sido zerado no v12 (halo antigo); aqui ele volta
   a existir, só que como uma faixa baixa: escurece um pouco
   perto da divisa e depois se dissolve em branco, então a
   própria base do hero já "chega branca" na seção seguinte.
   ========================================================= */
.hero::after {
  content: "" !important;
  display: block !important;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 190px;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.28) 52%,
    rgba(0,0,0,.12) 76%,
    #ffffff 100%
  );
}

@media (max-width: 900px) {
  .hero::after {
    height: 140px;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,.30) 50%,
      rgba(0,0,0,.12) 74%,
      #ffffff 100%
    );
  }
}

@media (max-width: 620px) {
  .hero::after {
    height: 110px;
  }
}

/* =========================================================
   v17 — foto de cada sócio no card de "Quem somos". Coloque
   os arquivos em assets/img/socios/tiaia-mawe.jpg e
   assets/img/socios/jean-richon.jpg (mesma pasta referenciada
   no HTML) — retrato, de preferência proporção 4:3 ou similar.
   Enquanto a imagem não existe, o <img> some (onerror no HTML)
   e sobra o bloco colorido com o monograma, então o card já
   fica pronto visualmente mesmo sem a foto.
   ========================================================= */
.founder-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  background: var(--yellow-soft);
  margin-bottom: 26px;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-photo .founder-monogram {
  position: absolute;
  right: 14px;
  bottom: 14px;
  box-shadow: 0 14px 34px rgba(17,18,15,.28);
}

.founder-card-body { margin-top: 0; }

@media (max-width: 560px) {
  .founder-photo {
    aspect-ratio: 3 / 2;
    margin-bottom: 20px;
  }
  .founder-monogram {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    font-size: 17px;
  }
}

/* =========================================================
   v18 — "bolinha" ao redor dos links do menu (Soluções, Quem
   somos, Projetos, Conteúdos) que, ao rolar para fora da área
   escura do hero (degradê), se abre e vira a barra atual do
   header. Feito com CSS Scroll-Driven Animations
   (animation-timeline: scroll()) — sem JS extra, ligado
   direto à posição de scroll da página.

   Os valores em "animation-range" (0px a Npx) são calibrados
   pela altura aproximada do hero em cada breakpoint; ajuste
   esse número se o hero mudar de altura no futuro.

   Suporte: Chrome/Edge/Opera modernos. Em navegadores sem
   suporte a scroll-timeline, tudo isso é ignorado e o site
   cai de volta no comportamento atual (classe .scrolled via
   JS), sem quebrar nada.
   ========================================================= */
.site-nav ul { border: 1px solid transparent; }

@supports (animation-timeline: scroll()) {
  @media (min-width: 901px) {
    .site-nav ul {
      animation-name: nav-pill-explode;
      animation-timeline: scroll(root block);
      animation-range: 0px 560px;
      animation-fill-mode: both;
    }

    .site-header {
      animation-name: header-bar-appear;
      animation-timeline: scroll(root block);
      animation-range: 0px 560px;
      animation-fill-mode: both;
    }
  }

  @keyframes nav-pill-explode {
    0% {
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.2);
      border-radius: 999px;
      padding: 9px 26px;
      transform: scale(1);
    }
    55% {
      transform: scale(1.06);
    }
    100% {
      background: transparent;
      border-color: transparent;
      border-radius: 999px;
      padding: 0;
      transform: scale(1);
    }
  }

  @keyframes header-bar-appear {
    0% {
      background: transparent;
      border-bottom-color: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }
    100% {
      background: rgba(18,18,16,.98);
      border-bottom-color: rgba(255,255,255,.09);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }
  }

  @media (max-width: 900px) {
    .site-nav ul { animation: none; }
    .site-header { animation-range: 0px 420px; }
  }
}

/* =========================================================
   HERO FINAL — degradê preto → amarelo
   Coloque este bloco no FINAL do site.css
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;

  background-color: #070707 !important;

  background-image: linear-gradient(
    118deg,
    #070707 0%,
    #080808 15%,
    #0b0a08 28%,
    #100e09 40%,
    #1b170a 51%,
    #30260b 62%,
    #4d3b0d 72%,
    #70540f 81%,
    #9b7613 89%,
    #c39419 95%,
    #edc126 100%
  ) !important;

  background-size: 100% 100% !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}


/* =========================================================
   REMOVE HALOS, CÍRCULOS E FAIXAS ANTIGAS
   ========================================================= */

.hero::before,
.hero::after {
  content: none !important;
  display: none !important;
}


/* =========================================================
   GARANTE QUE O CONTEÚDO FIQUE ACIMA DO FUNDO
   ========================================================= */

.hero-grid,
.hero-copy {
  position: relative;
  z-index: 2;
}


/* =========================================================
   TEXTO PRINCIPAL
   ========================================================= */

.hero-copy {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-copy .display {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-copy .display span {
  color: var(--yellow);
}

.hero-copy .lead {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.72);
}

.hero-actions {
  justify-content: center;
}


/* =========================================================
   MOBILE / TABLET
   ========================================================= */

@media (max-width: 900px) {

  .hero {
    background-image: linear-gradient(
      145deg,
      #070707 0%,
      #090908 18%,
      #0d0c09 32%,
      #17130a 46%,
      #2a220b 58%,
      #49380d 70%,
      #70550f 80%,
      #9b7613 89%,
      #c39419 96%,
      #edc126 100%
    ) !important;
  }

}


/* =========================================================
   MOBILE PEQUENO
   ========================================================= */

@media (max-width: 620px) {

  .hero {
    background-image: linear-gradient(
      155deg,
      #070707 0%,
      #0a0908 24%,
      #121009 40%,
      #251e0b 56%,
      #4d3b0d 72%,
      #7d5f10 84%,
      #b08716 94%,
      #edc126 100%
    ) !important;
  }

}

/* =========================================================
   v19 — CONTINUIDADE REAL DO HERO ATÉ "O PROBLEMA QUE RESOLVEMOS"

   A mesma camada de fundo engloba:
   1) hero
   2) faixa "Negócios de diferentes segmentos..."
   3) seção "O problema que resolvemos"

   O wrapper termina ANTES de #solucoes.
   Assim "Soluções integradas" nunca recebe esse degradê.
   ========================================================= */

.hero-flow {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  /*
    CAMADA 1 (superior):
    branco entra aos poucos de cima para baixo.

    CAMADA 2 (inferior):
    é o mesmo degradê preto → amarelo usado no hero.

    Como tudo está no MESMO elemento, não existe reinício do
    degradê entre o hero e a seção de problemas.
  */
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0) 5%,
      rgba(255,255,255,0) 25%,
      rgba(255,255,255,.10) 38%,
      rgba(255,255,255,.30) 47%,
      rgba(255,255,255,.52) 57%,
      rgba(255,255,255,.70) 68%,
      rgba(255,255,255,.84) 80%,
      rgba(255,255,255,.94) 91%,
      #ffffff 100%
    ),
    linear-gradient(
      118deg,
      #070707 0%,
      #080808 15%,
      #0b0a08 28%,
      #100e09 40%,
      #1b170a 51%,
      #30260b 62%,
      #4d3b0d 72%,
      #70540f 81%,
      #9b7613 89%,
      #c39419 95%,
      #edc126 100%
    );
}

/* O hero usa o fundo do hero-flow, sem criar outro degradê por cima. */
.hero-flow .hero {
  background: transparent !important;
  background-image: none !important;
  background-color: transparent !important;
}

/* Mata definitivamente halos/faixas antigas do hero. */
.hero-flow .hero::before,
.hero-flow .hero::after {
  content: none !important;
  display: none !important;
}

/* As seções abaixo também deixam o fundo único aparecer. */
.hero-flow .client-context,
.hero-flow #sobre {
  position: relative;
  background: transparent !important;
}

/* Evita qualquer pseudo-elemento antigo produzindo um segundo degradê. */
.hero-flow .client-context::before,
.hero-flow .client-context::after,
.hero-flow #sobre::before,
.hero-flow #sobre::after {
  content: none !important;
  display: none !important;
}

/* Faixa logo abaixo do hero ainda está sobre fundo escuro. */
.hero-flow .client-context {
  border-top: 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.hero-flow .client-context p {
  color: rgba(255,255,255,.82);
}

.hero-flow .client-context a {
  color: #fff;
}

.hero-flow .client-context a i {
  color: var(--yellow);
}

/* Conteúdo dos problemas sempre acima do fundo. */
.hero-flow #sobre > .container,
.hero-flow .client-context-inner {
  position: relative;
  z-index: 2;
}

/* =========================================================
   CORTE OBRIGATÓRIO ANTES DE "SOLUÇÕES INTEGRADAS"
   ========================================================= */

#solucoes {
  position: relative;
  z-index: 5;
  isolation: isolate;
  background: var(--bg) !important;
}

#solucoes::before,
#solucoes::after {
  content: none !important;
  display: none !important;
}

/* O card de soluções continua com o fundo escuro original. */
#solucoes .services-wrap {
  background: var(--dark) !important;
}

/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 900px) {
  .hero-flow {
    background:
      linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0) 25%,
        rgba(255,255,255,.12) 34%,
        rgba(255,255,255,.34) 45%,
        rgba(255,255,255,.56) 57%,
        rgba(255,255,255,.74) 69%,
        rgba(255,255,255,.87) 81%,
        rgba(255,255,255,.95) 92%,
        #ffffff 100%
      ),
      linear-gradient(
        145deg,
        #070707 0%,
        #090908 18%,
        #0d0c09 32%,
        #17130a 46%,
        #2a220b 58%,
        #49380d 70%,
        #70550f 80%,
        #9b7613 89%,
        #c39419 96%,
        #edc126 100%
      );
  }
}

@media (max-width: 620px) {
  .hero-flow {
    background:
      linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0) 22%,
        rgba(255,255,255,.15) 32%,
        rgba(255,255,255,.38) 44%,
        rgba(255,255,255,.60) 57%,
        rgba(255,255,255,.77) 70%,
        rgba(255,255,255,.89) 82%,
        rgba(255,255,255,.96) 92%,
        #ffffff 100%
      ),
      linear-gradient(
        155deg,
        #070707 0%,
        #0a0908 24%,
        #121009 40%,
        #251e0b 56%,
        #4d3b0d 72%,
        #7d5f10 84%,
        #b08716 94%,
        #edc126 100%
      );
  }
}
/* =========================================================
   CARDS BRANCOS — "O PROBLEMA QUE RESOLVEMOS"
   mantém o fundo da seção transparente / degradê
   ========================================================= */

.hero-flow #sobre {
  background: transparent !important;
}

/* remove as linhas do modelo antigo */
.hero-flow .problem-grid {
  border-top: 0;
  gap: 18px;
}

/* cards */
.hero-flow .problem-item {
  background: #ffffff;

  border: 1px solid rgba(17, 18, 15, 0.08);
  border-radius: 22px;

  padding: 28px !important;
  min-height: 230px;

  box-shadow: 0 12px 35px rgba(17, 18, 15, 0.05);
}

/* remove divisórias antigas entre os cards */
.hero-flow .problem-item:not(:first-child),
.hero-flow .problem-item:last-child {
  border-right: 1px solid rgba(17, 18, 15, 0.08);
}

/* número */
.hero-flow .problem-index {
  margin-bottom: 28px;
}

/* tablet */
@media (max-width: 900px) {
  .hero-flow .problem-grid {
    gap: 14px;
  }

  .hero-flow .problem-item,
  .hero-flow .problem-item:not(:first-child),
  .hero-flow .problem-item:nth-child(3) {
    border: 1px solid rgba(17, 18, 15, 0.08);
    padding: 24px !important;
  }
}

/* celular */
@media (max-width: 620px) {
  .hero-flow .problem-grid {
    gap: 12px;
  }

  .hero-flow .problem-item,
  .hero-flow .problem-item:not(:first-child),
  .hero-flow .problem-item:nth-child(3) {
    min-height: auto;
    padding: 24px !important;
    border: 1px solid rgba(17, 18, 15, 0.08);
    border-radius: 20px;
  }
}

/* =========================================================
   CARD AMARELO — BLOCO "O PROBLEMA QUE RESOLVEMOS"
   ========================================================= */

/* mantém o degradê no fundo da seção */
.hero-flow #sobre {
  background: transparent !important;
}

/* grande card amarelo */
.hero-flow #sobre > .container {
  background: var(--yellow);

  border-radius: 32px;

  /* espaço interno */
  padding: 52px;

  /* deixa o degradê visível nas laterais */
  width: min(calc(100% - 96px), 1120px);

  position: relative;
  z-index: 2;
}

/* texto principal sobre amarelo */
.hero-flow #sobre .eyebrow,
.hero-flow #sobre .heading,
.hero-flow #sobre .lead {
  color: var(--ink);
}

/* cards continuam brancos */
.hero-flow #sobre .problem-item {
  background: #ffffff;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .hero-flow #sobre > .container {
    width: min(calc(100% - 48px), 1120px);
    padding: 40px 32px;
    border-radius: 28px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 620px) {

  .hero-flow #sobre > .container {
    width: calc(100% - 28px);
    padding: 30px 20px;
    border-radius: 24px;
  }

}