﻿:root {
  --bg: #000;
  --panel: #0b0b0b;
  --line: rgba(255, 255, 255, 0.14);
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.78);
  --orange: #ffda37;
  --orange-2: #ffe66b;
  --green: #25d366;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

picture {
  display: contents;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: min(100% - 96px, var(--max));
  margin: 0 auto;
  padding: 22px 0 4px;
  background: #000;
}

.brand img {
  width: 198px;
  height: auto;
}

.section {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 68px 0;
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(410px, 0.44fr) minmax(0, 0.56fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 32px;
  width: 100%;
  min-height: calc(100svh - 104px);
  margin: 0;
  padding: 10px 0 96px 52px;
  background: #000;
  overflow: visible;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 560px;
  align-self: center;
  padding-top: 0;
  background: #000;
}

.hero-brand {
  display: inline-flex;
  margin-bottom: 64px;
}

.hero-brand img {
  width: 238px;
  height: auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(42px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

h1 span {
  color: var(--orange-2);
}

.hero-copy h1 .title-line,
.hero-copy h1 .title-accent {
  display: block;
}

.hero-copy h1 .title-line {
  color: #fff;
}

.hero-copy h1 .title-accent {
  color: var(--orange-2);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-text,
.section-heading p,
.specialty-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  margin-top: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 226, 90, 0.55);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #f2b800);
  box-shadow: 0 14px 34px rgba(255, 218, 55, 0.25);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-actions .btn {
  min-height: 44px;
  padding: 0 18px;
  font-size: 11px;
}

.hero-visual {
  align-self: start;
  position: relative;
  z-index: 4;
  min-height: clamp(535px, 66svh, 690px);
  margin: -118px 0 -42px -88px;
  background: url("assets/hero-imagem-site-4.png") center top / contain no-repeat;
  background: image-set(
    url("assets/hero-imagem-site-4.webp") type("image/webp"),
    url("assets/hero-imagem-site-4.png") type("image/png")
  ) center top / contain no-repeat;
}

.hero-highlights {
  position: relative;
  z-index: 5;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: -38px 48px 78px 0;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 218, 55, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    #020202;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-highlights > div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 104px;
  padding: 6px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-highlights > div:first-child {
  border-left: 0;
}

.highlight-icon {
  width: 48px;
  height: 48px;
  color: var(--orange);
  filter: drop-shadow(0 0 10px rgba(255, 218, 55, 0.22));
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-highlights strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 19px;
  line-height: 1.15;
}

.hero-highlights span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.process-step p {
  color: var(--muted);
  line-height: 1.6;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.process-method {
  position: relative;
  padding-top: 56px;
  padding-bottom: 46px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 218, 55, 0.16), rgba(255, 218, 55, 0.055) 25%, transparent 52%),
    radial-gradient(circle at 50% 100%, rgba(255, 218, 55, 0.07), transparent 38%),
    #000;
  overflow: hidden;
}

.process-method .section-heading {
  max-width: 760px;
  margin-bottom: 10px;
}

.process-method h2 span {
  color: var(--orange-2);
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  padding-top: 40px;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 40px;
  right: 20px;
  left: 20px;
  height: 2px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 218, 55, 0.45), #ffda37 18%, #ffe66b 50%, #ffda37 82%, rgba(255, 218, 55, 0.45), transparent);
  box-shadow:
    0 0 8px rgba(255, 218, 55, 0.65),
    0 0 24px rgba(255, 218, 55, 0.32);
}

.process-track::after {
  content: "";
  position: absolute;
  top: 32px;
  right: 10px;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  transform: rotate(45deg);
  filter: drop-shadow(0 0 10px rgba(255, 218, 55, 0.9));
}

.process-step {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 282px;
  padding: 52px 16px 14px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 218, 55, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    #040404;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 28px rgba(255, 218, 55, 0.045),
    0 22px 44px rgba(0, 0, 0, 0.34);
}

.step-number {
  position: absolute;
  top: -30px;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 218, 55, 0.78);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 218, 55, 0.18), transparent 55%),
    #050505;
  box-shadow:
    0 0 0 8px #000,
    0 0 18px rgba(255, 218, 55, 0.55),
    0 0 34px rgba(255, 218, 55, 0.25);
  color: var(--orange-2);
  font-size: 25px;
  font-weight: 950;
  transform: translateX(-50%);
}

.step-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  color: var(--orange);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 14px rgba(255, 218, 55, 0.32));
}

.process-step h3 {
  margin-bottom: 9px;
  font-size: 18px;
}

.process-step p {
  max-width: 210px;
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 1.38;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
}

.step-tags span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 218, 55, 0.26);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 218, 55, 0.12), rgba(255, 255, 255, 0.035)),
    #070707;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 16px rgba(255, 218, 55, 0.08);
  font-size: 11px;
  font-weight: 800;
}

.specialty {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 42px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.specialty-authority {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 46px;
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 218, 55, 0.12), transparent 28%),
    radial-gradient(circle at 18% 72%, rgba(255, 218, 55, 0.06), transparent 34%),
    #000;
}

.specialty-authority h2 {
  max-width: 600px;
}

.specialty-authority h2 span {
  color: var(--orange-2);
}

.specialty-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 26px;
}

.differential-grid {
  display: grid;
  gap: 12px;
}

.differential-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014)),
    rgba(5, 5, 5, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 36px rgba(0, 0, 0, 0.22);
}

.differential-grid svg,
.banner-icon svg {
  width: 46px;
  height: 46px;
  color: var(--orange);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(255, 218, 55, 0.28));
}

.differential-grid svg {
  padding: 9px;
  border: 1px solid rgba(255, 218, 55, 0.28);
  border-radius: 8px;
  background: rgba(255, 218, 55, 0.045);
}

.differential-grid h3 {
  margin-bottom: 5px;
  font-size: 17px;
}

.differential-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.specialty-visual {
  display: grid;
  gap: 16px;
}

.environment-mosaic {
  display: block;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 218, 55, 0.13), transparent 36%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.environment-mosaic img,
.environment-mosaic .mosaic-image {
  width: 100%;
  height: auto;
  max-height: 620px;
  border-radius: 8px;
  object-fit: contain;
}

.partner-panel {
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    #050505;
}

.partner-panel p {
  margin: 0 0 18px;
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.partner-logos span {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 12px 14px;
  border-left: 0;
  color: rgba(255, 255, 255, 0.9);
  background: #050505;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

.partner-logos img {
  width: 100%;
  max-width: 138px;
  max-height: 36px;
  object-fit: contain;
}

.partner-logos span:nth-child(1) img {
  max-width: 132px;
}

.partner-logos span:nth-child(2) img {
  max-width: 150px;
}

.partner-logos span:nth-child(4) img,
.partner-logos span:nth-child(5) img {
  max-width: 118px;
}

.partner-logos .logo-criare {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.partner-logos .partner-text {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.22;
  text-transform: uppercase;
}

.specialty-banner {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  align-items: center;
  width: min(100% - 96px, 1040px);
  margin: 10px auto 0;
  padding: 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 218, 55, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    #040404;
}

.banner-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 218, 55, 0.35);
  border-radius: 50%;
  background: rgba(255, 218, 55, 0.065);
  box-shadow: 0 0 28px rgba(255, 218, 55, 0.18);
}

.specialty-banner strong,
.specialty-banner span {
  display: block;
}

.specialty-banner strong {
  margin-bottom: 6px;
  font-size: 22px;
}

.specialty-banner span {
  color: var(--muted);
  line-height: 1.5;
}

.specialty-authority {
  padding-top: 38px;
  padding-bottom: 38px;
}

.specialty-authority .eyebrow {
  margin-bottom: 10px;
  font-size: 12px;
}

.specialty-authority h2 {
  max-width: 560px;
  margin-bottom: 14px;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.04;
}

.specialty-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.48;
}

.differential-grid {
  gap: 10px;
}

.differential-grid article {
  grid-template-columns: 48px 1fr;
  gap: 12px;
  min-height: 86px;
  padding: 12px 14px;
}

.differential-grid svg {
  width: 40px;
  height: 40px;
  padding: 8px;
}

