:root {
  --navy-950: #050b13;
  --navy-900: #07111f;
  --navy-850: #0a1626;
  --navy-800: #0d1d31;
  --navy-700: #142a46;
  --blue-500: #2f8cff;
  --blue-400: #59a6ff;
  --blue-300: #8dc3ff;
  --cyan-400: #43d8ff;
  --green-400: #52d6a5;
  --gold-400: #e3bc79;
  --ink: #101828;
  --muted: #667085;
  --line: #dfe5ec;
  --soft: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(7, 17, 31, .16);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--navy-950);
  color: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--blue-500); color: #fff; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 10000;
  padding: 12px 16px;
  border-radius: 10px;
  background: #fff;
  color: #111;
  transition: .2s ease;
}
.skip-link:focus { top: 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }
.section-dark { background: var(--navy-950); color: #fff; }
.section-light { background: #fff; color: var(--ink); }
.section-soft { background: var(--soft); color: var(--ink); }

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-400));
  z-index: 9999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 11, 19, .76);
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
}
.header-shell {
  width: min(1320px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 184px; height: auto; object-fit: contain; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.desktop-nav a { font-size: 14px; color: rgba(255,255,255,.72); transition: .2s ease; }
.desktop-nav a:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); border-radius: 12px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span:not(.sr-only) { width: 20px; height: 2px; border-radius: 999px; background: #fff; }
.mobile-menu { padding: 10px 20px 18px; border-top: 1px solid rgba(255,255,255,.08); background: rgba(5,11,19,.98); }
.mobile-menu a { display: block; padding: 13px 0; color: rgba(255,255,255,.85); border-bottom: 1px solid rgba(255,255,255,.07); }

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, #318cff, #1e6fe3); color: #fff; box-shadow: 0 12px 32px rgba(47,140,255,.26); }
.button-primary:hover { box-shadow: 0 18px 40px rgba(47,140,255,.36); }
.button-ghost { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.04); color: #fff; }
.button-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28); }
.button-dark { background: var(--navy-900); color: #fff; }
.button-outline-dark { border: 1px solid #ced6e0; color: var(--ink); background: transparent; }
.button-small { min-height: 42px; padding-inline: 18px; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-400);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-heading h2,
.practice-heading h2,
.method-intro h2,
.cases-heading h2,
.leverpro-content h2,
.about-content h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.section-heading-wide { max-width: 800px; }
.section-lead { margin: 22px 0 0; max-width: 780px; color: #667085; font-size: 18px; line-height: 1.72; }
.section-dark .section-lead, .cases-section .section-lead { color: rgba(255,255,255,.65); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 82px;
  min-height: 760px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 88%);
  pointer-events: none;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; opacity: .55; }
.hero-orb-one { width: 430px; height: 430px; background: rgba(47,140,255,.22); right: 4%; top: 0; }
.hero-orb-two { width: 300px; height: 300px; background: rgba(67,216,255,.1); left: 12%; bottom: -70px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: center; gap: 68px; }
.hero .eyebrow { color: var(--gold-400); }
.hero-copy h1 { margin: 0; max-width: 760px; font-size: clamp(52px, 6vw, 86px); line-height: .98; letter-spacing: -.058em; }
.hero-copy h1 span { color: var(--gold-400); }
.hero-lead { margin: 28px 0 0; max-width: 700px; font-size: clamp(17px, 1.55vw, 21px); color: rgba(255,255,255,.7); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.hero-tags span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); color: rgba(255,255,255,.62); border-radius: 999px; font-size: 12px; }
.partner-badge { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 30px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 999px; background: rgba(255,255,255,.04); color: rgba(255,255,255,.72); font-size: 12px; }
.partner-badge img { width: 84px; height: 20px; object-fit: contain; }

.hero-visual { position: relative; min-width: 0; }
.hero-photo-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 34px;
  min-height: 590px;
  box-shadow: 0 40px 100px rgba(0,0,0,.36);
  background: var(--navy-900);
}
.hero-photo-card img { width: 100%; height: 590px; object-fit: cover; object-position: center center; }
.hero-photo-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,11,19,.03) 28%, rgba(5,11,19,.9) 100%); }
.hero-photo-card figcaption { position: absolute; inset: auto 28px 28px; display: grid; gap: 7px; }
.visual-kicker { color: var(--blue-300); font-size: 11px; letter-spacing: .18em; font-weight: 800; }
.hero-photo-card figcaption strong { max-width: 440px; font-size: 25px; line-height: 1.2; letter-spacing: -.025em; }
.hero-value-card {
  position: relative;
  width: 100%;
  margin-top: 12px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(7,17,31,.92);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
}
.hero-value-card small { color: var(--blue-300); font-size: 10px; letter-spacing: .17em; font-weight: 800; }
.hero-value-card > strong { display: block; margin: 0; font-size: 17px; white-space: nowrap; }
.mini-flow { display: flex; flex-wrap: wrap; gap: 5px; align-items: center; margin: 0; }
.mini-flow span { padding: 5px 7px; background: rgba(255,255,255,.07); border-radius: 8px; font-size: 9px; color: rgba(255,255,255,.72); }
.mini-flow i { font-style: normal; color: var(--blue-400); font-size: 10px; }