.differential-grid h3 {
  margin-bottom: 3px;
  font-size: 15px;
  line-height: 1.2;
}

.differential-grid p {
  font-size: 12.5px;
  line-height: 1.35;
}

.specialty-visual {
  gap: 12px;
}

.environment-mosaic {
  padding: 7px;
}

.environment-mosaic img,
.environment-mosaic .mosaic-image {
  max-height: 430px;
}

.partner-panel {
  padding: 16px 20px;
}

.partner-panel p {
  margin-bottom: 12px;
  font-size: 11px;
}

.partner-logos span {
  min-height: 48px;
  font-size: 16px;
}

.partner-logos span:first-child {
  font-size: 22px;
}

.partner-logos span:last-child {
  font-size: 12px;
}

.specialty-banner {
  margin-top: 4px;
  padding: 16px 22px;
}

.banner-icon {
  width: 56px;
  height: 56px;
}

.specialty-banner strong {
  font-size: 19px;
}

.specialty-banner span {
  font-size: 14px;
  line-height: 1.4;
}

.authority-bridge {
  padding-top: 42px;
  padding-bottom: 42px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 218, 55, 0.1), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(255, 218, 55, 0.08), transparent 38%),
    #000;
}

.authority-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 218, 55, 0.11), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(255, 218, 55, 0.075), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    #030303;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 28px 80px rgba(0, 0, 0, 0.34);
}

.authority-heading {
  max-width: 520px;
  margin: 0;
  text-align: left;
}

.authority-heading .eyebrow {
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
}

.authority-heading .eyebrow::after {
  content: "";
  display: block;
  width: 78px;
  height: 2px;
  margin: 13px 0 0;
  background: linear-gradient(90deg, var(--orange), rgba(255, 218, 55, 0));
}

.authority-heading h2 {
  max-width: 520px;
  margin: 0 0 18px;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.08;
}

.authority-heading h2 span {
  display: block;
  color: var(--orange-2);
}

.authority-heading p:not(.eyebrow) {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

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

.authority-cards > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 192px;
  padding: 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 218, 55, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
    #040404;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 20px 50px rgba(0, 0, 0, 0.32);
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.authority-cards > div:nth-child(2) {
  order: -1;
  grid-column: 1 / -1;
  min-height: 208px;
  padding: 30px;
  border-color: rgba(255, 218, 55, 0.34);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 218, 55, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.018)),
    #050505;
}

.authority-cards > div:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 218, 55, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.065),
    0 26px 70px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(255, 218, 55, 0.13);
}

.authority-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  place-items: center;
  border: 1px solid rgba(255, 218, 55, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 218, 55, 0.15), transparent 58%),
    rgba(255, 218, 55, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 26px rgba(255, 218, 55, 0.16);
}

.authority-icon svg {
  width: 31px;
  height: 31px;
  color: var(--orange);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(255, 218, 55, 0.32));
}

.authority-cards strong {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: clamp(26px, 2vw, 32px);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(255, 218, 55, 0.22);
}

.authority-cards > div:nth-child(2) strong {
  color: var(--orange-2);
  font-size: clamp(46px, 5vw, 72px);
  letter-spacing: 0;
}

.authority-cards strong::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin: 16px 0 0;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255, 218, 55, 0.38);
}

.authority-cards span,
.authority-cards small {
  display: block;
  max-width: 220px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.authority-cards > div:nth-child(2) span {
  max-width: 420px;
  font-size: 18px;
  font-weight: 800;
}

.authority-cards > div:nth-child(2) small {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.authority-swipe-hint,
.process-swipe-hint {
  display: none;
}

.cases {
  border-top: 1px solid var(--line);
}

.results-section {
  padding-top: 42px;
  padding-bottom: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 72% 12%, rgba(255, 218, 55, 0.12), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(255, 218, 55, 0.06), transparent 34%),
    #000;
}

.video-testimonials {
  position: relative;
  padding-top: 74px;
  padding-bottom: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 218, 55, 0.08), transparent 24%),
    radial-gradient(circle at 86% 20%, rgba(255, 218, 55, 0.1), transparent 25%),
    linear-gradient(180deg, #050505, #0a0a0a 48%, #000);
  overflow: hidden;
}

.video-testimonials::before,
.video-testimonials::after {
  position: absolute;
  color: rgba(255, 255, 255, 0.045);
  font-size: 180px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.video-testimonials::before {
  content: "\201C";
  top: 46px;
  left: 48px;
}

.video-testimonials::after {
  content: "\201D";
  top: 76px;
  right: 54px;
}

.video-testimonials-heading {
  position: relative;
  z-index: 1;
  max-width: 930px;
  margin: 0 auto 28px;
  text-align: center;
}

.video-testimonials-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

.video-testimonials-heading h2 span {
  display: block;
  color: var(--orange-2);
}

.video-testimonials-heading p:not(.eyebrow) {
  max-width: 690px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.testimonial-video-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 22px;
}

.testimonial-video-card {
  display: grid;
  grid-template-columns: 45% minmax(0, 1fr);
  gap: 14px;
  min-height: auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background:
    radial-gradient(circle at 90% 84%, rgba(255, 218, 55, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.016)),
    #040404;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 26px 70px rgba(0, 0, 0, 0.34);
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-video-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 218, 55, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 80px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(255, 218, 55, 0.12);
}

.testimonial-video-thumb {
  position: relative;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
  aspect-ratio: 4 / 5;
  cursor: pointer;
}

.testimonial-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.testimonial-video-thumb iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.testimonial-video-thumb.is-playing {
  background: #000;
}

.youtube-fallback {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 9px 12px;
  border: 1px solid rgba(255, 218, 55, 0.72);
  border-radius: 6px;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.testimonial-video-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6px 6px 6px 0;
}

.testimonial-video-copy > span {
  margin-bottom: 7px;
  color: var(--orange-2);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonial-video-copy p {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(16px, 1.16vw, 19px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.28;
}

.testimonial-video-copy strong {
  display: block;
  margin-bottom: 10px;
  padding-top: 9px;
  border-top: 1px solid rgba(255, 218, 55, 0.42);
  color: var(--orange-2);
  font-size: clamp(13px, 0.98vw, 15px);
  line-height: 1.28;
}

.testimonial-video-copy small {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11.5px;
  line-height: 1.35;
}

.testimonial-watch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 0;
  width: 100%;
  padding: 11px 12px;
  border: 1px solid rgba(255, 218, 55, 0.8);
  border-radius: 7px;
  color: #fff;
  background: rgba(255, 218, 55, 0.05);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
}

.testimonial-watch::before {
  content: "";
  width: 0;
  height: 0;
  margin-right: 10px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--orange-2);
}

.testimonial-proof-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    #040404;
}

.testimonial-proof-bar > div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  padding: 8px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.testimonial-proof-bar > div:first-child {
  border-left: 0;
}

.testimonial-proof-bar svg {
  width: 52px;
  height: 52px;
  padding: 11px;
  border: 1px solid rgba(255, 218, 55, 0.3);
  border-radius: 50%;
  color: var(--orange);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: rgba(255, 218, 55, 0.05);
  filter: drop-shadow(0 0 12px rgba(255, 218, 55, 0.26));
}

.testimonial-proof-bar strong,
.testimonial-proof-bar span {
  display: block;
}

.testimonial-proof-bar strong {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.22;
}

.testimonial-proof-bar span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.results-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 18px;
}

.results-copy h2 {
  max-width: 510px;
  margin-bottom: 9px;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1;
}

.results-copy h2 span {
  color: var(--orange-2);
}

.results-copy p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.ghost-btn {
  border-color: rgba(255, 218, 55, 0.68);
  background: rgba(255, 218, 55, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  min-width: 270px;
  padding: 16px 24px;
}

.results-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  align-self: end;
  min-height: 154px;
  padding: 14px 16px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 218, 55, 0.08), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014)),
    #040404;
}

.results-metrics div {
  min-height: 108px;
  padding: 8px 11px;
  border-left: 1px solid rgba(255, 218, 55, 0.22);
  text-align: center;
}

.results-metrics div:first-child {
  border-left: 0;
}

.results-metrics svg,
.case-revenue svg,
.results-differentials svg {
  color: var(--orange);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(255, 218, 55, 0.28));
}

.results-metrics svg {
  width: 28px;
  height: 28px;
  margin-bottom: 7px;
}

.results-metrics strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 12.5px;
  line-height: 1.14;
  text-transform: uppercase;
}

.results-metrics span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.28;
}

.results-metrics > p {
  grid-column: 1 / -1;
  margin: 6px 6px 0;
  color: var(--muted);
  font-size: 10px;
}

.result-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.results-case-action {
  display: flex;
  justify-content: center;
  margin: 18px 0 22px;
}

.result-case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 246px;
  padding: 16px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 218, 55, 0.18), transparent 32%),
    radial-gradient(circle at 50% 70%, rgba(255, 218, 55, 0.07), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
    #040404;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 60px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.result-case-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 2px;
  border-radius: 999px 999px 0 0;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(255, 218, 55, 0.7);
}

.case-top {
  margin-bottom: 7px;
}

.case-top span {
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.result-case-card h3 {
  min-height: 0;
  margin-bottom: 12px;
  padding-bottom: 0;
  border-bottom: 0;
  font-size: 20px;
  line-height: 1.08;
}

.result-case-card h3 small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}

.case-revenue {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  text-align: center;
}

.case-revenue span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-revenue strong {
  display: block;
  margin: 0 0 7px;
  color: var(--orange-2);
  font-size: clamp(31px, 3.3vw, 46px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-shadow: 0 0 26px rgba(255, 218, 55, 0.18);
}

.case-revenue strong small {
  display: inline;
  margin-top: 0;
  color: #fff;
  font-size: 0.52em;
  letter-spacing: -0.03em;
}

.case-revenue em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 14px;
  border: 1px solid rgba(255, 218, 55, 0.64);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 218, 55, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 18px rgba(255, 218, 55, 0.12);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.case-revenue em::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 8px;
  background: currentColor;
  clip-path: polygon(0 68%, 34% 35%, 50% 50%, 84% 16%, 72% 16%, 72% 0, 100% 0, 100% 28%, 84% 28%, 84% 27%, 50% 64%, 34% 49%, 10% 74%);
  color: var(--orange-2);
}

.compact-details svg {
  color: var(--orange);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(255, 218, 55, 0.24));
}

.case-details {
  display: grid;
  gap: 1px;
  margin-top: 0;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
}

.case-details.two-cols {
  grid-template-columns: repeat(2, 1fr);
}

.case-details.three-cols {
  grid-template-columns: repeat(3, 1fr);
}

.case-details div {
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 9px 7px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    #040404;
  text-align: center;
}

.compact-details svg {
  width: 25px;
  height: 25px;
  padding: 4px;
  border: 1px solid rgba(255, 218, 55, 0.28);
  border-radius: 50%;
  background: rgba(255, 218, 55, 0.045);
}

.case-details span {
  display: block;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.case-details strong {
  color: var(--orange-2);
  font-size: 15.5px;
  line-height: 1.05;
  white-space: nowrap;
}

.case-details.three-cols span {
  font-size: 9.5px;
}

.case-details.three-cols strong {
  font-size: 14px;
}

.results-differentials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    #040404;
}

.results-differentials > div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 8px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.results-differentials > div:first-child {
  border-left: 0;
}

.results-differentials svg {
  width: 52px;
  height: 52px;
  padding: 12px;
  border: 1px solid rgba(255, 218, 55, 0.3);
  border-radius: 50%;
  background: rgba(255, 218, 55, 0.05);
}

.results-differentials strong,
.results-differentials span {
  display: block;
}

.results-differentials strong {
  margin-bottom: 6px;
  font-size: 16px;
}

.results-differentials span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.conversion-cta {
  position: relative;
  padding: 36px 0;
}

.conversion-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  gap: 30px;
  padding: 30px;
  border: 1px solid rgba(255, 218, 55, 0.28);
  border-radius: 12px;
  background:
    radial-gradient(circle at 28% 34%, rgba(255, 218, 55, 0.13), transparent 34%),
    radial-gradient(circle at 84% 10%, rgba(255, 218, 55, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    #020202;
  box-shadow:
    0 26px 90px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.conversion-inner::before {
  content: "";
  position: absolute;
  inset: -30% 42% 30% -20%;
  background: radial-gradient(circle, rgba(255, 218, 55, 0.16), transparent 64%);
  pointer-events: none;
}

.conversion-copy,
.conversion-system,
.conversion-footer {
  position: relative;
  z-index: 1;
}

.conversion-copy {
  align-self: center;
}

.conversion-copy .eyebrow {
  margin-bottom: 14px;
}

.conversion-copy .eyebrow::after {
  content: "";
  display: block;
  width: 210px;
  height: 2px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 218, 55, 0));
}

.conversion-copy h2 {
  max-width: 590px;
  margin-bottom: 16px;
  font-size: clamp(30px, 3.25vw, 44px);
  line-height: 1.05;
}

.conversion-copy h2 span {
  display: block;
  color: var(--orange-2);
}

.conversion-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.52;
}

.conversion-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 22px 0 24px;
}

.conversion-stats > div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  min-height: 58px;
  padding: 0 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.conversion-stats > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.conversion-stats svg,
.conversion-system svg,
.conversion-footer svg {
  color: var(--orange);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(255, 218, 55, 0.24));
}

.conversion-stats svg {
  width: 28px;
  height: 28px;
}

.conversion-stats strong,
.conversion-stats span {
  display: block;
}

.conversion-stats strong {
  margin-bottom: 3px;
  font-size: 12px;
}

.conversion-stats span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11.5px;
  line-height: 1.35;
}

.conversion-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 560px);
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid rgba(184, 135, 0, 0.35);
  border-radius: 8px;
  color: #111;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(135deg, #ffe66b, #f2b800);
  box-shadow:
    0 20px 56px rgba(255, 218, 55, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.conversion-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 26px 66px rgba(255, 218, 55, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.conversion-button svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: currentColor;
}

.conversion-button strong {
  font-size: 28px;
  line-height: 1;
}

.conversion-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12.5px;
}

.conversion-assurances span {
  position: relative;
  padding-left: 22px;
}

.conversion-assurances span::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: -0.02em;
  color: var(--orange-2);
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 0 14px rgba(255, 218, 55, 0.5);
}

.conversion-system {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  min-height: 480px;
  padding: 24px 26px 24px 54px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.22)),
    url("assets/mosaico-moveis-planejados.png") 42% center / cover no-repeat;
  box-shadow:
    inset 0 0 0 1px rgba(255, 218, 55, 0.08),
    0 22px 60px rgba(0, 0, 0, 0.34);
}

.conversion-system-panel {
  width: min(100%, 470px);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background:
    radial-gradient(circle at 0% 8%, rgba(255, 218, 55, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.78), rgba(6, 6, 6, 0.68)),
    rgba(0, 0, 0, 0.52);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.52),
    0 0 34px rgba(255, 218, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(5px);
}

.conversion-system-panel h3 {
  max-width: 420px;
  margin-bottom: 16px;
  font-size: 19px;
  line-height: 1.2;
  text-transform: uppercase;
}

.conversion-system-panel h3 span {
  display: block;
  color: var(--orange-2);
}

.system-list {
  display: grid;
  gap: 9px;
}

.system-list > div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 218, 55, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.38);
}

.system-list svg {
  width: 50px;
  height: 50px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 218, 55, 0.1);
}

.system-list strong,
.system-list span {
  display: block;
}

.system-list strong {
  margin-bottom: 3px;
  font-size: 15px;
}

.system-list span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12.5px;
  line-height: 1.35;
}

.conversion-footer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: -2px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255, 218, 55, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.44);
}

.conversion-footer svg {
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid rgba(255, 218, 55, 0.28);
  border-radius: 999px;
  background: rgba(255, 218, 55, 0.08);
}

.conversion-footer strong,
.conversion-footer span {
  display: block;
}

.conversion-footer strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.conversion-footer span {
  color: var(--muted);
  font-size: 13px;
}

.faq-section {
  padding: 36px 0 44px;
}