.proof-strip { background: #081523; border-top: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid article { padding: 30px 28px; border-right: 1px solid rgba(255,255,255,.08); }
.proof-grid article:last-child { border-right: 0; }
.proof-grid strong { display: block; font-size: 31px; line-height: 1; color: #fff; letter-spacing: -.04em; }
.proof-grid span { display: block; margin-top: 10px; color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.45; }
.proof-note { margin-top: 0; padding: 0 0 20px; color: rgba(255,255,255,.35); font-size: 11px; text-align: center; }

.split-heading { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.problem-list { border-top: 1px solid var(--line); }
.problem-item { display: grid; grid-template-columns: 48px 1fr auto; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line); align-items: start; }
.problem-item > span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #dbe2eb; border-radius: 10px; font-size: 11px; color: #657086; }
.problem-item h3 { margin: 0 0 6px; font-size: 18px; line-height: 1.3; }
.problem-item p { margin: 0; color: #667085; font-size: 14px; }
.problem-item > strong { align-self: center; padding: 7px 10px; border-radius: 999px; background: #edf4ff; color: #2467b8; font-size: 11px; white-space: nowrap; }

.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 52px; }
.pillar-card { position: relative; min-height: 390px; padding: 28px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); border-radius: 24px; background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)); }
.pillar-card::after { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; background: rgba(47,140,255,.1); right: -90px; bottom: -90px; filter: blur(8px); }
.card-number { color: rgba(255,255,255,.3); font-size: 11px; letter-spacing: .14em; }
.card-icon { width: 44px; height: 44px; display: grid; place-items: center; margin: 24px 0; border-radius: 13px; background: rgba(47,140,255,.12); color: var(--blue-300); font-size: 23px; }
.pillar-card h3 { margin: 0 0 12px; font-size: 22px; letter-spacing: -.02em; }
.pillar-card p { margin: 0; color: rgba(255,255,255,.55); font-size: 14px; }
.pillar-card ul { margin: 24px 0 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.pillar-card li { color: rgba(255,255,255,.72); font-size: 12px; }
.pillar-card li::before { content: "•"; margin-right: 8px; color: var(--blue-400); }

.section-practice { background: #08111d; color: #fff; overflow: hidden; }
.practice-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; margin-bottom: 46px; }
.practice-heading h2 span { color: var(--blue-400); }
.practice-heading .section-lead { color: rgba(255,255,255,.62); margin: 0; }
.practice-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-auto-rows: 360px; gap: 16px; }
.practice-card { position: relative; margin: 0; min-height: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.09); border-radius: 26px; background: #0d1d31; }
.practice-card-large { grid-row: span 2; }
.practice-card-wide { grid-column: span 2; }
.practice-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.75,.25,1); }
.practice-card:hover img { transform: scale(1.035); }
.practice-card-large img { object-position: 56% center; }
.practice-card:nth-child(2) img { object-position: center 34%; }
.practice-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(4,9,16,.92) 100%); }
.practice-copy { position: absolute; left: 24px; right: 24px; bottom: 24px; }
.practice-copy small { color: var(--blue-300); font-size: 10px; letter-spacing: .18em; font-weight: 850; }
.practice-copy h3 { margin: 7px 0 8px; font-size: clamp(20px, 2vw, 28px); line-height: 1.1; letter-spacing: -.03em; }
.practice-copy p { margin: 0; max-width: 560px; color: rgba(255,255,255,.66); font-size: 13px; }