.faq-shell {
  position: relative;
  padding: 34px 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 76%, rgba(255, 218, 55, 0.1), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(255, 218, 55, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    #030303;
  box-shadow:
    0 26px 86px rgba(0, 0, 0, 0.52),
    inset 0 -1px 0 rgba(255, 218, 55, 0.42);
}

.faq-heading {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.faq-heading .eyebrow {
  display: inline-block;
  margin-bottom: 12px;
}

.faq-heading .eyebrow::after {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 218, 55, 0));
}

.faq-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
}

.faq-heading h2 span {
  color: var(--orange-2);
}

.faq-heading p:not(.eyebrow) {
  margin: 0 auto;
  max-width: 620px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 7px;
  width: min(84%, 820px);
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 218, 55, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.025);
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.faq-item:hover {
  border-color: rgba(255, 218, 55, 0.36);
  background:
    linear-gradient(90deg, rgba(255, 218, 55, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 28px rgba(255, 218, 55, 0.07);
}

.faq-item.is-open {
  border-color: rgba(255, 218, 55, 0.42);
  background:
    linear-gradient(90deg, rgba(255, 218, 55, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 10px 30px rgba(255, 218, 55, 0.08);
}

.faq-question {
  display: grid;
  grid-template-columns: 34px 1fr 24px;
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  color: #fff;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-question svg,
.faq-final-icon svg {
  color: var(--orange);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(255, 218, 55, 0.26));
}

.faq-question svg {
  width: 24px;
  height: 24px;
}

.faq-question span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}

.faq-question strong {
  color: var(--orange-2);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.22s ease;
}

.faq-item.is-open .faq-question strong {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  padding: 0 24px 0 68px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
  overflow: hidden;
  transition: padding-bottom 0.28s ease;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 14px;
}

.faq-final-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1.05fr) minmax(320px, 0.78fr);
  gap: 20px;
  align-items: center;
  width: min(84%, 820px);
  margin: 24px auto 0;
  padding: 20px 24px;
  border: 1px solid rgba(255, 218, 55, 0.24);
  border-radius: 10px;
  background:
    radial-gradient(circle at 15% 50%, rgba(255, 218, 55, 0.12), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), rgba(255, 218, 55, 0.045)),
    rgba(5, 5, 5, 0.9);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.faq-final-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 218, 55, 0.28);
  border-radius: 999px;
  background: rgba(255, 218, 55, 0.06);
}

.faq-final-icon svg {
  width: 36px;
  height: 36px;
}

.faq-final-copy h3 {
  margin-bottom: 7px;
  font-size: 27px;
  line-height: 1.1;
}

.faq-final-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.48;
}

.faq-final-action {
  display: grid;
  gap: 10px;
}

.faq-final-action .btn {
  width: min(100%, 330px);
  min-height: 51px;
  justify-self: end;
}

.faq-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11.5px;
}

.faq-benefits span {
  position: relative;
  padding-left: 15px;
}

.faq-benefits span::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: -0.03em;
  color: var(--orange-2);
  font-weight: 950;
}

.footer {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  color: var(--muted);
}

.site-footer {
  position: relative;
  padding: 34px 0 38px;
  border-top: 1px solid rgba(255, 218, 55, 0.18);
  background:
    radial-gradient(circle at 12% 38%, rgba(255, 218, 55, 0.08), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(255, 218, 55, 0.05), transparent 24%);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.7fr) minmax(180px, 0.45fr);
  gap: 44px;
  align-items: start;
  padding: 28px 0 30px;
}

.footer-brand {
  max-width: 480px;
}

.footer-brand img {
  width: 240px;
  height: auto;
  margin-bottom: 8px;
}

.footer-brand > span {
  display: block;
  margin-bottom: 22px;
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.45;
}

.footer-legal {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.footer-legal span {
  display: block;
}

.footer-brand strong,
.footer-note strong {
  color: var(--orange-2);
}

.footer-column {
  min-height: 220px;
  padding-left: 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-column h3 {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--orange-2);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column h3::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 218, 55, 0));
}

.footer-contact,
.footer-nav {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-contact a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-contact svg,
.footer-nav strong,
.footer-note svg {
  color: var(--orange);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(255, 218, 55, 0.22));
}

.footer-contact svg {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}

.footer-contact .footer-whatsapp-icon {
  stroke-width: 2.15;
}

.footer-contact span,
.footer-contact strong {
  display: block;
}

.footer-contact strong {
  margin-bottom: 2px;
  color: #fff;
  font-size: 14px;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.footer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-nav strong {
  color: var(--orange-2);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.footer-contact a:hover,
.footer-nav a:hover {
  color: var(--orange-2);
  transform: translateX(3px);
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(260px, 1fr) minmax(260px, 0.85fr);
  gap: 28px;
  align-items: center;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 218, 55, 0.38);
}

.footer-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
}

.footer-note svg {
  width: 36px;
  height: 36px;
  min-width: 36px;
  aspect-ratio: 1;
}

.footer-note .footer-security-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
}

.footer-note span,
.footer-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.45;
}

.footer-copy {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-copy span:first-child {
  color: rgba(255, 255, 255, 0.86);
}

.footer-note-right {
  grid-template-columns: 1fr 42px;
  text-align: right;
}

.privacy-page {
  background: #f6f1ea;
  color: #171717;
}

.privacy-header {
  width: min(100% - 48px, var(--max));
  padding: 24px 0 0;
  background: transparent;
}

.privacy-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(20, 20, 20, 0.16);
  border-radius: 999px;
  color: #171717;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.privacy-back:hover {
  border-color: rgba(255, 218, 55, 0.5);
  color: var(--orange);
  transform: translateY(-1px);
}

.privacy-main {
  width: min(100% - 48px, 980px);
  margin: 0 auto;
  padding: 42px 0 88px;
}

.privacy-hero {
  padding: 42px 0 30px;
}

.privacy-hero h1 {
  max-width: 780px;
  margin: 10px 0 18px;
  color: #121212;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

.privacy-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(18, 18, 18, 0.72);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.58;
}

.privacy-hero span {
  display: inline-flex;
  margin-top: 22px;
  color: rgba(18, 18, 18, 0.58);
  font-size: 14px;
  font-weight: 800;
}

.privacy-content {
  display: grid;
  gap: 18px;
}

.privacy-content article {
  padding: 28px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 12px;
  background: #fffaf4;
  box-shadow: 0 18px 46px rgba(20, 20, 20, 0.06);
}

.privacy-content h2 {
  margin: 0 0 14px;
  color: #141414;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
}

.privacy-content p,
.privacy-content li {
  color: rgba(20, 20, 20, 0.76);
  font-size: 16px;
  line-height: 1.65;
}

.privacy-content p {
  margin: 0;
}

.privacy-content p + p,
.privacy-content p + ul {
  margin-top: 12px;
}

.privacy-content ul {
  margin: 0;
  padding-left: 20px;
}

.privacy-content li + li {
  margin-top: 8px;
}

.privacy-content strong {
  color: #141414;
}

.privacy-content a {
  color: var(--orange);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.38);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

@media (min-width: 981px) and (max-height: 720px) {
  .site-header {
    width: min(100% - 96px, 1256px);
    padding: 14px 0 2px;
  }

  .brand img {
    width: 166px;
  }

  .hero {
    grid-template-columns: minmax(390px, 0.44fr) minmax(0, 0.56fr);
    gap: 24px;
    margin-top: 0;
    min-height: calc(100svh - 76px);
    padding: 8px 0 12px 48px;
  }

  .hero-copy {
    max-width: 540px;
  }

  .hero-brand {
    margin-bottom: 44px;
  }

  .hero-brand img {
    width: 208px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 12px;
  }

  h1 {
    max-width: 540px;
    margin-bottom: 14px;
    font-size: clamp(36px, 3.8vw, 46px);
  }

  .hero-text {
    max-width: 560px;
    font-size: 14px;
    line-height: 1.42;
  }

  .hero-actions {
    margin-top: 12px;
  }

  .btn {
    min-height: 48px;
    padding: 0 20px;
    font-size: 12px;
  }

  .hero-actions .btn {
    min-height: 42px;
    padding: 0 16px;
    font-size: 11px;
  }

  .hero-visual {
    min-height: clamp(460px, 62svh, 555px);
    margin: -92px 0 -34px -68px;
  }

  .hero-highlights {
    margin: -44px 32px 0 0;
    padding: 18px 20px;
  }

  .hero-highlights > div {
    grid-template-columns: 50px 1fr;
    gap: 14px;
    min-height: 82px;
    padding: 4px 16px;
  }

  .highlight-icon {
    width: 40px;
    height: 40px;
  }

  .hero-highlights strong {
    margin-bottom: 6px;
    font-size: 16px;
  }

  .hero-highlights span {
    font-size: 12px;
    line-height: 1.4;
  }
}