.execution-section { background: #fff; color: var(--ink); }
.execution-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; margin-top: 46px; align-items: stretch; }
.execution-feature, .execution-mini-card { overflow: hidden; border: 1px solid #dfe5ec; border-radius: 28px; background: #fff; box-shadow: 0 18px 50px rgba(7,17,31,.06); }
.execution-feature { display: grid; grid-template-columns: 1fr 1fr; min-height: 100%; }
.execution-feature-visual { position: relative; min-height: 100%; overflow: hidden; }
.execution-feature-visual img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; object-position: center center; }
.execution-feature-copy { padding: 34px; display: flex; flex-direction: column; justify-content: center; }
.execution-badge { position: absolute; left: 22px; bottom: 22px; padding: 8px 12px; border-radius: 999px; background: rgba(5,11,19,.76); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .16em; border: 1px solid rgba(255,255,255,.14); }
.execution-feature-copy small, .execution-mini-copy small { color: var(--blue-500); font-size: 10px; font-weight: 850; letter-spacing: .16em; }
.execution-feature-copy h3 { margin: 10px 0 12px; font-size: clamp(28px, 3vw, 42px); line-height: 1.08; letter-spacing: -.04em; }
.execution-feature-copy p { margin: 0; color: #667085; }
.execution-checklist { display: grid; gap: 12px; margin: 26px 0 0; padding: 0; list-style: none; }
.execution-checklist li { position: relative; padding-left: 26px; color: #344054; font-size: 14px; }
.execution-checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green-400); font-weight: 900; }
.execution-side { display: grid; gap: 18px; }
.execution-mini-card { display: grid; grid-template-columns: .96fr 1.04fr; min-height: 194px; }
.execution-mini-card img { width: 100%; height: 100%; min-height: 194px; object-fit: cover; }
.execution-mini-copy { padding: 24px; display: flex; flex-direction: column; justify-content: center; }
.execution-mini-copy h3 { margin: 8px 0 8px; font-size: 21px; line-height: 1.14; letter-spacing: -.03em; }
.execution-mini-copy p { margin: 0; color: #667085; font-size: 13px; }

.human-section { background: linear-gradient(180deg, #06101c 0%, #091521 100%); color: #fff; }
.human-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: start; }
.human-copy .section-lead { color: rgba(255,255,255,.62); }
.human-points { display: grid; gap: 12px; margin-top: 32px; }
.human-points article { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 18px; border: 1px solid rgba(255,255,255,.08); border-radius: 18px; background: rgba(255,255,255,.03); }
.human-points span { display: grid; place-items: start; color: var(--gold-400); font-size: 11px; font-weight: 900; }
.human-points strong { display: block; font-size: 16px; }
.human-points p { margin: 4px 0 0; color: rgba(255,255,255,.62); font-size: 13px; }
.human-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.human-gallery-card { margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.08); border-radius: 24px; background: rgba(255,255,255,.04); }
.human-gallery-card img { width: 100%; height: 280px; object-fit: cover; }
.human-gallery-card:nth-child(3) img { object-position: center 34%; }
.human-gallery-card figcaption { padding: 18px; }
.human-gallery-card strong { display: block; font-size: 18px; }
.human-gallery-card span { display: block; margin-top: 5px; color: rgba(255,255,255,.58); font-size: 13px; }

.method-layout { display: grid; grid-template-columns: 1fr 380px; gap: 70px; align-items: start; }
.method-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.method-intro h2 span { color: var(--blue-500); }
.method-intro > p { margin: 0; color: #667085; }
.method-track { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 44px; }
.method-step { position: relative; padding: 24px 24px 24px 72px; border: 1px solid #dfe5ec; border-radius: 20px; background: rgba(255,255,255,.8); }
.method-step b { position: absolute; left: 20px; top: 22px; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; background: var(--navy-900); color: #fff; }
.method-step span { display: block; color: var(--blue-500); font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.method-step strong { display: block; margin-top: 5px; font-size: 16px; }
.method-step p { margin: 7px 0 0; color: #667085; font-size: 13px; }
.method-photo { position: sticky; top: 110px; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); background: var(--navy-900); min-height: 620px; }
.method-photo img { width: 100%; height: 620px; object-fit: cover; object-position: 58% center; }
.method-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(5,11,19,.92) 100%); }
.method-photo-caption { position: absolute; z-index: 1; left: 24px; right: 24px; bottom: 24px; color: #fff; }
.method-photo-caption small { color: var(--blue-300); font-size: 10px; letter-spacing: .16em; }
.method-photo-caption strong { display: block; margin-top: 8px; font-size: 22px; line-height: 1.22; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; }
.service-card { display: flex; min-height: 430px; flex-direction: column; padding: 30px; border: 1px solid #dde4ed; border-radius: 24px; background: #fff; }
.service-featured { background: var(--navy-900); color: #fff; border-color: var(--navy-900); transform: translateY(-10px); box-shadow: 0 26px 70px rgba(7,17,31,.18); }
.service-stage { color: var(--blue-500); font-size: 10px; font-weight: 850; letter-spacing: .16em; }
.service-card h3 { margin: 18px 0 10px; font-size: 26px; line-height: 1.1; letter-spacing: -.03em; }
.service-card > p { margin: 0; color: #667085; font-size: 14px; }
.service-featured > p { color: rgba(255,255,255,.62); }
.service-card ul { margin: 28px 0 28px; padding: 0; list-style: none; display: grid; gap: 11px; }
.service-card li { font-size: 13px; color: #4b5565; }
.service-featured li { color: rgba(255,255,255,.72); }
.service-card li::before { content: "✓"; margin-right: 9px; color: var(--blue-500); font-weight: 900; }
.text-link { margin-top: auto; font-weight: 750; color: #2467b8; }
.service-featured .text-link { color: var(--blue-300); }

.cases-section { background: linear-gradient(180deg, #06101c 0%, #081523 100%); }
.cases-heading { display: grid; grid-template-columns: 1fr 260px; gap: 60px; align-items: end; }
.cases-summary { padding: 22px; border: 1px solid rgba(255,255,255,.08); border-radius: 18px; background: rgba(255,255,255,.04); }
.cases-summary small { color: var(--blue-300); font-size: 10px; letter-spacing: .16em; }
.cases-summary strong { display: block; margin: 8px 0 5px; font-size: 18px; }
.cases-summary p { margin: 0; color: rgba(255,255,255,.48); font-size: 12px; }
.case-browser { margin-top: 44px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); border-radius: 28px; background: rgba(255,255,255,.025); }
.case-tabs { display: flex; gap: 4px; padding: 10px; overflow-x: auto; border-bottom: 1px solid rgba(255,255,255,.08); scrollbar-width: none; }
.case-tabs::-webkit-scrollbar { display: none; }
.case-tab { flex: 0 0 auto; padding: 11px 14px; border: 0; border-radius: 12px; background: transparent; color: rgba(255,255,255,.54); cursor: pointer; font-size: 12px; font-weight: 700; }
.case-tab[aria-selected="true"] { background: rgba(47,140,255,.14); color: #fff; }
.case-panel { min-height: 520px; }
.case-panel-inner { display: grid; grid-template-columns: .95fr 1.05fr; min-height: 520px; }
.case-visual { position: relative; min-height: 520px; overflow: hidden; }
.case-visual img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.case-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(4,9,16,.72)); }
.case-visual-badge { position: absolute; z-index: 2; left: 24px; bottom: 24px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(5,11,19,.7); backdrop-filter: blur(14px); color: rgba(255,255,255,.82); font-size: 11px; }
.case-content { padding: 42px; }
.case-content .case-kicker { color: var(--blue-300); font-size: 10px; font-weight: 850; letter-spacing: .16em; }
.case-content h3 { margin: 10px 0 24px; font-size: clamp(30px, 3vw, 44px); line-height: 1.05; letter-spacing: -.04em; }
.case-facts { display: grid; gap: 20px; }
.case-fact { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); }
.case-fact small { color: rgba(255,255,255,.38); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.case-fact p { margin: 7px 0 0; color: rgba(255,255,255,.68); font-size: 14px; }
.case-tech { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }
.case-tech span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.09); border-radius: 999px; color: rgba(255,255,255,.62); font-size: 10px; }
.transparency-note { display: flex; gap: 12px; align-items: flex-start; margin-top: 18px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; color: rgba(255,255,255,.45); font-size: 11px; }
.transparency-note span { flex: 0 0 auto; width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.transparency-note p { margin: 0; }

.leverpro-section { background: #fff; color: var(--ink); }
.leverpro-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 90px; align-items: center; }
.leverpro-wordmark { display: grid; gap: 16px; align-content: center; padding: 36px; border-radius: 30px; background: var(--navy-950); min-height: 520px; box-shadow: var(--shadow); }
.leverpro-wordmark > small { color: rgba(255,255,255,.4); font-size: 10px; letter-spacing: .17em; }
.partner-logo-card { min-height: 112px; display: grid; place-items: center; padding: 18px; border-radius: 20px; }
.partner-logo-card img { width: min(280px, 100%); height: 74px; object-fit: contain; }
.partner-logo-card-dark { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); }
.partner-logo-card-leverpro { background: #fff; }
.partner-symbol { justify-self: center; color: rgba(255,255,255,.35); font-size: 24px; }
.leverpro-wordmark em { justify-self: center; color: rgba(255,255,255,.45); font-size: 12px; font-style: normal; }
.leverpro-content .section-lead { max-width: none; }
.partner-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 30px 0; }
.partner-benefits article { padding: 18px; border: 1px solid #e0e6ee; border-radius: 16px; }
.partner-benefits span { color: var(--blue-500); font-size: 10px; font-weight: 800; }
.partner-benefits strong { display: block; margin: 6px 0 5px; font-size: 14px; }
.partner-benefits p { margin: 0; color: #667085; font-size: 12px; }

.about-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 86px; align-items: center; }
.profile-card { margin: 0; }
.profile-visual { position: relative; overflow: hidden; min-height: 650px; border-radius: 30px; background: var(--navy-900); box-shadow: var(--shadow); }
.profile-visual img { width: 100%; height: 650px; object-fit: cover; object-position: center 26%; }
.profile-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(4,9,16,.94) 100%); }
.profile-caption { position: absolute; left: 26px; right: 26px; bottom: 26px; color: #fff; }
.profile-caption span { color: var(--blue-300); font-size: 9px; font-weight: 850; letter-spacing: .16em; }
.profile-caption strong { display: block; margin-top: 6px; font-size: 28px; line-height: 1.05; }
.profile-caption small { color: rgba(255,255,255,.55); }
.about-points { margin-top: 34px; border-top: 1px solid #dfe5ec; }
.about-points article { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid #dfe5ec; }
.about-points span { color: var(--blue-500); font-size: 10px; font-weight: 850; }
.about-points strong { display: block; font-size: 15px; }
.about-points p { margin: 4px 0 0; color: #667085; font-size: 13px; }
.about-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 46px; }
.insight-card { min-height: 300px; display: flex; flex-direction: column; padding: 28px; border: 1px solid #dfe5ec; border-radius: 22px; background: #fff; transition: .2s ease; }
.insight-card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(7,17,31,.09); }
.insight-card small { color: var(--blue-500); font-size: 10px; font-weight: 850; letter-spacing: .15em; }
.insight-card h3 { margin: 18px 0 10px; font-size: 22px; line-height: 1.2; letter-spacing: -.025em; }
.insight-card p { margin: 0; color: #667085; font-size: 14px; }
.insight-card span { margin-top: auto; padding-top: 24px; color: #2467b8; font-weight: 750; }

.final-cta { position: relative; padding: 90px 0; overflow: hidden; background: var(--navy-950); }
.final-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 40%, rgba(47,140,255,.17), transparent 38%); }
.final-cta-box { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; padding: 52px; border: 1px solid rgba(255,255,255,.1); border-radius: 30px; background: rgba(255,255,255,.035); }
.final-cta h2 { max-width: 920px; font-size: clamp(34px, 4vw, 56px); }
.final-cta p:not(.eyebrow) { max-width: 760px; margin: 20px 0 0; color: rgba(255,255,255,.58); }
.final-actions { display: grid; gap: 10px; min-width: 250px; }

.site-footer { background: #03070c; border-top: 1px solid rgba(255,255,255,.07); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .65fr .85fr; gap: 70px; padding: 64px 0 44px; }
.footer-brand img { width: 180px; height: auto; }
.footer-brand p { color: rgba(255,255,255,.48); font-size: 13px; }
.footer-partner { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; color: rgba(255,255,255,.4); font-size: 11px; }
.footer-partner img { width: 85px; height: 20px; object-fit: contain; }
.footer-links { display: grid; align-content: start; gap: 10px; }
.footer-links strong { margin-bottom: 4px; font-size: 12px; }
.footer-links a { color: rgba(255,255,255,.48); font-size: 12px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0 26px; border-top: 1px solid rgba(255,255,255,.06); color: rgba(255,255,255,.3); font-size: 11px; }

.floating-actions { position: fixed; right: 18px; bottom: 18px; z-index: 900; display: grid; gap: 8px; }
.floating-button { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; background: rgba(7,17,31,.9); backdrop-filter: blur(14px); box-shadow: 0 10px 30px rgba(0,0,0,.25); color: #fff; font-size: 12px; font-weight: 850; }
.whatsapp { background: #1f9f5a; }
.back-top { opacity: 0; pointer-events: none; transform: translateY(8px); transition: .2s ease; }
.back-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.noscript { padding: 18px; background: #fff3cd; color: #594400; text-align: center; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-actions { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero { min-height: auto; }
  .hero-copy { max-width: 900px; }
  .hero-visual { max-width: 960px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid article:nth-child(2) { border-right: 0; }
  .proof-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .practice-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 330px; }
  .practice-card-large { grid-row: span 2; }
  .practice-card-wide { grid-column: 2; }
  .method-layout { grid-template-columns: 1fr; }
  .method-photo { position: relative; top: 0; min-height: 520px; }
  .method-photo img { height: 520px; }
  .about-grid, .leverpro-grid, .human-layout { gap: 50px; }
  .execution-grid, .execution-feature { grid-template-columns: 1fr; }
  .execution-feature-visual img { min-height: 420px; }
}

@media (max-width: 900px) {
  .section { padding: 88px 0; }
  .header-cta { display: none; }
  .brand img { width: 166px; }
  .hero { padding-top: 58px; }
  .hero-copy h1 { font-size: clamp(48px, 10vw, 72px); }
  .hero-photo-card, .hero-photo-card img { min-height: 470px; height: 470px; }
  .split-heading, .practice-heading, .method-intro, .cases-heading, .leverpro-grid, .about-grid, .final-cta-box, .human-layout { grid-template-columns: 1fr; gap: 34px; }
  .execution-grid { grid-template-columns: 1fr; }
  .execution-mini-card { grid-template-columns: 1fr; }
  .execution-mini-card img { min-height: 250px; }
  .problem-item { grid-template-columns: 44px 1fr; }
  .problem-item > strong { grid-column: 2; justify-self: start; }
  .practice-heading .section-lead { margin-top: -8px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-featured { transform: none; }
  .case-panel-inner { grid-template-columns: 1fr; }
  .case-visual, .case-visual img { min-height: 390px; height: 390px; }
  .partner-benefits { grid-template-columns: 1fr 1fr; }
  .insight-grid { grid-template-columns: 1fr; }
  .profile-visual, .profile-visual img { min-height: 600px; height: 600px; }
  .final-actions { min-width: 0; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .header-shell { width: calc(100% - 20px); min-height: 68px; }
  .hero { padding: 42px 0 62px; }
  .partner-badge { margin-bottom: 24px; }
  .hero-copy h1 { font-size: clamp(43px, 13vw, 62px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-photo-card, .hero-photo-card img { min-height: 390px; height: 390px; border-radius: 24px; }
  .hero-photo-card img { object-position: center center; }
  .hero-photo-card figcaption { inset: auto 20px 20px; }
  .hero-photo-card figcaption strong { font-size: 20px; }
  .hero-value-card { grid-template-columns: 1fr; gap: 10px; width: 100%; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid article { padding: 22px 14px; }
  .proof-grid strong { font-size: 26px; }
  .proof-grid span { font-size: 11px; }
  .section-heading h2, .practice-heading h2, .method-intro h2, .cases-heading h2, .leverpro-content h2, .about-content h2 { font-size: clamp(34px, 11vw, 48px); }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: auto; }
  .practice-grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: 420px; }
  .execution-feature-copy, .execution-mini-copy { padding: 24px 20px; }
  .execution-feature-copy h3 { font-size: 30px; }
  .execution-feature-visual img { min-height: 300px; }
  .human-gallery { grid-template-columns: 1fr; }
  .human-gallery-card img { height: 240px; }
  .practice-card, .practice-card-large, .practice-card-wide { grid-column: auto; grid-row: auto; }
  .practice-card:nth-child(2) { height: 520px; }
  .method-track { grid-template-columns: 1fr; }
  .method-step { padding-left: 68px; }
  .method-photo, .method-photo img { min-height: 480px; height: 480px; }
  .case-tabs { padding: 8px; }
  .case-content { padding: 28px 22px; }
  .case-visual, .case-visual img { min-height: 320px; height: 320px; }
  .partner-benefits { grid-template-columns: 1fr; }
  .leverpro-wordmark { min-height: auto; padding: 24px; }
  .profile-visual, .profile-visual img { min-height: 520px; height: 520px; }
  .about-actions { display: grid; }
  .about-actions .button { width: 100%; }
  .final-cta { padding: 66px 0; }
  .final-cta-box { padding: 30px 22px; }
  .final-cta h2 { font-size: 34px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .floating-actions { right: 12px; bottom: 12px; }
  .floating-button { width: 46px; height: 46px; }
}

/* ==========================================================
   CRUZ & FARIAS — PREMIUM REFINEMENT
   Mantém a base original, reduz ruído visual e prioriza
   navy + branco + dourado como linguagem de marca.
   ========================================================== */

:root {
  --navy-950: #050a11;
  --navy-900: #08111d;
  --navy-850: #0b1725;
  --navy-800: #102033;
  --navy-700: #17304b;
  --blue-500: #c89b4b;
  --blue-400: #d8b76f;
  --blue-300: #ead4a7;
  --cyan-400: #f1d99c;
  --green-400: #c89b4b;
  --gold-500: #c89b4b;
  --gold-400: #dfbd76;
  --gold-300: #ead4a7;
  --gold-200: #f4e5c5;
  --ink: #0e1726;
  --muted: #667085;
  --line: #e3e7ed;
  --soft: #f6f7f9;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(5, 10, 17, .13);
  --shadow-soft: 0 18px 52px rgba(5, 10, 17, .08);
}

html { scroll-padding-top: 92px; }
body { background: var(--navy-950); }
body.nav-open { overflow: hidden; }

:focus-visible {
  outline: 3px solid rgba(223, 189, 118, .72);
  outline-offset: 4px;
  border-radius: 8px;
}

.scroll-progress {
  background: linear-gradient(90deg, #a9762f, var(--gold-400), #f0d79e);
}

.site-header {
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
  background: rgba(5, 10, 17, .94);
  border-color: rgba(223,189,118,.13);
  box-shadow: 0 16px 38px rgba(0,0,0,.14);
}
.desktop-nav a { position: relative; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  background: var(--gold-400);
  transition: right .22s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a.is-active::after { right: 0; }
.desktop-nav a.is-active { color: #fff; }
.mobile-menu-cta {
  margin-top: 10px;
  padding: 14px 16px !important;
  border: 1px solid rgba(223,189,118,.34) !important;
  border-radius: 14px;
  color: var(--gold-300) !important;
  background: rgba(223,189,118,.08);
  text-align: center;
}

.button-primary {
  background: linear-gradient(135deg, #e4c27d 0%, #c49343 100%);
  color: #111820;
  box-shadow: 0 14px 36px rgba(196,147,67,.25);
}
.button-primary:hover {
  box-shadow: 0 18px 44px rgba(196,147,67,.34);
}
.button-dark { background: #08111d; }
.button-outline-dark:hover { border-color: #b48a47; background: #fbf7ef; }
.button-ghost:hover { border-color: rgba(223,189,118,.38); background: rgba(223,189,118,.07); }
.text-link { color: #8c642d; }

.eyebrow { color: #ad7e38; }
.section-dark .eyebrow,
.section-practice .eyebrow,
.cases-section .eyebrow,
.final-cta .eyebrow { color: var(--gold-400); }

/* HERO */
.hero { padding: 78px 0 76px; }
.hero::before {
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-orb-one { background: rgba(196,147,67,.14); opacity: .65; }
.hero-orb-two { background: rgba(223,189,118,.08); opacity: .55; }
.hero-grid { grid-template-columns: minmax(0, .96fr) minmax(460px, 1.04fr); gap: 62px; }
.hero-copy h1 { max-width: 780px; }
.hero-copy h1 span { color: var(--gold-400); }
.hero-lead { max-width: 720px; color: rgba(255,255,255,.78); }
.hero-fit {
  max-width: 700px;
  margin: 18px 0 0;
  padding-left: 17px;
  border-left: 2px solid rgba(223,189,118,.58);
  color: rgba(255,255,255,.52);
  font-size: 14px;
  line-height: 1.7;
}
.partner-badge {
  border-color: rgba(223,189,118,.16);
  background: rgba(223,189,118,.055);
}
.hero-photo-card {
  min-height: 0;
  aspect-ratio: 4 / 3;
  border-color: rgba(223,189,118,.14);
  box-shadow: 0 42px 110px rgba(0,0,0,.34);
}
.hero-photo-card img { height: 100%; min-height: 0; object-fit: cover; object-position: center center; }
.hero-photo-shade { background: linear-gradient(180deg, rgba(5,10,17,.01) 38%, rgba(5,10,17,.93) 100%); }
.visual-kicker { color: var(--gold-300); }
.hero-value-card { border-color: rgba(223,189,118,.16); }
.hero-value-card small { color: var(--gold-300); }
.mini-flow i { color: var(--gold-400); }
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 13px;
  background: rgba(255,255,255,.025);
  color: rgba(255,255,255,.60);
  font-size: 11px;
  line-height: 1.35;
}
.hero-trust b { color: var(--gold-400); font-size: 9px; letter-spacing: .08em; }

/* PROOF */
.proof-strip { background: #07101a; border-color: rgba(223,189,118,.09); }
.proof-intro {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-top: 21px;
  color: rgba(255,255,255,.40);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}
.proof-intro a { color: var(--gold-300); letter-spacing: 0; font-size: 11px; text-transform: none; }
.proof-grid strong { color: var(--gold-200); }
.proof-grid article { border-color: rgba(223,189,118,.08); }
.proof-note { color: rgba(255,255,255,.34); }

/* PAINS + PILLARS */
.problem-item > strong { background: #f8f1e5; color: #8b642d; }
.pillar-card { border-color: rgba(223,189,118,.09); }
.pillar-card::after { background: rgba(196,147,67,.08); }
.card-icon { background: rgba(223,189,118,.10); color: var(--gold-300); }
.pillar-card li::before { color: var(--gold-400); }

/* ONE STRONG PRACTICE SECTION */
.section-practice { background: linear-gradient(180deg, #07101a 0%, #0a1521 100%); }
.practice-heading { align-items: end; }
.practice-heading h2 span { color: var(--gold-400); }
.practice-premium-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  gap: 16px;
}
.practice-story {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(223,189,118,.12);
  border-radius: 30px;
  background: rgba(255,255,255,.035);
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
}
.practice-story-visual {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 14px;
  background: #050a11;
}
.practice-story-visual img {
  width: 100%;
  height: 100%;
  max-height: 590px;
  object-fit: contain;
  border-radius: 20px;
}
.practice-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}
.practice-story-copy small,
.practice-photo-caption small { color: var(--gold-300); font-size: 10px; font-weight: 850; letter-spacing: .17em; }
.practice-story-copy h3 { margin: 10px 0 16px; font-size: clamp(30px,3.3vw,48px); line-height: 1.05; letter-spacing: -.04em; }
.practice-story-copy p { margin: 0; color: rgba(255,255,255,.64); }
.practice-story-copy ul { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.practice-story-copy li { position: relative; padding-left: 24px; color: rgba(255,255,255,.73); font-size: 13px; }
.practice-story-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-400); font-weight: 900; }
.practice-photo-card {
  position: relative;
  grid-column: span 3;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(223,189,118,.11);
  border-radius: 22px;
  background: #050a11;
}
.practice-photo-card img { width: 100%; height: 100%; object-fit: contain; background: #050a11; }
.practice-photo-card::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, transparent 45%, rgba(5,10,17,.91) 100%); pointer-events:none; }
.practice-photo-caption { position:absolute; z-index:1; left:18px; right:18px; bottom:17px; }
.practice-photo-caption strong { display:block; margin-top:4px; font-size:16px; line-height:1.2; }
.human-proof {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 36px;
  align-items: center;
  margin-top: 20px;
  padding: 24px 28px;
  border-top: 1px solid rgba(223,189,118,.12);
  border-bottom: 1px solid rgba(223,189,118,.12);
}
.human-proof > p { margin:0; color:#fff; font-size:18px; font-weight:700; letter-spacing:-.02em; }
.human-proof-items { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; }
.human-proof-items span { display:flex; gap:9px; align-items:center; color:rgba(255,255,255,.58); font-size:12px; }
.human-proof-items b { color:var(--gold-400); font-size:9px; }

/* Image safety: preserve full people/group photos instead of aggressive cropping. */
.image-safe img { object-position: center center; }

/* METHOD */
.method-intro h2 span { color: #9b7032; }
.method-principle {
  margin: 24px 0 0;
  padding: 20px 22px;
  border: 1px solid #e6d7ba;
  border-left: 4px solid var(--gold-500);
  border-radius: 16px;
  background: #fffaf1;
}
.method-principle span { display:block; color:#9b7032; font-size:9px; font-weight:900; letter-spacing:.16em; }
.method-principle strong { display:block; margin-top:5px; font-size:18px; line-height:1.35; }
.method-step b { background: #0b1725; color: var(--gold-300); }
.method-step span { color: #9b7032; }
.method-photo { background: #07101a; border: 1px solid #e2e5e9; }
.method-photo img { object-fit: contain; object-position: center; background: #07101a; }
.method-photo-caption small { color: var(--gold-300); }

/* OPERATING MODEL */
.operating-model { background: #0a1420; color:#fff; }
.operating-model .section-lead { color: rgba(255,255,255,.58); }
.operating-model-grid { display:grid; grid-template-columns:.82fr 1.18fr; gap:84px; align-items:start; }
.operating-steps { display:grid; gap:12px; }
.operating-steps article {
  display:grid;
  grid-template-columns:44px 1fr;
  gap:18px;
  padding:20px;
  border:1px solid rgba(223,189,118,.10);
  border-radius:18px;
  background:rgba(255,255,255,.03);
}
.operating-steps b { color:var(--gold-400); font-size:10px; letter-spacing:.12em; padding-top:3px; }
.operating-steps strong { display:block; font-size:17px; }
.operating-steps p { margin:5px 0 0; color:rgba(255,255,255,.58); font-size:13px; }

/* SERVICES */
.service-grid { align-items: stretch; }
.service-card { position: relative; box-shadow: 0 10px 34px rgba(7,17,31,.035); }
.service-entry { border-color: #d9bd8b; box-shadow: 0 20px 56px rgba(162,117,51,.10); }
.service-recommended {
  position:absolute;
  top:0;
  left:24px;
  transform:translateY(-50%);
  padding:7px 10px;
  border-radius:999px;
  background:#f3e4c6;
  color:#765020;
  font-size:8px;
  font-weight:900;
  letter-spacing:.13em;
}
.service-stage { color:#9b7032; }
.service-featured { background: #0a1420; border-color:#0a1420; }
.service-card li::before { color:#b2823e; }
.service-featured .text-link { color:var(--gold-300); }

/* CASES */
.case-tab[aria-selected="true"] { background: rgba(223,189,118,.12); color:var(--gold-200); }
.case-visual { display:grid; place-items:center; background:#050a11; padding:12px; }
.case-visual img { min-height:0; height:100%; object-fit:contain; border-radius:18px; }
.case-visual::after { display:none; }
.case-visual-badge { background:rgba(5,10,17,.88); border-color:rgba(223,189,118,.22); color:var(--gold-200); }
.case-content .case-kicker { color:var(--gold-300); }
.case-tech span { border-color:rgba(223,189,118,.12); }

/* TECHNOLOGY / ECOSYSTEM */
.technology-section { background:#fff; color:var(--ink); padding-top:82px; padding-bottom:82px; }
.technology-shell {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:center;
  padding:38px;
  border:1px solid #e0e5eb;
  border-radius:30px;
  background:linear-gradient(135deg,#fbfbfc,#f5f6f8);
  box-shadow:var(--shadow-soft);
}
.technology-copy h2 { margin:0; font-size:clamp(32px,3.6vw,50px); line-height:1.03; letter-spacing:-.04em; }
.technology-copy p:not(.eyebrow) { margin:18px 0 0; color:#667085; }
.technology-cloud { display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-start; }
.technology-cloud span {
  padding:11px 14px;
  border:1px solid #e0d3bd;
  border-radius:999px;
  background:#fff;
  color:#344054;
  font-size:12px;
  box-shadow:0 6px 18px rgba(7,17,31,.035);
}

/* LEVERPRO */
.leverpro-wordmark { background:#07101a; }
.partner-logo-card-dark { border-color:rgba(223,189,118,.10); }
.partner-benefits span { color:#9b7032; }

/* ABOUT */
.profile-visual { min-height:0; aspect-ratio:3/4; }
.profile-visual img { height:100%; min-height:0; object-fit:cover; object-position:center; }
.profile-caption span { color:var(--gold-300); }
.about-points span { color:#9b7032; }
.about-capabilities { display:flex; flex-wrap:wrap; gap:8px; margin-top:24px; }
.about-capabilities span {
  padding:8px 11px;
  border:1px solid #ded5c5;
  border-radius:999px;
  background:#fff;
  color:#5a6472;
  font-size:11px;
  font-weight:650;
}

/* QUALIFICATION */
.fit-section { background:#0b1521; color:#fff; }
.fit-grid { display:grid; grid-template-columns:.92fr 1.08fr; gap:74px; align-items:center; }
.fit-copy h2 { margin:0; font-size:clamp(36px,4vw,58px); line-height:1.03; letter-spacing:-.045em; }
.fit-copy > p:not(.eyebrow) { margin:20px 0 0; color:rgba(255,255,255,.60); max-width:620px; }
.fit-list { display:grid; gap:10px; }
.fit-list article { display:grid; grid-template-columns:38px 1fr; gap:13px; align-items:start; padding:18px; border:1px solid rgba(223,189,118,.10); border-radius:16px; background:rgba(255,255,255,.03); }
.fit-list span { width:28px; height:28px; display:grid; place-items:center; border-radius:50%; background:rgba(223,189,118,.11); color:var(--gold-300); font-weight:900; }
.fit-list p { margin:2px 0 0; color:rgba(255,255,255,.70); font-size:14px; }

/* FAQ */
.faq-section { background:#f6f7f9; color:var(--ink); }
.faq-grid { display:grid; grid-template-columns:.82fr 1.18fr; gap:76px; align-items:start; }
.faq-list { border-top:1px solid #dfe4ea; }
.faq-list details { border-bottom:1px solid #dfe4ea; }
.faq-list summary {
  position:relative;
  padding:22px 46px 22px 0;
  list-style:none;
  cursor:pointer;
  font-weight:750;
  font-size:16px;
}
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after {
  content:"+";
  position:absolute;
  right:4px;
  top:20px;
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border:1px solid #d7dde5;
  border-radius:50%;
  color:#8b642d;
  transition:transform .2s ease;
}
.faq-list details[open] summary::after { transform:rotate(45deg); }
.faq-list details p { margin:-6px 0 22px; max-width:720px; color:#667085; font-size:14px; }

/* INSIGHTS + FINAL CTA */
.insight-card small { color:#9b7032; }
.insight-card span { color:#8c642d; }
.final-cta::before { background: radial-gradient(circle at 80% 40%, rgba(196,147,67,.14), transparent 40%); }
.final-cta-box { border-color:rgba(223,189,118,.13); }

/* Floating actions */
.floating-actions { align-items:end; }
.whatsapp-rich {
  width:auto;
  min-width:126px;
  height:50px;
  padding:0 16px;
  grid-auto-flow:column;
  gap:8px;
  border-radius:999px;
  background:#188a4c;
}
.whatsapp-rich span { font-size:16px; }
.whatsapp-rich b { font-size:11px; }

/* Subtle performance hint: browser can delay paint of below-the-fold sections. */
main > section:not(.hero):not(.proof-strip) { content-visibility:auto; contain-intrinsic-size:1px 850px; }

@media (max-width:1180px) {
  .hero-grid { grid-template-columns:1fr; }
  .hero-visual { max-width:860px; }
  .practice-photo-card { grid-column:span 6; }
  .operating-model-grid, .technology-shell, .fit-grid, .faq-grid { grid-template-columns:1fr; gap:42px; }
}

@media (max-width:900px) {
  .section { padding:86px 0; }
  .hero { padding-top:54px; }
  .hero-trust { grid-template-columns:1fr; }
  .hero-trust span { min-height:0; }
  .practice-story { grid-template-columns:1fr; }
  .practice-story-visual { min-height:360px; }
  .practice-story-copy { padding:34px; }
  .human-proof { grid-template-columns:1fr; gap:22px; }
  .technology-shell { padding:30px; }
  .method-photo { position:relative; top:0; min-height:0; }
  .method-photo img { height:520px; min-height:0; }
}

@media (max-width:680px) {
  .section { padding:72px 0; }
  .hero { padding:36px 0 54px; }
  .hero-copy h1 { font-size:clamp(42px,12vw,58px); }
  .hero-fit { font-size:13px; }
  .hero-photo-card, .hero-photo-card img { min-height:0; height:auto; }
  .hero-photo-card { aspect-ratio:4/3; }
  .hero-photo-card img { height:100%; }
  .proof-intro { align-items:flex-start; flex-direction:column; }
  .practice-premium-grid { grid-template-columns:1fr; }
  .practice-story, .practice-photo-card { grid-column:auto; }
  .practice-story { min-height:0; }
  .practice-story-visual { min-height:0; padding:10px; }
  .practice-story-visual img { max-height:none; }
  .practice-story-copy { padding:28px 22px; }
  .practice-photo-card { aspect-ratio:4/3; }
  .human-proof { padding:20px 0; }
  .human-proof-items { grid-template-columns:1fr; }
  .technology-shell { padding:24px 20px; border-radius:24px; }
  .technology-cloud { gap:7px; }
  .technology-cloud span { padding:9px 11px; font-size:11px; }
  .operating-steps article { grid-template-columns:34px 1fr; padding:17px 15px; }
  .method-photo img { height:auto; aspect-ratio:3/2; }
  .profile-visual, .profile-visual img { min-height:0; height:auto; }
  .profile-visual { aspect-ratio:3/4; }
  .profile-visual img { height:100%; }
  .faq-list summary { font-size:15px; }
  .whatsapp-rich { width:48px; min-width:48px; height:48px; padding:0; border-radius:50%; }
  .whatsapp-rich b { display:none; }
}

/* Final photo-fit refinement: the process image is naturally landscape,
   so the frame follows its ratio instead of forcing a portrait crop. */
@media (min-width:1181px) {
  .method-layout { grid-template-columns:1fr 430px; gap:64px; }
  .method-photo { min-height:0; aspect-ratio:3/2; }
  .method-photo img { width:100%; height:100%; min-height:0; object-fit:cover; object-position:center; }
}


/* ==========================================================
   FOTOS OPERACIONAIS — AJUSTE 21/08/2026
   As novas imagens foram produzidas em 4:3 para encaixar
   integralmente nos cards, evitando faixas e cortes agressivos.
   ========================================================== */
.practice-photo-card img {
  object-fit: cover;
  object-position: center center;
}

.hero-photo-card img {
  object-position: center center;
}

@media (min-width: 681px) {
  .practice-photo-card {
    aspect-ratio: 4 / 3;
  }
}

/* O workshop do Método também é 4:3 e deve mostrar a equipe completa. */
.method-photo {
  aspect-ratio: 4 / 3;
}
.method-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (min-width:1181px) {
  .method-photo {
    aspect-ratio: 4 / 3;
  }
}


/* ===== Lapidação 10/10: conversão, autoridade e leitura ===== */
.hero-microcopy {
  margin: -4px 0 18px;
  font-size: .82rem;
  line-height: 1.45;
  color: rgba(255,255,255,.68);
  letter-spacing: .01em;
}
.hero-actions .button-primary, .final-actions .button-primary {
  box-shadow: 0 12px 32px rgba(188, 150, 73, .18);
}
.proof-grid article strong {
  font-variant-numeric: tabular-nums;
}
.case-fact:last-child {
  position: relative;
}
.case-fact:last-child small {
  letter-spacing: .09em;
}
@media (max-width: 760px) {
  .hero-microcopy { margin-top: -2px; font-size: .78rem; }
  .hero-actions .button { width: 100%; justify-content: center; text-align: center; }
  .final-actions .button { width: 100%; justify-content: center; text-align: center; }
  .proof-note { max-width: 34rem; }
}