@media (max-width: 980px) {
  .site-header,
  .section,
  .footer {
    width: min(100% - 32px, 720px);
  }

  .site-header {
    padding: 22px 0 8px;
  }

  .brand img {
    width: 190px;
  }

  .hero {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 720px);
    margin-right: auto;
    margin-left: auto;
    padding: 28px 0;
  }

  .hero-copy {
    max-width: none;
    padding-top: 0;
  }

  .hero-brand {
    justify-content: center;
    margin-bottom: 54px;
  }

  .hero-brand img {
    width: 224px;
  }

  .hero-visual {
    min-height: 500px;
    margin: 0;
    background-position: center;
  }

  .hero-highlights,
  .specialty {
    grid-template-columns: 1fr;
  }

  .hero-highlights {
    margin: 8px 0 0;
    padding: 22px 24px;
  }

  .hero-highlights > div,
  .hero-highlights > div:first-child {
    grid-template-columns: 52px 1fr;
    min-height: auto;
    padding: 20px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-highlights > div:first-child {
    border-top: 0;
  }

  .process-method {
    padding-top: 44px;
    padding-bottom: 38px;
  }

  .process-track {
    grid-template-columns: repeat(5, minmax(230px, 1fr));
    gap: 18px;
    max-width: 100%;
    margin-right: 0;
    padding-top: 40px;
    padding-right: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 218, 55, 0.55) rgba(255, 255, 255, 0.08);
  }

  .process-track::before {
    top: 40px;
    right: 16px;
    left: 16px;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 218, 55, 0.55), transparent);
  }

  .process-track::after {
    display: block;
    top: 32px;
    right: 12px;
  }

  .process-step {
    align-items: center;
    min-height: auto;
    padding: 52px 16px 14px;
    text-align: center;
    scroll-snap-align: start;
  }

  .step-number {
    top: -26px;
    left: 50%;
    width: 54px;
    height: 54px;
    font-size: 22px;
  }

  .step-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  .step-tags {
    justify-content: center;
  }

  .specialty-authority {
    gap: 30px;
  }

  .authority-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px 22px;
  }

  .authority-heading {
    max-width: 760px;
    text-align: center;
  }

  .authority-heading .eyebrow::after {
    margin-right: auto;
    margin-left: auto;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
  }

  .authority-heading h2,
  .authority-heading p:not(.eyebrow) {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
  }

  .authority-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .authority-cards > div {
    min-height: 250px;
  }

  .authority-cards > div:nth-child(2) {
    grid-column: 1 / -1;
  }

  .environment-mosaic img,
  .environment-mosaic .mosaic-image {
    max-height: 390px;
  }

  .partner-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-logos span {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .partner-logos span:nth-child(1),
  .partner-logos span:nth-child(2) {
    border-top: 0;
  }

  .partner-logos span:nth-child(odd) {
    border-left: 0;
  }

  .specialty-banner {
    width: 100%;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header,
  .section,
  .footer {
    width: min(100% - 28px, 720px);
  }

  h1 {
    font-size: 40px;
  }

  .btn {
    width: 100%;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .differential-grid article {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .environment-mosaic img,
  .environment-mosaic .mosaic-image {
    height: auto;
    max-height: none;
  }

  .partner-logos {
    grid-template-columns: 1fr;
  }

  .partner-logos span,
  .partner-logos span:nth-child(2) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .partner-logos span:first-child {
    border-top: 0;
  }

  .specialty-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .banner-icon {
    margin: 0 auto;
  }

  .authority-bridge {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .authority-shell {
    gap: 22px;
    padding: 26px 16px;
  }

  .authority-heading {
    margin-bottom: 22px;
  }

  .authority-heading h2 {
    font-size: 30px;
  }

  .authority-heading p:not(.eyebrow) {
    font-size: 14px;
  }

  .authority-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .authority-cards > div {
    min-height: auto;
    padding: 24px 18px;
  }

  .authority-cards > div:nth-child(2) {
    padding: 26px 18px;
  }

  .authority-cards strong {
    font-size: 38px;
  }

  .authority-cards > div:nth-child(2) strong {
    font-size: 42px;
  }
}

.partner-logos {
  grid-template-columns: repeat(4, 1fr);
}

.partner-logos span {
  min-height: 58px;
  border: 0;
}

.partner-logos img {
  width: 100%;
  max-width: 138px;
  max-height: 36px;
  object-fit: contain;
}

.partner-logos span:nth-child(1) img {
  max-width: 132px;
}

.partner-logos span:nth-child(2) img {
  max-width: 150px;
}

.partner-logos span:nth-child(4) img,
.partner-logos span:nth-child(5) img {
  max-width: 118px;
}

.partner-logos .logo-criare {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.partner-logos .partner-text {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.22;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .partner-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-header,
  .result-case-grid,
  .testimonial-proof-bar,
  .results-differentials {
    grid-template-columns: 1fr;
  }

  .testimonial-video-thumb {
    min-height: 0;
  }

  .testimonial-proof-bar > div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .testimonial-proof-bar > div:first-child {
    border-top: 0;
  }

  .results-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-metrics div:nth-child(odd) {
    border-left: 0;
  }

  .results-differentials > div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .results-differentials > div:first-child {
    border-top: 0;
  }
}

@media (max-width: 620px) {
  .partner-logos {
    grid-template-columns: 1fr;
  }

  .video-testimonials {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .video-testimonials::before,
  .video-testimonials::after {
    display: none;
  }

  .video-testimonials-heading h2 {
    font-size: 34px;
  }

  .video-testimonials-heading p:not(.eyebrow) {
    font-size: 15px;
  }

  .testimonial-video-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-video-card {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .testimonial-video-thumb {
    min-height: 0;
  }

  .testimonial-video-copy {
    padding: 8px 4px 4px;
  }

  .testimonial-video-copy p {
    font-size: 22px;
  }

  .testimonial-video-copy strong {
    font-size: 17px;
  }

  .testimonial-watch {
    width: 100%;
    min-width: 0;
  }

  .testimonial-proof-bar {
    padding: 18px;
  }

  .testimonial-proof-bar > div {
    grid-template-columns: 1fr;
    padding: 18px 0;
    text-align: center;
  }

  .testimonial-proof-bar svg {
    margin: 0 auto;
  }

  .results-section {
    padding-top: 48px;
  }

  .results-copy h2 {
    font-size: 36px;
  }

  .results-metrics {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .results-metrics div,
  .results-metrics div:nth-child(odd) {
    min-height: auto;
    padding: 20px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 218, 55, 0.22);
  }

  .results-metrics div:first-child {
    border-top: 0;
  }

  .result-case-card {
    padding: 22px;
  }

  .result-case-card h3 {
    min-height: auto;
    font-size: 22px;
  }

  .case-revenue {
    grid-template-columns: 1fr;
  }

  .case-details.two-cols,
  .case-details.three-cols {
    grid-template-columns: 1fr;
  }

  .case-details div {
    padding: 12px 0;
  }

  .results-differentials {
    padding: 18px;
  }

  .results-differentials > div {
    grid-template-columns: 1fr;
    padding: 18px 0;
    text-align: center;
  }

  .results-differentials svg {
    margin: 0 auto;
  }
}

.specialty-authority {
  padding-top: 28px;
  padding-bottom: 28px;
}

.specialty-authority h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 2.75vw, 36px);
}

.specialty-copy > p:not(.eyebrow) {
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.42;
}

.differential-grid {
  gap: 8px;
}

.differential-grid article {
  min-height: 72px;
  padding: 9px 12px;
}

.differential-grid h3 {
  font-size: 14px;
}

.differential-grid p {
  font-size: 12px;
  line-height: 1.3;
}

.environment-mosaic img,
.environment-mosaic .mosaic-image {
  max-height: 390px;
}

.partner-panel {
  padding: 12px 18px;
}

.partner-panel p {
  margin-bottom: 9px;
  font-size: 10.5px;
}

.partner-logos span {
  min-height: 44px;
  padding: 8px 12px;
}

.partner-logos img {
  max-height: 30px;
}

.partner-logos span:nth-child(1) img {
  max-width: 116px;
}

.partner-logos span:nth-child(2) img {
  max-width: 132px;
}

.partner-logos span:nth-child(4) img,
.partner-logos span:nth-child(5) img {
  max-width: 106px;
}

.partner-logos .partner-text {
  font-size: 11px;
}

.specialty-banner {
  display: none;
}

@media (max-width: 980px) {
  .environment-mosaic img,
  .environment-mosaic .mosaic-image {
    max-height: 360px;
  }
}

@media (max-width: 1180px) {
  .conversion-inner {
    grid-template-columns: 1fr;
  }

  .conversion-copy h2,
  .conversion-copy p:not(.eyebrow),
  .conversion-button {
    max-width: none;
  }

  .conversion-system {
    min-height: 460px;
    padding-left: 34px;
  }
}

@media (max-width: 980px) {
  .conversion-cta {
    padding: 34px 0;
  }

  .conversion-inner {
    padding: 24px;
    gap: 24px;
  }

  .conversion-copy h2 {
    font-size: clamp(30px, 7vw, 42px);
  }

  .conversion-copy p:not(.eyebrow) {
    font-size: 14px;
  }

  .conversion-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .conversion-stats > div,
  .conversion-stats > div:first-child {
    padding: 0;
    border-left: 0;
  }

  .conversion-button {
    min-height: 58px;
    padding: 0 22px;
    font-size: 15px;
  }

  .conversion-system {
    min-height: auto;
    padding: 16px;
    justify-content: stretch;
  }

  .conversion-system-panel {
    width: 100%;
    padding: 18px;
  }

  .conversion-footer {
    grid-template-columns: 54px 1fr;
    margin-top: 0;
    padding: 16px;
  }

  .faq-shell {
    padding: 28px 22px;
  }

  .faq-list,
  .faq-final-card {
    width: min(100%, 820px);
  }

  .faq-final-card {
    grid-template-columns: 58px 1fr;
  }

  .faq-final-action {
    grid-column: 1 / -1;
  }

  .faq-final-action .btn {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .conversion-inner {
    padding: 20px 14px;
    border-radius: 10px;
  }

  .conversion-copy .eyebrow::after {
    width: 180px;
  }

  .conversion-stats {
    grid-template-columns: 1fr;
    margin: 24px 0 28px;
  }

  .conversion-button {
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 16px;
    font-size: 13px;
  }

  .conversion-button svg {
    width: 28px;
    height: 28px;
  }

  .conversion-button strong {
    display: none;
  }

  .conversion-assurances {
    display: grid;
    gap: 10px;
  }

  .conversion-system {
    padding: 12px;
    background-position: center;
  }

  .conversion-system-panel {
    padding: 18px 14px;
  }

  .conversion-system-panel h3 {
    font-size: 18px;
  }

  .system-list > div {
    grid-template-columns: 48px 1fr;
    gap: 10px;
    padding: 10px;
  }

  .system-list svg {
    width: 42px;
    height: 42px;
    padding: 10px;
  }

  .system-list strong {
    font-size: 15px;
  }

  .system-list span {
    font-size: 12px;
  }

  .conversion-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .conversion-footer svg {
    margin: 0 auto;
  }

  .faq-section {
    padding: 28px 0 34px;
  }

  .faq-shell {
    padding: 24px 14px;
  }

  .faq-heading {
    margin-bottom: 22px;
  }

  .faq-heading h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .faq-question {
    grid-template-columns: 28px 1fr 20px;
    gap: 12px;
    min-height: 52px;
    padding: 0 14px;
  }

  .faq-question svg {
    width: 24px;
    height: 24px;
  }

  .faq-question span {
    font-size: 14px;
  }

  .faq-answer p {
    padding-left: 54px;
    padding-right: 14px;
    font-size: 13px;
  }

  .faq-final-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 16px;
    text-align: center;
  }

  .faq-final-action .btn {
    justify-self: stretch;
    width: 100%;
  }

  .faq-final-icon {
    margin: 0 auto;
  }
}

@media (max-width: 980px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 26px 0;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-column {
    min-height: auto;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-copy {
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .footer-note-right {
    grid-template-columns: 42px 1fr;
    text-align: left;
  }

  .footer-note-right svg {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-note-right span {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding-bottom: 84px;
  }

  .footer-brand img {
    width: 198px;
  }

  .footer-brand > span {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .footer-brand p {
    font-size: 15px;
  }

  .footer-column h3 {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .footer-nav a {
    font-size: 14px;
  }

  .footer-note span,
  .footer-copy span {
    font-size: 12px;
  }

  .footer-legal {
    font-size: 12px;
  }

  .privacy-header {
    width: min(100% - 32px, var(--max));
    align-items: flex-start;
    gap: 18px;
    padding-top: 18px;
  }

  .privacy-header .brand img {
    width: 178px;
  }

  .privacy-back {
    min-height: 40px;
    padding: 0 14px;
    font-size: 11px;
  }

  .privacy-main {
    width: min(100% - 32px, 980px);
    padding: 30px 0 64px;
  }

  .privacy-hero {
    padding: 28px 0 24px;
  }

  .privacy-hero h1 {
    font-size: clamp(34px, 11vw, 44px);
  }

  .privacy-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .privacy-content article {
    padding: 22px 18px;
    border-radius: 10px;
  }

  .privacy-content p,
  .privacy-content li {
    font-size: 15px;
  }
}

/* First density pass: reduce repeated proof blocks and create calmer reading rhythm. */
.results-metrics,
.results-differentials,
.testimonial-proof-bar,
.conversion-stats {
  display: none;
}

.process-method,
.specialty-authority,
.results-section,
.video-testimonials,
.conversion-cta,
.faq-section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.process-method .section-heading,
.video-testimonials-heading,
.faq-heading {
  margin-bottom: 44px;
}

.results-header {
  display: block;
  max-width: 780px;
  margin-bottom: 38px;
}

.results-copy h2,
.results-copy p:not(.eyebrow) {
  max-width: 720px;
}

.results-copy p:not(.eyebrow) {
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 1.58;
}

.result-case-grid {
  margin-bottom: 0;
}

.video-testimonials {
  border-top: 0;
}

.testimonial-video-grid {
  margin-bottom: 0;
}

.conversion-cta {
  padding-top: 96px;
  padding-bottom: 96px;
}

.conversion-inner {
  gap: 44px;
  padding: 42px;
}

.conversion-copy p:not(.eyebrow) {
  margin-bottom: 28px;
}

.conversion-button {
  margin-top: 0;
}

@media (max-width: 980px) {
  .process-method,
  .specialty-authority,
  .results-section,
  .video-testimonials,
  .conversion-cta,
  .faq-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .results-header {
    max-width: none;
  }

  .conversion-inner {
    padding: 30px 24px;
    gap: 30px;
  }
}

@media (max-width: 620px) {
  .process-method,
  .specialty-authority,
  .results-section,
  .video-testimonials,
  .conversion-cta,
  .faq-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .process-method .section-heading,
  .video-testimonials-heading,
  .faq-heading {
    margin-bottom: 30px;
  }

  .results-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .conversion-inner {
    padding: 24px 16px;
  }
}

/* Light proof band: make case studies feel more readable and transparent. */
.results-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-right: max(24px, calc((100% - var(--max)) / 2));
  padding-left: max(24px, calc((100% - var(--max)) / 2));
  border-top: 0;
  color: #161616;
  background:
    linear-gradient(180deg, #f7f3ec 0%, #fffaf2 52%, #f0e7dc 100%);
}

.results-section .eyebrow,
.results-copy h2 span,
.case-top span,
.case-revenue strong,
.case-details strong {
  color: #b88700;
}

.results-copy h2,
.result-case-card h3 {
  color: #151515;
}

.results-copy p:not(.eyebrow),
.result-case-card h3 small {
  color: rgba(22, 22, 22, 0.68);
}

.results-section .ghost-btn {
  border-color: rgba(184, 135, 0, 0.45);
  color: #151515;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(84, 44, 12, 0.12);
}

.results-section .ghost-btn:hover {
  color: #111;
  background: linear-gradient(135deg, #ffda37, #d6a900);
}

.result-case-card {
  border-color: rgba(92, 61, 33, 0.13);
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 218, 55, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 246, 0.92));
  box-shadow:
    0 26px 54px rgba(83, 51, 24, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.result-case-card::after {
  background: #ffda37;
  box-shadow: 0 0 14px rgba(255, 218, 55, 0.32);
}

.case-revenue span {
  color: rgba(22, 22, 22, 0.74);
}

.case-revenue strong small {
  color: #151515;
}

.case-revenue em {
  border-color: rgba(184, 135, 0, 0.34);
  color: #151515;
  background: rgba(255, 218, 55, 0.08);
  box-shadow: none;
}

.case-details {
  background: rgba(94, 62, 33, 0.13);
}

.case-details div {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 251, 246, 0.74)),
    #fffaf2;
}

.compact-details svg {
  border-color: rgba(184, 135, 0, 0.28);
  color: #b88700;
  background: rgba(255, 218, 55, 0.08);
  filter: none;
}

.case-details span {
  color: rgba(22, 22, 22, 0.62);
}

@media (max-width: 980px) {
  .results-section {
    padding-right: 16px;
    padding-left: 16px;
  }
}

/* Full rhythm pass: keep the brand dark, but alternate bands for better pacing. */
.process-method,
.specialty-authority,
.video-testimonials,
.faq-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-right: max(24px, calc((100% - var(--max)) / 2));
  padding-left: max(24px, calc((100% - var(--max)) / 2));
}

.process-method {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 218, 55, 0.11), transparent 30%),
    linear-gradient(180deg, #151515 0%, #0f0f0f 100%);
}

.process-method .section-heading p,
.process-step p {
  color: rgba(255, 255, 255, 0.72);
}

.process-step {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.024)),
    #171717;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.26);
}

.specialty-authority {
  border-top: 0;
  border-bottom: 0;
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 218, 55, 0.13), transparent 26%),
    linear-gradient(180deg, #050505 0%, #000 100%);
}

.specialty-authority .differential-grid article,
.partner-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    #0b0b0b;
}

.environment-mosaic {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 218, 55, 0.11), transparent 34%),
    rgba(255, 255, 255, 0.04);
}

.video-testimonials {
  border-top: 0;
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 218, 55, 0.08), transparent 28%),
    linear-gradient(180deg, #1a1a1a 0%, #101010 100%);
}

.testimonial-video-card {
  border-color: rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #181818;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 54px rgba(0, 0, 0, 0.28);
}

.conversion-cta {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-right: max(24px, calc((100% - var(--max)) / 2));
  padding-left: max(24px, calc((100% - var(--max)) / 2));
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 218, 55, 0.12), transparent 34%),
    linear-gradient(180deg, #000 0%, #070707 100%);
}

.conversion-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.faq-section {
  color: #171717;
  background:
    linear-gradient(180deg, #f3eee7 0%, #fffaf4 58%, #efe5d9 100%);
}

.faq-shell {
  border-color: rgba(89, 59, 31, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 250, 244, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 28px 70px rgba(80, 50, 23, 0.12);
}

.faq-heading h2,
.faq-final-copy h3 {
  color: #151515;
}

.faq-heading h2 span {
  color: #b88700;
}

.faq-heading p:not(.eyebrow),
.faq-answer p,
.faq-final-copy p {
  color: rgba(22, 22, 22, 0.68);
}

.faq-question,
.faq-final-card {
  border-color: rgba(93, 61, 32, 0.13);
  color: #151515;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 244, 0.9));
  box-shadow: 0 16px 34px rgba(80, 50, 23, 0.09);
}

.faq-question span {
  color: #151515;
}

.faq-question svg,
.faq-final-icon svg,
.faq-final-icon {
  color: #b88700;
}

.faq-benefits span {
  border-color: rgba(184, 135, 0, 0.26);
  color: rgba(22, 22, 22, 0.72);
  background: rgba(255, 218, 55, 0.07);
}

.site-footer {
  background:
    radial-gradient(circle at 14% 26%, rgba(255, 218, 55, 0.08), transparent 28%),
    linear-gradient(180deg, #080808 0%, #020202 100%);
}

@media (max-width: 980px) {
  .process-method,
  .specialty-authority,
  .video-testimonials,
  .conversion-cta,
  .faq-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .conversion-inner {
    max-width: none;
  }
}

/* Process as a light instructional band, matching the proof/cases rhythm. */
.process-method {
  color: #161616;
  border-top: 0;
  border-bottom: 0;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 218, 55, 0.1), transparent 30%),
    linear-gradient(180deg, #f6f1ea 0%, #fffaf2 55%, #f1e8dc 100%);
}

.process-method .section-heading h2,
.process-step h3 {
  color: #151515;
}

.process-method .section-heading h2 span,
.process-method .eyebrow,
.step-number,
.step-icon {
  color: #b88700;
}

.process-method .section-heading p,
.process-step p {
  color: rgba(22, 22, 22, 0.68);
}

.process-track::before {
  background:
    linear-gradient(90deg, transparent, rgba(184, 135, 0, 0.42), #ffda37 18%, #ffe66b 50%, #ffda37 82%, rgba(184, 135, 0, 0.42), transparent);
  box-shadow:
    0 0 8px rgba(255, 218, 55, 0.35),
    0 0 24px rgba(255, 218, 55, 0.16);
}

.process-track::after {
  border-top-color: #b88700;
  border-right-color: #b88700;
  filter: drop-shadow(0 0 8px rgba(184, 135, 0, 0.38));
}

.process-step {
  border-color: rgba(94, 62, 33, 0.13);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 218, 55, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 244, 0.9));
  box-shadow:
    0 22px 46px rgba(83, 51, 24, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.step-number {
  border-color: rgba(184, 135, 0, 0.42);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 218, 55, 0.12), transparent 58%),
    #fffaf2;
  box-shadow:
    0 0 0 8px #fffaf2,
    0 0 16px rgba(184, 135, 0, 0.24);
}

.step-icon {
  filter: none;
}

.step-tags span {
  border-color: rgba(184, 135, 0, 0.24);
  color: #151515;
  background:
    linear-gradient(180deg, rgba(255, 218, 55, 0.1), rgba(255, 255, 255, 0.58)),
    #fffaf2;
  box-shadow: none;
}

@media (max-width: 980px) {
  .process-track::before {
    background: linear-gradient(90deg, transparent, rgba(184, 135, 0, 0.55), transparent);
  }
}

/* Hero image test: planned furniture environment + demand/platform UI. */
.hero-visual {
  background: url("assets/hero-esquilo-capa-site-v3.png?v=20260624-hero-original-restore-2") 58% center / cover no-repeat;
  background: image-set(
    url("assets/hero-esquilo-capa-site-v3.webp?v=20260624-hero-original-restore-2") type("image/webp"),
    url("assets/hero-esquilo-capa-site-v3.png?v=20260624-hero-original-restore-2") type("image/png")
  ) 58% center / cover no-repeat;
}

@media (max-width: 980px) {
  .hero-visual {
    background-position: center;
    background-size: cover;
  }
}

/* Hero composition: use the wide hero artwork anchored to the right side. */
.hero-visual {
  min-height: clamp(690px, 78svh, 820px);
  margin: -118px 0 -218px -88px;
  background: url("assets/hero-esquilo-capa-site-v3.png?v=20260624-hero-original-restore-2") right center / cover no-repeat;
  background: image-set(
    url("assets/hero-esquilo-capa-site-v3.webp?v=20260624-hero-original-restore-2") type("image/webp"),
    url("assets/hero-esquilo-capa-site-v3.png?v=20260624-hero-original-restore-2") type("image/png")
  ) right center / cover no-repeat;
}

@media (min-width: 981px) and (max-height: 720px) {
  .hero-visual {
    min-height: clamp(590px, 76svh, 690px);
    margin: -92px 0 -188px -68px;
  }
}

@media (max-width: 980px) {
  .hero {
    isolation: isolate;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.78) 48%, #000 86%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.52) 52%, rgba(0, 0, 0, 0.92)),
      image-set(
        url("assets/hero-esquilo-capa-site-v3.webp?v=20260624-hero-original-restore-2") type("image/webp"),
        url("assets/hero-esquilo-capa-site-v3.png?v=20260624-hero-original-restore-2") type("image/png")
      ) center top / cover no-repeat;
  }

  .hero-visual {
    display: none;
  }

  .site-header {
    justify-content: center;
  }

  .hero-copy {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    background: transparent;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-text {
    max-width: 620px;
  }

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

  .hero-actions .btn {
    width: auto;
    min-width: min(100%, 260px);
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-highlights {
    width: min(100%, 560px);
    margin: 34px auto 0;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 38px;
    padding-bottom: 34px;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8) 50%, #000 88%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.54) 52%, rgba(0, 0, 0, 0.94)),
      image-set(
        url("assets/hero-esquilo-capa-site-v3.webp?v=20260624-hero-original-restore-2") type("image/webp"),
        url("assets/hero-esquilo-capa-site-v3.png?v=20260624-hero-original-restore-2") type("image/png")
      ) 58% top / cover no-repeat;
  }

  .site-header {
    padding-top: 20px;
    padding-bottom: 4px;
  }

  .brand img {
    width: 178px;
  }

  .hero-brand {
    margin-bottom: 48px;
  }

  .hero-brand img {
    width: 210px;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-text {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-copy .eyebrow {
    font-size: 11px;
    letter-spacing: 0.06em;
    line-height: 1.35;
  }

  .hero-copy h1 {
    width: min(100%, 356px);
    font-size: clamp(33px, 9.2vw, 37px);
    line-height: 1.08;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .hero-text {
    width: min(100%, 350px);
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-actions .btn {
    width: min(100%, 280px);
    min-width: 0;
    max-width: calc(100vw - 72px);
    margin-right: auto;
    margin-left: auto;
  }

  .hero-highlights {
    width: min(100%, 350px);
    margin-top: 34px;
    padding: 18px 20px;
  }
}

@media (max-width: 980px) {
  .specialty-authority .specialty-copy {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .specialty-authority h2,
  .specialty-copy > p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .specialty-authority .differential-grid {
    width: 100%;
    text-align: left;
  }

  .differential-grid article:first-child svg {
    width: 46px;
    height: 46px;
  }

  .differential-grid article:first-child svg path {
    transform: scaleX(1.22);
    transform-box: fill-box;
    transform-origin: center;
  }

  .conversion-footer > svg path {
    transform: scaleX(1.22);
    transform-box: fill-box;
    transform-origin: center;
  }
}

@media (max-width: 620px) {
  .partner-logos {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
  }

  .partner-logos span {
    grid-column: span 2;
    min-height: 54px;
    padding: 10px 8px;
    border: 0;
    border-radius: 8px;
  }

  .partner-logos span:nth-child(7) {
    grid-column: 2 / span 2;
  }

  .partner-logos span:nth-child(8) {
    grid-column: 4 / span 2;
  }

  .partner-logos img {
    max-width: 100%;
    max-height: 30px;
  }

  .partner-logos span:nth-child(1) img,
  .partner-logos span:nth-child(2) img,
  .partner-logos span:nth-child(4) img,
  .partner-logos span:nth-child(5) img {
    max-width: 100%;
  }

  .partner-logos .partner-text {
    font-size: 10px;
    line-height: 1.18;
  }
}

@media (max-width: 620px) {
  .authority-cards {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    margin-right: -16px;
    margin-left: -16px;
    padding: 0 16px 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .authority-cards::-webkit-scrollbar {
    display: none;
  }

  .authority-cards > div,
  .authority-cards > div:nth-child(2) {
    flex: 0 0 min(84vw, 330px);
    order: initial;
    grid-column: auto;
    min-height: 244px;
    padding: 24px 20px;
    scroll-snap-align: center;
  }

  .authority-cards > div:nth-child(2) {
    order: -1;
  }

  .authority-cards strong,
  .authority-cards > div:nth-child(2) strong {
    font-size: clamp(32px, 9vw, 38px);
    white-space: normal;
  }

  .authority-cards span,
  .authority-cards small,
  .authority-cards > div:nth-child(2) span,
  .authority-cards > div:nth-child(2) small {
    max-width: 100%;
  }

  .authority-swipe-hint,
  .process-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .process-swipe-hint {
    margin-top: 14px;
    color: rgba(14, 14, 14, 0.68);
  }

  .authority-swipe-hint i,
  .process-swipe-hint i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 218, 55, 0.38);
  }

  .authority-swipe-hint i:first-of-type,
  .process-swipe-hint i:first-of-type {
    background: var(--orange);
    box-shadow: 0 0 12px rgba(255, 218, 55, 0.36);
  }

  .authority-swipe-hint strong,
  .process-swipe-hint strong {
    color: var(--orange);
    font-size: 14px;
    line-height: 1;
  }
}

@media (max-width: 620px) {
  .result-case-card .case-details.three-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .result-case-card .case-details.three-cols div {
    min-width: 0;
    padding: 10px 5px;
  }

  .result-case-card .compact-details svg {
    width: 22px;
    height: 22px;
    padding: 3px;
  }

  .result-case-card .case-details.three-cols span {
    font-size: 8.5px;
    line-height: 1.15;
  }

  .result-case-card .case-details.three-cols strong {
    font-size: 11.5px;
    line-height: 1.12;
    white-space: normal;
  }
}

@media (min-width: 981px) {
  .hero {
    grid-template-columns: minmax(520px, 42vw) minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 0;
    row-gap: 24px;
    align-content: start;
    min-height: auto;
    padding: clamp(36px, 4vw, 64px) 0 clamp(52px, 5vw, 86px) clamp(42px, 3.3vw, 64px);
    overflow: hidden;
  }

  .hero-copy {
    align-self: start;
    width: min(100%, 660px);
    max-width: 660px;
  }

  .hero-brand {
    margin-bottom: clamp(42px, 4.2vw, 64px);
  }

  .hero-brand img {
    width: clamp(216px, 13vw, 250px);
  }

  .hero-copy h1 {
    max-width: 660px;
    font-size: clamp(46px, 3.25vw, 60px);
    line-height: 1.045;
    letter-spacing: -0.025em;
  }

  .hero-text {
    max-width: 660px;
    font-size: clamp(14px, 0.85vw, 16px);
  }

  .desktop-subtitle-break {
    display: block;
  }

  .hero-visual {
    height: clamp(520px, 39vw, 690px);
    min-height: clamp(520px, 39vw, 690px);
    margin: calc(-1 * clamp(36px, 4vw, 64px)) 0 0 -56px;
    background-position: right top;
    background-size: cover;
  }

  .hero-highlights {
    grid-column: 1 / -1;
    margin: 0 clamp(32px, 3vw, 54px) 0 0;
  }

  .hero::after {
    content: none;
  }
}

@media (min-width: 981px) and (max-height: 760px) {
  .hero {
    grid-template-columns: minmax(500px, 42vw) minmax(0, 1fr);
    row-gap: 18px;
    padding: 24px 0 52px 48px;
  }

  .hero-brand {
    margin-bottom: 32px;
  }

  .hero-brand img {
    width: 212px;
  }

  .hero-copy {
    width: min(100%, 620px);
    max-width: 620px;
  }

  .hero-copy h1 {
    max-width: 620px;
    margin-bottom: 14px;
    font-size: clamp(40px, 3vw, 50px);
  }

  .hero-text {
    max-width: 610px;
    font-size: 14px;
    line-height: 1.42;
  }

  .hero-visual {
    height: clamp(450px, 58vh, 560px);
    min-height: clamp(450px, 58vh, 560px);
    margin: -24px 0 0 -48px;
  }

  .hero-highlights {
    margin: 0 32px 0 0;
    padding: 18px 20px;
  }
}
